From 711185ce69ddfa1744df3100f7514a4c1f9d5555 Mon Sep 17 00:00:00 2001 From: Chuang <54572251+xccc-msft@users.noreply.github.com> Date: Thu, 20 Feb 2020 10:35:20 +0800 Subject: [PATCH] HDinsight: regenerate package v2018_06_01_preview (#7492) * HDinsight: regenerate package v2018_06_01_preview * HDinsight: regenerate package v2018_06_01 * HDinsight: update pom --- .../mgmt-v2018_06_01_preview/pom.xml | 2 +- .../ClusterCreateProperties.java | 26 +++++++++++++++++++ .../ClusterGetProperties.java | 26 +++++++++++++++++++ 3 files changed, 53 insertions(+), 1 deletion(-) diff --git a/sdk/hdinsight/mgmt-v2018_06_01_preview/pom.xml b/sdk/hdinsight/mgmt-v2018_06_01_preview/pom.xml index 2bb2388832b53..d80e5051a173c 100644 --- a/sdk/hdinsight/mgmt-v2018_06_01_preview/pom.xml +++ b/sdk/hdinsight/mgmt-v2018_06_01_preview/pom.xml @@ -15,7 +15,7 @@ ../../../pom.management.xml azure-mgmt-hdinsight - 1.2.0 + 1.3.1 jar Microsoft Azure SDK for HDInsight Management This package contains Microsoft HDInsight Management SDK. diff --git a/sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ClusterCreateProperties.java b/sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ClusterCreateProperties.java index ffb584371e23a..ee0e119e1f930 100644 --- a/sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ClusterCreateProperties.java +++ b/sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ClusterCreateProperties.java @@ -69,6 +69,12 @@ public class ClusterCreateProperties { @JsonProperty(value = "diskEncryptionProperties") private DiskEncryptionProperties diskEncryptionProperties; + /** + * The minimal supported tls version. + */ + @JsonProperty(value = "minSupportedTlsVersion") + private String minSupportedTlsVersion; + /** * Get the version of the cluster. * @@ -249,4 +255,24 @@ public ClusterCreateProperties withDiskEncryptionProperties(DiskEncryptionProper return this; } + /** + * Get the minimal supported tls version. + * + * @return the minSupportedTlsVersion value + */ + public String minSupportedTlsVersion() { + return this.minSupportedTlsVersion; + } + + /** + * Set the minimal supported tls version. + * + * @param minSupportedTlsVersion the minSupportedTlsVersion value to set + * @return the ClusterCreateProperties object itself. + */ + public ClusterCreateProperties withMinSupportedTlsVersion(String minSupportedTlsVersion) { + this.minSupportedTlsVersion = minSupportedTlsVersion; + return this; + } + } diff --git a/sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ClusterGetProperties.java b/sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ClusterGetProperties.java index 3c653556af90f..36634a6b967ba 100644 --- a/sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ClusterGetProperties.java +++ b/sdk/hdinsight/mgmt-v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ClusterGetProperties.java @@ -102,6 +102,12 @@ public class ClusterGetProperties { @JsonProperty(value = "diskEncryptionProperties") private DiskEncryptionProperties diskEncryptionProperties; + /** + * The minimal supported tls version. + */ + @JsonProperty(value = "minSupportedTlsVersion") + private String minSupportedTlsVersion; + /** * Get the version of the cluster. * @@ -382,4 +388,24 @@ public ClusterGetProperties withDiskEncryptionProperties(DiskEncryptionPropertie return this; } + /** + * Get the minimal supported tls version. + * + * @return the minSupportedTlsVersion value + */ + public String minSupportedTlsVersion() { + return this.minSupportedTlsVersion; + } + + /** + * Set the minimal supported tls version. + * + * @param minSupportedTlsVersion the minSupportedTlsVersion value to set + * @return the ClusterGetProperties object itself. + */ + public ClusterGetProperties withMinSupportedTlsVersion(String minSupportedTlsVersion) { + this.minSupportedTlsVersion = minSupportedTlsVersion; + return this; + } + }