File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ proto_library(
2828 deps = [
2929 "//api/common:common_proto" ,
3030 "@googleapis//google/rpc:status_proto" ,
31+ "@protobuf//:duration_proto" ,
3132 "@protobuf//:empty_proto" ,
3233 "@protobuf//:timestamp_proto" ,
3334 ],
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ syntax = "proto3";
1717package aalyria.spacetime.scheduling.v1alpha ;
1818
1919import "api/common/field_mask.proto" ;
20+ import "google/protobuf/duration.proto" ;
2021import "google/protobuf/empty.proto" ;
2122import "google/protobuf/timestamp.proto" ;
2223import "google/rpc/status.proto" ;
@@ -127,6 +128,9 @@ message CreateEntryRequest {
127128
128129 // Required. The time at which the entry is scheduled to be executed.
129130 google.protobuf.Timestamp time = 4 ;
131+ // `time` above as a Duration from the GPS Epoch (GPST time scale; see
132+ // https://gssc.esa.int/navipedia/index.php/Time_References_in_GNSS).
133+ google.protobuf.Duration time_gpst = 16 ;
130134
131135 oneof configuration_change {
132136 UpdateBeam update_beam = 15 ;
@@ -505,6 +509,9 @@ message FinalizeRequest {
505509
506510 // Required. The time before which the schedule will no longer be modified.
507511 google.protobuf.Timestamp up_to = 3 ;
512+ // `up_to` above as a Duration from the GPS Epoch (GPST time scale; see
513+ // https://gssc.esa.int/navipedia/index.php/Time_References_in_GNSS).
514+ google.protobuf.Duration up_to_gpst = 4 ;
508515}
509516
510517message ResetRequest {
You can’t perform that action at this time.
0 commit comments