Class: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteexecutionV1testCommand
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteexecutionV1testCommand
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/remotebuildexecution_v1/classes.rb,
generated/google/apis/remotebuildexecution_v1/representations.rb,
generated/google/apis/remotebuildexecution_v1/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
-
#arguments ⇒ Array<String>
The arguments to the command.
-
#environment_variables ⇒ Array<Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteexecutionV1testCommandEnvironmentVariable>
The environment variables to set when running the program.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemoteexecutionV1testCommand
constructor
A new instance of GoogleDevtoolsRemoteexecutionV1testCommand.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemoteexecutionV1testCommand
Returns a new instance of GoogleDevtoolsRemoteexecutionV1testCommand
2286 2287 2288 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2286 def initialize(**args) update!(**args) end |
Instance Attribute Details
#arguments ⇒ Array<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
2274 2275 2276 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2274 def arguments @arguments end |
#environment_variables ⇒ Array<Google::Apis::RemotebuildexecutionV1::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 Command
s 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
2284 2285 2286 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2284 def environment_variables @environment_variables end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2291 2292 2293 2294 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2291 def update!(**args) @arguments = args[:arguments] if args.key?(:arguments) @environment_variables = args[:environment_variables] if args.key?(:environment_variables) end |