forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Attestation] Remove Microsoft.Azure.Management.Attestation and add A…
…ttestation.Management.Sdk generated by autorest powershell (Azure#26194) * Attestation SDK generated by autorest powershell * test record file update * Update ChangeLog.md * Revert "test record file update" This reverts commit a03c1ec. * test record file update * Revert "test record file update" This reverts commit 7535220. * Update ChangeLog.md --------- Co-authored-by: NanxiangLiu <[email protected]>
- Loading branch information
Showing
30 changed files
with
4,353 additions
and
16 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
src/Attestation/Attestation.Management.Sdk/Attestation.Management.Sdk.csproj
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,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<PsModuleName>Attestation</PsModuleName> | ||
</PropertyGroup> | ||
<Import Project="$(MSBuildThisFileDirectory)..\..\Az.props" /> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AssemblyName>Microsoft.Azure.PowerShell.Attestation.Management.Sdk</AssemblyName> | ||
<RootNamespace>Microsoft.Azure.Management.Attestation</RootNamespace> | ||
<NoWarn>$(NoWarn);CS0108;CS1573</NoWarn> | ||
</PropertyGroup> | ||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., build.proj))\src\Az.Post.props" /> | ||
</Project> |
345 changes: 345 additions & 0 deletions
345
src/Attestation/Attestation.Management.Sdk/Generated/AttestationManagementClient.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,345 @@ | ||
// 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. | ||
|
||
namespace Microsoft.Azure.Management.Attestation | ||
{ | ||
using System.Linq; | ||
using Microsoft.Rest; | ||
using Microsoft.Rest.Azure; | ||
using Models; | ||
|
||
/// <summary> | ||
/// Various APIs for managing resources in attestation service. This primarily | ||
/// encompasses per-tenant instance management. | ||
/// </summary> | ||
public partial class AttestationManagementClient : Microsoft.Rest.ServiceClient<AttestationManagementClient>, IAttestationManagementClient, IAzureClient | ||
{ | ||
/// <summary> | ||
/// The base URI of the service. | ||
/// </summary> | ||
public System.Uri BaseUri { get; set; } | ||
/// <summary> | ||
/// Gets or sets json serialization settings. | ||
/// </summary> | ||
public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } | ||
/// <summary> | ||
/// Gets or sets json deserialization settings. | ||
/// </summary> | ||
public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } | ||
/// <summary> | ||
/// Credentials needed for the client to connect to Azure. | ||
/// </summary> | ||
public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } | ||
|
||
/// <summary> | ||
/// The API version to use for this operation. | ||
/// </summary> | ||
public string ApiVersion { get; private set; } | ||
|
||
/// <summary> | ||
/// The ID of the target subscription. | ||
/// </summary> | ||
public string SubscriptionId { get; set;} | ||
|
||
/// <summary> | ||
/// The preferred language for the response. | ||
/// </summary> | ||
public string AcceptLanguage { get; set;} | ||
|
||
/// <summary> | ||
/// The retry timeout in seconds for Long Running Operations. Default | ||
/// /// value is 30. | ||
/// </summary> | ||
public int? LongRunningOperationRetryTimeout { get; set;} | ||
|
||
/// <summary> | ||
/// Whether a unique x-ms-client-request-id should be generated. When | ||
/// /// set to true a unique x-ms-client-request-id value is generated and | ||
/// /// included in each request. Default is true. | ||
/// </summary> | ||
public bool? GenerateClientRequestId { get; set;} | ||
|
||
/// <summary> | ||
/// Gets the IOperations | ||
/// </summary> | ||
public virtual IOperations Operations { get; private set; } | ||
/// <summary> | ||
/// Gets the IAttestationProvidersOperations | ||
/// </summary> | ||
public virtual IAttestationProvidersOperations AttestationProviders { get; private set; } | ||
/// <summary> | ||
/// Initializes a new instance of the AttestationManagementClient class. | ||
/// </summary> | ||
/// <param name='httpClient'> | ||
/// HttpClient to be used | ||
/// </param> | ||
/// <param name='disposeHttpClient'> | ||
/// True: will dispose the provided httpClient on calling AttestationManagementClient.Dispose(). False: will not dispose provided httpClient</param> | ||
protected AttestationManagementClient(System.Net.Http.HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient) | ||
{ | ||
this.Initialize(); | ||
} | ||
/// <summary> | ||
/// Initializes a new instance of the AttestationManagementClient class. | ||
/// </summary> | ||
/// <param name='handlers'> | ||
/// Optional. The delegating handlers to add to the http client pipeline. | ||
/// </param> | ||
protected AttestationManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) | ||
{ | ||
this.Initialize(); | ||
} | ||
/// <summary> | ||
/// Initializes a new instance of the AttestationManagementClient class. | ||
/// </summary> | ||
/// <param name='rootHandler'> | ||
/// Optional. The http client handler used to handle http transport. | ||
/// </param> | ||
/// <param name='handlers'> | ||
/// Optional. The delegating handlers to add to the http client pipeline. | ||
/// </param> | ||
protected AttestationManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) | ||
{ | ||
this.Initialize(); | ||
} | ||
/// <summary> | ||
/// Initializes a new instance of the AttestationManagementClient class. | ||
/// </summary> | ||
/// <param name='baseUri'> | ||
/// Optional. The base URI of the service. | ||
/// </param> | ||
/// <param name='handlers'> | ||
/// Optional. The delegating handlers to add to the http client pipeline. | ||
/// </param> | ||
/// <exception cref="System.ArgumentNullException"> | ||
/// Thrown when a required parameter is null | ||
/// </exception> | ||
protected AttestationManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) | ||
{ | ||
if (baseUri == null) | ||
{ | ||
throw new System.ArgumentNullException("baseUri"); | ||
} | ||
this.BaseUri = baseUri; | ||
} | ||
/// <summary> | ||
/// Initializes a new instance of the AttestationManagementClient class. | ||
/// </summary> | ||
/// <param name='baseUri'> | ||
/// Optional. The base URI of the service. | ||
/// </param> | ||
/// <param name='rootHandler'> | ||
/// Optional. The http client handler used to handle http transport. | ||
/// </param> | ||
/// <param name='handlers'> | ||
/// Optional. The delegating handlers to add to the http client pipeline. | ||
/// </param> | ||
/// <exception cref="System.ArgumentNullException"> | ||
/// Thrown when a required parameter is null | ||
/// </exception> | ||
protected AttestationManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) | ||
{ | ||
if (baseUri == null) | ||
{ | ||
throw new System.ArgumentNullException("baseUri"); | ||
} | ||
|
||
this.BaseUri = baseUri; | ||
} | ||
/// <summary> | ||
/// Initializes a new instance of the AttestationManagementClient class. | ||
/// </summary> | ||
/// <param name='credentials'> | ||
/// Required. Credentials needed for the client to connect to Azure. | ||
/// </param> | ||
/// <param name='handlers'> | ||
/// Optional. The delegating handlers to add to the http client pipeline. | ||
/// </param> | ||
/// <exception cref="System.ArgumentNullException"> | ||
/// Thrown when a required parameter is null | ||
/// </exception> | ||
public AttestationManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) | ||
{ | ||
if (credentials == null) | ||
{ | ||
throw new System.ArgumentNullException("credentials"); | ||
} | ||
this.Credentials = credentials; | ||
if (this.Credentials != null) | ||
{ | ||
this.Credentials.InitializeServiceClient(this); | ||
} | ||
|
||
} | ||
/// <summary> | ||
/// Initializes a new instance of the AttestationManagementClient class. | ||
/// </summary> | ||
/// <param name="credentials"> | ||
/// Required. Credentials needed for the client to connect to Azure. | ||
/// </param> | ||
/// <param name='httpClient'> | ||
/// HttpClient to be used | ||
/// </param> | ||
/// <param name='disposeHttpClient'> | ||
/// True: will dispose the provided httpClient on calling AttestationManagementClient.Dispose(). False: will not dispose provided httpClient</param> | ||
/// <exception cref="System.ArgumentNullException"> | ||
/// Thrown when a required parameter is null | ||
/// </exception> | ||
public AttestationManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient) | ||
{ | ||
if (credentials == null) | ||
{ | ||
throw new System.ArgumentNullException("credentials"); | ||
} | ||
this.Credentials = credentials; | ||
if (this.Credentials != null) | ||
{ | ||
this.Credentials.InitializeServiceClient(this); | ||
} | ||
|
||
} | ||
/// <summary> | ||
/// Initializes a new instance of the AttestationManagementClient class. | ||
/// </summary> | ||
/// <param name="credentials"> | ||
/// Required. Credentials needed for the client to connect to Azure. | ||
/// </param> | ||
/// <param name='rootHandler'> | ||
/// Optional. The http client handler used to handle http transport. | ||
/// </param> | ||
/// <param name='handlers'> | ||
/// Optional. The delegating handlers to add to the http client pipeline. | ||
/// </param> | ||
/// <exception cref="System.ArgumentNullException"> | ||
/// Thrown when a required parameter is null | ||
/// </exception> | ||
public AttestationManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) | ||
{ | ||
if (credentials == null) | ||
{ | ||
throw new System.ArgumentNullException("credentials"); | ||
} | ||
this.Credentials = credentials; | ||
if (this.Credentials != null) | ||
{ | ||
this.Credentials.InitializeServiceClient(this); | ||
} | ||
|
||
} | ||
/// <summary> | ||
/// Initializes a new instance of the AttestationManagementClient class. | ||
/// </summary> | ||
/// <param name='baseUri'> | ||
/// Optional. The base URI of the service. | ||
/// </param> | ||
/// <param name="credentials"> | ||
/// Required. Credentials needed for the client to connect to Azure. | ||
/// </param> | ||
/// <param name='handlers'> | ||
/// Optional. The delegating handlers to add to the http client pipeline. | ||
/// </param> | ||
/// <exception cref="System.ArgumentNullException"> | ||
/// Thrown when a required parameter is null | ||
/// </exception> | ||
public AttestationManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) | ||
{ | ||
if (baseUri == null) | ||
{ | ||
throw new System.ArgumentNullException("baseUri"); | ||
} | ||
if (credentials == null) | ||
{ | ||
throw new System.ArgumentNullException("credentials"); | ||
} | ||
this.BaseUri = baseUri; | ||
this.Credentials = credentials; | ||
if (this.Credentials != null) | ||
{ | ||
this.Credentials.InitializeServiceClient(this); | ||
} | ||
|
||
} | ||
/// <summary> | ||
/// Initializes a new instance of the AttestationManagementClient class. | ||
/// </summary> | ||
/// <param name='baseUri'> | ||
/// Optional. The base URI of the service. | ||
/// </param> | ||
/// <param name="credentials"> | ||
/// Required. Credentials needed for the client to connect to Azure. | ||
/// </param> | ||
/// <param name='rootHandler'> | ||
/// Optional. The http client handler used to handle http transport. | ||
/// </param> | ||
/// <exception cref="System.ArgumentNullException"> | ||
/// Thrown when a required parameter is null | ||
/// </exception> | ||
public AttestationManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) | ||
{ | ||
if (baseUri == null) | ||
{ | ||
throw new System.ArgumentNullException("baseUri"); | ||
} | ||
if (credentials == null) | ||
{ | ||
throw new System.ArgumentNullException("credentials"); | ||
} | ||
this.BaseUri = baseUri; | ||
this.Credentials = credentials; | ||
if (this.Credentials != null) | ||
{ | ||
this.Credentials.InitializeServiceClient(this); | ||
} | ||
|
||
} | ||
/// <summary> | ||
/// An optional partial-method to perform custom initialization. | ||
/// </summary> | ||
partial void CustomInitialize(); | ||
|
||
/// <summary> | ||
/// Initializes client properties. | ||
/// </summary> | ||
private void Initialize() | ||
{ | ||
this.Operations = new Operations(this); | ||
this.AttestationProviders = new AttestationProvidersOperations(this); | ||
this.BaseUri = new System.Uri("https://management.azure.com"); | ||
this.ApiVersion = "2018-09-01-preview"; | ||
this.AcceptLanguage = "en-US"; | ||
this.LongRunningOperationRetryTimeout = 30; | ||
this.GenerateClientRequestId = true; | ||
SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings | ||
{ | ||
Formatting = Newtonsoft.Json.Formatting.Indented, | ||
DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, | ||
DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, | ||
NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, | ||
ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, | ||
ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), | ||
Converters = new System.Collections.Generic.List<Newtonsoft.Json.JsonConverter> | ||
{ | ||
new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() | ||
} | ||
}; | ||
SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); | ||
DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings | ||
{ | ||
DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, | ||
DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, | ||
NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, | ||
ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, | ||
ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), | ||
Converters = new System.Collections.Generic.List<Newtonsoft.Json.JsonConverter> | ||
{ | ||
new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() | ||
} | ||
}; | ||
CustomInitialize(); | ||
DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); | ||
DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); | ||
} | ||
} | ||
} |
Oops, something went wrong.