Package k8s.io.api.core.v1
Interface Generated.SecretReferenceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.SecretReference,Generated.SecretReference.Builder
- Enclosing class:
- Generated
public static interface Generated.SecretReferenceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()name is unique within a namespace to reference a secret resource.com.google.protobuf.ByteStringgetNameBytes()name is unique within a namespace to reference a secret resource.StringgetNamespace()namespace defines the space within which the secret name must be unique.com.google.protobuf.ByteStringgetNamespaceBytes()namespace defines the space within which the secret name must be unique.booleanhasName()name is unique within a namespace to reference a secret resource.booleanhasNamespace()namespace defines the space within which the secret name must be unique.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasName
boolean hasName()
name is unique within a namespace to reference a secret resource. +optional
optional string name = 1;- Returns:
- Whether the name field is set.
-
getName
String getName()
name is unique within a namespace to reference a secret resource. +optional
optional string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
name is unique within a namespace to reference a secret resource. +optional
optional string name = 1;- Returns:
- The bytes for name.
-
hasNamespace
boolean hasNamespace()
namespace defines the space within which the secret name must be unique. +optional
optional string namespace = 2;- Returns:
- Whether the namespace field is set.
-
getNamespace
String getNamespace()
namespace defines the space within which the secret name must be unique. +optional
optional string namespace = 2;- Returns:
- The namespace.
-
getNamespaceBytes
com.google.protobuf.ByteString getNamespaceBytes()
namespace defines the space within which the secret name must be unique. +optional
optional string namespace = 2;- Returns:
- The bytes for namespace.
-
-