From ed15c0f6d6a6b1e1233cd0c056710d02be2a3840 Mon Sep 17 00:00:00 2001 From: SDKAuto Date: Fri, 5 Feb 2021 01:52:25 +0000 Subject: [PATCH] CodeGen from PR 12282 in Azure/azure-rest-api-specs Merge 2bc7d62c27bc338d6fc28f410529cb9d963440f2 into 32b7b579549d417d5a799b4d0527f5ad9dd73fc3 --- .../src/Generated/Models/AppResourceProperties.cs | 11 ++++++++++- .../Generated/SdkInfo_AppPlatformManagementClient.cs | 11 ----------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/sdk/appplatform/Microsoft.Azure.Management.AppPlatform/src/Generated/Models/AppResourceProperties.cs b/sdk/appplatform/Microsoft.Azure.Management.AppPlatform/src/Generated/Models/AppResourceProperties.cs index 269c2197b7061..012eaf6f7b77d 100644 --- a/sdk/appplatform/Microsoft.Azure.Management.AppPlatform/src/Generated/Models/AppResourceProperties.cs +++ b/sdk/appplatform/Microsoft.Azure.Management.AppPlatform/src/Generated/Models/AppResourceProperties.cs @@ -39,11 +39,13 @@ public AppResourceProperties() /// the App /// Fully qualified dns Name. /// Indicate if only https is allowed. + /// Indicate if end to end TLS is + /// enabled. /// Date time when the resource is /// created /// Temporary disk settings /// Persistent disk settings - public AppResourceProperties(bool? publicProperty = default(bool?), string url = default(string), string provisioningState = default(string), string activeDeploymentName = default(string), string fqdn = default(string), bool? httpsOnly = default(bool?), System.DateTime? createdTime = default(System.DateTime?), TemporaryDisk temporaryDisk = default(TemporaryDisk), PersistentDisk persistentDisk = default(PersistentDisk)) + public AppResourceProperties(bool? publicProperty = default(bool?), string url = default(string), string provisioningState = default(string), string activeDeploymentName = default(string), string fqdn = default(string), bool? httpsOnly = default(bool?), bool? enableEndToEndTLS = default(bool?), System.DateTime? createdTime = default(System.DateTime?), TemporaryDisk temporaryDisk = default(TemporaryDisk), PersistentDisk persistentDisk = default(PersistentDisk)) { PublicProperty = publicProperty; Url = url; @@ -51,6 +53,7 @@ public AppResourceProperties() ActiveDeploymentName = activeDeploymentName; Fqdn = fqdn; HttpsOnly = httpsOnly; + EnableEndToEndTLS = enableEndToEndTLS; CreatedTime = createdTime; TemporaryDisk = temporaryDisk; PersistentDisk = persistentDisk; @@ -99,6 +102,12 @@ public AppResourceProperties() [JsonProperty(PropertyName = "httpsOnly")] public bool? HttpsOnly { get; set; } + /// + /// Gets or sets indicate if end to end TLS is enabled. + /// + [JsonProperty(PropertyName = "enableEndToEndTLS")] + public bool? EnableEndToEndTLS { get; set; } + /// /// Gets date time when the resource is created /// diff --git a/sdk/appplatform/Microsoft.Azure.Management.AppPlatform/src/Generated/SdkInfo_AppPlatformManagementClient.cs b/sdk/appplatform/Microsoft.Azure.Management.AppPlatform/src/Generated/SdkInfo_AppPlatformManagementClient.cs index b4f7ac3dd433e..ea7c4528e6683 100644 --- a/sdk/appplatform/Microsoft.Azure.Management.AppPlatform/src/Generated/SdkInfo_AppPlatformManagementClient.cs +++ b/sdk/appplatform/Microsoft.Azure.Management.AppPlatform/src/Generated/SdkInfo_AppPlatformManagementClient.cs @@ -33,16 +33,5 @@ public static IEnumerable> ApiInfo_AppPlatformMana }.AsEnumerable(); } } - // BEGIN: Code Generation Metadata Section - public static readonly String AutoRestVersion = "v2"; - public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/appplatform/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\Users\\qingyliu\\source\\repos\\azure-sdk-for-net\\sdk"; - public static readonly String GithubForkName = "Azure"; - public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "ae80fcbd2196ae8b0ecb6247dce59457d95e01f6"; - public static readonly String CodeGenerationErrors = ""; - public static readonly String GithubRepoName = "azure-rest-api-specs"; - // END: Code Generation Metadata Section } } -