Class: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteexecutionV1testRequestMetadata

Inherits:
Object
  • Object
show all
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

An optional Metadata to attach to any RPC request to tell the server about an external context of the request. The server may use this for logging or other purposes. To use it, the client attaches the header to the call using the canonical proto serialization: name: google.devtools.remoteexecution.v1test.requestmetadata-bin contents: the base64 encoded binary RequestMetadata message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleDevtoolsRemoteexecutionV1testRequestMetadata

Returns a new instance of GoogleDevtoolsRemoteexecutionV1testRequestMetadata



3609
3610
3611
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3609

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

Instance Attribute Details

#action_idString

An identifier that ties multiple requests to the same action. For example, multiple requests to the CAS, Action Cache, and Execution API are used in order to compile foo.cc. Corresponds to the JSON property actionId

Returns:

  • (String)


3590
3591
3592
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3590

def action_id
  @action_id
end

#correlated_invocations_idString

An identifier to tie multiple tool invocations together. For example, runs of foo_test, bar_test and baz_test on a post-submit of a given patch. Corresponds to the JSON property correlatedInvocationsId

Returns:

  • (String)


3596
3597
3598
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3596

def correlated_invocations_id
  @correlated_invocations_id
end

#tool_detailsGoogle::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteexecutionV1testToolDetails

Details for the tool used to call the API. Corresponds to the JSON property toolDetails



3601
3602
3603
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3601

def tool_details
  @tool_details
end

#tool_invocation_idString

An identifier that ties multiple actions together to a final result. For example, multiple actions are required to build and run foo_test. Corresponds to the JSON property toolInvocationId

Returns:

  • (String)


3607
3608
3609
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3607

def tool_invocation_id
  @tool_invocation_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3614
3615
3616
3617
3618
3619
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3614

def update!(**args)
  @action_id = args[:action_id] if args.key?(:action_id)
  @correlated_invocations_id = args[:correlated_invocations_id] if args.key?(:correlated_invocations_id)
  @tool_details = args[:tool_details] if args.key?(:tool_details)
  @tool_invocation_id = args[:tool_invocation_id] if args.key?(:tool_invocation_id)
end