Class ResourceAttribute
- java.lang.Object
-
- io.fabric8.openshift.api.model.miscellaneous.cloudcredential.v1.ResourceAttribute
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ResourceAttributeBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ResourceAttribute extends Object implements io.fabric8.kubernetes.api.builder.Editable<ResourceAttributeBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
ResourceAttribute is an attribute associated with a resource.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResourceAttribute()No args constructor for use in serializationResourceAttribute(String name, String operator, String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourceAttributeBuilderedit()Map<String,Object>getAdditionalProperties()StringgetName()Name is the name of an attribute.StringgetOperator()Operator is the operator of an attribute.StringgetValue()Value is the value of an attribute.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetName(String name)Name is the name of an attribute.voidsetOperator(String operator)Operator is the operator of an attribute.voidsetValue(String value)Value is the value of an attribute.ResourceAttributeBuildertoBuilder()
-
-
-
Method Detail
-
getName
public String getName()
Name is the name of an attribute.
-
setName
public void setName(String name)
Name is the name of an attribute.
-
getOperator
public String getOperator()
Operator is the operator of an attribute.
-
setOperator
public void setOperator(String operator)
Operator is the operator of an attribute.
-
getValue
public String getValue()
Value is the value of an attribute.
-
setValue
public void setValue(String value)
Value is the value of an attribute.
-
edit
public ResourceAttributeBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<ResourceAttributeBuilder>
-
toBuilder
public ResourceAttributeBuilder toBuilder()
-
-