Skip to content
Merged
Changes from 3 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
13 changes: 12 additions & 1 deletion odpf/optimus/runtime_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -680,10 +680,13 @@ message ReplayRequest {
string start_date = 4;
string end_date = 5;
bool force = 6;
bool ignore_downstream = 7;
string allowed_downstream = 8;
}

message ReplayResponse {
string id = 1;
repeated string ignored_jobs = 2;
}

message ReplayDryRunRequest {
Expand All @@ -692,11 +695,15 @@ message ReplayDryRunRequest {
string namespace = 3;
string start_date = 4;
string end_date = 5;
bool ignore_downstream = 6;
string allowed_downstream = 7;
}

message ReplayDryRunResponse {
bool success = 1;
ReplayExecutionTreeNode response = 2;
ReplayExecutionTreeNode response = 2 [deprecated=true];
ReplayExecutionTreeNode execution_tree = 3;
repeated string ignored_jobs = 4;
}

message ReplayExecutionTreeNode {
Expand Down Expand Up @@ -774,10 +781,12 @@ message BackupDryRunRequest {
string namespace = 4;
string description = 5;
bool ignore_downstream = 6;
string allowed_downstream = 7;
}

message BackupDryRunResponse {
repeated string resource_name = 1;
repeated string ignored_resources = 2;
}

message BackupRequest {
Expand All @@ -788,10 +797,12 @@ message BackupRequest {
string description = 5;
bool ignore_downstream = 6;
map<string, string> config = 7;
string allowed_downstream = 8;
}

message BackupResponse {
repeated string urn = 1;
repeated string ignored_resources = 2;
}

message ListBackupsRequest {
Expand Down