Show / Hide Table of Contents

Class BuildBazelRemoteExecutionV2RequestMetadata

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: build.bazel.remote.execution.v2.requestmetadata-bin * contents: the base64 encoded binary RequestMetadata message. Note: the gRPC library serializes binary headers encoded in base 64 by default (https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md#requests). Therefore, if the gRPC library is used to pass/retrieve this metadata, the user may ignore the base64 encoding and assume it is simply serialized as a binary message.

Inheritance
System.Object
BuildBazelRemoteExecutionV2RequestMetadata
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.RemoteBuildExecution.v1.Data
Assembly: Google.Apis.RemoteBuildExecution.v1.dll
Syntax
public class BuildBazelRemoteExecutionV2RequestMetadata : IDirectResponseSchema

Properties

ActionId

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.

Declaration
[JsonProperty("actionId")]
public virtual string ActionId { get; set; }
Property Value
Type Description
System.String

ActionMnemonic

A brief description of the kind of action, for example, CppCompile or GoLink. There is no standard agreed set of values for this, and they are expected to vary between different client tools.

Declaration
[JsonProperty("actionMnemonic")]
public virtual string ActionMnemonic { get; set; }
Property Value
Type Description
System.String

ConfigurationId

An identifier for the configuration in which the target was built, e.g. for differentiating building host tools or different target platforms. There is no expectation that this value will have any particular structure, or equality across invocations, though some client tools may offer these guarantees.

Declaration
[JsonProperty("configurationId")]
public virtual string ConfigurationId { get; set; }
Property Value
Type Description
System.String

CorrelatedInvocationsId

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.

Declaration
[JsonProperty("correlatedInvocationsId")]
public virtual string CorrelatedInvocationsId { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

TargetId

An identifier for the target which produced this action. No guarantees are made around how many actions may relate to a single target.

Declaration
[JsonProperty("targetId")]
public virtual string TargetId { get; set; }
Property Value
Type Description
System.String

ToolDetails

The details for the tool invoking the requests.

Declaration
[JsonProperty("toolDetails")]
public virtual BuildBazelRemoteExecutionV2ToolDetails ToolDetails { get; set; }
Property Value
Type Description
BuildBazelRemoteExecutionV2ToolDetails

ToolInvocationId

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

Declaration
[JsonProperty("toolInvocationId")]
public virtual string ToolInvocationId { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top