Package io.fabric8.openshift.api.model
Class DockerImageReference
- java.lang.Object
-
- io.fabric8.openshift.api.model.DockerImageReference
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<DockerImageReferenceBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class DockerImageReference extends Object implements io.fabric8.kubernetes.api.builder.Editable<DockerImageReferenceBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
DockerImageReference points to a container image.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DockerImageReference()No args constructor for use in serializationDockerImageReference(String iD, String name, String namespace, String registry, String tag)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DockerImageReferenceBuilderedit()Map<String,Object>getAdditionalProperties()StringgetID()ID is the identifier for the container imageStringgetName()Name is the name of the container imageStringgetNamespace()Namespace is the namespace that contains the container imageStringgetRegistry()Registry is the registry that contains the container imageStringgetTag()Tag is which tag of the container image is being referencedvoidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetID(String iD)ID is the identifier for the container imagevoidsetName(String name)Name is the name of the container imagevoidsetNamespace(String namespace)Namespace is the namespace that contains the container imagevoidsetRegistry(String registry)Registry is the registry that contains the container imagevoidsetTag(String tag)Tag is which tag of the container image is being referencedDockerImageReferenceBuildertoBuilder()
-
-
-
Method Detail
-
getID
public String getID()
ID is the identifier for the container image
-
setID
public void setID(String iD)
ID is the identifier for the container image
-
getName
public String getName()
Name is the name of the container image
-
setName
public void setName(String name)
Name is the name of the container image
-
getNamespace
public String getNamespace()
Namespace is the namespace that contains the container image
-
setNamespace
public void setNamespace(String namespace)
Namespace is the namespace that contains the container image
-
getRegistry
public String getRegistry()
Registry is the registry that contains the container image
-
setRegistry
public void setRegistry(String registry)
Registry is the registry that contains the container image
-
getTag
public String getTag()
Tag is which tag of the container image is being referenced
-
setTag
public void setTag(String tag)
Tag is which tag of the container image is being referenced
-
edit
public DockerImageReferenceBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<DockerImageReferenceBuilder>
-
toBuilder
public DockerImageReferenceBuilder toBuilder()
-
-