Class BoundObjectReference
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.authentication.BoundObjectReference
-
- All Implemented Interfaces:
Editable<BoundObjectReferenceBuilder>,KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class BoundObjectReference extends Object implements Editable<BoundObjectReferenceBuilder>, KubernetesResource
BoundObjectReference is a reference to an object that a token is bound to.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BoundObjectReference()No args constructor for use in serializationBoundObjectReference(String apiVersion, String kind, String name, String uid)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BoundObjectReferenceBuilderedit()Map<String,Object>getAdditionalProperties()StringgetApiVersion()apiVersion is API version of the referent.StringgetKind()kind of the referent.StringgetName()name of the referent.StringgetUid()uid of the referent.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetApiVersion(String apiVersion)apiVersion is API version of the referent.voidsetKind(String kind)kind of the referent.voidsetName(String name)name of the referent.voidsetUid(String uid)uid of the referent.BoundObjectReferenceBuildertoBuilder()
-
-
-
Method Detail
-
getApiVersion
public String getApiVersion()
apiVersion is API version of the referent.
-
setApiVersion
public void setApiVersion(String apiVersion)
apiVersion is API version of the referent.
-
getKind
public String getKind()
kind of the referent. Valid kinds are 'Pod' and 'Secret'.
-
setKind
public void setKind(String kind)
kind of the referent. Valid kinds are 'Pod' and 'Secret'.
-
getName
public String getName()
name of the referent.
-
setName
public void setName(String name)
name of the referent.
-
getUid
public String getUid()
uid of the referent.
-
setUid
public void setUid(String uid)
uid of the referent.
-
edit
public BoundObjectReferenceBuilder edit()
- Specified by:
editin interfaceEditable<BoundObjectReferenceBuilder>
-
toBuilder
public BoundObjectReferenceBuilder toBuilder()
-
-