class Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2CommandTaskInputsEnvironmentVariable
An environment variable required by this task.
Attributes
name[RW]
The envvar name. Corresponds to the JSON property `name` @return [String]
value[RW]
The envvar value. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 3432 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 3437 def update!(**args) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end