Class: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteexecutionV1testToolDetails
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteexecutionV1testToolDetails
- 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
Details for the tool used to call the API.
Instance Attribute Summary collapse
-
#tool_name ⇒ String
Name of the tool, e.g.
-
#tool_version ⇒ String
Version of the tool used for the request, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemoteexecutionV1testToolDetails
constructor
A new instance of GoogleDevtoolsRemoteexecutionV1testToolDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemoteexecutionV1testToolDetails
Returns a new instance of GoogleDevtoolsRemoteexecutionV1testToolDetails
3636 3637 3638 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3636 def initialize(**args) update!(**args) end |
Instance Attribute Details
#tool_name ⇒ String
Name of the tool, e.g. bazel.
Corresponds to the JSON property toolName
3629 3630 3631 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3629 def tool_name @tool_name end |
#tool_version ⇒ String
Version of the tool used for the request, e.g. 5.0.3.
Corresponds to the JSON property toolVersion
3634 3635 3636 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3634 def tool_version @tool_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3641 3642 3643 3644 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3641 def update!(**args) @tool_name = args[:tool_name] if args.key?(:tool_name) @tool_version = args[:tool_version] if args.key?(:tool_version) end |