Interface Kubernetes.PodOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Kubernetes.Pod
,Kubernetes.Pod.Builder
- Enclosing class:
- Kubernetes
public static interface Kubernetes.PodOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Container
getContainers(int index)
Pod containers associated with this finding, if any.int
getContainersCount()
Pod containers associated with this finding, if any.List<Container>
getContainersList()
Pod containers associated with this finding, if any.ContainerOrBuilder
getContainersOrBuilder(int index)
Pod containers associated with this finding, if any.List<? extends ContainerOrBuilder>
getContainersOrBuilderList()
Pod containers associated with this finding, if any.Label
getLabels(int index)
Pod labels.int
getLabelsCount()
Pod labels.List<Label>
getLabelsList()
Pod labels.LabelOrBuilder
getLabelsOrBuilder(int index)
Pod labels.List<? extends LabelOrBuilder>
getLabelsOrBuilderList()
Pod labels.String
getName()
Kubernetes Pod name.com.google.protobuf.ByteString
getNameBytes()
Kubernetes Pod name.String
getNs()
Kubernetes Pod namespace.com.google.protobuf.ByteString
getNsBytes()
Kubernetes Pod namespace.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNs
String getNs()
Kubernetes Pod namespace.
string ns = 1;
- Returns:
- The ns.
-
getNsBytes
com.google.protobuf.ByteString getNsBytes()
Kubernetes Pod namespace.
string ns = 1;
- Returns:
- The bytes for ns.
-
getName
String getName()
Kubernetes Pod name.
string name = 2;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Kubernetes Pod name.
string name = 2;
- Returns:
- The bytes for name.
-
getLabelsList
List<Label> getLabelsList()
Pod labels. For Kubernetes containers, these are applied to the container.
repeated .google.cloud.securitycenter.v1.Label labels = 3;
-
getLabels
Label getLabels(int index)
Pod labels. For Kubernetes containers, these are applied to the container.
repeated .google.cloud.securitycenter.v1.Label labels = 3;
-
getLabelsCount
int getLabelsCount()
Pod labels. For Kubernetes containers, these are applied to the container.
repeated .google.cloud.securitycenter.v1.Label labels = 3;
-
getLabelsOrBuilderList
List<? extends LabelOrBuilder> getLabelsOrBuilderList()
Pod labels. For Kubernetes containers, these are applied to the container.
repeated .google.cloud.securitycenter.v1.Label labels = 3;
-
getLabelsOrBuilder
LabelOrBuilder getLabelsOrBuilder(int index)
Pod labels. For Kubernetes containers, these are applied to the container.
repeated .google.cloud.securitycenter.v1.Label labels = 3;
-
getContainersList
List<Container> getContainersList()
Pod containers associated with this finding, if any.
repeated .google.cloud.securitycenter.v1.Container containers = 4;
-
getContainers
Container getContainers(int index)
Pod containers associated with this finding, if any.
repeated .google.cloud.securitycenter.v1.Container containers = 4;
-
getContainersCount
int getContainersCount()
Pod containers associated with this finding, if any.
repeated .google.cloud.securitycenter.v1.Container containers = 4;
-
getContainersOrBuilderList
List<? extends ContainerOrBuilder> getContainersOrBuilderList()
Pod containers associated with this finding, if any.
repeated .google.cloud.securitycenter.v1.Container containers = 4;
-
getContainersOrBuilder
ContainerOrBuilder getContainersOrBuilder(int index)
Pod containers associated with this finding, if any.
repeated .google.cloud.securitycenter.v1.Container containers = 4;
-
-