diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/CustomDomainsOperations.cs b/src/SDKs/Cdn/Management.Cdn/Generated/CustomDomainsOperations.cs index 63eb7b9ca484..3a85e85f60d2 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/CustomDomainsOperations.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/CustomDomainsOperations.cs @@ -772,28 +772,6 @@ internal CustomDomainsOperations(CdnManagementClient client) return _result; } - public async Task> EnableCustomHttpsWithHttpMessagesAsync( - string resourceGroupName, - string profileName, - string endpointName, - string customDomainName, - CustomDomainHttpsParameters customDomainHttpsParameters = default(CustomDomainHttpsParameters), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginEnableCustomHttpsWithHttpMessagesAsync( - resourceGroupName, - profileName, - endpointName, - customDomainName, - customDomainHttpsParameters, - customHeaders, - cancellationToken) - .ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// Enable https delivery of the custom domain. /// @@ -835,14 +813,7 @@ public async Task> EnableCustomHttpsWithHtt /// /// A response object containing the response body and response headers. /// - public async Task> BeginEnableCustomHttpsWithHttpMessagesAsync( - string resourceGroupName, - string profileName, - string endpointName, - string customDomainName, - CustomDomainHttpsParameters customDomainHttpsParameters = default(CustomDomainHttpsParameters), - Dictionary> customHeaders = null, - CancellationToken cancellationToken = default(CancellationToken)) + public async Task> EnableCustomHttpsWithHttpMessagesAsync(string resourceGroupName, string profileName, string endpointName, string customDomainName, CustomDomainHttpsParameters customDomainHttpsParameters = default(CustomDomainHttpsParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/Sku.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/Sku.cs index aff0802b32d2..28a9e8be7c78 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/Models/Sku.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/Sku.cs @@ -32,7 +32,7 @@ public Sku() /// /// Name of the pricing tier. Possible values /// include: 'Standard_Verizon', 'Premium_Verizon', 'Custom_Verizon', - /// 'Standard_Akamai', 'Standard_ChinaCdn', + /// 'Standard_Akamai', 'Standard_ChinaCdn', 'Premium_ChinaCdn', /// 'Standard_Microsoft' public Sku(string name = default(string)) { @@ -48,7 +48,8 @@ public Sku() /// /// Gets or sets name of the pricing tier. Possible values include: /// 'Standard_Verizon', 'Premium_Verizon', 'Custom_Verizon', - /// 'Standard_Akamai', 'Standard_ChinaCdn', 'Standard_Microsoft' + /// 'Standard_Akamai', 'Standard_ChinaCdn', 'Premium_ChinaCdn', + /// 'Standard_Microsoft' /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } diff --git a/src/SDKs/Cdn/Management.Cdn/Generated/Models/SkuName.cs b/src/SDKs/Cdn/Management.Cdn/Generated/Models/SkuName.cs index 078718b50323..a39197b12a1d 100644 --- a/src/SDKs/Cdn/Management.Cdn/Generated/Models/SkuName.cs +++ b/src/SDKs/Cdn/Management.Cdn/Generated/Models/SkuName.cs @@ -21,6 +21,7 @@ public static class SkuName public const string CustomVerizon = "Custom_Verizon"; public const string StandardAkamai = "Standard_Akamai"; public const string StandardChinaCdn = "Standard_ChinaCdn"; + public const string PremiumChinaCdn = "Premium_ChinaCdn"; public const string StandardMicrosoft = "Standard_Microsoft"; } }