Package com.cloudera.cdp.dw.model
Class ConfigBlockResp
- java.lang.Object
-
- com.cloudera.cdp.dw.model.ConfigBlockResp
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:17.249-07:00") public class ConfigBlockResp extends Object
A piece of configuration stored in the same place (e.g. same file or environment variables).
-
-
Constructor Summary
Constructors Constructor Description ConfigBlockResp()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
ConfigContentResp
getContent()
Getter for content.String
getFormat()
Getter for format.String
getId()
Getter for id.int
hashCode()
void
setContent(ConfigContentResp content)
Setter for content.void
setFormat(String format)
Setter for format.void
setId(String id)
Setter for id.String
toString()
-
-
-
Method Detail
-
getId
public String getId()
Getter for id. ID of the ConfigBlock. Unique within an ApplicationConfig.
-
setId
public void setId(String id)
Setter for id. ID of the ConfigBlock. Unique within an ApplicationConfig.
-
getFormat
public String getFormat()
Getter for format. Format of ConfigBlock.
-
setFormat
public void setFormat(String format)
Setter for format. Format of ConfigBlock.
-
getContent
public ConfigContentResp getContent()
Getter for content. Contents of a ConfigBlock.
-
setContent
public void setContent(ConfigContentResp content)
Setter for content. Contents of a ConfigBlock.
-
-