Package com.cloudera.cdp.audit.model
Class ConfigureArchivingRequest
- java.lang.Object
-
- com.cloudera.cdp.audit.model.ConfigureArchivingRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:41.921-08:00") public class ConfigureArchivingRequest extends Object
Request object for the ConfigureArchiving method.
-
-
Constructor Summary
Constructors Constructor Description ConfigureArchivingRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getCredentialName()
Getter for credentialName.Boolean
getEnabled()
Getter for enabled.String
getStorageLocation()
Getter for storageLocation.String
getStorageRegion()
Getter for storageRegion.Boolean
getVerifyOnly()
Getter for verifyOnly.int
hashCode()
void
setCredentialName(String credentialName)
Setter for credentialName.void
setEnabled(Boolean enabled)
Setter for enabled.void
setStorageLocation(String storageLocation)
Setter for storageLocation.void
setStorageRegion(String storageRegion)
Setter for storageRegion.void
setVerifyOnly(Boolean verifyOnly)
Setter for verifyOnly.String
toString()
-
-
-
Method Detail
-
getStorageLocation
public String getStorageLocation()
Getter for storageLocation. The destination for the logs, e.g. S3 bucket name
-
setStorageLocation
public void setStorageLocation(String storageLocation)
Setter for storageLocation. The destination for the logs, e.g. S3 bucket name
-
getCredentialName
public String getCredentialName()
Getter for credentialName. The credential name or CRN to use
-
setCredentialName
public void setCredentialName(String credentialName)
Setter for credentialName. The credential name or CRN to use
-
getEnabled
public Boolean getEnabled()
Getter for enabled. Flag to enable/disable the archiving process
-
setEnabled
public void setEnabled(Boolean enabled)
Setter for enabled. Flag to enable/disable the archiving process
-
getStorageRegion
public String getStorageRegion()
Getter for storageRegion. The region to work with when accessing the logs, e.g. S3 region
-
setStorageRegion
public void setStorageRegion(String storageRegion)
Setter for storageRegion. The region to work with when accessing the logs, e.g. S3 region
-
getVerifyOnly
public Boolean getVerifyOnly()
Getter for verifyOnly. Whether to only verify the configuration, and not update it.
-
setVerifyOnly
public void setVerifyOnly(Boolean verifyOnly)
Setter for verifyOnly. Whether to only verify the configuration, and not update it.
-
-