tasks.proto 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package maps.fleetengine.delivery.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/maps/fleetengine/delivery/v1/common.proto";
  19. import "google/maps/fleetengine/delivery/v1/delivery_vehicles.proto";
  20. import "google/protobuf/duration.proto";
  21. import "google/protobuf/timestamp.proto";
  22. option go_package = "google.golang.org/genproto/googleapis/maps/fleetengine/delivery/v1;delivery";
  23. option java_multiple_files = true;
  24. option java_outer_classname = "Tasks";
  25. option java_package = "google.maps.fleetengine.delivery.v1";
  26. option objc_class_prefix = "CFED";
  27. // A Task in the Delivery API represents a single action to track. In general,
  28. // there is a distinction between shipment-related Tasks and break Tasks. A
  29. // shipment can have multiple Tasks associated with it. For example, there could
  30. // be one Task for the pickup, and one for the drop-off or transfer. Also,
  31. // different Tasks for a given shipment can be handled by different vehicles.
  32. // For example, one vehicle could handle the pickup, driving the shipment to the
  33. // hub, while another vehicle drives the same shipment from the hub to the
  34. // drop-off location.
  35. //
  36. // Note: gRPC and REST APIs use different field naming conventions. For example,
  37. // the `Task.journey_sharing_info` field in the gRPC API and the
  38. // `DeliveryVehicle.journeySharingInfo` field in the REST API refer to the same
  39. // field.
  40. message Task {
  41. option (google.api.resource) = {
  42. type: "fleetengine.googleapis.com/Task"
  43. pattern: "providers/{provider}/tasks/{task}"
  44. };
  45. // The type of Task.
  46. enum Type {
  47. // Default, the Task type is unknown.
  48. TYPE_UNSPECIFIED = 0;
  49. // A pickup Task is the action taken for picking up a shipment from a
  50. // customer. Depot or feeder vehicle pickups should use the `SCHEDULED_STOP`
  51. // type.
  52. PICKUP = 1;
  53. // A delivery Task is the action taken for delivering a shipment to an end
  54. // customer. Depot or feeder vehicle dropoffs should use the
  55. // `SCHEDULED_STOP` type.
  56. DELIVERY = 2;
  57. // A scheduled stop Task is used for planning purposes. For example, it
  58. // could represent picking up or dropping off shipments from feeder vehicles
  59. // or depots. It shouldn't be used for any shipments that are picked up or
  60. // dropped off from an end customer.
  61. SCHEDULED_STOP = 3;
  62. // A Task that means the Vehicle is not available for service. For example,
  63. // this can happen when the driver takes a break, or when the vehicle
  64. // is being refueled.
  65. UNAVAILABLE = 4;
  66. }
  67. // The state of a Task. This indicates the Tasks's progress.
  68. enum State {
  69. // Default. Used for an unspecified or unrecognized Task state.
  70. STATE_UNSPECIFIED = 0;
  71. // Either the Task has not yet been assigned to a delivery vehicle, or the
  72. // delivery vehicle has not yet passed the Task's assigned vehicle stop.
  73. OPEN = 1;
  74. // When the vehicle passes the vehicle stop for this Task.
  75. CLOSED = 2;
  76. }
  77. // The outcome of attempting to execute a Task. When `TaskState` is closed,
  78. // `TaskOutcome` indicates whether it was completed successfully.
  79. enum TaskOutcome {
  80. // The Task outcome before its value is set.
  81. TASK_OUTCOME_UNSPECIFIED = 0;
  82. // The Task completed successfully.
  83. SUCCEEDED = 1;
  84. // Either the Task couldn't be completed, or it was cancelled.
  85. FAILED = 2;
  86. }
  87. // The identity of the source that populated the `task_outcome_location`.
  88. enum TaskOutcomeLocationSource {
  89. // The Task outcome before it is set.
  90. TASK_OUTCOME_LOCATION_SOURCE_UNSPECIFIED = 0;
  91. // The provider-specified the `task_outcome_location`.
  92. PROVIDER = 2;
  93. // The provider didn't specify the `task_outcome_location`, so Fleet Engine
  94. // used the last known vehicle location.
  95. LAST_VEHICLE_LOCATION = 3;
  96. }
  97. // Journey sharing specific fields.
  98. message JourneySharingInfo {
  99. // Tracking information for the stops that the assigned vehicle will make
  100. // before it completes this Task. Note that this list can contain stops
  101. // from other tasks.
  102. //
  103. // The first segment,
  104. // `Task.journey_sharing_info.remaining_vehicle_journey_segments[0]` (gRPC)
  105. // or `Task.journeySharingInfo.remainingVehicleJourneySegments[0]` (REST),
  106. // contains route information from the driver's last known location to the
  107. // upcoming `VehicleStop`. Current route information usually comes from the
  108. // driver app, except for some cases noted in the documentation for
  109. // [DeliveryVehicle.current_route_segment][maps.fleetengine.delivery.v1.DeliveryVehicle.current_route_segment]. The other segments in
  110. // `Task.journey_sharing_info.remaining_vehicle_journey_segments` (gRPC) or
  111. // `Task.journeySharingInfo.remainingVehicleJourneySegments` (REST) are
  112. // populated by Fleet Engine. They provide route information between the
  113. // remaining `VehicleStops`.
  114. repeated VehicleJourneySegment remaining_vehicle_journey_segments = 1;
  115. // Indicates the vehicle's last reported location of the assigned vehicle.
  116. DeliveryVehicleLocation last_location = 2;
  117. // Indicates whether the vehicle's lastLocation can be snapped to
  118. // the `current_route_segment`. This value is False if either
  119. // `last_location` or `current_route_segment` don't exist. This value is
  120. // computed by Fleet Engine. Updates from clients are ignored.
  121. bool last_location_snappable = 3;
  122. }
  123. // Must be in the format `providers/{provider}/tasks/{task}`.
  124. string name = 1;
  125. // Required. Immutable. Defines the type of the Task. For example, a break or shipment.
  126. Type type = 2 [
  127. (google.api.field_behavior) = REQUIRED,
  128. (google.api.field_behavior) = IMMUTABLE
  129. ];
  130. // Required. The current execution state of the Task.
  131. State state = 3 [(google.api.field_behavior) = REQUIRED];
  132. // The outcome of the Task.
  133. TaskOutcome task_outcome = 9;
  134. // The timestamp that indicates when the Task's outcome was set by the
  135. // provider.
  136. google.protobuf.Timestamp task_outcome_time = 10;
  137. // The location where the Task's outcome was set. This value is updated as
  138. // part of `UpdateTask`. If this value isn't explicitly updated by the
  139. // provider, then Fleet Engine populates it by default with the last known
  140. // vehicle location (the *raw* location).
  141. LocationInfo task_outcome_location = 11;
  142. // Indicates where the value of the `task_outcome_location` came from.
  143. TaskOutcomeLocationSource task_outcome_location_source = 12;
  144. // Immutable. This field facilitates the storing of an ID so you can avoid using a
  145. // complicated mapping. You cannot set `tracking_id` for Tasks of type
  146. // `UNAVAILABLE` and `SCHEDULED_STOP`. These IDs are subject to the
  147. // following restrictions:
  148. //
  149. // * Must be a valid Unicode string.
  150. // * Limited to a maximum length of 64 characters.
  151. // * Normalized according to [Unicode Normalization Form C]
  152. // (http://www.unicode.org/reports/tr15/).
  153. // * May not contain any of the following ASCII characters: '/', ':', '?',
  154. // ',', or '#'.
  155. string tracking_id = 4 [(google.api.field_behavior) = IMMUTABLE];
  156. // Output only. The ID of the vehicle that is executing this Task. Delivery Vehicle IDs are
  157. // subject to the following restrictions:
  158. //
  159. // * Must be a valid Unicode string.
  160. // * Limited to a maximum length of 64 characters.
  161. // * Normalized according to [Unicode Normalization Form C]
  162. // (http://www.unicode.org/reports/tr15/).
  163. // * May not contain any of the following ASCII characters: '/', ':', '?',
  164. // ',', or '#'.
  165. string delivery_vehicle_id = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
  166. // Immutable. The location where the Task will be completed.
  167. // Optional for `UNAVAILABLE` Tasks, but required for all other Tasks.
  168. LocationInfo planned_location = 6 [(google.api.field_behavior) = IMMUTABLE];
  169. // Required. Immutable. The time needed to execute a Task at this location.
  170. google.protobuf.Duration task_duration = 7 [
  171. (google.api.field_behavior) = REQUIRED,
  172. (google.api.field_behavior) = IMMUTABLE
  173. ];
  174. // Output only. Journey sharing-specific fields. Not populated when state is `CLOSED`.
  175. JourneySharingInfo journey_sharing_info = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
  176. }