18.19. Pipelines List RPC
Requests a listing of all pipelines known by the service.
rpc List (PipelinesListRequest) returns (stream PipelinesListResponse);
18.19.1. Messages
PipelinesListRequest
PipelinesListResponse
PipelineDetails
message PipelinesListRequest {
RequestHeader header = 1;
}
18.20.1. Properties
18.20.1.1. header
type: message
Standard RPC request header.
See RequestHeader for details.
message PipelinesListResponse {
message PipelineDetails {
Identifier pipeline_id = 1;
string name = 2;
}
ResponseHeader header = 1;
PipelineDetails details = 2;
}
Clara Deploy SDK Pipelines service will respond to any list request with a PipelinesListResponse message. Requestors can use the response message to determine the result of their request.
18.21.1. Properties
18.21.1.1. header
type: message
Standard RPC response header.
Note that this response is streamed. Only the first chunk recieved is guaranteed to contain a header value.
See ResponseHeader for details.
18.21.1.2. details
type: message
A pipeline in the list known by the server.
Note that this response is streamed, with a separate response chunk per pipeline being listed.
See PipelineDetails for details.
message PipelineDetails {
Identifier pipeline_id = 1;
string name = 2;
}
18.22.1. Properties
18.22.1.1. pipeline_id
type: message
Unique identifier of the pipeline.
See Identifier for details.
18.22.1.2. name
type: string
Human readable name of the pipeline.