public interface ContainerImageOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getRepository()
public abstract String getRepository()
Required. The path to the container image repository. For example:
gcr.io/{project_id}/{image_name}
string repository = 1;
Returns | |
---|---|
Type | Description |
String |
The repository. |
getRepositoryBytes()
public abstract ByteString getRepositoryBytes()
Required. The path to the container image repository. For example:
gcr.io/{project_id}/{image_name}
string repository = 1;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for repository. |
getTag()
public abstract String getTag()
The tag of the container image. If not specified, this defaults to the latest tag.
string tag = 2;
Returns | |
---|---|
Type | Description |
String |
The tag. |
getTagBytes()
public abstract ByteString getTagBytes()
The tag of the container image. If not specified, this defaults to the latest tag.
string tag = 2;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for tag. |