Package com.cloudera.cdp.dw.model
Class ConfigBlockReq
- java.lang.Object
-
- com.cloudera.cdp.dw.model.ConfigBlockReq
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:17.249-07:00") public class ConfigBlockReq extends Object
A piece of configuration stored in the same place (e.g. same file or environment variables).
-
-
Constructor Summary
Constructors Constructor Description ConfigBlockReq()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
ConfigContentReq
getContent()
Getter for content.String
getFormat()
Getter for format.String
getId()
Getter for id.int
hashCode()
void
setContent(ConfigContentReq 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 ConfigContentReq getContent()
Getter for content. Contents of a ConfigBlock.
-
setContent
public void setContent(ConfigContentReq content)
Setter for content. Contents of a ConfigBlock.
-
-