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
15 changes: 3 additions & 12 deletions aruna/api/storage/models/v2/models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -258,24 +258,15 @@ message DataEndpoint {
string id = 1;
// Hint if the objects' project
// is fully synced to the endpoint
// If partial_sync = true -> Objects inherit partial sync
oneof variant {
FullSync full_sync = 2;
PartialSync partial_sync = 3;
bool partial_sync = 3;
}
optional ReplicationStatus status = 4;
}

message FullSync {
string project_id = 1;
}
message PartialSync {
oneof origin {
string project_id = 1;
string collection_id = 2;
string dataset_id = 3;
string object_id = 4;
}
}
message FullSync {}

message Copy {
string resource = 1;
Expand Down