Skip to content
Merged
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
8 changes: 8 additions & 0 deletions odpf/optimus/core/v1beta1/runtime.proto
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ message JobConfigItem {
message JobDependency {
string name = 1;
string type = 2; // intra/inter/extra
HttpDependency http_dependency = 3; // http sensor dependency
}

message InstanceSpec {
Expand Down Expand Up @@ -908,3 +909,10 @@ message GetBackupResponse {
BackupSpec spec = 1;
repeated string urn = 2;
}

message HttpDependency {
string name = 1;
string url = 2;
map<string, string> headers = 3;
map<string, string> params = 4;
}