Skip to content

Commit 36965b1

Browse files
author
Aalyria Technologies, Inc
committed
Import changes.
- d173ce9cd0a3706cb56ca1a2119d4e6c6ef41f7a GitOrigin-RevId: d173ce9cd0a3706cb56ca1a2119d4e6c6ef41f7a
1 parent 6d1f571 commit 36965b1

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

api/scheduling/v1alpha/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
],

api/scheduling/v1alpha/scheduling.proto

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ syntax = "proto3";
1717
package aalyria.spacetime.scheduling.v1alpha;
1818

1919
import "api/common/field_mask.proto";
20+
import "google/protobuf/duration.proto";
2021
import "google/protobuf/empty.proto";
2122
import "google/protobuf/timestamp.proto";
2223
import "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

510517
message ResetRequest {

0 commit comments

Comments
 (0)