-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated management SDK for Azure Attestation Service to latest swagge…
…r spec with Location and Tags support (#10212) * Updated to latest swagger spec with Location and Tags support * Fixed mix up in version number * Delete code-model-v1 Co-authored-by: Yeming Liu <felix_liu@outlook.com>
- Loading branch information
Showing
15 changed files
with
638 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
270 changes: 259 additions & 11 deletions
270
...on/Microsoft.Azure.Management.Attestation/src/Generated/AttestationProvidersOperations.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
...e.Management.Attestation/src/Generated/Models/AttestationServiceCreationSpecificParams.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// <auto-generated> | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
// | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is | ||
// regenerated. | ||
// </auto-generated> | ||
|
||
namespace Microsoft.Azure.Management.Attestation.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// Client supplied parameters used to create a new attestation service | ||
/// instance. | ||
/// </summary> | ||
public partial class AttestationServiceCreationSpecificParams | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the | ||
/// AttestationServiceCreationSpecificParams class. | ||
/// </summary> | ||
public AttestationServiceCreationSpecificParams() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the | ||
/// AttestationServiceCreationSpecificParams class. | ||
/// </summary> | ||
/// <param name="attestationPolicy">Name of attestation policy.</param> | ||
/// <param name="policySigningCertificates">JSON Web Key Set defining a | ||
/// set of X.509 Certificates that will represent the parent | ||
/// certificate for the signing certificate used for policy | ||
/// operations</param> | ||
public AttestationServiceCreationSpecificParams(string attestationPolicy = default(string), JSONWebKeySet policySigningCertificates = default(JSONWebKeySet)) | ||
{ | ||
AttestationPolicy = attestationPolicy; | ||
PolicySigningCertificates = policySigningCertificates; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets or sets name of attestation policy. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "attestationPolicy")] | ||
public string AttestationPolicy { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets JSON Web Key Set defining a set of X.509 Certificates | ||
/// that will represent the parent certificate for the signing | ||
/// certificate used for policy operations | ||
/// </summary> | ||
[JsonProperty(PropertyName = "policySigningCertificates")] | ||
public JSONWebKeySet PolicySigningCertificates { get; set; } | ||
|
||
} | ||
} |
Oops, something went wrong.