Class AzureResourceTag
- java.lang.Object
-
- io.fabric8.openshift.api.model.config.v1.AzureResourceTag
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<AzureResourceTagBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class AzureResourceTag extends Object implements io.fabric8.kubernetes.api.builder.Editable<AzureResourceTagBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
AzureResourceTag is a tag to apply to Azure resources created for the cluster.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AzureResourceTag()No args constructor for use in serializationAzureResourceTag(String key, String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AzureResourceTagBuilderedit()Map<String,Object>getAdditionalProperties()StringgetKey()key is the key part of the tag.StringgetValue()value is the value part of the tag.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetKey(String key)key is the key part of the tag.voidsetValue(String value)value is the value part of the tag.AzureResourceTagBuildertoBuilder()
-
-
-
Method Detail
-
getKey
public String getKey()
key is the key part of the tag. A tag key can have a maximum of 128 characters and cannot be empty. Key must begin with a letter, end with a letter, number or underscore, and must contain only alphanumeric characters and the following special characters `_ . -`.
-
setKey
public void setKey(String key)
key is the key part of the tag. A tag key can have a maximum of 128 characters and cannot be empty. Key must begin with a letter, end with a letter, number or underscore, and must contain only alphanumeric characters and the following special characters `_ . -`.
-
getValue
public String getValue()
value is the value part of the tag. A tag value can have a maximum of 256 characters and cannot be empty. Value must contain only alphanumeric characters and the following special characters `_ + , - . / : ; < = > ? @`.
-
setValue
public void setValue(String value)
value is the value part of the tag. A tag value can have a maximum of 256 characters and cannot be empty. Value must contain only alphanumeric characters and the following special characters `_ + , - . / : ; < = > ? @`.
-
edit
public AzureResourceTagBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<AzureResourceTagBuilder>
-
toBuilder
public AzureResourceTagBuilder toBuilder()
-
-