Package com.cloudera.cdp.datahub.model
Class VolumeEncryptionRequest
- java.lang.Object
-
- com.cloudera.cdp.datahub.model.VolumeEncryptionRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:16.679-07:00") public class VolumeEncryptionRequest extends Object
Configurations for volume encryption.
-
-
Constructor Summary
Constructors Constructor Description VolumeEncryptionRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Boolean
getEnableEncryption()
Getter for enableEncryption.String
getEncryptionKey()
Getter for encryptionKey.int
hashCode()
void
setEnableEncryption(Boolean enableEncryption)
Setter for enableEncryption.void
setEncryptionKey(String encryptionKey)
Setter for encryptionKey.String
toString()
-
-
-
Method Detail
-
getEnableEncryption
public Boolean getEnableEncryption()
Getter for enableEncryption. Enable encyrption for all volumes in the instance group. Default is false.
-
setEnableEncryption
public void setEnableEncryption(Boolean enableEncryption)
Setter for enableEncryption. Enable encyrption for all volumes in the instance group. Default is false.
-
getEncryptionKey
public String getEncryptionKey()
Getter for encryptionKey. The ARN of the encryption key to use. If nothing is specified, the default key will be used.
-
setEncryptionKey
public void setEncryptionKey(String encryptionKey)
Setter for encryptionKey. The ARN of the encryption key to use. If nothing is specified, the default key will be used.
-
-