Class ResourceClassParametersReference
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.resource.v1alpha2.ResourceClassParametersReference
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ResourceClassParametersReferenceBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ResourceClassParametersReference extends Object implements io.fabric8.kubernetes.api.builder.Editable<ResourceClassParametersReferenceBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
ResourceClassParametersReference contains enough information to let you locate the parameters for a ResourceClass.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResourceClassParametersReference()No args constructor for use in serializationResourceClassParametersReference(String apiGroup, String kind, String name, String namespace)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourceClassParametersReferenceBuilderedit()Map<String,Object>getAdditionalProperties()StringgetApiGroup()APIGroup is the group for the resource being referenced.StringgetKind()Kind is the type of resource being referenced.StringgetName()Name is the name of resource being referenced.StringgetNamespace()Namespace that contains the referenced resource.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetApiGroup(String apiGroup)APIGroup is the group for the resource being referenced.voidsetKind(String kind)Kind is the type of resource being referenced.voidsetName(String name)Name is the name of resource being referenced.voidsetNamespace(String namespace)Namespace that contains the referenced resource.ResourceClassParametersReferenceBuildertoBuilder()
-
-
-
Method Detail
-
getApiGroup
public String getApiGroup()
APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.
-
setApiGroup
public void setApiGroup(String apiGroup)
APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.
-
getKind
public String getKind()
Kind is the type of resource being referenced. This is the same value as in the parameter object's metadata.
-
setKind
public void setKind(String kind)
Kind is the type of resource being referenced. This is the same value as in the parameter object's metadata.
-
getName
public String getName()
Name is the name of resource being referenced.
-
setName
public void setName(String name)
Name is the name of resource being referenced.
-
getNamespace
public String getNamespace()
Namespace that contains the referenced resource. Must be empty for cluster-scoped resources and non-empty for namespaced resources.
-
setNamespace
public void setNamespace(String namespace)
Namespace that contains the referenced resource. Must be empty for cluster-scoped resources and non-empty for namespaced resources.
-
edit
public ResourceClassParametersReferenceBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<ResourceClassParametersReferenceBuilder>
-
toBuilder
public ResourceClassParametersReferenceBuilder toBuilder()
-
-