Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions gotocompany/optimus/core/v1beta1/job_run.proto
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
};
}

rpc GetThirdPartySensorStatus(GetThirdPartySensorRequest) returns (GetThirdPartySensorResponse) {

Check failure on line 65 in gotocompany/optimus/core/v1beta1/job_run.proto

View workflow job for this annotation

GitHub Actions / validate

RPC response type "GetThirdPartySensorResponse" should be named "GetThirdPartySensorStatusResponse" or "JobRunServiceGetThirdPartySensorStatusResponse".

Check failure on line 65 in gotocompany/optimus/core/v1beta1/job_run.proto

View workflow job for this annotation

GitHub Actions / validate

RPC request type "GetThirdPartySensorRequest" should be named "GetThirdPartySensorStatusRequest" or "JobRunServiceGetThirdPartySensorStatusRequest".
option (google.api.http) = {
put: "/v1beta1/project/{project_name}/job/{job_name}/third-party-sensor"
body: "*"
Expand Down Expand Up @@ -298,6 +298,7 @@
message TargetJobRunIdentifier {
string job_name = 1;
google.protobuf.Timestamp scheduled_at = 2;
string project_name = 3;
}

message GetJobRunLineageSummaryResponse {
Expand All @@ -308,13 +309,15 @@
string job_name = 1;
google.protobuf.Timestamp scheduled_at = 2;
repeated JobExecutionSummary job_runs = 3;
string project_name = 4;
}

message JobExecutionSummary {
string job_name = 1;
SLAConfig sla = 2;
int32 level = 3;
JobRunSummary job_run_summary = 4;
string project_name = 5;
}

message JobRunSummary {
Expand Down
Loading