Package com.cloudera.cdp.dw.model
Class RebuildVwRequest
- java.lang.Object
-
- com.cloudera.cdp.dw.model.RebuildVwRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:51.717-07:00") public class RebuildVwRequest extends Object
Request object for the rebuildVw method.
-
-
Constructor Summary
Constructors Constructor Description RebuildVwRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getClusterId()
Getter for clusterId.Boolean
getKeepImageVersion()
Getter for keepImageVersion.String
getVwId()
Getter for vwId.int
hashCode()
void
setClusterId(String clusterId)
Setter for clusterId.void
setKeepImageVersion(Boolean keepImageVersion)
Setter for keepImageVersion.void
setVwId(String vwId)
Setter for vwId.String
toString()
-
-
-
Method Detail
-
getClusterId
public String getClusterId()
Getter for clusterId. ID of the Virtual Warehouse's cluster.
-
setClusterId
public void setClusterId(String clusterId)
Setter for clusterId. ID of the Virtual Warehouse's cluster.
-
getVwId
public String getVwId()
Getter for vwId. ID of the Virtual Warehouse to rebuild.
-
setVwId
public void setVwId(String vwId)
Setter for vwId. ID of the Virtual Warehouse to rebuild.
-
getKeepImageVersion
public Boolean getKeepImageVersion()
Getter for keepImageVersion. Set it to true to keep the current image version. Set it to false to use the latest image version when rebuilding the Virtual Warehouse. If not provided, the latest image version will be set.
-
setKeepImageVersion
public void setKeepImageVersion(Boolean keepImageVersion)
Setter for keepImageVersion. Set it to true to keep the current image version. Set it to false to use the latest image version when rebuilding the Virtual Warehouse. If not provided, the latest image version will be set.
-
-