Payloads Delete RPC

Requests the deletion of a known payload by its identifier.

rpc Delete (PayloadsDeleteRequest) returns (PayloadsDeleteResponse);

Messages

  • PayloadsDeleteRequest
  • PayloadsDeleteResponse
Copy
Copied!
            

message PayloadsDeleteRequest { RequestHeader header = 1; Identifier payload_id = 2; }


Properties

type: message

Standard RPC request header.

See RequestHeader for details.

payload_id

type: message

Unique identifier of the payload to delete.

Required. If the identifier value is omitted from the request or does not match any known payload identifier, Clara Deploy SDK will be unable to fulfill the request.

See Identifier for details.


PayloadsDeleteResponse

Copy
Copied!
            

message PipelineDeleteResponse { ResponseHeader header = 1; }


Clara Deploy SDK Payloads service will respond to any delete request with a PayloadsDeleteResponse message. Requestors can use the response message to determine the result of their request.

Properties

header

type: message

Standard RPC response header.

See ResponseHeader for details.

© Copyright 2018-2020, NVIDIA Corporation. All rights reserved. Last updated on Jun 28, 2023.