Class ParentReference
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.networking.v1beta1.ParentReference
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ParentReferenceBuilder>
,io.fabric8.kubernetes.api.model.KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ParentReference extends Object implements io.fabric8.kubernetes.api.builder.Editable<ParentReferenceBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
ParentReference describes a reference to a parent object.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParentReference()
No args constructor for use in serializationParentReference(String group, String name, String namespace, String resource)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParentReferenceBuilder
edit()
Map<String,Object>
getAdditionalProperties()
String
getGroup()
Group is the group of the object being referenced.String
getName()
Name is the name of the object being referenced.String
getNamespace()
Namespace is the namespace of the object being referenced.String
getResource()
Resource is the resource of the object being referenced.void
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setGroup(String group)
Group is the group of the object being referenced.void
setName(String name)
Name is the name of the object being referenced.void
setNamespace(String namespace)
Namespace is the namespace of the object being referenced.void
setResource(String resource)
Resource is the resource of the object being referenced.ParentReferenceBuilder
toBuilder()
-
-
-
Method Detail
-
getGroup
public String getGroup()
Group is the group of the object being referenced.
-
setGroup
public void setGroup(String group)
Group is the group of the object being referenced.
-
getName
public String getName()
Name is the name of the object being referenced.
-
setName
public void setName(String name)
Name is the name of the object being referenced.
-
getNamespace
public String getNamespace()
Namespace is the namespace of the object being referenced.
-
setNamespace
public void setNamespace(String namespace)
Namespace is the namespace of the object being referenced.
-
getResource
public String getResource()
Resource is the resource of the object being referenced.
-
setResource
public void setResource(String resource)
Resource is the resource of the object being referenced.
-
edit
public ParentReferenceBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<ParentReferenceBuilder>
-
toBuilder
public ParentReferenceBuilder toBuilder()
-
-