class K8S::Api::Core::V1::Secret
- K8S::Api::Core::V1::Secret
- K8S::Kubernetes::Resource
- Reference
- Object
Overview
Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.
Included Modules
- JSON::Serializable
- K8S::Kubernetes::Resource::Object
- YAML::Serializable
Defined in:
versions/v1.23/api/core/v1/secret.crConstructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(pull : JSON::PullParser)
- .new(*, data : Hash(String, String)? = nil, immutable : Bool? = nil, metadata : Apimachinery::Apis::Meta::V1::ObjectMeta? = nil, string_data : Hash(String, String)? = nil, type : String? = nil)
Class Method Summary
Instance Method Summary
- #api_version : String
- #data : Hash(String, String)?
- #data=(data : Hash(String, String)?)
- #immutable : Bool?
- #immutable=(immutable : Bool?)
- #kind : String
- #merge(other)
- #metadata : Apimachinery::Apis::Meta::V1::ObjectMeta?
- #metadata=(metadata : Apimachinery::Apis::Meta::V1::ObjectMeta?)
- #string_data : Hash(String, String)?
- #string_data=(string_data : Hash(String, String)?)
- #to_h
- #type : String?
- #type=(type : String?)
Instance methods inherited from module K8S::Kubernetes::Resource::Object
api_version : String
api_version,
kind : String
kind,
metadata : Apimachinery::Apis::Meta::V1::ObjectMeta?
metadata,
metadata! : Apimachinery::Apis::Meta::V1::ObjectMeta
metadata!
Instance methods inherited from class K8S::Kubernetes::Resource
api_version : String
api_version,
kind : String
kind
Constructor methods inherited from class K8S::Kubernetes::Resource
new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)new(pull : JSON::PullParser) new
Class methods inherited from class K8S::Kubernetes::Resource
from_file(file)
from_file
Constructor Detail
def self.new(*, data : Hash(String, String)? = nil, immutable : Bool? = nil, metadata : Apimachinery::Apis::Meta::V1::ObjectMeta? = nil, string_data : Hash(String, String)? = nil, type : String? = nil)
#