Class DeveloperConsoleCatalogCategoryMeta
- java.lang.Object
-
- io.fabric8.openshift.api.model.operator.v1.DeveloperConsoleCatalogCategoryMeta
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<DeveloperConsoleCatalogCategoryMetaBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class DeveloperConsoleCatalogCategoryMeta extends Object implements io.fabric8.kubernetes.api.builder.Editable<DeveloperConsoleCatalogCategoryMetaBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
DeveloperConsoleCatalogCategoryMeta are the key identifiers of a developer catalog category.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeveloperConsoleCatalogCategoryMeta()No args constructor for use in serializationDeveloperConsoleCatalogCategoryMeta(String id, String label, List<String> tags)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeveloperConsoleCatalogCategoryMetaBuilderedit()Map<String,Object>getAdditionalProperties()StringgetId()id is an identifier used in the URL to enable deep linking in console.StringgetLabel()label defines a category display label.List<String>getTags()tags is a list of strings that will match the category.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetId(String id)id is an identifier used in the URL to enable deep linking in console.voidsetLabel(String label)label defines a category display label.voidsetTags(List<String> tags)tags is a list of strings that will match the category.DeveloperConsoleCatalogCategoryMetaBuildertoBuilder()
-
-
-
Method Detail
-
getId
public String getId()
id is an identifier used in the URL to enable deep linking in console. ID is required and must have 1-32 URL safe (A-Z, a-z, 0-9, - and _) characters.
-
setId
public void setId(String id)
id is an identifier used in the URL to enable deep linking in console. ID is required and must have 1-32 URL safe (A-Z, a-z, 0-9, - and _) characters.
-
getLabel
public String getLabel()
label defines a category display label. It is required and must have 1-64 characters.
-
setLabel
public void setLabel(String label)
label defines a category display label. It is required and must have 1-64 characters.
-
getTags
public List<String> getTags()
tags is a list of strings that will match the category. A selected category show all items which has at least one overlapping tag between category and item.
-
setTags
public void setTags(List<String> tags)
tags is a list of strings that will match the category. A selected category show all items which has at least one overlapping tag between category and item.
-
edit
public DeveloperConsoleCatalogCategoryMetaBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<DeveloperConsoleCatalogCategoryMetaBuilder>
-
toBuilder
public DeveloperConsoleCatalogCategoryMetaBuilder toBuilder()
-
-