Class Generated.Secret

  • All Implemented Interfaces:
    com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Serializable, Generated.SecretOrBuilder
    Enclosing class:
    Generated

    public static final class Generated.Secret
    extends com.google.protobuf.GeneratedMessageV3
    implements Generated.SecretOrBuilder
     Secret holds secret data of a certain type. The total bytes of the values in
     the Data field must be less than MaxSecretSize bytes.
     
    Protobuf type k8s.io.api.core.v1.Secret
    See Also:
    Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  Generated.Secret.Builder
      Secret holds secret data of a certain type.
      • Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

        com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageT extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT>,​BuilderT extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageT,​BuilderT>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageT extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageT>>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
      • Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

        com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
    • Method Detail

      • newInstance

        protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        Overrides:
        newInstance in class com.google.protobuf.GeneratedMessageV3
      • getDescriptor

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

        protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldReflection​(int number)
        Overrides:
        internalGetMapFieldReflection in class com.google.protobuf.GeneratedMessageV3
      • internalGetFieldAccessorTable

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

        public boolean hasMetadata()
         Standard object's metadata.
         More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
         +optional
         
        optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
        Specified by:
        hasMetadata in interface Generated.SecretOrBuilder
        Returns:
        Whether the metadata field is set.
      • getMetadata

        public Generated.ObjectMeta getMetadata()
         Standard object's metadata.
         More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
         +optional
         
        optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
        Specified by:
        getMetadata in interface Generated.SecretOrBuilder
        Returns:
        The metadata.
      • getMetadataOrBuilder

        public Generated.ObjectMetaOrBuilder getMetadataOrBuilder()
         Standard object's metadata.
         More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
         +optional
         
        optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
        Specified by:
        getMetadataOrBuilder in interface Generated.SecretOrBuilder
      • hasImmutable

        public boolean hasImmutable()
         Immutable, if set to true, ensures that data stored in the Secret cannot
         be updated (only object metadata can be modified).
         If not set to true, the field can be modified at any time.
         Defaulted to nil.
         +optional
         
        optional bool immutable = 5;
        Specified by:
        hasImmutable in interface Generated.SecretOrBuilder
        Returns:
        Whether the immutable field is set.
      • getImmutable

        public boolean getImmutable()
         Immutable, if set to true, ensures that data stored in the Secret cannot
         be updated (only object metadata can be modified).
         If not set to true, the field can be modified at any time.
         Defaulted to nil.
         +optional
         
        optional bool immutable = 5;
        Specified by:
        getImmutable in interface Generated.SecretOrBuilder
        Returns:
        The immutable.
      • getDataCount

        public int getDataCount()
        Description copied from interface: Generated.SecretOrBuilder
         Data contains the secret data. Each key must consist of alphanumeric
         characters, '-', '_' or '.'. The serialized form of the secret data is a
         base64 encoded string, representing the arbitrary (possibly non-string)
         data value here. Described in https://tools.ietf.org/html/rfc4648#section-4
         +optional
         
        map<string, bytes> data = 2;
        Specified by:
        getDataCount in interface Generated.SecretOrBuilder
      • containsData

        public boolean containsData​(String key)
         Data contains the secret data. Each key must consist of alphanumeric
         characters, '-', '_' or '.'. The serialized form of the secret data is a
         base64 encoded string, representing the arbitrary (possibly non-string)
         data value here. Described in https://tools.ietf.org/html/rfc4648#section-4
         +optional
         
        map<string, bytes> data = 2;
        Specified by:
        containsData in interface Generated.SecretOrBuilder
      • getDataMap

        public Map<String,​com.google.protobuf.ByteString> getDataMap()
         Data contains the secret data. Each key must consist of alphanumeric
         characters, '-', '_' or '.'. The serialized form of the secret data is a
         base64 encoded string, representing the arbitrary (possibly non-string)
         data value here. Described in https://tools.ietf.org/html/rfc4648#section-4
         +optional
         
        map<string, bytes> data = 2;
        Specified by:
        getDataMap in interface Generated.SecretOrBuilder
      • getDataOrDefault

        public com.google.protobuf.ByteString getDataOrDefault​(String key,
                                                               com.google.protobuf.ByteString defaultValue)
         Data contains the secret data. Each key must consist of alphanumeric
         characters, '-', '_' or '.'. The serialized form of the secret data is a
         base64 encoded string, representing the arbitrary (possibly non-string)
         data value here. Described in https://tools.ietf.org/html/rfc4648#section-4
         +optional
         
        map<string, bytes> data = 2;
        Specified by:
        getDataOrDefault in interface Generated.SecretOrBuilder
      • getDataOrThrow

        public com.google.protobuf.ByteString getDataOrThrow​(String key)
         Data contains the secret data. Each key must consist of alphanumeric
         characters, '-', '_' or '.'. The serialized form of the secret data is a
         base64 encoded string, representing the arbitrary (possibly non-string)
         data value here. Described in https://tools.ietf.org/html/rfc4648#section-4
         +optional
         
        map<string, bytes> data = 2;
        Specified by:
        getDataOrThrow in interface Generated.SecretOrBuilder
      • getStringDataCount

        public int getStringDataCount()
        Description copied from interface: Generated.SecretOrBuilder
         stringData allows specifying non-binary secret data in string form.
         It is provided as a write-only input field for convenience.
         All keys and values are merged into the data field on write, overwriting any existing values.
         The stringData field is never output when reading from the API.
         +k8s:conversion-gen=false
         +optional
         
        map<string, string> stringData = 4;
        Specified by:
        getStringDataCount in interface Generated.SecretOrBuilder
      • containsStringData

        public boolean containsStringData​(String key)
         stringData allows specifying non-binary secret data in string form.
         It is provided as a write-only input field for convenience.
         All keys and values are merged into the data field on write, overwriting any existing values.
         The stringData field is never output when reading from the API.
         +k8s:conversion-gen=false
         +optional
         
        map<string, string> stringData = 4;
        Specified by:
        containsStringData in interface Generated.SecretOrBuilder
      • getStringDataMap

        public Map<String,​String> getStringDataMap()
         stringData allows specifying non-binary secret data in string form.
         It is provided as a write-only input field for convenience.
         All keys and values are merged into the data field on write, overwriting any existing values.
         The stringData field is never output when reading from the API.
         +k8s:conversion-gen=false
         +optional
         
        map<string, string> stringData = 4;
        Specified by:
        getStringDataMap in interface Generated.SecretOrBuilder
      • getStringDataOrDefault

        public String getStringDataOrDefault​(String key,
                                             String defaultValue)
         stringData allows specifying non-binary secret data in string form.
         It is provided as a write-only input field for convenience.
         All keys and values are merged into the data field on write, overwriting any existing values.
         The stringData field is never output when reading from the API.
         +k8s:conversion-gen=false
         +optional
         
        map<string, string> stringData = 4;
        Specified by:
        getStringDataOrDefault in interface Generated.SecretOrBuilder
      • getStringDataOrThrow

        public String getStringDataOrThrow​(String key)
         stringData allows specifying non-binary secret data in string form.
         It is provided as a write-only input field for convenience.
         All keys and values are merged into the data field on write, overwriting any existing values.
         The stringData field is never output when reading from the API.
         +k8s:conversion-gen=false
         +optional
         
        map<string, string> stringData = 4;
        Specified by:
        getStringDataOrThrow in interface Generated.SecretOrBuilder
      • hasType

        public boolean hasType()
         Used to facilitate programmatic handling of secret data.
         More info: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types
         +optional
         
        optional string type = 3;
        Specified by:
        hasType in interface Generated.SecretOrBuilder
        Returns:
        Whether the type field is set.
      • getType

        public String getType()
         Used to facilitate programmatic handling of secret data.
         More info: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types
         +optional
         
        optional string type = 3;
        Specified by:
        getType in interface Generated.SecretOrBuilder
        Returns:
        The type.
      • getTypeBytes

        public com.google.protobuf.ByteString getTypeBytes()
         Used to facilitate programmatic handling of secret data.
         More info: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types
         +optional
         
        optional string type = 3;
        Specified by:
        getTypeBytes in interface Generated.SecretOrBuilder
        Returns:
        The bytes for type.
      • 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 Generated.Secret parseFrom​(ByteBuffer data)
                                          throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Generated.Secret parseFrom​(ByteBuffer data,
                                                 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                          throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Generated.Secret parseFrom​(com.google.protobuf.ByteString data)
                                          throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Generated.Secret parseFrom​(com.google.protobuf.ByteString data,
                                                 com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                          throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Generated.Secret parseFrom​(byte[] data)
                                          throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

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

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

        public Generated.Secret.Builder newBuilderForType()
        Specified by:
        newBuilderForType in interface com.google.protobuf.Message
        Specified by:
        newBuilderForType in interface com.google.protobuf.MessageLite
      • toBuilder

        public Generated.Secret.Builder toBuilder()
        Specified by:
        toBuilder in interface com.google.protobuf.Message
        Specified by:
        toBuilder in interface com.google.protobuf.MessageLite
      • newBuilderForType

        protected Generated.Secret.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
        Specified by:
        newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      • getParserForType

        public com.google.protobuf.Parser<Generated.Secret> 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 Generated.Secret getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder