diff --git a/sdk/avs/Microsoft.Azure.Management.Avs/src/Generated/Models/CommonClusterProperties.cs b/sdk/avs/Microsoft.Azure.Management.Avs/src/Generated/Models/CommonClusterProperties.cs
index aa02ad36a136..252963023db8 100644
--- a/sdk/avs/Microsoft.Azure.Management.Avs/src/Generated/Models/CommonClusterProperties.cs
+++ b/sdk/avs/Microsoft.Azure.Management.Avs/src/Generated/Models/CommonClusterProperties.cs
@@ -11,8 +11,6 @@
namespace Microsoft.Azure.Management.Avs.Models
{
using Newtonsoft.Json;
- using System.Collections;
- using System.Collections.Generic;
using System.Linq;
///
@@ -36,13 +34,11 @@ public CommonClusterProperties()
/// provisioning. Possible values include: 'Succeeded', 'Failed',
/// 'Cancelled', 'Deleting', 'Updating'
/// The identity
- /// The hosts
- public CommonClusterProperties(int? clusterSize = default(int?), string provisioningState = default(string), int? clusterId = default(int?), IList hosts = default(IList))
+ public CommonClusterProperties(int? clusterSize = default(int?), string provisioningState = default(string), int? clusterId = default(int?))
{
ClusterSize = clusterSize;
ProvisioningState = provisioningState;
ClusterId = clusterId;
- Hosts = hosts;
CustomInit();
}
@@ -70,11 +66,5 @@ public CommonClusterProperties()
[JsonProperty(PropertyName = "clusterId")]
public int? ClusterId { get; private set; }
- ///
- /// Gets or sets the hosts
- ///
- [JsonProperty(PropertyName = "hosts")]
- public IList Hosts { get; set; }
-
}
}
diff --git a/sdk/avs/Microsoft.Azure.Management.Avs/src/Generated/Models/ManagementCluster.cs b/sdk/avs/Microsoft.Azure.Management.Avs/src/Generated/Models/ManagementCluster.cs
index f02200e4a0b7..e330afc27ff5 100644
--- a/sdk/avs/Microsoft.Azure.Management.Avs/src/Generated/Models/ManagementCluster.cs
+++ b/sdk/avs/Microsoft.Azure.Management.Avs/src/Generated/Models/ManagementCluster.cs
@@ -10,6 +10,7 @@
namespace Microsoft.Azure.Management.Avs.Models
{
+ using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
@@ -37,8 +38,9 @@ public ManagementCluster()
/// The identity
/// The hosts
public ManagementCluster(int? clusterSize = default(int?), string provisioningState = default(string), int? clusterId = default(int?), IList hosts = default(IList))
- : base(clusterSize, provisioningState, clusterId, hosts)
+ : base(clusterSize, provisioningState, clusterId)
{
+ Hosts = hosts;
CustomInit();
}
@@ -47,5 +49,11 @@ public ManagementCluster()
///
partial void CustomInit();
+ ///
+ /// Gets the hosts
+ ///
+ [JsonProperty(PropertyName = "hosts")]
+ public IList Hosts { get; private set; }
+
}
}
diff --git a/sdk/avs/Microsoft.Azure.Management.Avs/src/Generated/SdkInfo_AzureVMwareSolutionAPI.cs b/sdk/avs/Microsoft.Azure.Management.Avs/src/Generated/SdkInfo_AzureVMwareSolutionAPI.cs
index 317f0ac445b9..33e3b4ce688b 100644
--- a/sdk/avs/Microsoft.Azure.Management.Avs/src/Generated/SdkInfo_AzureVMwareSolutionAPI.cs
+++ b/sdk/avs/Microsoft.Azure.Management.Avs/src/Generated/SdkInfo_AzureVMwareSolutionAPI.cs
@@ -38,16 +38,5 @@ public static IEnumerable> ApiInfo_AzureVMwareSolu
}.AsEnumerable();
}
}
- // BEGIN: Code Generation Metadata Section
- public static readonly String AutoRestVersion = "v2";
- public static readonly String AutoRestBootStrapperVersion = "autorest@3.2.1";
- public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/main/specification/vmware/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\Users\\cataggar\\io\\azure-sdk-for-net\\sdk";
- public static readonly String GithubForkName = "Azure";
- public static readonly String GithubBranchName = "main";
- public static readonly String GithubCommidId = "18479a01a549e9942ea38da8761919066aa87234";
- public static readonly String CodeGenerationErrors = "";
- public static readonly String GithubRepoName = "azure-rest-api-specs";
- // END: Code Generation Metadata Section
}
}
-