Class: Google::Apis::RemotebuildexecutionV1alpha::BuildBazelRemoteExecutionV2ToolDetails

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

Overview

Details for the tool used to call the API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BuildBazelRemoteExecutionV2ToolDetails

Returns a new instance of BuildBazelRemoteExecutionV2ToolDetails.



1408
1409
1410
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1408

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

Instance Attribute Details

#tool_nameString

Name of the tool, e.g. bazel. Corresponds to the JSON property toolName

Returns:

  • (String)


1401
1402
1403
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1401

def tool_name
  @tool_name
end

#tool_versionString

Version of the tool used for the request, e.g. 5.0.3. Corresponds to the JSON property toolVersion

Returns:

  • (String)


1406
1407
1408
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1406

def tool_version
  @tool_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1413
1414
1415
1416
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1413

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