Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR Microsoft.Azure.Management.AnalysisServices] [Mirror] add clear-output-folder in resource-manager readme.typescript.md to f… #500

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,20 @@ public partial class AnalysisServicesManagementClient : ServiceClient<AnalysisSe
public string ApiVersion { get; private set; }

/// <summary>
/// Gets or sets the preferred language for the response.
/// The preferred language for the response.
/// </summary>
public string AcceptLanguage { get; set; }

/// <summary>
/// Gets or sets the retry timeout in seconds for Long Running Operations.
/// Default value is 30.
/// The retry timeout in seconds for Long Running Operations. Default value is
/// 30.
/// </summary>
public int? LongRunningOperationRetryTimeout { get; set; }

/// <summary>
/// When set to true a unique x-ms-client-request-id value is generated and
/// included in each request. Default is true.
/// 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; }

Expand All @@ -86,6 +87,19 @@ public partial class AnalysisServicesManagementClient : ServiceClient<AnalysisSe
/// </summary>
public virtual IOperations Operations { get; private set; }

/// <summary>
/// Initializes a new instance of the AnalysisServicesManagementClient class.
/// </summary>
/// <param name='httpClient'>
/// HttpClient to be used
/// </param>
/// <param name='disposeHttpClient'>
/// True: will dispose the provided httpClient on calling AnalysisServicesManagementClient.Dispose(). False: will not dispose provided httpClient</param>
protected AnalysisServicesManagementClient(HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient)
{
Initialize();
}

/// <summary>
/// Initializes a new instance of the AnalysisServicesManagementClient class.
/// </summary>
Expand Down Expand Up @@ -181,6 +195,33 @@ public AnalysisServicesManagementClient(ServiceClientCredentials credentials, pa
}
}

/// <summary>
/// Initializes a new instance of the AnalysisServicesManagementClient 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 AnalysisServicesManagementClient.Dispose(). False: will not dispose provided httpClient</param>
/// <exception cref="System.ArgumentNullException">
/// Thrown when a required parameter is null
/// </exception>
public AnalysisServicesManagementClient(ServiceClientCredentials credentials, HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient)
{
if (credentials == null)
{
throw new System.ArgumentNullException("credentials");
}
Credentials = credentials;
if (Credentials != null)
{
Credentials.InitializeServiceClient(this);
}
}

/// <summary>
/// Initializes a new instance of the AnalysisServicesManagementClient class.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,19 +54,20 @@ public partial interface IAnalysisServicesManagementClient : System.IDisposable
string ApiVersion { get; }

/// <summary>
/// Gets or sets the preferred language for the response.
/// The preferred language for the response.
/// </summary>
string AcceptLanguage { get; set; }

/// <summary>
/// Gets or sets the retry timeout in seconds for Long Running
/// Operations. Default value is 30.
/// The retry timeout in seconds for Long Running Operations. Default
/// value is 30.
/// </summary>
int? LongRunningOperationRetryTimeout { get; set; }

/// <summary>
/// When set to true a unique x-ms-client-request-id value is generated
/// and included in each request. Default is true.
/// 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>
bool? GenerateClientRequestId { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public partial interface IServersOperations
/// </exception>
Task<AzureOperationResponse<AnalysisServicesServer>> UpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, AnalysisServicesServerUpdateParameters serverUpdateParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Supends operation of the specified Analysis Services server
/// Suspends operation of the specified Analysis Services server
/// instance.
/// </summary>
/// <param name='resourceGroupName'>
Expand Down Expand Up @@ -503,7 +503,7 @@ public partial interface IServersOperations
/// </exception>
Task<AzureOperationResponse<AnalysisServicesServer>> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, AnalysisServicesServerUpdateParameters serverUpdateParameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Supends operation of the specified Analysis Services server
/// Suspends operation of the specified Analysis Services server
/// instance.
/// </summary>
/// <param name='resourceGroupName'>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.Analysis.Models
using System.Linq;

/// <summary>
/// The checking result of server name availibility.
/// The checking result of server name availability.
/// </summary>
public partial class CheckServerNameAvailabilityResult
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ public IPv4FirewallSettings()
/// Initializes a new instance of the IPv4FirewallSettings class.
/// </summary>
/// <param name="firewallRules">An array of firewall rules.</param>
/// <param name="enablePowerBIService">The indicator of enableing PBI
/// <param name="enablePowerBIService">The indicator of enabling PBI
/// service.</param>
public IPv4FirewallSettings(IList<IPv4FirewallRule> firewallRules = default(IList<IPv4FirewallRule>), string enablePowerBIService = default(string))
public IPv4FirewallSettings(IList<IPv4FirewallRule> firewallRules = default(IList<IPv4FirewallRule>), bool? enablePowerBIService = default(bool?))
{
FirewallRules = firewallRules;
EnablePowerBIService = enablePowerBIService;
Expand All @@ -53,10 +53,10 @@ public IPv4FirewallSettings(IList<IPv4FirewallRule> firewallRules = default(ILis
public IList<IPv4FirewallRule> FirewallRules { get; set; }

/// <summary>
/// Gets or sets the indicator of enableing PBI service.
/// Gets or sets the indicator of enabling PBI service.
/// </summary>
[JsonProperty(PropertyName = "enablePowerBIService")]
public string EnablePowerBIService { get; set; }
public bool? EnablePowerBIService { get; set; }

}
}
Original file line number Diff line number Diff line change
@@ -1,19 +1,28 @@

using System;
using System.Collections.Generic;
using System.Linq;
// <auto-generated>
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
// </auto-generated>

internal static partial class SdkInfo
namespace Microsoft.Azure.Management.Analysis
{
public static IEnumerable<Tuple<string, string, string>> ApiInfo_AzureAnalysisServices
{
get
{
return new Tuple<string, string, string>[]
{
using System;
using System.Collections.Generic;
using System.Linq;

internal static partial class SdkInfo
{
public static IEnumerable<Tuple<string, string, string>> ApiInfo_AzureAnalysisServices
{
get
{
return new Tuple<string, string, string>[]
{
new Tuple<string, string, string>("AnalysisServices", "Operations", "2017-08-01"),
new Tuple<string, string, string>("AnalysisServices", "Servers", "2017-08-01"),
}.AsEnumerable();
}
}
}.AsEnumerable();
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ public async Task<AzureOperationResponse<AnalysisServicesServer>> UpdateWithHttp
}

/// <summary>
/// Supends operation of the specified Analysis Services server instance.
/// Suspends operation of the specified Analysis Services server instance.
/// </summary>
/// <param name='resourceGroupName'>
/// The name of the Azure Resource group of which a given Analysis Services
Expand Down Expand Up @@ -2962,7 +2962,7 @@ public async Task<AzureOperationResponse<AnalysisServicesServer>> BeginUpdateWit
}

/// <summary>
/// Supends operation of the specified Analysis Services server instance.
/// Suspends operation of the specified Analysis Services server instance.
/// </summary>
/// <param name='resourceGroupName'>
/// The name of the Azure Resource group of which a given Analysis Services
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public static async Task<AnalysisServicesServer> UpdateAsync(this IServersOperat
}

/// <summary>
/// Supends operation of the specified Analysis Services server instance.
/// Suspends operation of the specified Analysis Services server instance.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand All @@ -239,7 +239,7 @@ public static void Suspend(this IServersOperations operations, string resourceGr
}

/// <summary>
/// Supends operation of the specified Analysis Services server instance.
/// Suspends operation of the specified Analysis Services server instance.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand Down Expand Up @@ -800,7 +800,7 @@ public static async Task<AnalysisServicesServer> BeginUpdateAsync(this IServersO
}

/// <summary>
/// Supends operation of the specified Analysis Services server instance.
/// Suspends operation of the specified Analysis Services server instance.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand All @@ -820,7 +820,7 @@ public static void BeginSuspend(this IServersOperations operations, string resou
}

/// <summary>
/// Supends operation of the specified Analysis Services server instance.
/// Suspends operation of the specified Analysis Services server instance.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand Down