Class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemoteexecutionV1testCommand

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

Overview

A Command is the actual command executed by a worker running an Action. Except as otherwise required, the environment (such as which system libraries or binaries are available, and what filesystems are mounted where) is defined by and specific to the implementation of the remote execution API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleDevtoolsRemoteexecutionV1testCommand

Returns a new instance of GoogleDevtoolsRemoteexecutionV1testCommand



2235
2236
2237
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 2235

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

Instance Attribute Details

#argumentsArray<String>

The arguments to the command. The first argument must be the path to the executable, which must be either a relative path, in which case it is evaluated with respect to the input root, or an absolute path. The working directory will always be the input root. Corresponds to the JSON property arguments

Returns:

  • (Array<String>)


2223
2224
2225
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 2223

def arguments
  @arguments
end

#environment_variablesArray<Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemoteexecutionV1testCommandEnvironmentVariable>

The environment variables to set when running the program. The worker may provide its own default environment variables; these defaults can be overridden using this field. Additional variables can also be specified. In order to ensure that equivalent Commands always hash to the same value, the environment variables MUST be lexicographically sorted by name. Sorting of strings is done by code point, equivalently, by the UTF-8 bytes. Corresponds to the JSON property environmentVariables



2233
2234
2235
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 2233

def environment_variables
  @environment_variables
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2240
2241
2242
2243
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 2240

def update!(**args)
  @arguments = args[:arguments] if args.key?(:arguments)
  @environment_variables = args[:environment_variables] if args.key?(:environment_variables)
end