Class Generated.PodStatus

  • All Implemented Interfaces:
    com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Serializable, Generated.PodStatusOrBuilder
    Enclosing class:
    Generated

    public static final class Generated.PodStatus
    extends com.google.protobuf.GeneratedMessageV3
    implements Generated.PodStatusOrBuilder
     PodStatus represents information about the status of a pod. Status may trail the actual
     state of a system, especially if the node that hosts the pod cannot contact the control
     plane.
     
    Protobuf type k8s.io.api.core.v1.PodStatus
    See Also:
    Serialized Form
    • Method Detail

      • newInstance

        protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        Overrides:
        newInstance in class com.google.protobuf.GeneratedMessageV3
      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      • hasPhase

        public boolean hasPhase()
         The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle.
         The conditions array, the reason and message fields, and the individual container status
         arrays contain more detail about the pod's status.
         There are five possible phase values:
        
         Pending: The pod has been accepted by the Kubernetes system, but one or more of the
         container images has not been created. This includes time before being scheduled as
         well as time spent downloading images over the network, which could take a while.
         Running: The pod has been bound to a node, and all of the containers have been created.
         At least one container is still running, or is in the process of starting or restarting.
         Succeeded: All containers in the pod have terminated in success, and will not be restarted.
         Failed: All containers in the pod have terminated, and at least one container has
         terminated in failure. The container either exited with non-zero status or was terminated
         by the system.
         Unknown: For some reason the state of the pod could not be obtained, typically due to an
         error in communicating with the host of the pod.
        
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase
         +optional
         
        optional string phase = 1;
        Specified by:
        hasPhase in interface Generated.PodStatusOrBuilder
        Returns:
        Whether the phase field is set.
      • getPhase

        public String getPhase()
         The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle.
         The conditions array, the reason and message fields, and the individual container status
         arrays contain more detail about the pod's status.
         There are five possible phase values:
        
         Pending: The pod has been accepted by the Kubernetes system, but one or more of the
         container images has not been created. This includes time before being scheduled as
         well as time spent downloading images over the network, which could take a while.
         Running: The pod has been bound to a node, and all of the containers have been created.
         At least one container is still running, or is in the process of starting or restarting.
         Succeeded: All containers in the pod have terminated in success, and will not be restarted.
         Failed: All containers in the pod have terminated, and at least one container has
         terminated in failure. The container either exited with non-zero status or was terminated
         by the system.
         Unknown: For some reason the state of the pod could not be obtained, typically due to an
         error in communicating with the host of the pod.
        
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase
         +optional
         
        optional string phase = 1;
        Specified by:
        getPhase in interface Generated.PodStatusOrBuilder
        Returns:
        The phase.
      • getPhaseBytes

        public com.google.protobuf.ByteString getPhaseBytes()
         The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle.
         The conditions array, the reason and message fields, and the individual container status
         arrays contain more detail about the pod's status.
         There are five possible phase values:
        
         Pending: The pod has been accepted by the Kubernetes system, but one or more of the
         container images has not been created. This includes time before being scheduled as
         well as time spent downloading images over the network, which could take a while.
         Running: The pod has been bound to a node, and all of the containers have been created.
         At least one container is still running, or is in the process of starting or restarting.
         Succeeded: All containers in the pod have terminated in success, and will not be restarted.
         Failed: All containers in the pod have terminated, and at least one container has
         terminated in failure. The container either exited with non-zero status or was terminated
         by the system.
         Unknown: For some reason the state of the pod could not be obtained, typically due to an
         error in communicating with the host of the pod.
        
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase
         +optional
         
        optional string phase = 1;
        Specified by:
        getPhaseBytes in interface Generated.PodStatusOrBuilder
        Returns:
        The bytes for phase.
      • getConditionsList

        public List<Generated.PodCondition> getConditionsList()
         Current service state of pod.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
         +optional
         +patchMergeKey=type
         +patchStrategy=merge
         +listType=map
         +listMapKey=type
         
        repeated .k8s.io.api.core.v1.PodCondition conditions = 2;
        Specified by:
        getConditionsList in interface Generated.PodStatusOrBuilder
      • getConditionsOrBuilderList

        public List<? extends Generated.PodConditionOrBuilder> getConditionsOrBuilderList()
         Current service state of pod.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
         +optional
         +patchMergeKey=type
         +patchStrategy=merge
         +listType=map
         +listMapKey=type
         
        repeated .k8s.io.api.core.v1.PodCondition conditions = 2;
        Specified by:
        getConditionsOrBuilderList in interface Generated.PodStatusOrBuilder
      • getConditionsCount

        public int getConditionsCount()
         Current service state of pod.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
         +optional
         +patchMergeKey=type
         +patchStrategy=merge
         +listType=map
         +listMapKey=type
         
        repeated .k8s.io.api.core.v1.PodCondition conditions = 2;
        Specified by:
        getConditionsCount in interface Generated.PodStatusOrBuilder
      • getConditions

        public Generated.PodCondition getConditions​(int index)
         Current service state of pod.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
         +optional
         +patchMergeKey=type
         +patchStrategy=merge
         +listType=map
         +listMapKey=type
         
        repeated .k8s.io.api.core.v1.PodCondition conditions = 2;
        Specified by:
        getConditions in interface Generated.PodStatusOrBuilder
      • getConditionsOrBuilder

        public Generated.PodConditionOrBuilder getConditionsOrBuilder​(int index)
         Current service state of pod.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions
         +optional
         +patchMergeKey=type
         +patchStrategy=merge
         +listType=map
         +listMapKey=type
         
        repeated .k8s.io.api.core.v1.PodCondition conditions = 2;
        Specified by:
        getConditionsOrBuilder in interface Generated.PodStatusOrBuilder
      • hasMessage

        public boolean hasMessage()
         A human readable message indicating details about why the pod is in this condition.
         +optional
         
        optional string message = 3;
        Specified by:
        hasMessage in interface Generated.PodStatusOrBuilder
        Returns:
        Whether the message field is set.
      • getMessage

        public String getMessage()
         A human readable message indicating details about why the pod is in this condition.
         +optional
         
        optional string message = 3;
        Specified by:
        getMessage in interface Generated.PodStatusOrBuilder
        Returns:
        The message.
      • getMessageBytes

        public com.google.protobuf.ByteString getMessageBytes()
         A human readable message indicating details about why the pod is in this condition.
         +optional
         
        optional string message = 3;
        Specified by:
        getMessageBytes in interface Generated.PodStatusOrBuilder
        Returns:
        The bytes for message.
      • hasReason

        public boolean hasReason()
         A brief CamelCase message indicating details about why the pod is in this state.
         e.g. 'Evicted'
         +optional
         
        optional string reason = 4;
        Specified by:
        hasReason in interface Generated.PodStatusOrBuilder
        Returns:
        Whether the reason field is set.
      • getReason

        public String getReason()
         A brief CamelCase message indicating details about why the pod is in this state.
         e.g. 'Evicted'
         +optional
         
        optional string reason = 4;
        Specified by:
        getReason in interface Generated.PodStatusOrBuilder
        Returns:
        The reason.
      • getReasonBytes

        public com.google.protobuf.ByteString getReasonBytes()
         A brief CamelCase message indicating details about why the pod is in this state.
         e.g. 'Evicted'
         +optional
         
        optional string reason = 4;
        Specified by:
        getReasonBytes in interface Generated.PodStatusOrBuilder
        Returns:
        The bytes for reason.
      • hasNominatedNodeName

        public boolean hasNominatedNodeName()
         nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be
         scheduled right away as preemption victims receive their graceful termination periods.
         This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide
         to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to
         give the resources on this node to a higher priority pod that is created after preemption.
         As a result, this field may be different than PodSpec.nodeName when the pod is
         scheduled.
         +optional
         
        optional string nominatedNodeName = 11;
        Specified by:
        hasNominatedNodeName in interface Generated.PodStatusOrBuilder
        Returns:
        Whether the nominatedNodeName field is set.
      • getNominatedNodeName

        public String getNominatedNodeName()
         nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be
         scheduled right away as preemption victims receive their graceful termination periods.
         This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide
         to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to
         give the resources on this node to a higher priority pod that is created after preemption.
         As a result, this field may be different than PodSpec.nodeName when the pod is
         scheduled.
         +optional
         
        optional string nominatedNodeName = 11;
        Specified by:
        getNominatedNodeName in interface Generated.PodStatusOrBuilder
        Returns:
        The nominatedNodeName.
      • getNominatedNodeNameBytes

        public com.google.protobuf.ByteString getNominatedNodeNameBytes()
         nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be
         scheduled right away as preemption victims receive their graceful termination periods.
         This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide
         to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to
         give the resources on this node to a higher priority pod that is created after preemption.
         As a result, this field may be different than PodSpec.nodeName when the pod is
         scheduled.
         +optional
         
        optional string nominatedNodeName = 11;
        Specified by:
        getNominatedNodeNameBytes in interface Generated.PodStatusOrBuilder
        Returns:
        The bytes for nominatedNodeName.
      • hasHostIP

        public boolean hasHostIP()
         hostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet.
         A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will
         not be updated even if there is a node is assigned to pod
         +optional
         
        optional string hostIP = 5;
        Specified by:
        hasHostIP in interface Generated.PodStatusOrBuilder
        Returns:
        Whether the hostIP field is set.
      • getHostIP

        public String getHostIP()
         hostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet.
         A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will
         not be updated even if there is a node is assigned to pod
         +optional
         
        optional string hostIP = 5;
        Specified by:
        getHostIP in interface Generated.PodStatusOrBuilder
        Returns:
        The hostIP.
      • getHostIPBytes

        public com.google.protobuf.ByteString getHostIPBytes()
         hostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet.
         A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will
         not be updated even if there is a node is assigned to pod
         +optional
         
        optional string hostIP = 5;
        Specified by:
        getHostIPBytes in interface Generated.PodStatusOrBuilder
        Returns:
        The bytes for hostIP.
      • getHostIPsList

        public List<Generated.HostIP> getHostIPsList()
         hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must
         match the hostIP field. This list is empty if the pod has not started yet.
         A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will
         not be updated even if there is a node is assigned to this pod.
         +optional
         +patchStrategy=merge
         +patchMergeKey=ip
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.HostIP hostIPs = 16;
        Specified by:
        getHostIPsList in interface Generated.PodStatusOrBuilder
      • getHostIPsOrBuilderList

        public List<? extends Generated.HostIPOrBuilder> getHostIPsOrBuilderList()
         hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must
         match the hostIP field. This list is empty if the pod has not started yet.
         A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will
         not be updated even if there is a node is assigned to this pod.
         +optional
         +patchStrategy=merge
         +patchMergeKey=ip
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.HostIP hostIPs = 16;
        Specified by:
        getHostIPsOrBuilderList in interface Generated.PodStatusOrBuilder
      • getHostIPsCount

        public int getHostIPsCount()
         hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must
         match the hostIP field. This list is empty if the pod has not started yet.
         A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will
         not be updated even if there is a node is assigned to this pod.
         +optional
         +patchStrategy=merge
         +patchMergeKey=ip
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.HostIP hostIPs = 16;
        Specified by:
        getHostIPsCount in interface Generated.PodStatusOrBuilder
      • getHostIPs

        public Generated.HostIP getHostIPs​(int index)
         hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must
         match the hostIP field. This list is empty if the pod has not started yet.
         A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will
         not be updated even if there is a node is assigned to this pod.
         +optional
         +patchStrategy=merge
         +patchMergeKey=ip
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.HostIP hostIPs = 16;
        Specified by:
        getHostIPs in interface Generated.PodStatusOrBuilder
      • getHostIPsOrBuilder

        public Generated.HostIPOrBuilder getHostIPsOrBuilder​(int index)
         hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must
         match the hostIP field. This list is empty if the pod has not started yet.
         A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will
         not be updated even if there is a node is assigned to this pod.
         +optional
         +patchStrategy=merge
         +patchMergeKey=ip
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.HostIP hostIPs = 16;
        Specified by:
        getHostIPsOrBuilder in interface Generated.PodStatusOrBuilder
      • hasPodIP

        public boolean hasPodIP()
         podIP address allocated to the pod. Routable at least within the cluster.
         Empty if not yet allocated.
         +optional
         
        optional string podIP = 6;
        Specified by:
        hasPodIP in interface Generated.PodStatusOrBuilder
        Returns:
        Whether the podIP field is set.
      • getPodIP

        public String getPodIP()
         podIP address allocated to the pod. Routable at least within the cluster.
         Empty if not yet allocated.
         +optional
         
        optional string podIP = 6;
        Specified by:
        getPodIP in interface Generated.PodStatusOrBuilder
        Returns:
        The podIP.
      • getPodIPBytes

        public com.google.protobuf.ByteString getPodIPBytes()
         podIP address allocated to the pod. Routable at least within the cluster.
         Empty if not yet allocated.
         +optional
         
        optional string podIP = 6;
        Specified by:
        getPodIPBytes in interface Generated.PodStatusOrBuilder
        Returns:
        The bytes for podIP.
      • getPodIPsList

        public List<Generated.PodIP> getPodIPsList()
         podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must
         match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list
         is empty if no IPs have been allocated yet.
         +optional
         +patchStrategy=merge
         +patchMergeKey=ip
         +listType=map
         +listMapKey=ip
         
        repeated .k8s.io.api.core.v1.PodIP podIPs = 12;
        Specified by:
        getPodIPsList in interface Generated.PodStatusOrBuilder
      • getPodIPsOrBuilderList

        public List<? extends Generated.PodIPOrBuilder> getPodIPsOrBuilderList()
         podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must
         match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list
         is empty if no IPs have been allocated yet.
         +optional
         +patchStrategy=merge
         +patchMergeKey=ip
         +listType=map
         +listMapKey=ip
         
        repeated .k8s.io.api.core.v1.PodIP podIPs = 12;
        Specified by:
        getPodIPsOrBuilderList in interface Generated.PodStatusOrBuilder
      • getPodIPsCount

        public int getPodIPsCount()
         podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must
         match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list
         is empty if no IPs have been allocated yet.
         +optional
         +patchStrategy=merge
         +patchMergeKey=ip
         +listType=map
         +listMapKey=ip
         
        repeated .k8s.io.api.core.v1.PodIP podIPs = 12;
        Specified by:
        getPodIPsCount in interface Generated.PodStatusOrBuilder
      • getPodIPs

        public Generated.PodIP getPodIPs​(int index)
         podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must
         match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list
         is empty if no IPs have been allocated yet.
         +optional
         +patchStrategy=merge
         +patchMergeKey=ip
         +listType=map
         +listMapKey=ip
         
        repeated .k8s.io.api.core.v1.PodIP podIPs = 12;
        Specified by:
        getPodIPs in interface Generated.PodStatusOrBuilder
      • getPodIPsOrBuilder

        public Generated.PodIPOrBuilder getPodIPsOrBuilder​(int index)
         podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must
         match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list
         is empty if no IPs have been allocated yet.
         +optional
         +patchStrategy=merge
         +patchMergeKey=ip
         +listType=map
         +listMapKey=ip
         
        repeated .k8s.io.api.core.v1.PodIP podIPs = 12;
        Specified by:
        getPodIPsOrBuilder in interface Generated.PodStatusOrBuilder
      • hasStartTime

        public boolean hasStartTime()
         RFC 3339 date and time at which the object was acknowledged by the Kubelet.
         This is before the Kubelet pulled the container image(s) for the pod.
         +optional
         
        optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time startTime = 7;
        Specified by:
        hasStartTime in interface Generated.PodStatusOrBuilder
        Returns:
        Whether the startTime field is set.
      • getStartTime

        public Generated.Time getStartTime()
         RFC 3339 date and time at which the object was acknowledged by the Kubelet.
         This is before the Kubelet pulled the container image(s) for the pod.
         +optional
         
        optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time startTime = 7;
        Specified by:
        getStartTime in interface Generated.PodStatusOrBuilder
        Returns:
        The startTime.
      • getStartTimeOrBuilder

        public Generated.TimeOrBuilder getStartTimeOrBuilder()
         RFC 3339 date and time at which the object was acknowledged by the Kubelet.
         This is before the Kubelet pulled the container image(s) for the pod.
         +optional
         
        optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time startTime = 7;
        Specified by:
        getStartTimeOrBuilder in interface Generated.PodStatusOrBuilder
      • getInitContainerStatusesList

        public List<Generated.ContainerStatus> getInitContainerStatusesList()
         Statuses of init containers in this pod. The most recent successful non-restartable
         init container will have ready = true, the most recently started container will have
         startTime set.
         Each init container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-and-container-status
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus initContainerStatuses = 10;
        Specified by:
        getInitContainerStatusesList in interface Generated.PodStatusOrBuilder
      • getInitContainerStatusesOrBuilderList

        public List<? extends Generated.ContainerStatusOrBuilder> getInitContainerStatusesOrBuilderList()
         Statuses of init containers in this pod. The most recent successful non-restartable
         init container will have ready = true, the most recently started container will have
         startTime set.
         Each init container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-and-container-status
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus initContainerStatuses = 10;
        Specified by:
        getInitContainerStatusesOrBuilderList in interface Generated.PodStatusOrBuilder
      • getInitContainerStatusesCount

        public int getInitContainerStatusesCount()
         Statuses of init containers in this pod. The most recent successful non-restartable
         init container will have ready = true, the most recently started container will have
         startTime set.
         Each init container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-and-container-status
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus initContainerStatuses = 10;
        Specified by:
        getInitContainerStatusesCount in interface Generated.PodStatusOrBuilder
      • getInitContainerStatuses

        public Generated.ContainerStatus getInitContainerStatuses​(int index)
         Statuses of init containers in this pod. The most recent successful non-restartable
         init container will have ready = true, the most recently started container will have
         startTime set.
         Each init container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-and-container-status
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus initContainerStatuses = 10;
        Specified by:
        getInitContainerStatuses in interface Generated.PodStatusOrBuilder
      • getInitContainerStatusesOrBuilder

        public Generated.ContainerStatusOrBuilder getInitContainerStatusesOrBuilder​(int index)
         Statuses of init containers in this pod. The most recent successful non-restartable
         init container will have ready = true, the most recently started container will have
         startTime set.
         Each init container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-and-container-status
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus initContainerStatuses = 10;
        Specified by:
        getInitContainerStatusesOrBuilder in interface Generated.PodStatusOrBuilder
      • getContainerStatusesList

        public List<Generated.ContainerStatus> getContainerStatusesList()
         Statuses of containers in this pod.
         Each container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
         +optional
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus containerStatuses = 8;
        Specified by:
        getContainerStatusesList in interface Generated.PodStatusOrBuilder
      • getContainerStatusesOrBuilderList

        public List<? extends Generated.ContainerStatusOrBuilder> getContainerStatusesOrBuilderList()
         Statuses of containers in this pod.
         Each container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
         +optional
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus containerStatuses = 8;
        Specified by:
        getContainerStatusesOrBuilderList in interface Generated.PodStatusOrBuilder
      • getContainerStatusesCount

        public int getContainerStatusesCount()
         Statuses of containers in this pod.
         Each container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
         +optional
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus containerStatuses = 8;
        Specified by:
        getContainerStatusesCount in interface Generated.PodStatusOrBuilder
      • getContainerStatuses

        public Generated.ContainerStatus getContainerStatuses​(int index)
         Statuses of containers in this pod.
         Each container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
         +optional
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus containerStatuses = 8;
        Specified by:
        getContainerStatuses in interface Generated.PodStatusOrBuilder
      • getContainerStatusesOrBuilder

        public Generated.ContainerStatusOrBuilder getContainerStatusesOrBuilder​(int index)
         Statuses of containers in this pod.
         Each container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
         +optional
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus containerStatuses = 8;
        Specified by:
        getContainerStatusesOrBuilder in interface Generated.PodStatusOrBuilder
      • hasQosClass

        public boolean hasQosClass()
         The Quality of Service (QOS) classification assigned to the pod based on resource requirements
         See PodQOSClass type for available QOS classes
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes
         +optional
         
        optional string qosClass = 9;
        Specified by:
        hasQosClass in interface Generated.PodStatusOrBuilder
        Returns:
        Whether the qosClass field is set.
      • getQosClass

        public String getQosClass()
         The Quality of Service (QOS) classification assigned to the pod based on resource requirements
         See PodQOSClass type for available QOS classes
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes
         +optional
         
        optional string qosClass = 9;
        Specified by:
        getQosClass in interface Generated.PodStatusOrBuilder
        Returns:
        The qosClass.
      • getQosClassBytes

        public com.google.protobuf.ByteString getQosClassBytes()
         The Quality of Service (QOS) classification assigned to the pod based on resource requirements
         See PodQOSClass type for available QOS classes
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes
         +optional
         
        optional string qosClass = 9;
        Specified by:
        getQosClassBytes in interface Generated.PodStatusOrBuilder
        Returns:
        The bytes for qosClass.
      • getEphemeralContainerStatusesList

        public List<Generated.ContainerStatus> getEphemeralContainerStatusesList()
         Statuses for any ephemeral containers that have run in this pod.
         Each ephemeral container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
         +optional
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus ephemeralContainerStatuses = 13;
        Specified by:
        getEphemeralContainerStatusesList in interface Generated.PodStatusOrBuilder
      • getEphemeralContainerStatusesOrBuilderList

        public List<? extends Generated.ContainerStatusOrBuilder> getEphemeralContainerStatusesOrBuilderList()
         Statuses for any ephemeral containers that have run in this pod.
         Each ephemeral container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
         +optional
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus ephemeralContainerStatuses = 13;
        Specified by:
        getEphemeralContainerStatusesOrBuilderList in interface Generated.PodStatusOrBuilder
      • getEphemeralContainerStatusesCount

        public int getEphemeralContainerStatusesCount()
         Statuses for any ephemeral containers that have run in this pod.
         Each ephemeral container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
         +optional
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus ephemeralContainerStatuses = 13;
        Specified by:
        getEphemeralContainerStatusesCount in interface Generated.PodStatusOrBuilder
      • getEphemeralContainerStatuses

        public Generated.ContainerStatus getEphemeralContainerStatuses​(int index)
         Statuses for any ephemeral containers that have run in this pod.
         Each ephemeral container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
         +optional
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus ephemeralContainerStatuses = 13;
        Specified by:
        getEphemeralContainerStatuses in interface Generated.PodStatusOrBuilder
      • getEphemeralContainerStatusesOrBuilder

        public Generated.ContainerStatusOrBuilder getEphemeralContainerStatusesOrBuilder​(int index)
         Statuses for any ephemeral containers that have run in this pod.
         Each ephemeral container in the pod should have at most one status in this list,
         and all statuses should be for containers in the pod.
         However this is not enforced.
         If a status for a non-existent container is present in the list, or the list has duplicate names,
         the behavior of various Kubernetes components is not defined and those statuses might be
         ignored.
         More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status
         +optional
         +listType=atomic
         
        repeated .k8s.io.api.core.v1.ContainerStatus ephemeralContainerStatuses = 13;
        Specified by:
        getEphemeralContainerStatusesOrBuilder in interface Generated.PodStatusOrBuilder
      • hasResize

        public boolean hasResize()
         Status of resources resize desired for pod's containers.
         It is empty if no resources resize is pending.
         Any changes to container resources will automatically set this to "Proposed"
         +featureGate=InPlacePodVerticalScaling
         +optional
         
        optional string resize = 14;
        Specified by:
        hasResize in interface Generated.PodStatusOrBuilder
        Returns:
        Whether the resize field is set.
      • getResize

        public String getResize()
         Status of resources resize desired for pod's containers.
         It is empty if no resources resize is pending.
         Any changes to container resources will automatically set this to "Proposed"
         +featureGate=InPlacePodVerticalScaling
         +optional
         
        optional string resize = 14;
        Specified by:
        getResize in interface Generated.PodStatusOrBuilder
        Returns:
        The resize.
      • getResizeBytes

        public com.google.protobuf.ByteString getResizeBytes()
         Status of resources resize desired for pod's containers.
         It is empty if no resources resize is pending.
         Any changes to container resources will automatically set this to "Proposed"
         +featureGate=InPlacePodVerticalScaling
         +optional
         
        optional string resize = 14;
        Specified by:
        getResizeBytes in interface Generated.PodStatusOrBuilder
        Returns:
        The bytes for resize.
      • getResourceClaimStatusesCount

        public int getResourceClaimStatusesCount()
         Status of resource claims.
         +patchMergeKey=name
         +patchStrategy=merge,retainKeys
         +listType=map
         +listMapKey=name
         +featureGate=DynamicResourceAllocation
         +optional
         
        repeated .k8s.io.api.core.v1.PodResourceClaimStatus resourceClaimStatuses = 15;
        Specified by:
        getResourceClaimStatusesCount in interface Generated.PodStatusOrBuilder
      • getResourceClaimStatuses

        public Generated.PodResourceClaimStatus getResourceClaimStatuses​(int index)
         Status of resource claims.
         +patchMergeKey=name
         +patchStrategy=merge,retainKeys
         +listType=map
         +listMapKey=name
         +featureGate=DynamicResourceAllocation
         +optional
         
        repeated .k8s.io.api.core.v1.PodResourceClaimStatus resourceClaimStatuses = 15;
        Specified by:
        getResourceClaimStatuses in interface Generated.PodStatusOrBuilder
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3
      • writeTo

        public void writeTo​(com.google.protobuf.CodedOutputStream output)
                     throws IOException
        Specified by:
        writeTo in interface com.google.protobuf.MessageLite
        Overrides:
        writeTo in class com.google.protobuf.GeneratedMessageV3
        Throws:
        IOException
      • getSerializedSize

        public int getSerializedSize()
        Specified by:
        getSerializedSize in interface com.google.protobuf.MessageLite
        Overrides:
        getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      • equals

        public boolean equals​(Object obj)
        Specified by:
        equals in interface com.google.protobuf.Message
        Overrides:
        equals in class com.google.protobuf.AbstractMessage
      • hashCode

        public int hashCode()
        Specified by:
        hashCode in interface com.google.protobuf.Message
        Overrides:
        hashCode in class com.google.protobuf.AbstractMessage
      • parseFrom

        public static Generated.PodStatus parseFrom​(ByteBuffer data)
                                             throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Generated.PodStatus parseFrom​(ByteBuffer data,
                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                             throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Generated.PodStatus parseFrom​(com.google.protobuf.ByteString data)
                                             throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Generated.PodStatus parseFrom​(com.google.protobuf.ByteString data,
                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                             throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Generated.PodStatus parseFrom​(byte[] data)
                                             throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Generated.PodStatus parseFrom​(byte[] data,
                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                             throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Generated.PodStatus parseFrom​(com.google.protobuf.CodedInputStream input,
                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                             throws IOException
        Throws:
        IOException
      • newBuilderForType

        public Generated.PodStatus.Builder newBuilderForType()
        Specified by:
        newBuilderForType in interface com.google.protobuf.Message
        Specified by:
        newBuilderForType in interface com.google.protobuf.MessageLite
      • toBuilder

        public Generated.PodStatus.Builder toBuilder()
        Specified by:
        toBuilder in interface com.google.protobuf.Message
        Specified by:
        toBuilder in interface com.google.protobuf.MessageLite
      • newBuilderForType

        protected Generated.PodStatus.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
        Specified by:
        newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      • getParserForType

        public com.google.protobuf.Parser<Generated.PodStatus> getParserForType()
        Specified by:
        getParserForType in interface com.google.protobuf.Message
        Specified by:
        getParserForType in interface com.google.protobuf.MessageLite
        Overrides:
        getParserForType in class com.google.protobuf.GeneratedMessageV3
      • getDefaultInstanceForType

        public Generated.PodStatus getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder