aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGoogle APIs <noreply@google.com>2024-05-14 10:43:45 -0700
committerCopybara-Service <copybara-worker@google.com>2024-05-14 10:44:39 -0700
commit584e0dee558b4b19bdecf1f2bdd4ec151190e5a4 (patch)
treebe4a3f31ea7594c1826e0b2d913bb3d58e3a1e0c
parente3a34df5b36e38a1ee0b1544ed4ae3b99cdf0f91 (diff)
downloadgoogleapis-584e0dee558b4b19bdecf1f2bdd4ec151190e5a4.tar.gz
docs: mark TerminalPointId as deprecated
PiperOrigin-RevId: 633635378
-rw-r--r--google/maps/fleetengine/v1/fleetengine.proto15
1 files changed, 9 insertions, 6 deletions
diff --git a/google/maps/fleetengine/v1/fleetengine.proto b/google/maps/fleetengine/v1/fleetengine.proto
index 319f6d6dd..6a0d2380e 100644
--- a/google/maps/fleetengine/v1/fleetengine.proto
+++ b/google/maps/fleetengine/v1/fleetengine.proto
@@ -31,8 +31,11 @@ option java_package = "google.maps.fleetengine.v1";
option objc_class_prefix = "CFE";
option ruby_package = "Google::Maps::FleetEngine::V1";
-// Identifies a terminal point.
+// Deprecated: TerminalPoints are no longer supported in Fleet Engine. Use
+// `TerminalLocation.point` instead.
message TerminalPointId {
+ option deprecated = true;
+
// Deprecated.
oneof Id {
// Deprecated.
@@ -42,8 +45,8 @@ message TerminalPointId {
string generated_id = 3 [deprecated = true];
}
- // Unique ID of the terminal point.
- string value = 4;
+ // Deprecated.
+ string value = 4 [deprecated = true];
}
// Describes the location of a waypoint.
@@ -51,10 +54,10 @@ message TerminalLocation {
// Required. Denotes the location of a trip waypoint.
google.type.LatLng point = 1 [(google.api.field_behavior) = REQUIRED];
- // ID of the terminal point.
- TerminalPointId terminal_point_id = 2;
+ // Deprecated: Specify the `point` field instead.
+ TerminalPointId terminal_point_id = 2 [deprecated = true];
- // Deprecated.
+ // Deprecated: Specify the `point` field instead.
string access_point_id = 3 [deprecated = true];
// Deprecated.