Class: Google::Apis::RunV1::EnvVar

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/run_v1/classes.rb,
generated/google/apis/run_v1/representations.rb,
generated/google/apis/run_v1/representations.rb

Overview

EnvVar represents an environment variable present in a Container.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnvVar

Returns a new instance of EnvVar.



859
860
861
# File 'generated/google/apis/run_v1/classes.rb', line 859

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

Name of the environment variable. Must be a C_IDENTIFIER. Corresponds to the JSON property name

Returns:

  • (String)


841
842
843
# File 'generated/google/apis/run_v1/classes.rb', line 841

def name
  @name
end

#valueString

(Optional) Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any route environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "". Corresponds to the JSON property value

Returns:

  • (String)


851
852
853
# File 'generated/google/apis/run_v1/classes.rb', line 851

def value
  @value
end

#value_fromGoogle::Apis::RunV1::EnvVarSource

Cloud Run fully managed: not supported Cloud Run for Anthos: supported EnvVarSource represents a source for the value of an EnvVar. Corresponds to the JSON property valueFrom



857
858
859
# File 'generated/google/apis/run_v1/classes.rb', line 857

def value_from
  @value_from
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



864
865
866
867
868
# File 'generated/google/apis/run_v1/classes.rb', line 864

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @value = args[:value] if args.key?(:value)
  @value_from = args[:value_from] if args.key?(:value_from)
end