Class DeleteCustomNarConfigurationResponse
- java.lang.Object
-
- com.cloudera.cdp.client.BaseResponse
-
- com.cloudera.cdp.client.CdpResponse
-
- com.cloudera.cdp.dfworkload.model.DeleteCustomNarConfigurationResponse
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:54.557-07:00") public class DeleteCustomNarConfigurationResponse extends CdpResponse
Response object for deleting a custom NAR configuration.
-
-
Field Summary
-
Fields inherited from class com.cloudera.cdp.client.CdpResponse
ALTUS_HEADER_REQUESTID, CDP_HEADER_REQUESTID
-
-
Constructor Summary
Constructors Constructor Description DeleteCustomNarConfigurationResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Integer
getConfigurationVersion()
Getter for configurationVersion.String
getCrn()
Getter for crn.String
getPassword()
Getter for password.String
getStorageLocation()
Getter for storageLocation.String
getUsername()
Getter for username.int
hashCode()
void
setConfigurationVersion(Integer configurationVersion)
Setter for configurationVersion.void
setCrn(String crn)
Setter for crn.void
setPassword(String password)
Setter for password.void
setStorageLocation(String storageLocation)
Setter for storageLocation.void
setUsername(String username)
Setter for username.String
toString()
-
Methods inherited from class com.cloudera.cdp.client.CdpResponse
getRequestId
-
Methods inherited from class com.cloudera.cdp.client.BaseResponse
getHttpCode, getResponseHeaders
-
-
-
-
Method Detail
-
getUsername
public String getUsername()
Getter for username. The username used to access the storage location
-
setUsername
public void setUsername(String username)
Setter for username. The username used to access the storage location
-
getPassword
public String getPassword()
Getter for password. The password used to access the storage location
-
setPassword
public void setPassword(String password)
Setter for password. The password used to access the storage location
-
getStorageLocation
public String getStorageLocation()
Getter for storageLocation. The storage location, such as an S3 bucket or ADLS container
-
setStorageLocation
public void setStorageLocation(String storageLocation)
Setter for storageLocation. The storage location, such as an S3 bucket or ADLS container
-
getConfigurationVersion
public Integer getConfigurationVersion()
Getter for configurationVersion. The version of the configuration
-
setConfigurationVersion
public void setConfigurationVersion(Integer configurationVersion)
Setter for configurationVersion. The version of the configuration
-
getCrn
public String getCrn()
Getter for crn. The CRN of the custom NAR configuration to update.
-
setCrn
public void setCrn(String crn)
Setter for crn. The CRN of the custom NAR configuration to update.
-
-