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
2191 2192 2193 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2191 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
2179 2180 2181 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2179 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 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
2189 2190 2191 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2189 def environment_variables @environment_variables end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2196 2197 2198 2199 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2196 def update!(**args) @arguments = args[:arguments] if args.key?(:arguments) @environment_variables = args[:environment_variables] if args.key?(:environment_variables) end |