Package com.cloudera.cdp.dw.model
Class UpdateDbcRequest
- java.lang.Object
-
- com.cloudera.cdp.dw.model.UpdateDbcRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:39.820-08:00") public class UpdateDbcRequest extends Object
Request object for the updateDbc method.
-
-
Constructor Summary
Constructors Constructor Description UpdateDbcRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getClusterId()
Getter for clusterId.ServiceConfigReq
getConfig()
Getter for config.String
getDbcId()
Getter for dbcId.int
hashCode()
void
setClusterId(String clusterId)
Setter for clusterId.void
setConfig(ServiceConfigReq config)
Setter for config.void
setDbcId(String dbcId)
Setter for dbcId.String
toString()
-
-
-
Method Detail
-
getClusterId
public String getClusterId()
Getter for clusterId. ID of the Database Catalog's cluster.
-
setClusterId
public void setClusterId(String clusterId)
Setter for clusterId. ID of the Database Catalog's cluster.
-
getDbcId
public String getDbcId()
Getter for dbcId. ID of the Database Catalog.
-
setDbcId
public void setDbcId(String dbcId)
Setter for dbcId. ID of the Database Catalog.
-
getConfig
public ServiceConfigReq getConfig()
Getter for config. The service configuration to update the DBC with. This will be applied on top of the existing configuration so there's no need to list configurations that stay the same.
-
setConfig
public void setConfig(ServiceConfigReq config)
Setter for config. The service configuration to update the DBC with. This will be applied on top of the existing configuration so there's no need to list configurations that stay the same.
-
-