Skip to content

Commit

Permalink
HDinsight: regenerate package v2018_06_01_preview (#7492)
Browse files Browse the repository at this point in the history
* HDinsight: regenerate package v2018_06_01_preview

* HDinsight: regenerate package v2018_06_01

* HDinsight: update pom
  • Loading branch information
xseeseesee authored Feb 20, 2020
1 parent 04c0996 commit 711185c
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/hdinsight/mgmt-v2018_06_01_preview/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-hdinsight</artifactId>
<version>1.2.0</version>
<version>1.3.1</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for HDInsight Management</name>
<description>This package contains Microsoft HDInsight Management SDK.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down Expand Up @@ -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;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down Expand Up @@ -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;
}

}

0 comments on commit 711185c

Please sign in to comment.