class Google::Apis::ManagerV1beta2::EnvVariable

An environment variable.

Attributes

hidden[RW]

Whether this variable is hidden or visible. Corresponds to the JSON property `hidden` @return [Boolean]

hidden?[RW]

Whether this variable is hidden or visible. Corresponds to the JSON property `hidden` @return [Boolean]

value[RW]

Value of the environment variable. Corresponds to the JSON property `value` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/manager_v1beta2/classes.rb, line 339
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/manager_v1beta2/classes.rb, line 344
def update!(**args)
  @hidden = args[:hidden] if args.key?(:hidden)
  @value = args[:value] if args.key?(:value)
end