Package k8s.io.api.core.v1
Interface Generated.ComponentConditionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.ComponentCondition,Generated.ComponentCondition.Builder
- Enclosing class:
- Generated
public static interface Generated.ComponentConditionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetError()Condition error code for a component.com.google.protobuf.ByteStringgetErrorBytes()Condition error code for a component.StringgetMessage()Message about the condition for a component.com.google.protobuf.ByteStringgetMessageBytes()Message about the condition for a component.StringgetStatus()Status of the condition for a component.com.google.protobuf.ByteStringgetStatusBytes()Status of the condition for a component.StringgetType()Type of condition for a component.com.google.protobuf.ByteStringgetTypeBytes()Type of condition for a component.booleanhasError()Condition error code for a component.booleanhasMessage()Message about the condition for a component.booleanhasStatus()Status of the condition for a component.booleanhasType()Type of condition for a component.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasType
boolean hasType()
Type of condition for a component. Valid value: "Healthy"
optional string type = 1;- Returns:
- Whether the type field is set.
-
getType
String getType()
Type of condition for a component. Valid value: "Healthy"
optional string type = 1;- Returns:
- The type.
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()
Type of condition for a component. Valid value: "Healthy"
optional string type = 1;- Returns:
- The bytes for type.
-
hasStatus
boolean hasStatus()
Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown".
optional string status = 2;- Returns:
- Whether the status field is set.
-
getStatus
String getStatus()
Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown".
optional string status = 2;- Returns:
- The status.
-
getStatusBytes
com.google.protobuf.ByteString getStatusBytes()
Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown".
optional string status = 2;- Returns:
- The bytes for status.
-
hasMessage
boolean hasMessage()
Message about the condition for a component. For example, information about a health check. +optional
optional string message = 3;- Returns:
- Whether the message field is set.
-
getMessage
String getMessage()
Message about the condition for a component. For example, information about a health check. +optional
optional string message = 3;- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
Message about the condition for a component. For example, information about a health check. +optional
optional string message = 3;- Returns:
- The bytes for message.
-
hasError
boolean hasError()
Condition error code for a component. For example, a health check error code. +optional
optional string error = 4;- Returns:
- Whether the error field is set.
-
getError
String getError()
Condition error code for a component. For example, a health check error code. +optional
optional string error = 4;- Returns:
- The error.
-
getErrorBytes
com.google.protobuf.ByteString getErrorBytes()
Condition error code for a component. For example, a health check error code. +optional
optional string error = 4;- Returns:
- The bytes for error.
-
-