Package io.fabric8.openshift.api.model
Class ImageStreamStatus
- java.lang.Object
-
- io.fabric8.openshift.api.model.ImageStreamStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ImageStreamStatusBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ImageStreamStatus extends Object implements io.fabric8.kubernetes.api.builder.Editable<ImageStreamStatusBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
ImageStreamStatus contains information about the state of this image stream.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ImageStreamStatus()No args constructor for use in serializationImageStreamStatus(String dockerImageRepository, String publicDockerImageRepository, List<NamedTagEventList> tags)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImageStreamStatusBuilderedit()Map<String,Object>getAdditionalProperties()StringgetDockerImageRepository()dockerImageRepository represents the effective location this stream may be accessed at.StringgetPublicDockerImageRepository()publicDockerImageRepository represents the public location from where the image can be pulled outside the cluster.List<NamedTagEventList>getTags()tags are a historical record of images associated with each tag.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetDockerImageRepository(String dockerImageRepository)dockerImageRepository represents the effective location this stream may be accessed at.voidsetPublicDockerImageRepository(String publicDockerImageRepository)publicDockerImageRepository represents the public location from where the image can be pulled outside the cluster.voidsetTags(List<NamedTagEventList> tags)tags are a historical record of images associated with each tag.ImageStreamStatusBuildertoBuilder()
-
-
-
Constructor Detail
-
ImageStreamStatus
public ImageStreamStatus()
No args constructor for use in serialization
-
ImageStreamStatus
public ImageStreamStatus(String dockerImageRepository, String publicDockerImageRepository, List<NamedTagEventList> tags)
-
-
Method Detail
-
getDockerImageRepository
public String getDockerImageRepository()
dockerImageRepository represents the effective location this stream may be accessed at. May be empty until the server determines where the repository is located
-
setDockerImageRepository
public void setDockerImageRepository(String dockerImageRepository)
dockerImageRepository represents the effective location this stream may be accessed at. May be empty until the server determines where the repository is located
-
getPublicDockerImageRepository
public String getPublicDockerImageRepository()
publicDockerImageRepository represents the public location from where the image can be pulled outside the cluster. This field may be empty if the administrator has not exposed the integrated registry externally.
-
setPublicDockerImageRepository
public void setPublicDockerImageRepository(String publicDockerImageRepository)
publicDockerImageRepository represents the public location from where the image can be pulled outside the cluster. This field may be empty if the administrator has not exposed the integrated registry externally.
-
getTags
public List<NamedTagEventList> getTags()
tags are a historical record of images associated with each tag. The first entry in the TagEvent array is the currently tagged image.
-
setTags
public void setTags(List<NamedTagEventList> tags)
tags are a historical record of images associated with each tag. The first entry in the TagEvent array is the currently tagged image.
-
edit
public ImageStreamStatusBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<ImageStreamStatusBuilder>
-
toBuilder
public ImageStreamStatusBuilder toBuilder()
-
-