Interface NodeTaintOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    NodeTaint, NodeTaint.Builder

    public interface NodeTaintOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      NodeTaint.Effect getEffect()
      Effect for taint.
      int getEffectValue()
      Effect for taint.
      String getKey()
      Key for taint.
      com.google.protobuf.ByteString getKeyBytes()
      Key for taint.
      String getValue()
      Value for taint.
      com.google.protobuf.ByteString getValueBytes()
      Value for taint.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getKey

        String getKey()
         Key for taint.
         
        string key = 1;
        Returns:
        The key.
      • getKeyBytes

        com.google.protobuf.ByteString getKeyBytes()
         Key for taint.
         
        string key = 1;
        Returns:
        The bytes for key.
      • getValue

        String getValue()
         Value for taint.
         
        string value = 2;
        Returns:
        The value.
      • getValueBytes

        com.google.protobuf.ByteString getValueBytes()
         Value for taint.
         
        string value = 2;
        Returns:
        The bytes for value.
      • getEffectValue

        int getEffectValue()
         Effect for taint.
         
        .google.container.v1beta1.NodeTaint.Effect effect = 3;
        Returns:
        The enum numeric value on the wire for effect.
      • getEffect

        NodeTaint.Effect getEffect()
         Effect for taint.
         
        .google.container.v1beta1.NodeTaint.Effect effect = 3;
        Returns:
        The effect.