diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterCreateProperties.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterCreateProperties.cs
index 9ad3c235fce0..81d17e452f41 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterCreateProperties.cs
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterCreateProperties.cs
@@ -42,7 +42,9 @@ public ClusterCreateProperties()
/// The storage profile.
/// The disk encryption
/// properties.
- public ClusterCreateProperties(string clusterVersion = default(string), OSType? osType = default(OSType?), Tier? tier = default(Tier?), ClusterDefinition clusterDefinition = default(ClusterDefinition), KafkaRestProperties kafkaRestProperties = default(KafkaRestProperties), SecurityProfile securityProfile = default(SecurityProfile), ComputeProfile computeProfile = default(ComputeProfile), StorageProfile storageProfile = default(StorageProfile), DiskEncryptionProperties diskEncryptionProperties = default(DiskEncryptionProperties))
+ /// The minimal supported tls
+ /// version.
+ public ClusterCreateProperties(string clusterVersion = default(string), OSType? osType = default(OSType?), Tier? tier = default(Tier?), ClusterDefinition clusterDefinition = default(ClusterDefinition), KafkaRestProperties kafkaRestProperties = default(KafkaRestProperties), SecurityProfile securityProfile = default(SecurityProfile), ComputeProfile computeProfile = default(ComputeProfile), StorageProfile storageProfile = default(StorageProfile), DiskEncryptionProperties diskEncryptionProperties = default(DiskEncryptionProperties), string minSupportedTlsVersion = default(string))
{
ClusterVersion = clusterVersion;
OsType = osType;
@@ -53,6 +55,7 @@ public ClusterCreateProperties()
ComputeProfile = computeProfile;
StorageProfile = storageProfile;
DiskEncryptionProperties = diskEncryptionProperties;
+ MinSupportedTlsVersion = minSupportedTlsVersion;
CustomInit();
}
@@ -117,5 +120,11 @@ public ClusterCreateProperties()
[JsonProperty(PropertyName = "diskEncryptionProperties")]
public DiskEncryptionProperties DiskEncryptionProperties { get; set; }
+ ///
+ /// Gets or sets the minimal supported tls version.
+ ///
+ [JsonProperty(PropertyName = "minSupportedTlsVersion")]
+ public string MinSupportedTlsVersion { get; set; }
+
}
}
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterGetProperties.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterGetProperties.cs
index 0bec08487c26..e78a7fefe5e5 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterGetProperties.cs
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterGetProperties.cs
@@ -54,7 +54,9 @@ public ClusterGetProperties()
/// endpoints.
/// The disk encryption
/// properties.
- public ClusterGetProperties(ClusterDefinition clusterDefinition, string clusterVersion = default(string), OSType? osType = default(OSType?), Tier? tier = default(Tier?), KafkaRestProperties kafkaRestProperties = default(KafkaRestProperties), SecurityProfile securityProfile = default(SecurityProfile), ComputeProfile computeProfile = default(ComputeProfile), HDInsightClusterProvisioningState? provisioningState = default(HDInsightClusterProvisioningState?), string createdDate = default(string), string clusterState = default(string), QuotaInfo quotaInfo = default(QuotaInfo), IList errors = default(IList), IList connectivityEndpoints = default(IList), DiskEncryptionProperties diskEncryptionProperties = default(DiskEncryptionProperties))
+ /// The minimal supported tls
+ /// version.
+ public ClusterGetProperties(ClusterDefinition clusterDefinition, string clusterVersion = default(string), OSType? osType = default(OSType?), Tier? tier = default(Tier?), KafkaRestProperties kafkaRestProperties = default(KafkaRestProperties), SecurityProfile securityProfile = default(SecurityProfile), ComputeProfile computeProfile = default(ComputeProfile), HDInsightClusterProvisioningState? provisioningState = default(HDInsightClusterProvisioningState?), string createdDate = default(string), string clusterState = default(string), QuotaInfo quotaInfo = default(QuotaInfo), IList errors = default(IList), IList connectivityEndpoints = default(IList), DiskEncryptionProperties diskEncryptionProperties = default(DiskEncryptionProperties), string minSupportedTlsVersion = default(string))
{
ClusterVersion = clusterVersion;
OsType = osType;
@@ -70,6 +72,7 @@ public ClusterGetProperties()
Errors = errors;
ConnectivityEndpoints = connectivityEndpoints;
DiskEncryptionProperties = diskEncryptionProperties;
+ MinSupportedTlsVersion = minSupportedTlsVersion;
CustomInit();
}
@@ -166,6 +169,12 @@ public ClusterGetProperties()
[JsonProperty(PropertyName = "diskEncryptionProperties")]
public DiskEncryptionProperties DiskEncryptionProperties { get; set; }
+ ///
+ /// Gets or sets the minimal supported tls version.
+ ///
+ [JsonProperty(PropertyName = "minSupportedTlsVersion")]
+ public string MinSupportedTlsVersion { get; set; }
+
///
/// Validate the object.
///
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/SdkInfo_HDInsightManagementClient.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/SdkInfo_HDInsightManagementClient.cs
index 8371f35c60f8..d0f73eb34694 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/SdkInfo_HDInsightManagementClient.cs
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/SdkInfo_HDInsightManagementClient.cs
@@ -30,16 +30,5 @@ public static IEnumerable> ApiInfo_HDInsightManage
}.AsEnumerable();
}
}
- // BEGIN: Code Generation Metadata Section
- public static readonly String AutoRestVersion = "latest";
- public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4407";
- public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/hdinsight/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=F:\\source\\azure-sdk-for-net\\sdk";
- public static readonly String GithubForkName = "Azure";
- public static readonly String GithubBranchName = "master";
- public static readonly String GithubCommidId = "fbc094f3097e954f008f8f415a2f95a6dfa3c13b";
- public static readonly String CodeGenerationErrors = "";
- public static readonly String GithubRepoName = "azure-rest-api-specs";
- // END: Code Generation Metadata Section
}
}
-