Class: Google::Apis::RunV1::SecretKeySelector
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::SecretKeySelector
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1/classes.rb,
lib/google/apis/run_v1/representations.rb,
lib/google/apis/run_v1/representations.rb
Overview
SecretKeySelector selects a key of a Secret.
Instance Attribute Summary collapse
-
#key ⇒ String
Required.
-
#local_object_reference ⇒ Google::Apis::RunV1::LocalObjectReference
Not supported by Cloud Run.
-
#name ⇒ String
The name of the secret in Cloud Secret Manager.
-
#optional ⇒ Boolean
(also: #optional?)
Specify whether the Secret or its key must be defined.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecretKeySelector
constructor
A new instance of SecretKeySelector.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecretKeySelector
Returns a new instance of SecretKeySelector.
3003 3004 3005 |
# File 'lib/google/apis/run_v1/classes.rb', line 3003 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
Required. A Cloud Secret Manager secret version. Must be 'latest' for the
latest version, an integer for a specific version, or a version alias. The key
of the secret to select from. Must be a valid secret key.
Corresponds to the JSON property key
2979 2980 2981 |
# File 'lib/google/apis/run_v1/classes.rb', line 2979 def key @key end |
#local_object_reference ⇒ Google::Apis::RunV1::LocalObjectReference
Not supported by Cloud Run. LocalObjectReference contains enough information
to let you locate the referenced object inside the same namespace.
Corresponds to the JSON property localObjectReference
2985 2986 2987 |
# File 'lib/google/apis/run_v1/classes.rb', line 2985 def local_object_reference @local_object_reference end |
#name ⇒ String
The name of the secret in Cloud Secret Manager. By default, the secret is
assumed to be in the same project. If the secret is in another project, you
must define an alias. An alias definition has the form: :projects//secrets/.
If multiple alias definitions are needed, they must be separated by commas.
The alias definitions must be set on the run.googleapis.com/secrets annotation.
The name of the secret in the pod's namespace to select from.
Corresponds to the JSON property name
2995 2996 2997 |
# File 'lib/google/apis/run_v1/classes.rb', line 2995 def name @name end |
#optional ⇒ Boolean Also known as: optional?
Specify whether the Secret or its key must be defined.
Corresponds to the JSON property optional
3000 3001 3002 |
# File 'lib/google/apis/run_v1/classes.rb', line 3000 def optional @optional end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3008 3009 3010 3011 3012 3013 |
# File 'lib/google/apis/run_v1/classes.rb', line 3008 def update!(**args) @key = args[:key] if args.key?(:key) @local_object_reference = args[:local_object_reference] if args.key?(:local_object_reference) @name = args[:name] if args.key?(:name) @optional = args[:optional] if args.key?(:optional) end |