Class V1beta1Extensions.DaemonSetStatus

java.lang.Object
com.google.protobuf.AbstractMessageLite
com.google.protobuf.AbstractMessage
com.google.protobuf.GeneratedMessageV3
io.kubernetes.client.proto.V1beta1Extensions.DaemonSetStatus
All Implemented Interfaces:
com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, V1beta1Extensions.DaemonSetStatusOrBuilder, Serializable
Enclosing class:
V1beta1Extensions

public static final class V1beta1Extensions.DaemonSetStatus extends com.google.protobuf.GeneratedMessageV3 implements V1beta1Extensions.DaemonSetStatusOrBuilder
 DaemonSetStatus represents the current status of a daemon set.
 
Protobuf type k8s.io.api.extensions.v1beta1.DaemonSetStatus
See Also:
  • Field Details

    • CURRENTNUMBERSCHEDULED_FIELD_NUMBER

      public static final int CURRENTNUMBERSCHEDULED_FIELD_NUMBER
      See Also:
    • NUMBERMISSCHEDULED_FIELD_NUMBER

      public static final int NUMBERMISSCHEDULED_FIELD_NUMBER
      See Also:
    • DESIREDNUMBERSCHEDULED_FIELD_NUMBER

      public static final int DESIREDNUMBERSCHEDULED_FIELD_NUMBER
      See Also:
    • NUMBERREADY_FIELD_NUMBER

      public static final int NUMBERREADY_FIELD_NUMBER
      See Also:
    • OBSERVEDGENERATION_FIELD_NUMBER

      public static final int OBSERVEDGENERATION_FIELD_NUMBER
      See Also:
    • UPDATEDNUMBERSCHEDULED_FIELD_NUMBER

      public static final int UPDATEDNUMBERSCHEDULED_FIELD_NUMBER
      See Also:
    • NUMBERAVAILABLE_FIELD_NUMBER

      public static final int NUMBERAVAILABLE_FIELD_NUMBER
      See Also:
    • NUMBERUNAVAILABLE_FIELD_NUMBER

      public static final int NUMBERUNAVAILABLE_FIELD_NUMBER
      See Also:
    • COLLISIONCOUNT_FIELD_NUMBER

      public static final int COLLISIONCOUNT_FIELD_NUMBER
      See Also:
    • CONDITIONS_FIELD_NUMBER

      public static final int CONDITIONS_FIELD_NUMBER
      See Also:
    • PARSER

      @Deprecated public static final com.google.protobuf.Parser<V1beta1Extensions.DaemonSetStatus> PARSER
      Deprecated.
  • Method Details

    • getUnknownFields

      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
    • getDescriptor

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

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

      public boolean hasCurrentNumberScheduled()
       The number of nodes that are running at least 1
       daemon pod and are supposed to run the daemon pod.
       More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
       
      optional int32 currentNumberScheduled = 1;
      Specified by:
      hasCurrentNumberScheduled in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getCurrentNumberScheduled

      public int getCurrentNumberScheduled()
       The number of nodes that are running at least 1
       daemon pod and are supposed to run the daemon pod.
       More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
       
      optional int32 currentNumberScheduled = 1;
      Specified by:
      getCurrentNumberScheduled in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • hasNumberMisscheduled

      public boolean hasNumberMisscheduled()
       The number of nodes that are running the daemon pod, but are
       not supposed to run the daemon pod.
       More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
       
      optional int32 numberMisscheduled = 2;
      Specified by:
      hasNumberMisscheduled in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getNumberMisscheduled

      public int getNumberMisscheduled()
       The number of nodes that are running the daemon pod, but are
       not supposed to run the daemon pod.
       More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
       
      optional int32 numberMisscheduled = 2;
      Specified by:
      getNumberMisscheduled in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • hasDesiredNumberScheduled

      public boolean hasDesiredNumberScheduled()
       The total number of nodes that should be running the daemon
       pod (including nodes correctly running the daemon pod).
       More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
       
      optional int32 desiredNumberScheduled = 3;
      Specified by:
      hasDesiredNumberScheduled in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getDesiredNumberScheduled

      public int getDesiredNumberScheduled()
       The total number of nodes that should be running the daemon
       pod (including nodes correctly running the daemon pod).
       More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
       
      optional int32 desiredNumberScheduled = 3;
      Specified by:
      getDesiredNumberScheduled in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • hasNumberReady

      public boolean hasNumberReady()
       The number of nodes that should be running the daemon pod and have one
       or more of the daemon pod running and ready.
       
      optional int32 numberReady = 4;
      Specified by:
      hasNumberReady in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getNumberReady

      public int getNumberReady()
       The number of nodes that should be running the daemon pod and have one
       or more of the daemon pod running and ready.
       
      optional int32 numberReady = 4;
      Specified by:
      getNumberReady in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • hasObservedGeneration

      public boolean hasObservedGeneration()
       The most recent generation observed by the daemon set controller.
       +optional
       
      optional int64 observedGeneration = 5;
      Specified by:
      hasObservedGeneration in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getObservedGeneration

      public long getObservedGeneration()
       The most recent generation observed by the daemon set controller.
       +optional
       
      optional int64 observedGeneration = 5;
      Specified by:
      getObservedGeneration in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • hasUpdatedNumberScheduled

      public boolean hasUpdatedNumberScheduled()
       The total number of nodes that are running updated daemon pod
       +optional
       
      optional int32 updatedNumberScheduled = 6;
      Specified by:
      hasUpdatedNumberScheduled in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getUpdatedNumberScheduled

      public int getUpdatedNumberScheduled()
       The total number of nodes that are running updated daemon pod
       +optional
       
      optional int32 updatedNumberScheduled = 6;
      Specified by:
      getUpdatedNumberScheduled in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • hasNumberAvailable

      public boolean hasNumberAvailable()
       The number of nodes that should be running the
       daemon pod and have one or more of the daemon pod running and
       available (ready for at least spec.minReadySeconds)
       +optional
       
      optional int32 numberAvailable = 7;
      Specified by:
      hasNumberAvailable in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getNumberAvailable

      public int getNumberAvailable()
       The number of nodes that should be running the
       daemon pod and have one or more of the daemon pod running and
       available (ready for at least spec.minReadySeconds)
       +optional
       
      optional int32 numberAvailable = 7;
      Specified by:
      getNumberAvailable in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • hasNumberUnavailable

      public boolean hasNumberUnavailable()
       The number of nodes that should be running the
       daemon pod and have none of the daemon pod running and available
       (ready for at least spec.minReadySeconds)
       +optional
       
      optional int32 numberUnavailable = 8;
      Specified by:
      hasNumberUnavailable in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getNumberUnavailable

      public int getNumberUnavailable()
       The number of nodes that should be running the
       daemon pod and have none of the daemon pod running and available
       (ready for at least spec.minReadySeconds)
       +optional
       
      optional int32 numberUnavailable = 8;
      Specified by:
      getNumberUnavailable in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • hasCollisionCount

      public boolean hasCollisionCount()
       Count of hash collisions for the DaemonSet. The DaemonSet controller
       uses this field as a collision avoidance mechanism when it needs to
       create the name for the newest ControllerRevision.
       +optional
       
      optional int32 collisionCount = 9;
      Specified by:
      hasCollisionCount in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getCollisionCount

      public int getCollisionCount()
       Count of hash collisions for the DaemonSet. The DaemonSet controller
       uses this field as a collision avoidance mechanism when it needs to
       create the name for the newest ControllerRevision.
       +optional
       
      optional int32 collisionCount = 9;
      Specified by:
      getCollisionCount in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getConditionsList

      public List<V1beta1Extensions.DaemonSetCondition> getConditionsList()
       Represents the latest available observations of a DaemonSet's current state.
       +optional
       +patchMergeKey=type
       +patchStrategy=merge
       
      repeated .k8s.io.api.extensions.v1beta1.DaemonSetCondition conditions = 10;
      Specified by:
      getConditionsList in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getConditionsOrBuilderList

      public List<? extends V1beta1Extensions.DaemonSetConditionOrBuilder> getConditionsOrBuilderList()
       Represents the latest available observations of a DaemonSet's current state.
       +optional
       +patchMergeKey=type
       +patchStrategy=merge
       
      repeated .k8s.io.api.extensions.v1beta1.DaemonSetCondition conditions = 10;
      Specified by:
      getConditionsOrBuilderList in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getConditionsCount

      public int getConditionsCount()
       Represents the latest available observations of a DaemonSet's current state.
       +optional
       +patchMergeKey=type
       +patchStrategy=merge
       
      repeated .k8s.io.api.extensions.v1beta1.DaemonSetCondition conditions = 10;
      Specified by:
      getConditionsCount in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getConditions

      public V1beta1Extensions.DaemonSetCondition getConditions(int index)
       Represents the latest available observations of a DaemonSet's current state.
       +optional
       +patchMergeKey=type
       +patchStrategy=merge
       
      repeated .k8s.io.api.extensions.v1beta1.DaemonSetCondition conditions = 10;
      Specified by:
      getConditions in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • getConditionsOrBuilder

      public V1beta1Extensions.DaemonSetConditionOrBuilder getConditionsOrBuilder(int index)
       Represents the latest available observations of a DaemonSet's current state.
       +optional
       +patchMergeKey=type
       +patchStrategy=merge
       
      repeated .k8s.io.api.extensions.v1beta1.DaemonSetCondition conditions = 10;
      Specified by:
      getConditionsOrBuilder in interface V1beta1Extensions.DaemonSetStatusOrBuilder
    • isInitialized

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

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

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

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

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

      public static V1beta1Extensions.DaemonSetStatus parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static V1beta1Extensions.DaemonSetStatus parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static V1beta1Extensions.DaemonSetStatus parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static V1beta1Extensions.DaemonSetStatus parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static V1beta1Extensions.DaemonSetStatus parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

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

      public static V1beta1Extensions.DaemonSetStatus parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static V1beta1Extensions.DaemonSetStatus parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static V1beta1Extensions.DaemonSetStatus parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static V1beta1Extensions.DaemonSetStatus parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static V1beta1Extensions.DaemonSetStatus parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

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

      public V1beta1Extensions.DaemonSetStatus.Builder newBuilderForType()
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
    • newBuilder

      public static V1beta1Extensions.DaemonSetStatus.Builder newBuilder()
    • newBuilder

    • toBuilder

      Specified by:
      toBuilder in interface com.google.protobuf.Message
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
    • newBuilderForType

      protected V1beta1Extensions.DaemonSetStatus.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstance

      public static V1beta1Extensions.DaemonSetStatus getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<V1beta1Extensions.DaemonSetStatus> parser()
    • getParserForType

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

      public V1beta1Extensions.DaemonSetStatus getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder