Package com.cloudera.cdp.datahub.model
Class CustomConfigurationPropertyRequest
- java.lang.Object
-
- com.cloudera.cdp.datahub.model.CustomConfigurationPropertyRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:50.892-07:00") public class CustomConfigurationPropertyRequest extends Object
The request object for the custom configuration property request.
-
-
Constructor Summary
Constructors Constructor Description CustomConfigurationPropertyRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getConfigName()
Getter for configName.String
getConfigValue()
Getter for configValue.String
getRoleType()
Getter for roleType.String
getServiceType()
Getter for serviceType.int
hashCode()
void
setConfigName(String configName)
Setter for configName.void
setConfigValue(String configValue)
Setter for configValue.void
setRoleType(String roleType)
Setter for roleType.void
setServiceType(String serviceType)
Setter for serviceType.String
toString()
-
-
-
Method Detail
-
getConfigName
public String getConfigName()
Getter for configName. The name of the custom configuration property.
-
setConfigName
public void setConfigName(String configName)
Setter for configName. The name of the custom configuration property.
-
getConfigValue
public String getConfigValue()
Getter for configValue. The value of the custom configuration property.
-
setConfigValue
public void setConfigValue(String configValue)
Setter for configValue. The value of the custom configuration property.
-
getServiceType
public String getServiceType()
Getter for serviceType. The service under which the custom configuration property belongs.
-
setServiceType
public void setServiceType(String serviceType)
Setter for serviceType. The service under which the custom configuration property belongs.
-
getRoleType
public String getRoleType()
Getter for roleType. The role within the service type.
-
setRoleType
public void setRoleType(String roleType)
Setter for roleType. The role within the service type.
-
-