Interface SecretV1.SecretOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SecretV1.Secret,SecretV1.Secret.Builder
- Enclosing class:
- SecretV1
public static interface SecretV1.SecretOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetLabel()optional string label = 2;com.google.protobuf.ByteStringgetLabelBytes()optional string label = 2;com.google.protobuf.ByteStringgetSecret()required bytes secret = 1;booleanhasLabel()optional string label = 2;booleanhasSecret()required bytes secret = 1;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasSecret
boolean hasSecret()
required bytes secret = 1;- Returns:
- Whether the secret field is set.
-
getSecret
com.google.protobuf.ByteString getSecret()
required bytes secret = 1;- Returns:
- The secret.
-
hasLabel
boolean hasLabel()
optional string label = 2;- Returns:
- Whether the label field is set.
-
getLabel
java.lang.String getLabel()
optional string label = 2;- Returns:
- The label.
-
getLabelBytes
com.google.protobuf.ByteString getLabelBytes()
optional string label = 2;- Returns:
- The bytes for label.
-
-