Class: Google::Apis::RunV1::EnvVarSource
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::EnvVarSource
- 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
Cloud Run fully managed: not supported Cloud Run for Anthos: supported EnvVarSource represents a source for the value of an EnvVar.
Instance Attribute Summary collapse
-
#config_map_key_ref ⇒ Google::Apis::RunV1::ConfigMapKeySelector
Cloud Run fully managed: not supported Cloud Run for Anthos: supported Selects a key from a ConfigMap.
-
#secret_key_ref ⇒ Google::Apis::RunV1::SecretKeySelector
Cloud Run fully managed: not supported Cloud Run for Anthos: supported SecretKeySelector selects a key of a Secret.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnvVarSource
constructor
A new instance of EnvVarSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnvVarSource
Returns a new instance of EnvVarSource.
898 899 900 |
# File 'lib/google/apis/run_v1/classes.rb', line 898 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config_map_key_ref ⇒ Google::Apis::RunV1::ConfigMapKeySelector
Cloud Run fully managed: not supported Cloud Run for Anthos: supported Selects
a key from a ConfigMap.
Corresponds to the JSON property configMapKeyRef
890 891 892 |
# File 'lib/google/apis/run_v1/classes.rb', line 890 def config_map_key_ref @config_map_key_ref end |
#secret_key_ref ⇒ Google::Apis::RunV1::SecretKeySelector
Cloud Run fully managed: not supported Cloud Run for Anthos: supported
SecretKeySelector selects a key of a Secret.
Corresponds to the JSON property secretKeyRef
896 897 898 |
# File 'lib/google/apis/run_v1/classes.rb', line 896 def secret_key_ref @secret_key_ref end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
903 904 905 906 |
# File 'lib/google/apis/run_v1/classes.rb', line 903 def update!(**args) @config_map_key_ref = args[:config_map_key_ref] if args.key?(:config_map_key_ref) @secret_key_ref = args[:secret_key_ref] if args.key?(:secret_key_ref) end |