Skip to content

Commit 0ea10bc

Browse files
author
Aalyria Technologies, Inc
committed
Import changes.
- f8ef73974e9256b8aa4ed253a695e3ecf1591a90 GitOrigin-RevId: f8ef73974e9256b8aa4ed253a695e3ecf1591a90
1 parent 3a2e5f7 commit 0ea10bc

2 files changed

Lines changed: 9 additions & 10 deletions

File tree

api/scheduling/v1alpha/scheduling.proto

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,12 @@ message Beam {
294294

295295
// Only present if beam-hopping is to be used.
296296
BeamHoppingPlan beam_hopping_plan = 8;
297+
298+
// The IDs of all beams that are transmitting to the endpoints served by this
299+
// beam.
300+
//
301+
// Note that, for any transmit beam, tx_beams will contain that beam's own ID.
302+
repeated string tx_beams = 11;
297303
}
298304

299305
message BeamHoppingPlan {
@@ -601,13 +607,6 @@ message Endpoint {
601607

602608
EndpointSecurity security = 7;
603609

604-
// The IDs of all beams that are transmitting to this endpoint and managed by
605-
// the same agent that manages this beam.
606-
//
607-
// Note that, for any transmit beam, all of that beam's endpoints' tx_beams
608-
// fields will contain that beam's own ID.
609-
repeated string tx_beams = 9;
610-
611610
// This field is deprecated. Use incoming_mpls_label_to_egress_port instead.
612611
repeated int32 ingress_mpls_labels = 10 [deprecated = true];
613612

@@ -642,7 +641,7 @@ message Endpoint {
642641
// Note that this field is only populated for endpoints of transmit beams.
643642
map<int32, string> incoming_mpls_label_to_egress_port = 11;
644643

645-
reserved 1, 8;
644+
reserved 1, 8, 9;
646645
}
647646

648647
message EndpointSecurity {

version.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
# - Incompatible changes to APIs that can break depending projects code or expectations.
2020
# - Incompatible changes in how data is written or read from config files or DBs.
2121
# - Changes requiring manual enviroment adjustments before the new version can be used.
22-
MAJOR = 23
22+
MAJOR = 24
2323

2424
# Increment after releasing a public version.
2525
# -------------------------------------------------------------
2626
# This allows to publish bugfixes to the released version
2727
# through increments of PATCH segment.
28-
MINOR = 4
28+
MINOR = 0
2929

3030
# Monotonic ID of bugfixes applied to each MAJOR.MINOR release.
3131
# -------------------------------------------------------------

0 commit comments

Comments
 (0)