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 apimanagement/resource-manager] Custom properties were updated to reflect all the possible values #3541

Closed
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
51 changes: 39 additions & 12 deletions sdk/apimanagement/arm-apimanagement/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2355,13 +2355,22 @@ export interface ApiManagementServiceBaseProperties {
*/
additionalLocations?: AdditionalLocation[];
/**
* Custom properties of the API Management service. Setting
* Custom properties of the API Management service.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168` will disable the
* cipher TLS_RSA_WITH_3DES_EDE_CBC_SHA for all TLS(1.0, 1.1 and 1.2). Setting
* cipher TLS_RSA_WITH_3DES_EDE_CBC_SHA for all TLS(1.0, 1.1 and 1.2).</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11` can be used to disable
* just TLS 1.1 and setting
* just TLS 1.1.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10` can be used to disable
* TLS 1.0 on an API Management service.
* TLS 1.0 on an API Management service.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11` can be used to
* disable just TLS 1.1 for communications with backends.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10` can be used to
* disable TLS 1.0 for communications with backends.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2` can be used to enable
* HTTP2 protocol on an API Management service.</br>Not specifying any of these properties on
* PATCH operation will reset omitted properties' values to their defaults. For all the settings
* except Http2 the default value is `True` if the service was created on or before April 1st
* 2018 and `False` otherwise. Http2 setting's default value is `False`.
*/
customProperties?: { [propertyName: string]: string };
/**
Expand Down Expand Up @@ -2505,13 +2514,22 @@ export interface ApiManagementServiceResource extends ApimResource {
*/
additionalLocations?: AdditionalLocation[];
/**
* Custom properties of the API Management service. Setting
* Custom properties of the API Management service.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168` will disable the
* cipher TLS_RSA_WITH_3DES_EDE_CBC_SHA for all TLS(1.0, 1.1 and 1.2). Setting
* cipher TLS_RSA_WITH_3DES_EDE_CBC_SHA for all TLS(1.0, 1.1 and 1.2).</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11` can be used to disable
* just TLS 1.1 and setting
* just TLS 1.1.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10` can be used to disable
* TLS 1.0 on an API Management service.
* TLS 1.0 on an API Management service.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11` can be used to
* disable just TLS 1.1 for communications with backends.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10` can be used to
* disable TLS 1.0 for communications with backends.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2` can be used to enable
* HTTP2 protocol on an API Management service.</br>Not specifying any of these properties on
* PATCH operation will reset omitted properties' values to their defaults. For all the settings
* except Http2 the default value is `True` if the service was created on or before April 1st
* 2018 and `False` otherwise. Http2 setting's default value is `False`.
*/
customProperties?: { [propertyName: string]: string };
/**
Expand Down Expand Up @@ -2639,13 +2657,22 @@ export interface ApiManagementServiceUpdateParameters extends ApimResource {
*/
additionalLocations?: AdditionalLocation[];
/**
* Custom properties of the API Management service. Setting
* Custom properties of the API Management service.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168` will disable the
* cipher TLS_RSA_WITH_3DES_EDE_CBC_SHA for all TLS(1.0, 1.1 and 1.2). Setting
* cipher TLS_RSA_WITH_3DES_EDE_CBC_SHA for all TLS(1.0, 1.1 and 1.2).</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11` can be used to disable
* just TLS 1.1 and setting
* just TLS 1.1.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10` can be used to disable
* TLS 1.0 on an API Management service.
* TLS 1.0 on an API Management service.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11` can be used to
* disable just TLS 1.1 for communications with backends.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10` can be used to
* disable TLS 1.0 for communications with backends.</br>Setting
* `Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2` can be used to enable
* HTTP2 protocol on an API Management service.</br>Not specifying any of these properties on
* PATCH operation will reset omitted properties' values to their defaults. For all the settings
* except Http2 the default value is `True` if the service was created on or before April 1st
* 2018 and `False` otherwise. Http2 setting's default value is `False`.
*/
customProperties?: { [propertyName: string]: string };
/**
Expand Down