class Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2ToolDetails

Details for the tool used to call the API.

Attributes

tool_name[RW]

Name of the tool, e.g. bazel. Corresponds to the JSON property `toolName` @return [String]

tool_version[RW]

Version of the tool used for the request, e.g. 5.0.3. Corresponds to the JSON property `toolVersion` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 2040
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/remotebuildexecution_v2/classes.rb, line 2045
def update!(**args)
  @tool_name = args[:tool_name] if args.key?(:tool_name)
  @tool_version = args[:tool_version] if args.key?(:tool_version)
end