diff --git a/sdk/iotcentral/Microsoft.Azure.Management.IotCentral/src/Generated/Models/AppTemplate.cs b/sdk/iotcentral/Microsoft.Azure.Management.IotCentral/src/Generated/Models/AppTemplate.cs index 69a9d8092f1eb..94e3c1874e984 100644 --- a/sdk/iotcentral/Microsoft.Azure.Management.IotCentral/src/Generated/Models/AppTemplate.cs +++ b/sdk/iotcentral/Microsoft.Azure.Management.IotCentral/src/Generated/Models/AppTemplate.cs @@ -31,16 +31,16 @@ public AppTemplate() /// /// The ID of the template. /// The version of the template. - /// The name of the template. + /// The name of the template. /// The title of the template. /// The order of the template in the templates /// list. /// The description of the template. - public AppTemplate(string manifestId = default(string), string manifestVersion = default(string), string appTemplateName = default(string), string title = default(string), double? order = default(double?), string description = default(string)) + public AppTemplate(string manifestId = default(string), string manifestVersion = default(string), string name = default(string), string title = default(string), double? order = default(double?), string description = default(string)) { ManifestId = manifestId; ManifestVersion = manifestVersion; - AppTemplateName = appTemplateName; + Name = name; Title = title; Order = order; Description = description; @@ -67,8 +67,8 @@ public AppTemplate() /// /// Gets the name of the template. /// - [JsonProperty(PropertyName = "appTemplateName")] - public string AppTemplateName { get; private set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } /// /// Gets the title of the template. diff --git a/sdk/iotcentral/Microsoft.Azure.Management.IotCentral/src/Generated/SdkInfo_IotCentralClient.cs b/sdk/iotcentral/Microsoft.Azure.Management.IotCentral/src/Generated/SdkInfo_IotCentralClient.cs index 81ad266df4030..93a05f67db958 100644 --- a/sdk/iotcentral/Microsoft.Azure.Management.IotCentral/src/Generated/SdkInfo_IotCentralClient.cs +++ b/sdk/iotcentral/Microsoft.Azure.Management.IotCentral/src/Generated/SdkInfo_IotCentralClient.cs @@ -24,16 +24,5 @@ public static IEnumerable> ApiInfo_IotCentralClien }.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/iotcentral/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp.output-folder=C:\\Users\\rodelga\\Documents\\azure-sdk-for-net\\sdk\\iotcentral\\Microsoft.Azure.Management.IotCentral\\src\\Generated"; - public static readonly String GithubForkName = "Azure"; - public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "379847f2a8e8927a5d6c950e22d080fd04815277"; - public static readonly String CodeGenerationErrors = ""; - public static readonly String GithubRepoName = "azure-rest-api-specs"; - // END: Code Generation Metadata Section } } -