Class UploadAssetRequest
- java.lang.Object
-
- com.cloudera.cdp.dfworkload.model.UploadAssetRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:19.979-07:00") public class UploadAssetRequest extends Object
Request object for uploading an asset
-
-
Constructor Summary
Constructors Constructor Description UploadAssetRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAssetUpdateRequestCrn()
Getter for assetUpdateRequestCrn.String
getDeploymentName()
Getter for deploymentName.String
getDeploymentRequestCrn()
Getter for deploymentRequestCrn.String
getEnvironmentCrn()
Getter for environmentCrn.String
getFilePath()
Getter for filePath.String
getParameterGroup()
Getter for parameterGroup.String
getParameterName()
Getter for parameterName.int
hashCode()
void
setAssetUpdateRequestCrn(String assetUpdateRequestCrn)
Setter for assetUpdateRequestCrn.void
setDeploymentName(String deploymentName)
Setter for deploymentName.void
setDeploymentRequestCrn(String deploymentRequestCrn)
Setter for deploymentRequestCrn.void
setEnvironmentCrn(String environmentCrn)
Setter for environmentCrn.void
setFilePath(String filePath)
Setter for filePath.void
setParameterGroup(String parameterGroup)
Setter for parameterGroup.void
setParameterName(String parameterName)
Setter for parameterName.String
toString()
-
-
-
Method Detail
-
getEnvironmentCrn
public String getEnvironmentCrn()
Getter for environmentCrn. The CRN of an environment to execute the command.
-
setEnvironmentCrn
public void setEnvironmentCrn(String environmentCrn)
Setter for environmentCrn. The CRN of an environment to execute the command.
-
getParameterGroup
public String getParameterGroup()
Getter for parameterGroup. The name of the parameter group
-
setParameterGroup
public void setParameterGroup(String parameterGroup)
Setter for parameterGroup. The name of the parameter group
-
getParameterName
public String getParameterName()
Getter for parameterName. The name of the parameter within the parameter group
-
setParameterName
public void setParameterName(String parameterName)
Setter for parameterName. The name of the parameter within the parameter group
-
getFilePath
public String getFilePath()
Getter for filePath. The full local path to the file being uploaded
-
setFilePath
public void setFilePath(String filePath)
Setter for filePath. The full local path to the file being uploaded
-
getDeploymentRequestCrn
public String getDeploymentRequestCrn()
Getter for deploymentRequestCrn. The CRN of the deployment request. Required during initial deployment.
-
setDeploymentRequestCrn
public void setDeploymentRequestCrn(String deploymentRequestCrn)
Setter for deploymentRequestCrn. The CRN of the deployment request. Required during initial deployment.
-
getDeploymentName
public String getDeploymentName()
Getter for deploymentName. The name of the deployment. Required during initial deployment.
-
setDeploymentName
public void setDeploymentName(String deploymentName)
Setter for deploymentName. The name of the deployment. Required during initial deployment.
-
getAssetUpdateRequestCrn
public String getAssetUpdateRequestCrn()
Getter for assetUpdateRequestCrn. The CRN of the asset update request. Required when updating assets of an existing deployment.
-
setAssetUpdateRequestCrn
public void setAssetUpdateRequestCrn(String assetUpdateRequestCrn)
Setter for assetUpdateRequestCrn. The CRN of the asset update request. Required when updating assets of an existing deployment.
-
-