Package com.cloudera.cdp.datahub.model
Class CustomConfigurations
- java.lang.Object
-
- com.cloudera.cdp.datahub.model.CustomConfigurations
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:50.892-07:00") public class CustomConfigurations extends Object
Information about custom configurations.
-
-
Constructor Summary
Constructors Constructor Description CustomConfigurations()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAccountId()
Getter for accountId.List<CustomConfigurationProperty>
getConfigurations()
Getter for configurations.String
getCrn()
Getter for crn.String
getName()
Getter for name.String
getRuntimeVersion()
Getter for runtimeVersion.int
hashCode()
void
setAccountId(String accountId)
Setter for accountId.void
setConfigurations(List<CustomConfigurationProperty> configurations)
Setter for configurations.void
setCrn(String crn)
Setter for crn.void
setName(String name)
Setter for name.void
setRuntimeVersion(String runtimeVersion)
Setter for runtimeVersion.String
toString()
-
-
-
Method Detail
-
getName
public String getName()
Getter for name. The name of the custom configurations.
-
setName
public void setName(String name)
Setter for name. The name of the custom configurations.
-
getCrn
public String getCrn()
Getter for crn. The CRN of the custom configurations.
-
setCrn
public void setCrn(String crn)
Setter for crn. The CRN of the custom configurations.
-
getConfigurations
public List<CustomConfigurationProperty> getConfigurations()
Getter for configurations. The custom configuration properties.
-
setConfigurations
public void setConfigurations(List<CustomConfigurationProperty> configurations)
Setter for configurations. The custom configuration properties.
-
getRuntimeVersion
public String getRuntimeVersion()
Getter for runtimeVersion. The runtime version of the custom configurations.
-
setRuntimeVersion
public void setRuntimeVersion(String runtimeVersion)
Setter for runtimeVersion. The runtime version of the custom configurations.
-
getAccountId
public String getAccountId()
Getter for accountId. The account ID that was used for creating custom configurations.
-
setAccountId
public void setAccountId(String accountId)
Setter for accountId. The account ID that was used for creating custom configurations.
-
-