Interface ContainerOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Container
,Container.Builder
public interface ContainerOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getImageId()
Optional container image ID, if provided by the container runtime.com.google.protobuf.ByteString
getImageIdBytes()
Optional container image ID, if provided by the container runtime.Label
getLabels(int index)
Container labels, as provided by the container runtime.int
getLabelsCount()
Container labels, as provided by the container runtime.List<Label>
getLabelsList()
Container labels, as provided by the container runtime.LabelOrBuilder
getLabelsOrBuilder(int index)
Container labels, as provided by the container runtime.List<? extends LabelOrBuilder>
getLabelsOrBuilderList()
Container labels, as provided by the container runtime.String
getName()
Name of the container.com.google.protobuf.ByteString
getNameBytes()
Name of the container.String
getUri()
Container image URI provided when configuring a pod or container.com.google.protobuf.ByteString
getUriBytes()
Container image URI provided when configuring a pod or container.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Name of the container.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the container.
string name = 1;
- Returns:
- The bytes for name.
-
getUri
String getUri()
Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
string uri = 2;
- Returns:
- The uri.
-
getUriBytes
com.google.protobuf.ByteString getUriBytes()
Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
string uri = 2;
- Returns:
- The bytes for uri.
-
getImageId
String getImageId()
Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
string image_id = 3;
- Returns:
- The imageId.
-
getImageIdBytes
com.google.protobuf.ByteString getImageIdBytes()
Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
string image_id = 3;
- Returns:
- The bytes for imageId.
-
getLabelsList
List<Label> getLabelsList()
Container labels, as provided by the container runtime.
repeated .google.cloud.securitycenter.v1.Label labels = 4;
-
getLabels
Label getLabels(int index)
Container labels, as provided by the container runtime.
repeated .google.cloud.securitycenter.v1.Label labels = 4;
-
getLabelsCount
int getLabelsCount()
Container labels, as provided by the container runtime.
repeated .google.cloud.securitycenter.v1.Label labels = 4;
-
getLabelsOrBuilderList
List<? extends LabelOrBuilder> getLabelsOrBuilderList()
Container labels, as provided by the container runtime.
repeated .google.cloud.securitycenter.v1.Label labels = 4;
-
getLabelsOrBuilder
LabelOrBuilder getLabelsOrBuilder(int index)
Container labels, as provided by the container runtime.
repeated .google.cloud.securitycenter.v1.Label labels = 4;
-
-