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
6 changes: 3 additions & 3 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.3.2</version>
<relativePath>../../parents/azure-arm-parent/pom.xml</relativePath>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-hdinsight</artifactId>
<version>1.3.4</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 @@ -46,6 +46,12 @@ public class DiskEncryptionProperties {
@JsonProperty(value = "msiResourceId")
private String msiResourceId;

/**
* Indicates whether or not resource disk encryption is enabled.
*/
@JsonProperty(value = "encryptionAtHost")
private Boolean encryptionAtHost;

/**
* Get base key vault URI where the customers key is located eg. https://myvault.vault.azure.net.
*
Expand Down Expand Up @@ -146,4 +152,24 @@ public DiskEncryptionProperties withMsiResourceId(String msiResourceId) {
return this;
}

/**
* Get indicates whether or not resource disk encryption is enabled.
*
* @return the encryptionAtHost value
*/
public Boolean encryptionAtHost() {
return this.encryptionAtHost;
}

/**
* Set indicates whether or not resource disk encryption is enabled.
*
* @param encryptionAtHost the encryptionAtHost value to set
* @return the DiskEncryptionProperties object itself.
*/
public DiskEncryptionProperties withEncryptionAtHost(Boolean encryptionAtHost) {
this.encryptionAtHost = encryptionAtHost;
return this;
}

}