Package io.fabric8.kubernetes.api.model
Class ConfigMapKeySelector
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.ConfigMapKeySelector
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ConfigMapKeySelectorBuilder>
,KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ConfigMapKeySelector extends Object implements io.fabric8.kubernetes.api.builder.Editable<ConfigMapKeySelectorBuilder>, KubernetesResource
Selects a key from a ConfigMap.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigMapKeySelector()
No args constructor for use in serializationConfigMapKeySelector(String key, String name, Boolean optional)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfigMapKeySelectorBuilder
edit()
Map<String,Object>
getAdditionalProperties()
String
getKey()
The key to select.String
getName()
Name of the referent.Boolean
getOptional()
Specify whether the ConfigMap or its key must be definedvoid
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setKey(String key)
The key to select.void
setName(String name)
Name of the referent.void
setOptional(Boolean optional)
Specify whether the ConfigMap or its key must be definedConfigMapKeySelectorBuilder
toBuilder()
-
-
-
Method Detail
-
getKey
public String getKey()
The key to select.
-
setKey
public void setKey(String key)
The key to select.
-
getName
public String getName()
Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
-
setName
public void setName(String name)
Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
-
getOptional
public Boolean getOptional()
Specify whether the ConfigMap or its key must be defined
-
setOptional
public void setOptional(Boolean optional)
Specify whether the ConfigMap or its key must be defined
-
edit
public ConfigMapKeySelectorBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<ConfigMapKeySelectorBuilder>
-
toBuilder
public ConfigMapKeySelectorBuilder toBuilder()
-
-