Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sdk/hdinsight/mgmt-v2018_06_01_preview/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.2.0</version>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-hdinsight</artifactId>
<version>1.2.0</version>
<version>1.0.0-beta</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;
}

}