Package com.cloudera.cdp.dw.model
Class DescribeServerSettingItem
- java.lang.Object
-
- com.cloudera.cdp.dw.model.DescribeServerSettingItem
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:51.717-07:00") public class DescribeServerSettingItem extends Object
A DWX server setting.
-
-
Constructor Summary
Constructors Constructor Description DescribeServerSettingItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getConfigurationKey()
Getter for configurationKey.String
getConfigurationName()
Getter for configurationName.String
getDescription()
Getter for description.Boolean
getEnabled()
Getter for enabled.List<String>
getRequiresUpdate()
Getter for requiresUpdate.int
hashCode()
void
setConfigurationKey(String configurationKey)
Setter for configurationKey.void
setConfigurationName(String configurationName)
Setter for configurationName.void
setDescription(String description)
Setter for description.void
setEnabled(Boolean enabled)
Setter for enabled.void
setRequiresUpdate(List<String> requiresUpdate)
Setter for requiresUpdate.String
toString()
-
-
-
Method Detail
-
getConfigurationName
public String getConfigurationName()
Getter for configurationName. The name of the setting in human readable format.
-
setConfigurationName
public void setConfigurationName(String configurationName)
Setter for configurationName. The name of the setting in human readable format.
-
getConfigurationKey
public String getConfigurationKey()
Getter for configurationKey. The identifier of the setting.
-
setConfigurationKey
public void setConfigurationKey(String configurationKey)
Setter for configurationKey. The identifier of the setting.
-
getEnabled
public Boolean getEnabled()
Getter for enabled. The state of the setting.
-
setEnabled
public void setEnabled(Boolean enabled)
Setter for enabled. The state of the setting.
-
getDescription
public String getDescription()
Getter for description. The description of the setting.
-
setDescription
public void setDescription(String description)
Setter for description. The description of the setting.
-
getRequiresUpdate
public List<String> getRequiresUpdate()
Getter for requiresUpdate. Indicates update requirements for the change to take effect.
-
setRequiresUpdate
public void setRequiresUpdate(List<String> requiresUpdate)
Setter for requiresUpdate. Indicates update requirements for the change to take effect.
-
-