Class Generated.PodStatus.Builder

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

    public static final class Generated.PodStatus.Builder
    extends com.google.protobuf.GeneratedMessageV3.Builder<Generated.PodStatus.Builder>
    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
    • Method Detail

      • 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.Builder<Generated.PodStatus.Builder>
      • clear

        public Generated.PodStatus.Builder clear()
        Specified by:
        clear in interface com.google.protobuf.Message.Builder
        Specified by:
        clear in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clear in class com.google.protobuf.GeneratedMessageV3.Builder<Generated.PodStatus.Builder>
      • getDescriptorForType

        public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.Message.Builder
        Specified by:
        getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
        Overrides:
        getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<Generated.PodStatus.Builder>
      • getDefaultInstanceForType

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

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

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

        public Generated.PodStatus.Builder clone()
        Specified by:
        clone in interface com.google.protobuf.Message.Builder
        Specified by:
        clone in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clone in class com.google.protobuf.GeneratedMessageV3.Builder<Generated.PodStatus.Builder>
      • setField

        public Generated.PodStatus.Builder setField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                    Object value)
        Specified by:
        setField in interface com.google.protobuf.Message.Builder
        Overrides:
        setField in class com.google.protobuf.GeneratedMessageV3.Builder<Generated.PodStatus.Builder>
      • clearField

        public Generated.PodStatus.Builder clearField​(com.google.protobuf.Descriptors.FieldDescriptor field)
        Specified by:
        clearField in interface com.google.protobuf.Message.Builder
        Overrides:
        clearField in class com.google.protobuf.GeneratedMessageV3.Builder<Generated.PodStatus.Builder>
      • clearOneof

        public Generated.PodStatus.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
        Specified by:
        clearOneof in interface com.google.protobuf.Message.Builder
        Overrides:
        clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<Generated.PodStatus.Builder>
      • setRepeatedField

        public Generated.PodStatus.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                            int index,
                                                            Object value)
        Specified by:
        setRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<Generated.PodStatus.Builder>
      • addRepeatedField

        public Generated.PodStatus.Builder addRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                            Object value)
        Specified by:
        addRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        addRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<Generated.PodStatus.Builder>
      • mergeFrom

        public Generated.PodStatus.Builder mergeFrom​(com.google.protobuf.Message other)
        Specified by:
        mergeFrom in interface com.google.protobuf.Message.Builder
        Overrides:
        mergeFrom in class com.google.protobuf.AbstractMessage.Builder<Generated.PodStatus.Builder>
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<Generated.PodStatus.Builder>
      • mergeFrom

        public Generated.PodStatus.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                              throws IOException
        Specified by:
        mergeFrom in interface com.google.protobuf.Message.Builder
        Specified by:
        mergeFrom in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        mergeFrom in class com.google.protobuf.AbstractMessage.Builder<Generated.PodStatus.Builder>
        Throws:
        IOException
      • 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.
      • setPhase

        public Generated.PodStatus.Builder setPhase​(String value)
         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;
        Parameters:
        value - The phase to set.
        Returns:
        This builder for chaining.
      • clearPhase

        public Generated.PodStatus.Builder clearPhase()
         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;
        Returns:
        This builder for chaining.
      • setPhaseBytes

        public Generated.PodStatus.Builder setPhaseBytes​(com.google.protobuf.ByteString value)
         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;
        Parameters:
        value - The bytes for phase to set.
        Returns:
        This builder for chaining.
      • 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
      • 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
      • setConditions

        public Generated.PodStatus.Builder setConditions​(int index,
                                                         Generated.PodCondition value)
         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;
      • setConditions

        public Generated.PodStatus.Builder setConditions​(int index,
                                                         Generated.PodCondition.Builder builderForValue)
         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;
      • addConditions

        public Generated.PodStatus.Builder addConditions​(Generated.PodCondition value)
         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;
      • addConditions

        public Generated.PodStatus.Builder addConditions​(int index,
                                                         Generated.PodCondition value)
         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;
      • addConditions

        public Generated.PodStatus.Builder addConditions​(Generated.PodCondition.Builder builderForValue)
         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;
      • addConditions

        public Generated.PodStatus.Builder addConditions​(int index,
                                                         Generated.PodCondition.Builder builderForValue)
         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;
      • addAllConditions

        public Generated.PodStatus.Builder addAllConditions​(Iterable<? extends Generated.PodCondition> values)
         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;
      • clearConditions

        public Generated.PodStatus.Builder clearConditions()
         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;
      • removeConditions

        public Generated.PodStatus.Builder removeConditions​(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;
      • getConditionsBuilder

        public Generated.PodCondition.Builder getConditionsBuilder​(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;
      • 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
      • 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
      • addConditionsBuilder

        public Generated.PodCondition.Builder addConditionsBuilder()
         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;
      • addConditionsBuilder

        public Generated.PodCondition.Builder addConditionsBuilder​(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;
      • getConditionsBuilderList

        public List<Generated.PodCondition.Builder> getConditionsBuilderList()
         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;
      • 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.
      • setMessage

        public Generated.PodStatus.Builder setMessage​(String value)
         A human readable message indicating details about why the pod is in this condition.
         +optional
         
        optional string message = 3;
        Parameters:
        value - The message to set.
        Returns:
        This builder for chaining.
      • clearMessage

        public Generated.PodStatus.Builder clearMessage()
         A human readable message indicating details about why the pod is in this condition.
         +optional
         
        optional string message = 3;
        Returns:
        This builder for chaining.
      • setMessageBytes

        public Generated.PodStatus.Builder setMessageBytes​(com.google.protobuf.ByteString value)
         A human readable message indicating details about why the pod is in this condition.
         +optional
         
        optional string message = 3;
        Parameters:
        value - The bytes for message to set.
        Returns:
        This builder for chaining.
      • 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.
      • setReason

        public Generated.PodStatus.Builder setReason​(String value)
         A brief CamelCase message indicating details about why the pod is in this state.
         e.g. 'Evicted'
         +optional
         
        optional string reason = 4;
        Parameters:
        value - The reason to set.
        Returns:
        This builder for chaining.
      • clearReason

        public Generated.PodStatus.Builder clearReason()
         A brief CamelCase message indicating details about why the pod is in this state.
         e.g. 'Evicted'
         +optional
         
        optional string reason = 4;
        Returns:
        This builder for chaining.
      • setReasonBytes

        public Generated.PodStatus.Builder setReasonBytes​(com.google.protobuf.ByteString value)
         A brief CamelCase message indicating details about why the pod is in this state.
         e.g. 'Evicted'
         +optional
         
        optional string reason = 4;
        Parameters:
        value - The bytes for reason to set.
        Returns:
        This builder for chaining.
      • 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.
      • setNominatedNodeName

        public Generated.PodStatus.Builder setNominatedNodeName​(String value)
         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;
        Parameters:
        value - The nominatedNodeName to set.
        Returns:
        This builder for chaining.
      • clearNominatedNodeName

        public Generated.PodStatus.Builder clearNominatedNodeName()
         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;
        Returns:
        This builder for chaining.
      • setNominatedNodeNameBytes

        public Generated.PodStatus.Builder setNominatedNodeNameBytes​(com.google.protobuf.ByteString value)
         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;
        Parameters:
        value - The bytes for nominatedNodeName to set.
        Returns:
        This builder for chaining.
      • 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.
      • setHostIP

        public Generated.PodStatus.Builder setHostIP​(String value)
         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;
        Parameters:
        value - The hostIP to set.
        Returns:
        This builder for chaining.
      • clearHostIP

        public Generated.PodStatus.Builder clearHostIP()
         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;
        Returns:
        This builder for chaining.
      • setHostIPBytes

        public Generated.PodStatus.Builder setHostIPBytes​(com.google.protobuf.ByteString value)
         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;
        Parameters:
        value - The bytes for hostIP to set.
        Returns:
        This builder for chaining.
      • 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
      • 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
      • setHostIPs

        public Generated.PodStatus.Builder setHostIPs​(int index,
                                                      Generated.HostIP value)
         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;
      • setHostIPs

        public Generated.PodStatus.Builder setHostIPs​(int index,
                                                      Generated.HostIP.Builder builderForValue)
         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;
      • addHostIPs

        public Generated.PodStatus.Builder addHostIPs​(Generated.HostIP value)
         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;
      • addHostIPs

        public Generated.PodStatus.Builder addHostIPs​(int index,
                                                      Generated.HostIP value)
         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;
      • addHostIPs

        public Generated.PodStatus.Builder addHostIPs​(Generated.HostIP.Builder builderForValue)
         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;
      • addHostIPs

        public Generated.PodStatus.Builder addHostIPs​(int index,
                                                      Generated.HostIP.Builder builderForValue)
         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;
      • addAllHostIPs

        public Generated.PodStatus.Builder addAllHostIPs​(Iterable<? extends Generated.HostIP> values)
         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;
      • clearHostIPs

        public Generated.PodStatus.Builder clearHostIPs()
         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;
      • removeHostIPs

        public Generated.PodStatus.Builder removeHostIPs​(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;
      • getHostIPsBuilder

        public Generated.HostIP.Builder getHostIPsBuilder​(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;
      • 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
      • 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
      • addHostIPsBuilder

        public Generated.HostIP.Builder addHostIPsBuilder()
         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;
      • addHostIPsBuilder

        public Generated.HostIP.Builder addHostIPsBuilder​(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;
      • getHostIPsBuilderList

        public List<Generated.HostIP.Builder> getHostIPsBuilderList()
         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;
      • 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.
      • setPodIP

        public Generated.PodStatus.Builder setPodIP​(String value)
         podIP address allocated to the pod. Routable at least within the cluster.
         Empty if not yet allocated.
         +optional
         
        optional string podIP = 6;
        Parameters:
        value - The podIP to set.
        Returns:
        This builder for chaining.
      • clearPodIP

        public Generated.PodStatus.Builder clearPodIP()
         podIP address allocated to the pod. Routable at least within the cluster.
         Empty if not yet allocated.
         +optional
         
        optional string podIP = 6;
        Returns:
        This builder for chaining.
      • setPodIPBytes

        public Generated.PodStatus.Builder setPodIPBytes​(com.google.protobuf.ByteString value)
         podIP address allocated to the pod. Routable at least within the cluster.
         Empty if not yet allocated.
         +optional
         
        optional string podIP = 6;
        Parameters:
        value - The bytes for podIP to set.
        Returns:
        This builder for chaining.
      • 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
      • 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
      • setPodIPs

        public Generated.PodStatus.Builder setPodIPs​(int index,
                                                     Generated.PodIP value)
         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;
      • setPodIPs

        public Generated.PodStatus.Builder setPodIPs​(int index,
                                                     Generated.PodIP.Builder builderForValue)
         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;
      • addPodIPs

        public Generated.PodStatus.Builder addPodIPs​(Generated.PodIP value)
         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;
      • addPodIPs

        public Generated.PodStatus.Builder addPodIPs​(int index,
                                                     Generated.PodIP value)
         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;
      • addPodIPs

        public Generated.PodStatus.Builder addPodIPs​(Generated.PodIP.Builder builderForValue)
         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;
      • addPodIPs

        public Generated.PodStatus.Builder addPodIPs​(int index,
                                                     Generated.PodIP.Builder builderForValue)
         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;
      • addAllPodIPs

        public Generated.PodStatus.Builder addAllPodIPs​(Iterable<? extends Generated.PodIP> values)
         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;
      • clearPodIPs

        public Generated.PodStatus.Builder clearPodIPs()
         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;
      • removePodIPs

        public Generated.PodStatus.Builder removePodIPs​(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;
      • getPodIPsBuilder

        public Generated.PodIP.Builder getPodIPsBuilder​(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;
      • 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
      • 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
      • addPodIPsBuilder

        public Generated.PodIP.Builder addPodIPsBuilder()
         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;
      • addPodIPsBuilder

        public Generated.PodIP.Builder addPodIPsBuilder​(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;
      • getPodIPsBuilderList

        public List<Generated.PodIP.Builder> getPodIPsBuilderList()
         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;
      • 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.
      • setStartTime

        public Generated.PodStatus.Builder setStartTime​(Generated.Time value)
         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;
      • setStartTime

        public Generated.PodStatus.Builder setStartTime​(Generated.Time.Builder builderForValue)
         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;
      • mergeStartTime

        public Generated.PodStatus.Builder mergeStartTime​(Generated.Time value)
         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;
      • clearStartTime

        public Generated.PodStatus.Builder clearStartTime()
         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;
      • getStartTimeBuilder

        public Generated.Time.Builder getStartTimeBuilder()
         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;
      • 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
      • 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
      • setInitContainerStatuses

        public Generated.PodStatus.Builder setInitContainerStatuses​(int index,
                                                                    Generated.ContainerStatus value)
         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;
      • setInitContainerStatuses

        public Generated.PodStatus.Builder setInitContainerStatuses​(int index,
                                                                    Generated.ContainerStatus.Builder builderForValue)
         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;
      • addInitContainerStatuses

        public Generated.PodStatus.Builder addInitContainerStatuses​(Generated.ContainerStatus value)
         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;
      • addInitContainerStatuses

        public Generated.PodStatus.Builder addInitContainerStatuses​(int index,
                                                                    Generated.ContainerStatus value)
         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;
      • addInitContainerStatuses

        public Generated.PodStatus.Builder addInitContainerStatuses​(Generated.ContainerStatus.Builder builderForValue)
         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;
      • addInitContainerStatuses

        public Generated.PodStatus.Builder addInitContainerStatuses​(int index,
                                                                    Generated.ContainerStatus.Builder builderForValue)
         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;
      • addAllInitContainerStatuses

        public Generated.PodStatus.Builder addAllInitContainerStatuses​(Iterable<? extends Generated.ContainerStatus> values)
         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;
      • clearInitContainerStatuses

        public Generated.PodStatus.Builder clearInitContainerStatuses()
         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;
      • removeInitContainerStatuses

        public Generated.PodStatus.Builder removeInitContainerStatuses​(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;
      • getInitContainerStatusesBuilder

        public Generated.ContainerStatus.Builder getInitContainerStatusesBuilder​(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;
      • 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
      • 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
      • addInitContainerStatusesBuilder

        public Generated.ContainerStatus.Builder addInitContainerStatusesBuilder()
         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;
      • addInitContainerStatusesBuilder

        public Generated.ContainerStatus.Builder addInitContainerStatusesBuilder​(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;
      • getInitContainerStatusesBuilderList

        public List<Generated.ContainerStatus.Builder> getInitContainerStatusesBuilderList()
         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;
      • 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
      • 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
      • setContainerStatuses

        public Generated.PodStatus.Builder setContainerStatuses​(int index,
                                                                Generated.ContainerStatus value)
         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;
      • setContainerStatuses

        public Generated.PodStatus.Builder setContainerStatuses​(int index,
                                                                Generated.ContainerStatus.Builder builderForValue)
         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;
      • addContainerStatuses

        public Generated.PodStatus.Builder addContainerStatuses​(Generated.ContainerStatus value)
         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;
      • addContainerStatuses

        public Generated.PodStatus.Builder addContainerStatuses​(int index,
                                                                Generated.ContainerStatus value)
         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;
      • addContainerStatuses

        public Generated.PodStatus.Builder addContainerStatuses​(Generated.ContainerStatus.Builder builderForValue)
         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;
      • addContainerStatuses

        public Generated.PodStatus.Builder addContainerStatuses​(int index,
                                                                Generated.ContainerStatus.Builder builderForValue)
         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;
      • addAllContainerStatuses

        public Generated.PodStatus.Builder addAllContainerStatuses​(Iterable<? extends Generated.ContainerStatus> values)
         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;
      • clearContainerStatuses

        public Generated.PodStatus.Builder clearContainerStatuses()
         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;
      • removeContainerStatuses

        public Generated.PodStatus.Builder removeContainerStatuses​(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;
      • getContainerStatusesBuilder

        public Generated.ContainerStatus.Builder getContainerStatusesBuilder​(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;
      • 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
      • 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
      • addContainerStatusesBuilder

        public Generated.ContainerStatus.Builder addContainerStatusesBuilder()
         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;
      • addContainerStatusesBuilder

        public Generated.ContainerStatus.Builder addContainerStatusesBuilder​(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;
      • getContainerStatusesBuilderList

        public List<Generated.ContainerStatus.Builder> getContainerStatusesBuilderList()
         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;
      • 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.
      • setQosClass

        public Generated.PodStatus.Builder setQosClass​(String value)
         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;
        Parameters:
        value - The qosClass to set.
        Returns:
        This builder for chaining.
      • clearQosClass

        public Generated.PodStatus.Builder clearQosClass()
         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;
        Returns:
        This builder for chaining.
      • setQosClassBytes

        public Generated.PodStatus.Builder setQosClassBytes​(com.google.protobuf.ByteString value)
         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;
        Parameters:
        value - The bytes for qosClass to set.
        Returns:
        This builder for chaining.
      • 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
      • 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
      • setEphemeralContainerStatuses

        public Generated.PodStatus.Builder setEphemeralContainerStatuses​(int index,
                                                                         Generated.ContainerStatus value)
         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;
      • setEphemeralContainerStatuses

        public Generated.PodStatus.Builder setEphemeralContainerStatuses​(int index,
                                                                         Generated.ContainerStatus.Builder builderForValue)
         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;
      • addEphemeralContainerStatuses

        public Generated.PodStatus.Builder addEphemeralContainerStatuses​(Generated.ContainerStatus value)
         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;
      • addEphemeralContainerStatuses

        public Generated.PodStatus.Builder addEphemeralContainerStatuses​(int index,
                                                                         Generated.ContainerStatus value)
         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;
      • addEphemeralContainerStatuses

        public Generated.PodStatus.Builder addEphemeralContainerStatuses​(Generated.ContainerStatus.Builder builderForValue)
         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;
      • addEphemeralContainerStatuses

        public Generated.PodStatus.Builder addEphemeralContainerStatuses​(int index,
                                                                         Generated.ContainerStatus.Builder builderForValue)
         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;
      • addAllEphemeralContainerStatuses

        public Generated.PodStatus.Builder addAllEphemeralContainerStatuses​(Iterable<? extends Generated.ContainerStatus> values)
         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;
      • clearEphemeralContainerStatuses

        public Generated.PodStatus.Builder clearEphemeralContainerStatuses()
         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;
      • removeEphemeralContainerStatuses

        public Generated.PodStatus.Builder removeEphemeralContainerStatuses​(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;
      • getEphemeralContainerStatusesBuilder

        public Generated.ContainerStatus.Builder getEphemeralContainerStatusesBuilder​(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;
      • 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
      • 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
      • addEphemeralContainerStatusesBuilder

        public Generated.ContainerStatus.Builder addEphemeralContainerStatusesBuilder()
         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;
      • addEphemeralContainerStatusesBuilder

        public Generated.ContainerStatus.Builder addEphemeralContainerStatusesBuilder​(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;
      • getEphemeralContainerStatusesBuilderList

        public List<Generated.ContainerStatus.Builder> getEphemeralContainerStatusesBuilderList()
         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;
      • 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.
      • setResize

        public Generated.PodStatus.Builder setResize​(String value)
         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;
        Parameters:
        value - The resize to set.
        Returns:
        This builder for chaining.
      • clearResize

        public Generated.PodStatus.Builder clearResize()
         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;
        Returns:
        This builder for chaining.
      • setResizeBytes

        public Generated.PodStatus.Builder setResizeBytes​(com.google.protobuf.ByteString value)
         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;
        Parameters:
        value - The bytes for resize to set.
        Returns:
        This builder for chaining.
      • 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
      • setResourceClaimStatuses

        public Generated.PodStatus.Builder setResourceClaimStatuses​(int index,
                                                                    Generated.PodResourceClaimStatus value)
         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;
      • setResourceClaimStatuses

        public Generated.PodStatus.Builder setResourceClaimStatuses​(int index,
                                                                    Generated.PodResourceClaimStatus.Builder builderForValue)
         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;
      • addResourceClaimStatuses

        public Generated.PodStatus.Builder addResourceClaimStatuses​(Generated.PodResourceClaimStatus value)
         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;
      • addResourceClaimStatuses

        public Generated.PodStatus.Builder addResourceClaimStatuses​(int index,
                                                                    Generated.PodResourceClaimStatus value)
         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;
      • addResourceClaimStatuses

        public Generated.PodStatus.Builder addResourceClaimStatuses​(Generated.PodResourceClaimStatus.Builder builderForValue)
         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;
      • addResourceClaimStatuses

        public Generated.PodStatus.Builder addResourceClaimStatuses​(int index,
                                                                    Generated.PodResourceClaimStatus.Builder builderForValue)
         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;
      • addAllResourceClaimStatuses

        public Generated.PodStatus.Builder addAllResourceClaimStatuses​(Iterable<? extends Generated.PodResourceClaimStatus> values)
         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;
      • clearResourceClaimStatuses

        public Generated.PodStatus.Builder clearResourceClaimStatuses()
         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;
      • removeResourceClaimStatuses

        public Generated.PodStatus.Builder removeResourceClaimStatuses​(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;
      • getResourceClaimStatusesBuilder

        public Generated.PodResourceClaimStatus.Builder getResourceClaimStatusesBuilder​(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;
      • addResourceClaimStatusesBuilder

        public Generated.PodResourceClaimStatus.Builder addResourceClaimStatusesBuilder()
         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;
      • addResourceClaimStatusesBuilder

        public Generated.PodResourceClaimStatus.Builder addResourceClaimStatusesBuilder​(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;
      • getResourceClaimStatusesBuilderList

        public List<Generated.PodResourceClaimStatus.Builder> getResourceClaimStatusesBuilderList()
         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;
      • setUnknownFields

        public final Generated.PodStatus.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        setUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<Generated.PodStatus.Builder>
      • mergeUnknownFields

        public final Generated.PodStatus.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        mergeUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<Generated.PodStatus.Builder>