-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[StorageSync] Add SDK helper (#26874)
* StorageSync Helper generator * generate powershell and fix XML * add CS1573 CS0114 warning skipped * update ChangeLog.md
- Loading branch information
Showing
33 changed files
with
3,755 additions
and
8 deletions.
There are no files selected for viewing
341 changes: 341 additions & 0 deletions
341
src/StorageSync/StorageSync.Helpers/Authorization/AuthorizationManagementClient.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,341 @@ | ||
// 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.PowerShell.Cmdlets.StorageSync.Helper.Authorization | ||
{ | ||
using System.Linq; | ||
using Microsoft.Rest; | ||
using Microsoft.Rest.Azure; | ||
using Models; | ||
|
||
/// <summary> | ||
/// Role based access control provides you a way to apply granular level policy | ||
/// administration down to individual resources or resource groups. These | ||
/// operations allow you to manage role definitions. A role definition | ||
/// describes the set of actions that can be performed on resources. | ||
/// </summary> | ||
public partial class AuthorizationManagementClient : Microsoft.Rest.ServiceClient<AuthorizationManagementClient>, IAuthorizationManagementClient, 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 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 IRoleDefinitionsOperations | ||
/// </summary> | ||
public virtual IRoleDefinitionsOperations RoleDefinitions { get; private set; } | ||
/// <summary> | ||
/// Gets the IRoleAssignmentsOperations | ||
/// </summary> | ||
public virtual IRoleAssignmentsOperations RoleAssignments { get; private set; } | ||
/// <summary> | ||
/// Initializes a new instance of the AuthorizationManagementClient class. | ||
/// </summary> | ||
/// <param name='httpClient'> | ||
/// HttpClient to be used | ||
/// </param> | ||
/// <param name='disposeHttpClient'> | ||
/// True: will dispose the provided httpClient on calling AuthorizationManagementClient.Dispose(). False: will not dispose provided httpClient</param> | ||
protected AuthorizationManagementClient(System.Net.Http.HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient) | ||
{ | ||
this.Initialize(); | ||
} | ||
/// <summary> | ||
/// Initializes a new instance of the AuthorizationManagementClient class. | ||
/// </summary> | ||
/// <param name='handlers'> | ||
/// Optional. The delegating handlers to add to the http client pipeline. | ||
/// </param> | ||
protected AuthorizationManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) | ||
{ | ||
this.Initialize(); | ||
} | ||
/// <summary> | ||
/// Initializes a new instance of the AuthorizationManagementClient 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 AuthorizationManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) | ||
{ | ||
this.Initialize(); | ||
} | ||
/// <summary> | ||
/// Initializes a new instance of the AuthorizationManagementClient 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 AuthorizationManagementClient(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 AuthorizationManagementClient 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 AuthorizationManagementClient(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 AuthorizationManagementClient 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 AuthorizationManagementClient(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 AuthorizationManagementClient 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 AuthorizationManagementClient.Dispose(). False: will not dispose provided httpClient</param> | ||
/// <exception cref="System.ArgumentNullException"> | ||
/// Thrown when a required parameter is null | ||
/// </exception> | ||
public AuthorizationManagementClient(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 AuthorizationManagementClient 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 AuthorizationManagementClient(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 AuthorizationManagementClient 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 AuthorizationManagementClient(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 AuthorizationManagementClient 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 AuthorizationManagementClient(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.RoleDefinitions = new RoleDefinitionsOperations(this); | ||
this.RoleAssignments = new RoleAssignmentsOperations(this); | ||
this.BaseUri = new System.Uri("https://management.azure.com"); | ||
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.