Pipelines Details RPC

Requests details of a pipeline.

rpc Details (PipelinesDetailsRequest) returns (stream PipelinesDetailsResponse)

Messages

  • PipelinesDetailsRequest
  • PipelinesDetailsResponse
Copy
Copied!
            

message PipelinesDetailsRequest { RequestHeader header = 1; Identifier pipeline_id = 2; }


Properties

type: message

Standard RPC request header.

See RequestHeader for details.

pipeline_id

type: message

Unique identifier of the pipeline.

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

See Identifier for details.

Copy
Copied!
            

message PipelineDetailsResponse { ResponseHeader header = 1; Identifier pipeline_id = 2; string name = 3; PipelineDefinitionFile definition = 4; }


Clara Deploy SDK Pipelines service will respond to any details request with a PipelinesDetailsResponse 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.

pipeline_id

type: message

Unique identifier of the pipeline.

See Identifier for details.

name

type: string

Human readable name of the pipeline.

definition

type: message

A file in the definition of the pipeline.

Note that this request is streamed to allow large pipeline definitions beyond the limits of a single GRPC message size. In the case of large pipelines, parts of the pipeline definition may be chunked into multiple parts such that the server will concatenate all parts having the same name into a single file server-side.

See PipelineDefinitionFile for details.

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