Class: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2CommandTask
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2CommandTask
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/remotebuildexecution_v2/classes.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb
Overview
Describes a shell-style task to execute, suitable for providing as the Bots
interface's Lease.payload
field.
Instance Attribute Summary collapse
-
#expected_outputs ⇒ Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs
Describes the expected outputs of the command.
-
#inputs ⇒ Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2CommandTaskInputs
Describes the inputs to a shell-style task.
-
#timeouts ⇒ Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2CommandTaskTimeouts
Describes the timeouts associated with this task.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemoteworkersV1test2CommandTask
constructor
A new instance of GoogleDevtoolsRemoteworkersV1test2CommandTask.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemoteworkersV1test2CommandTask
Returns a new instance of GoogleDevtoolsRemoteworkersV1test2CommandTask
2990 2991 2992 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2990 def initialize(**args) update!(**args) end |
Instance Attribute Details
#expected_outputs ⇒ Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs
Describes the expected outputs of the command.
Corresponds to the JSON property expectedOutputs
2978 2979 2980 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2978 def expected_outputs @expected_outputs end |
#inputs ⇒ Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2CommandTaskInputs
Describes the inputs to a shell-style task.
Corresponds to the JSON property inputs
2983 2984 2985 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2983 def inputs @inputs end |
#timeouts ⇒ Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2CommandTaskTimeouts
Describes the timeouts associated with this task.
Corresponds to the JSON property timeouts
2988 2989 2990 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2988 def timeouts @timeouts end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2995 2996 2997 2998 2999 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2995 def update!(**args) @expected_outputs = args[:expected_outputs] if args.key?(:expected_outputs) @inputs = args[:inputs] if args.key?(:inputs) @timeouts = args[:timeouts] if args.key?(:timeouts) end |