Upload a new execution result. In order to allow the server to perform access control based on the type of action, and to assist with client debugging, the client MUST first upload the Action that produced the result, along with its Command, into the ContentAddressableStorage. Server implementations MAY modify the UpdateActionResultRequest.action_result and return an equivalent value. Errors: * INVALID_ARGUMENT: One or more arguments are invalid. * FAILED_PRECONDITION: One or more errors occurred in updating the action result, such as a missing command or action. * RESOURCE_EXHAUSTED: There is insufficient storage space to add the entry to the cache.

Scopes

You will need authorization for the https://www.googleapis.com/auth/cloud-platform scope to make a valid call.

If unset, the scope for this method defaults to https://www.googleapis.com/auth/cloud-platform. You can set the scope for this method like this: remotebuildexecution2 --scope <scope> action-results update ...

Required Scalar Arguments

  • <instance-name> (string)
    • The instance of the execution system to operate against. A server may support multiple instances of the execution system (with their own workers, storage, caches, etc.). The server MAY require use of this field to select between them in an implementation-defined fashion, otherwise it can be omitted.
  • <hash> (string)
    • The hash. In the case of SHA-256, it will always be a lowercase hex string exactly 64 characters long.
  • <size-bytes> (string)
    • The size of the blob, in bytes.

Required Request Value

The request value is a data-structure with various fields. Each field may be a simple scalar or another data-structure. In the latter case it is advised to set the field-cursor to the data-structure's field to specify values more concisely.

For example, a structure like this:

BuildBazelRemoteExecutionV2ActionResult:
  execution-metadata:
    execution-completed-timestamp: string
    execution-start-timestamp: string
    input-fetch-completed-timestamp: string
    input-fetch-start-timestamp: string
    output-upload-completed-timestamp: string
    output-upload-start-timestamp: string
    queued-timestamp: string
    worker: string
    worker-completed-timestamp: string
    worker-start-timestamp: string
  exit-code: integer
  stderr-digest:
    hash: string
    size-bytes: string
  stderr-raw: string
  stdout-digest:
    hash: string
    size-bytes: string
  stdout-raw: string

can be set completely with the following arguments which are assumed to be executed in the given order. Note how the cursor position is adjusted to the respective structures, allowing simple field names to be used most of the time.

  • -r .execution-metadata execution-completed-timestamp=et
    • When the worker completed executing the action command.
  • execution-start-timestamp=magna
    • When the worker started executing the action command.
  • input-fetch-completed-timestamp=no
    • When the worker finished fetching action inputs.
  • input-fetch-start-timestamp=ipsum
    • When the worker started fetching action inputs.
  • output-upload-completed-timestamp=voluptua.
    • When the worker finished uploading action outputs.
  • output-upload-start-timestamp=at
    • When the worker started uploading action outputs.
  • queued-timestamp=sanctus
    • When was the action added to the queue.
  • worker=sed
    • The name of the worker which ran the execution.
  • worker-completed-timestamp=amet.
    • When the worker completed the action, including all stages.
  • worker-start-timestamp=takimata

    • When the worker received the action.
  • .. exit-code=49

    • The exit code of the command.
  • stderr-digest hash=duo
    • The hash. In the case of SHA-256, it will always be a lowercase hex string exactly 64 characters long.
  • size-bytes=ipsum

    • The size of the blob, in bytes.
  • .. stderr-raw=gubergren

    • The standard error buffer of the action. The server SHOULD NOT inline stderr unless requested by the client in the GetActionResultRequest message. The server MAY omit inlining, even if requested, and MUST do so if inlining would cause the response to exceed message size limits.
  • stdout-digest hash=lorem
    • The hash. In the case of SHA-256, it will always be a lowercase hex string exactly 64 characters long.
  • size-bytes=gubergren

    • The size of the blob, in bytes.
  • .. stdout-raw=eos

    • The standard output buffer of the action. The server SHOULD NOT inline stdout unless requested by the client in the GetActionResultRequest message. The server MAY omit inlining, even if requested, and MUST do so if inlining would cause the response to exceed message size limits.

About Cursors

The cursor position is key to comfortably set complex nested structures. The following rules apply:

  • The cursor position is always set relative to the current one, unless the field name starts with the . character. Fields can be nested such as in -r f.s.o .
  • The cursor position is set relative to the top-level structure if it starts with ., e.g. -r .s.s
  • You can also set nested fields without setting the cursor explicitly. For example, to set a value relative to the current cursor position, you would specify -r struct.sub_struct=bar.
  • You can move the cursor one level up by using ... Each additional . moves it up one additional level. E.g. ... would go three levels up.

Optional Output Flags

The method's return value a JSON encoded structure, which will be written to standard output by default.

  • -o out
    • out specifies the destination to which to write the server's result to. It will be a JSON-encoded structure. The destination may be - to indicate standard output, or a filepath that is to contain the received bytes. If unset, it defaults to standard output.

Optional Method Properties

You may set the following properties to further configure the call. Please note that -p is followed by one or more key-value-pairs, and is called like this -p k1=v1 k2=v2 even though the listing below repeats the -p for completeness.

  • -p results-cache-policy-priority=integer
    • The priority (relative importance) of this content in the overall cache. Generally, a lower value means a longer retention time or other advantage, but the interpretation of a given value is server-dependent. A priority of 0 means a default value, decided by the server. The particular semantics of this field is up to the server. In particular, every server will have their own supported range of priorities, and will decide how these map into retention/eviction policy.

Optional General Properties

The following properties can configure any call, and are not specific to this method.

  • -p $-xgafv=string

    • V1 error format.
  • -p access-token=string

    • OAuth access token.
  • -p alt=string

    • Data format for response.
  • -p callback=string

    • JSONP
  • -p fields=string

    • Selector specifying which fields to include in a partial response.
  • -p key=string

    • API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
  • -p oauth-token=string

    • OAuth 2.0 token for the current user.
  • -p pretty-print=boolean

    • Returns response with indentations and line breaks.
  • -p quota-user=string

    • Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
  • -p upload-type=string

    • Legacy upload protocol for media (e.g. "media", "multipart").
  • -p upload-protocol=string

    • Upload protocol for media (e.g. "raw", "multipart").