Skip to content

Commit

Permalink
Merge pull request #16359 from [BEAM-13545][Playground] Add GetValida…
Browse files Browse the repository at this point in the history
…tionOutput API method to .proto file

* [BEAM-13545][Playground]
Add GetValidationOutput method into the .proto files;
Regenerate files;

* [BEAM-13545][Playground]
Regenerating proto files
  • Loading branch information
Aydar Zainutdinov committed Jan 10, 2022
1 parent bddbf92 commit 99d870d
Show file tree
Hide file tree
Showing 6 changed files with 761 additions and 368 deletions.
13 changes: 13 additions & 0 deletions playground/api/v1/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,16 @@ message CheckStatusResponse {
Status status = 1;
}

// GetValidationOutputRequest contains information of the pipeline uuid.
message GetValidationOutputRequest {
string pipeline_uuid = 1;
}

// GetValidationOutputResponse represents the result of the code validation.
message GetValidationOutputResponse {
string output = 1;
}

// GetPreparationOutputRequest contains information of the pipeline uuid.
message GetPreparationOutputRequest {
string pipeline_uuid = 1;
Expand Down Expand Up @@ -211,6 +221,9 @@ service PlaygroundService {
// Get the error of pipeline execution.
rpc GetRunError(GetRunErrorRequest) returns (GetRunErrorResponse);

// Get the result of pipeline validation.
rpc GetValidationOutput(GetValidationOutputRequest) returns (GetValidationOutputResponse);

// Get the result of pipeline preparation.
rpc GetPreparationOutput(GetPreparationOutputRequest) returns (GetPreparationOutputResponse);

Expand Down
Loading

0 comments on commit 99d870d

Please sign in to comment.