aws-sdk-georoutes 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-georoutes/client.rb +2234 -0
- data/lib/aws-sdk-georoutes/client_api.rb +1933 -0
- data/lib/aws-sdk-georoutes/customizations.rb +0 -0
- data/lib/aws-sdk-georoutes/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-georoutes/endpoint_provider.rb +78 -0
- data/lib/aws-sdk-georoutes/endpoints.rb +20 -0
- data/lib/aws-sdk-georoutes/errors.rb +120 -0
- data/lib/aws-sdk-georoutes/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-georoutes/resource.rb +26 -0
- data/lib/aws-sdk-georoutes/types.rb +6849 -0
- data/lib/aws-sdk-georoutes.rb +61 -0
- data/sig/client.rbs +801 -0
- data/sig/errors.rbs +30 -0
- data/sig/resource.rbs +82 -0
- data/sig/types.rbs +1580 -0
- data/sig/waiters.rbs +13 -0
- metadata +99 -0
data/sig/types.rbs
ADDED
@@ -0,0 +1,1580 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::GeoRoutes
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class CalculateIsolinesRequest
|
17
|
+
attr_accessor allow: Types::IsolineAllowOptions
|
18
|
+
attr_accessor arrival_time: ::String
|
19
|
+
attr_accessor avoid: Types::IsolineAvoidanceOptions
|
20
|
+
attr_accessor depart_now: bool
|
21
|
+
attr_accessor departure_time: ::String
|
22
|
+
attr_accessor destination: ::Array[::Float]
|
23
|
+
attr_accessor destination_options: Types::IsolineDestinationOptions
|
24
|
+
attr_accessor isoline_geometry_format: ("FlexiblePolyline" | "Simple")
|
25
|
+
attr_accessor isoline_granularity: Types::IsolineGranularityOptions
|
26
|
+
attr_accessor key: ::String
|
27
|
+
attr_accessor optimize_isoline_for: ("AccurateCalculation" | "BalancedCalculation" | "FastCalculation")
|
28
|
+
attr_accessor optimize_routing_for: ("FastestRoute" | "ShortestRoute")
|
29
|
+
attr_accessor origin: ::Array[::Float]
|
30
|
+
attr_accessor origin_options: Types::IsolineOriginOptions
|
31
|
+
attr_accessor thresholds: Types::IsolineThresholds
|
32
|
+
attr_accessor traffic: Types::IsolineTrafficOptions
|
33
|
+
attr_accessor travel_mode: ("Car" | "Pedestrian" | "Scooter" | "Truck")
|
34
|
+
attr_accessor travel_mode_options: Types::IsolineTravelModeOptions
|
35
|
+
SENSITIVE: [:destination, :key, :origin]
|
36
|
+
end
|
37
|
+
|
38
|
+
class CalculateIsolinesResponse
|
39
|
+
attr_accessor arrival_time: ::String
|
40
|
+
attr_accessor departure_time: ::String
|
41
|
+
attr_accessor isoline_geometry_format: ("FlexiblePolyline" | "Simple")
|
42
|
+
attr_accessor isolines: ::Array[Types::Isoline]
|
43
|
+
attr_accessor pricing_bucket: ::String
|
44
|
+
attr_accessor snapped_destination: ::Array[::Float]
|
45
|
+
attr_accessor snapped_origin: ::Array[::Float]
|
46
|
+
SENSITIVE: [:snapped_destination, :snapped_origin]
|
47
|
+
end
|
48
|
+
|
49
|
+
class CalculateRouteMatrixRequest
|
50
|
+
attr_accessor allow: Types::RouteMatrixAllowOptions
|
51
|
+
attr_accessor avoid: Types::RouteMatrixAvoidanceOptions
|
52
|
+
attr_accessor depart_now: bool
|
53
|
+
attr_accessor departure_time: ::String
|
54
|
+
attr_accessor destinations: ::Array[Types::RouteMatrixDestination]
|
55
|
+
attr_accessor exclude: Types::RouteMatrixExclusionOptions
|
56
|
+
attr_accessor key: ::String
|
57
|
+
attr_accessor optimize_routing_for: ("FastestRoute" | "ShortestRoute")
|
58
|
+
attr_accessor origins: ::Array[Types::RouteMatrixOrigin]
|
59
|
+
attr_accessor routing_boundary: Types::RouteMatrixBoundary
|
60
|
+
attr_accessor traffic: Types::RouteMatrixTrafficOptions
|
61
|
+
attr_accessor travel_mode: ("Car" | "Pedestrian" | "Scooter" | "Truck")
|
62
|
+
attr_accessor travel_mode_options: Types::RouteMatrixTravelModeOptions
|
63
|
+
SENSITIVE: [:key]
|
64
|
+
end
|
65
|
+
|
66
|
+
class CalculateRouteMatrixResponse
|
67
|
+
attr_accessor error_count: ::Integer
|
68
|
+
attr_accessor pricing_bucket: ::String
|
69
|
+
attr_accessor route_matrix: ::Array[::Array[Types::RouteMatrixEntry]]
|
70
|
+
attr_accessor routing_boundary: Types::RouteMatrixBoundary
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
74
|
+
class CalculateRoutesRequest
|
75
|
+
attr_accessor allow: Types::RouteAllowOptions
|
76
|
+
attr_accessor arrival_time: ::String
|
77
|
+
attr_accessor avoid: Types::RouteAvoidanceOptions
|
78
|
+
attr_accessor depart_now: bool
|
79
|
+
attr_accessor departure_time: ::String
|
80
|
+
attr_accessor destination: ::Array[::Float]
|
81
|
+
attr_accessor destination_options: Types::RouteDestinationOptions
|
82
|
+
attr_accessor driver: Types::RouteDriverOptions
|
83
|
+
attr_accessor exclude: Types::RouteExclusionOptions
|
84
|
+
attr_accessor instructions_measurement_system: ("Metric" | "Imperial")
|
85
|
+
attr_accessor key: ::String
|
86
|
+
attr_accessor languages: ::Array[::String]
|
87
|
+
attr_accessor leg_additional_features: ::Array[("Elevation" | "Incidents" | "PassThroughWaypoints" | "Summary" | "Tolls" | "TravelStepInstructions" | "TruckRoadTypes" | "TypicalDuration" | "Zones")]
|
88
|
+
attr_accessor leg_geometry_format: ("FlexiblePolyline" | "Simple")
|
89
|
+
attr_accessor max_alternatives: ::Integer
|
90
|
+
attr_accessor optimize_routing_for: ("FastestRoute" | "ShortestRoute")
|
91
|
+
attr_accessor origin: ::Array[::Float]
|
92
|
+
attr_accessor origin_options: Types::RouteOriginOptions
|
93
|
+
attr_accessor span_additional_features: ::Array[("BestCaseDuration" | "CarAccess" | "Country" | "Distance" | "Duration" | "DynamicSpeed" | "FunctionalClassification" | "Gates" | "Incidents" | "Names" | "Notices" | "PedestrianAccess" | "RailwayCrossings" | "Region" | "RoadAttributes" | "RouteNumbers" | "ScooterAccess" | "SpeedLimit" | "TollSystems" | "TruckAccess" | "TruckRoadTypes" | "TypicalDuration" | "Zones" | "Consumption")]
|
94
|
+
attr_accessor tolls: Types::RouteTollOptions
|
95
|
+
attr_accessor traffic: Types::RouteTrafficOptions
|
96
|
+
attr_accessor travel_mode: ("Car" | "Pedestrian" | "Scooter" | "Truck")
|
97
|
+
attr_accessor travel_mode_options: Types::RouteTravelModeOptions
|
98
|
+
attr_accessor travel_step_type: ("Default" | "TurnByTurn")
|
99
|
+
attr_accessor waypoints: ::Array[Types::RouteWaypoint]
|
100
|
+
SENSITIVE: [:destination, :key, :origin]
|
101
|
+
end
|
102
|
+
|
103
|
+
class CalculateRoutesResponse
|
104
|
+
attr_accessor leg_geometry_format: ("FlexiblePolyline" | "Simple")
|
105
|
+
attr_accessor notices: ::Array[Types::RouteResponseNotice]
|
106
|
+
attr_accessor pricing_bucket: ::String
|
107
|
+
attr_accessor routes: ::Array[Types::Route]
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class Circle
|
112
|
+
attr_accessor center: ::Array[::Float]
|
113
|
+
attr_accessor radius: ::Float
|
114
|
+
SENSITIVE: [:center]
|
115
|
+
end
|
116
|
+
|
117
|
+
class Corridor
|
118
|
+
attr_accessor line_string: ::Array[::Array[::Float]]
|
119
|
+
attr_accessor radius: ::Integer
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class InternalServerException
|
124
|
+
attr_accessor message: ::String
|
125
|
+
SENSITIVE: []
|
126
|
+
end
|
127
|
+
|
128
|
+
class Isoline
|
129
|
+
attr_accessor connections: ::Array[Types::IsolineConnection]
|
130
|
+
attr_accessor distance_threshold: ::Integer
|
131
|
+
attr_accessor geometries: ::Array[Types::IsolineShapeGeometry]
|
132
|
+
attr_accessor time_threshold: ::Integer
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class IsolineAllowOptions
|
137
|
+
attr_accessor hot: bool
|
138
|
+
attr_accessor hov: bool
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
142
|
+
class IsolineAvoidanceArea
|
143
|
+
attr_accessor except: ::Array[Types::IsolineAvoidanceAreaGeometry]
|
144
|
+
attr_accessor geometry: Types::IsolineAvoidanceAreaGeometry
|
145
|
+
SENSITIVE: []
|
146
|
+
end
|
147
|
+
|
148
|
+
class IsolineAvoidanceAreaGeometry
|
149
|
+
attr_accessor bounding_box: ::Array[::Float]
|
150
|
+
attr_accessor corridor: Types::Corridor
|
151
|
+
attr_accessor polygon: ::Array[::Array[::Array[::Float]]]
|
152
|
+
attr_accessor polyline_corridor: Types::PolylineCorridor
|
153
|
+
attr_accessor polyline_polygon: ::Array[::String]
|
154
|
+
SENSITIVE: [:bounding_box, :corridor, :polyline_corridor]
|
155
|
+
end
|
156
|
+
|
157
|
+
class IsolineAvoidanceOptions
|
158
|
+
attr_accessor areas: ::Array[Types::IsolineAvoidanceArea]
|
159
|
+
attr_accessor car_shuttle_trains: bool
|
160
|
+
attr_accessor controlled_access_highways: bool
|
161
|
+
attr_accessor dirt_roads: bool
|
162
|
+
attr_accessor ferries: bool
|
163
|
+
attr_accessor seasonal_closure: bool
|
164
|
+
attr_accessor toll_roads: bool
|
165
|
+
attr_accessor toll_transponders: bool
|
166
|
+
attr_accessor truck_road_types: ::Array[::String]
|
167
|
+
attr_accessor tunnels: bool
|
168
|
+
attr_accessor u_turns: bool
|
169
|
+
attr_accessor zone_categories: ::Array[Types::IsolineAvoidanceZoneCategory]
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class IsolineAvoidanceZoneCategory
|
174
|
+
attr_accessor category: ("CongestionPricing" | "Environmental" | "Vignette")
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class IsolineCarOptions
|
179
|
+
attr_accessor engine_type: ("Electric" | "InternalCombustion" | "PluginHybrid")
|
180
|
+
attr_accessor license_plate: Types::IsolineVehicleLicensePlate
|
181
|
+
attr_accessor max_speed: ::Float
|
182
|
+
attr_accessor occupancy: ::Integer
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class IsolineConnection
|
187
|
+
attr_accessor from_polygon_index: ::Integer
|
188
|
+
attr_accessor geometry: Types::IsolineConnectionGeometry
|
189
|
+
attr_accessor to_polygon_index: ::Integer
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class IsolineConnectionGeometry
|
194
|
+
attr_accessor line_string: ::Array[::Array[::Float]]
|
195
|
+
attr_accessor polyline: ::String
|
196
|
+
SENSITIVE: [:polyline]
|
197
|
+
end
|
198
|
+
|
199
|
+
class IsolineDestinationOptions
|
200
|
+
attr_accessor avoid_actions_for_distance: ::Integer
|
201
|
+
attr_accessor heading: ::Float
|
202
|
+
attr_accessor matching: Types::IsolineMatchingOptions
|
203
|
+
attr_accessor side_of_street: Types::IsolineSideOfStreetOptions
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class IsolineGranularityOptions
|
208
|
+
attr_accessor max_points: ::Integer
|
209
|
+
attr_accessor max_resolution: ::Integer
|
210
|
+
SENSITIVE: []
|
211
|
+
end
|
212
|
+
|
213
|
+
class IsolineMatchingOptions
|
214
|
+
attr_accessor name_hint: ::String
|
215
|
+
attr_accessor on_road_threshold: ::Integer
|
216
|
+
attr_accessor radius: ::Integer
|
217
|
+
attr_accessor strategy: ("MatchAny" | "MatchMostSignificantRoad")
|
218
|
+
SENSITIVE: [:name_hint]
|
219
|
+
end
|
220
|
+
|
221
|
+
class IsolineOriginOptions
|
222
|
+
attr_accessor avoid_actions_for_distance: ::Integer
|
223
|
+
attr_accessor heading: ::Float
|
224
|
+
attr_accessor matching: Types::IsolineMatchingOptions
|
225
|
+
attr_accessor side_of_street: Types::IsolineSideOfStreetOptions
|
226
|
+
SENSITIVE: []
|
227
|
+
end
|
228
|
+
|
229
|
+
class IsolineScooterOptions
|
230
|
+
attr_accessor engine_type: ("Electric" | "InternalCombustion" | "PluginHybrid")
|
231
|
+
attr_accessor license_plate: Types::IsolineVehicleLicensePlate
|
232
|
+
attr_accessor max_speed: ::Float
|
233
|
+
attr_accessor occupancy: ::Integer
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class IsolineShapeGeometry
|
238
|
+
attr_accessor polygon: ::Array[::Array[::Array[::Float]]]
|
239
|
+
attr_accessor polyline_polygon: ::Array[::String]
|
240
|
+
SENSITIVE: []
|
241
|
+
end
|
242
|
+
|
243
|
+
class IsolineSideOfStreetOptions
|
244
|
+
attr_accessor position: ::Array[::Float]
|
245
|
+
attr_accessor use_with: ("AnyStreet" | "DividedStreetOnly")
|
246
|
+
SENSITIVE: [:position]
|
247
|
+
end
|
248
|
+
|
249
|
+
class IsolineThresholds
|
250
|
+
attr_accessor distance: ::Array[::Integer]
|
251
|
+
attr_accessor time: ::Array[::Integer]
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class IsolineTrafficOptions
|
256
|
+
attr_accessor flow_event_threshold_override: ::Integer
|
257
|
+
attr_accessor usage: ("IgnoreTrafficData" | "UseTrafficData")
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class IsolineTrailerOptions
|
262
|
+
attr_accessor axle_count: ::Integer
|
263
|
+
attr_accessor trailer_count: ::Integer
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class IsolineTravelModeOptions
|
268
|
+
attr_accessor car: Types::IsolineCarOptions
|
269
|
+
attr_accessor scooter: Types::IsolineScooterOptions
|
270
|
+
attr_accessor truck: Types::IsolineTruckOptions
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
274
|
+
class IsolineTruckOptions
|
275
|
+
attr_accessor axle_count: ::Integer
|
276
|
+
attr_accessor engine_type: ("Electric" | "InternalCombustion" | "PluginHybrid")
|
277
|
+
attr_accessor gross_weight: ::Integer
|
278
|
+
attr_accessor hazardous_cargos: ::Array[("Combustible" | "Corrosive" | "Explosive" | "Flammable" | "Gas" | "HarmfulToWater" | "Organic" | "Other" | "Poison" | "PoisonousInhalation" | "Radioactive")]
|
279
|
+
attr_accessor height: ::Integer
|
280
|
+
attr_accessor height_above_first_axle: ::Integer
|
281
|
+
attr_accessor kpra_length: ::Integer
|
282
|
+
attr_accessor length: ::Integer
|
283
|
+
attr_accessor license_plate: Types::IsolineVehicleLicensePlate
|
284
|
+
attr_accessor max_speed: ::Float
|
285
|
+
attr_accessor occupancy: ::Integer
|
286
|
+
attr_accessor payload_capacity: ::Integer
|
287
|
+
attr_accessor tire_count: ::Integer
|
288
|
+
attr_accessor trailer: Types::IsolineTrailerOptions
|
289
|
+
attr_accessor truck_type: ("LightTruck" | "StraightTruck" | "Tractor")
|
290
|
+
attr_accessor tunnel_restriction_code: ::String
|
291
|
+
attr_accessor weight_per_axle: ::Integer
|
292
|
+
attr_accessor weight_per_axle_group: Types::WeightPerAxleGroup
|
293
|
+
attr_accessor width: ::Integer
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class IsolineVehicleLicensePlate
|
298
|
+
attr_accessor last_character: ::String
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
302
|
+
class LocalizedString
|
303
|
+
attr_accessor language: ::String
|
304
|
+
attr_accessor value: ::String
|
305
|
+
SENSITIVE: []
|
306
|
+
end
|
307
|
+
|
308
|
+
class OptimizeWaypointsRequest
|
309
|
+
attr_accessor avoid: Types::WaypointOptimizationAvoidanceOptions
|
310
|
+
attr_accessor departure_time: ::String
|
311
|
+
attr_accessor destination: ::Array[::Float]
|
312
|
+
attr_accessor destination_options: Types::WaypointOptimizationDestinationOptions
|
313
|
+
attr_accessor driver: Types::WaypointOptimizationDriverOptions
|
314
|
+
attr_accessor exclude: Types::WaypointOptimizationExclusionOptions
|
315
|
+
attr_accessor key: ::String
|
316
|
+
attr_accessor optimize_sequencing_for: ("FastestRoute" | "ShortestRoute")
|
317
|
+
attr_accessor origin: ::Array[::Float]
|
318
|
+
attr_accessor origin_options: Types::WaypointOptimizationOriginOptions
|
319
|
+
attr_accessor traffic: Types::WaypointOptimizationTrafficOptions
|
320
|
+
attr_accessor travel_mode: ("Car" | "Pedestrian" | "Scooter" | "Truck")
|
321
|
+
attr_accessor travel_mode_options: Types::WaypointOptimizationTravelModeOptions
|
322
|
+
attr_accessor waypoints: ::Array[Types::WaypointOptimizationWaypoint]
|
323
|
+
SENSITIVE: [:destination, :key, :origin]
|
324
|
+
end
|
325
|
+
|
326
|
+
class OptimizeWaypointsResponse
|
327
|
+
attr_accessor connections: ::Array[Types::WaypointOptimizationConnection]
|
328
|
+
attr_accessor distance: ::Integer
|
329
|
+
attr_accessor duration: ::Integer
|
330
|
+
attr_accessor impeding_waypoints: ::Array[Types::WaypointOptimizationImpedingWaypoint]
|
331
|
+
attr_accessor optimized_waypoints: ::Array[Types::WaypointOptimizationOptimizedWaypoint]
|
332
|
+
attr_accessor pricing_bucket: ::String
|
333
|
+
attr_accessor time_breakdown: Types::WaypointOptimizationTimeBreakdown
|
334
|
+
SENSITIVE: []
|
335
|
+
end
|
336
|
+
|
337
|
+
class PolylineCorridor
|
338
|
+
attr_accessor polyline: ::String
|
339
|
+
attr_accessor radius: ::Integer
|
340
|
+
SENSITIVE: [:polyline]
|
341
|
+
end
|
342
|
+
|
343
|
+
class RoadSnapNotice
|
344
|
+
attr_accessor code: ("TracePointsHeadingIgnored" | "TracePointsIgnored" | "TracePointsMovedByLargeDistance" | "TracePointsNotMatched" | "TracePointsOutOfSequence" | "TracePointsSpeedEstimated" | "TracePointsSpeedIgnored")
|
345
|
+
attr_accessor title: ::String
|
346
|
+
attr_accessor trace_point_indexes: ::Array[::Integer]
|
347
|
+
SENSITIVE: []
|
348
|
+
end
|
349
|
+
|
350
|
+
class RoadSnapSnappedGeometry
|
351
|
+
attr_accessor line_string: ::Array[::Array[::Float]]
|
352
|
+
attr_accessor polyline: ::String
|
353
|
+
SENSITIVE: [:polyline]
|
354
|
+
end
|
355
|
+
|
356
|
+
class RoadSnapSnappedTracePoint
|
357
|
+
attr_accessor confidence: ::Float
|
358
|
+
attr_accessor original_position: ::Array[::Float]
|
359
|
+
attr_accessor snapped_position: ::Array[::Float]
|
360
|
+
SENSITIVE: [:original_position, :snapped_position]
|
361
|
+
end
|
362
|
+
|
363
|
+
class RoadSnapTracePoint
|
364
|
+
attr_accessor heading: ::Float
|
365
|
+
attr_accessor position: ::Array[::Float]
|
366
|
+
attr_accessor speed: ::Float
|
367
|
+
attr_accessor timestamp: ::String
|
368
|
+
SENSITIVE: [:position]
|
369
|
+
end
|
370
|
+
|
371
|
+
class RoadSnapTrailerOptions
|
372
|
+
attr_accessor trailer_count: ::Integer
|
373
|
+
SENSITIVE: []
|
374
|
+
end
|
375
|
+
|
376
|
+
class RoadSnapTravelModeOptions
|
377
|
+
attr_accessor truck: Types::RoadSnapTruckOptions
|
378
|
+
SENSITIVE: []
|
379
|
+
end
|
380
|
+
|
381
|
+
class RoadSnapTruckOptions
|
382
|
+
attr_accessor gross_weight: ::Integer
|
383
|
+
attr_accessor hazardous_cargos: ::Array[("Combustible" | "Corrosive" | "Explosive" | "Flammable" | "Gas" | "HarmfulToWater" | "Organic" | "Other" | "Poison" | "PoisonousInhalation" | "Radioactive")]
|
384
|
+
attr_accessor height: ::Integer
|
385
|
+
attr_accessor length: ::Integer
|
386
|
+
attr_accessor trailer: Types::RoadSnapTrailerOptions
|
387
|
+
attr_accessor tunnel_restriction_code: ::String
|
388
|
+
attr_accessor width: ::Integer
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class Route
|
393
|
+
attr_accessor legs: ::Array[Types::RouteLeg]
|
394
|
+
attr_accessor major_road_labels: ::Array[Types::RouteMajorRoadLabel]
|
395
|
+
attr_accessor summary: Types::RouteSummary
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class RouteAllowOptions
|
400
|
+
attr_accessor hot: bool
|
401
|
+
attr_accessor hov: bool
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class RouteAvoidanceArea
|
406
|
+
attr_accessor except: ::Array[Types::RouteAvoidanceAreaGeometry]
|
407
|
+
attr_accessor geometry: Types::RouteAvoidanceAreaGeometry
|
408
|
+
SENSITIVE: []
|
409
|
+
end
|
410
|
+
|
411
|
+
class RouteAvoidanceAreaGeometry
|
412
|
+
attr_accessor corridor: Types::Corridor
|
413
|
+
attr_accessor bounding_box: ::Array[::Float]
|
414
|
+
attr_accessor polygon: ::Array[::Array[::Array[::Float]]]
|
415
|
+
attr_accessor polyline_corridor: Types::PolylineCorridor
|
416
|
+
attr_accessor polyline_polygon: ::Array[::String]
|
417
|
+
SENSITIVE: [:corridor, :bounding_box, :polyline_corridor]
|
418
|
+
end
|
419
|
+
|
420
|
+
class RouteAvoidanceOptions
|
421
|
+
attr_accessor areas: ::Array[Types::RouteAvoidanceArea]
|
422
|
+
attr_accessor car_shuttle_trains: bool
|
423
|
+
attr_accessor controlled_access_highways: bool
|
424
|
+
attr_accessor dirt_roads: bool
|
425
|
+
attr_accessor ferries: bool
|
426
|
+
attr_accessor seasonal_closure: bool
|
427
|
+
attr_accessor toll_roads: bool
|
428
|
+
attr_accessor toll_transponders: bool
|
429
|
+
attr_accessor truck_road_types: ::Array[::String]
|
430
|
+
attr_accessor tunnels: bool
|
431
|
+
attr_accessor u_turns: bool
|
432
|
+
attr_accessor zone_categories: ::Array[Types::RouteAvoidanceZoneCategory]
|
433
|
+
SENSITIVE: []
|
434
|
+
end
|
435
|
+
|
436
|
+
class RouteAvoidanceZoneCategory
|
437
|
+
attr_accessor category: ("CongestionPricing" | "Environmental" | "Vignette")
|
438
|
+
SENSITIVE: []
|
439
|
+
end
|
440
|
+
|
441
|
+
class RouteCarOptions
|
442
|
+
attr_accessor engine_type: ("Electric" | "InternalCombustion" | "PluginHybrid")
|
443
|
+
attr_accessor license_plate: Types::RouteVehicleLicensePlate
|
444
|
+
attr_accessor max_speed: ::Float
|
445
|
+
attr_accessor occupancy: ::Integer
|
446
|
+
SENSITIVE: []
|
447
|
+
end
|
448
|
+
|
449
|
+
class RouteContinueHighwayStepDetails
|
450
|
+
attr_accessor intersection: ::Array[Types::LocalizedString]
|
451
|
+
attr_accessor steering_direction: ("Left" | "Right" | "Straight")
|
452
|
+
attr_accessor turn_angle: ::Float
|
453
|
+
attr_accessor turn_intensity: ("Sharp" | "Slight" | "Typical")
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
457
|
+
class RouteContinueStepDetails
|
458
|
+
attr_accessor intersection: ::Array[Types::LocalizedString]
|
459
|
+
SENSITIVE: []
|
460
|
+
end
|
461
|
+
|
462
|
+
class RouteDestinationOptions
|
463
|
+
attr_accessor avoid_actions_for_distance: ::Integer
|
464
|
+
attr_accessor avoid_u_turns: bool
|
465
|
+
attr_accessor heading: ::Float
|
466
|
+
attr_accessor matching: Types::RouteMatchingOptions
|
467
|
+
attr_accessor side_of_street: Types::RouteSideOfStreetOptions
|
468
|
+
attr_accessor stop_duration: ::Integer
|
469
|
+
SENSITIVE: []
|
470
|
+
end
|
471
|
+
|
472
|
+
class RouteDriverOptions
|
473
|
+
attr_accessor schedule: ::Array[Types::RouteDriverScheduleInterval]
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class RouteDriverScheduleInterval
|
478
|
+
attr_accessor drive_duration: ::Integer
|
479
|
+
attr_accessor rest_duration: ::Integer
|
480
|
+
SENSITIVE: []
|
481
|
+
end
|
482
|
+
|
483
|
+
class RouteEmissionType
|
484
|
+
attr_accessor co_2_emission_class: ::String
|
485
|
+
attr_accessor type: ::String
|
486
|
+
SENSITIVE: []
|
487
|
+
end
|
488
|
+
|
489
|
+
class RouteEnterHighwayStepDetails
|
490
|
+
attr_accessor intersection: ::Array[Types::LocalizedString]
|
491
|
+
attr_accessor steering_direction: ("Left" | "Right" | "Straight")
|
492
|
+
attr_accessor turn_angle: ::Float
|
493
|
+
attr_accessor turn_intensity: ("Sharp" | "Slight" | "Typical")
|
494
|
+
SENSITIVE: []
|
495
|
+
end
|
496
|
+
|
497
|
+
class RouteExclusionOptions
|
498
|
+
attr_accessor countries: ::Array[::String]
|
499
|
+
SENSITIVE: []
|
500
|
+
end
|
501
|
+
|
502
|
+
class RouteExitStepDetails
|
503
|
+
attr_accessor intersection: ::Array[Types::LocalizedString]
|
504
|
+
attr_accessor relative_exit: ::Integer
|
505
|
+
attr_accessor steering_direction: ("Left" | "Right" | "Straight")
|
506
|
+
attr_accessor turn_angle: ::Float
|
507
|
+
attr_accessor turn_intensity: ("Sharp" | "Slight" | "Typical")
|
508
|
+
SENSITIVE: []
|
509
|
+
end
|
510
|
+
|
511
|
+
class RouteFerryAfterTravelStep
|
512
|
+
attr_accessor duration: ::Integer
|
513
|
+
attr_accessor instruction: ::String
|
514
|
+
attr_accessor type: ("Deboard")
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class RouteFerryArrival
|
519
|
+
attr_accessor place: Types::RouteFerryPlace
|
520
|
+
attr_accessor time: ::String
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
524
|
+
class RouteFerryBeforeTravelStep
|
525
|
+
attr_accessor duration: ::Integer
|
526
|
+
attr_accessor instruction: ::String
|
527
|
+
attr_accessor type: ("Board")
|
528
|
+
SENSITIVE: []
|
529
|
+
end
|
530
|
+
|
531
|
+
class RouteFerryDeparture
|
532
|
+
attr_accessor place: Types::RouteFerryPlace
|
533
|
+
attr_accessor time: ::String
|
534
|
+
SENSITIVE: []
|
535
|
+
end
|
536
|
+
|
537
|
+
class RouteFerryLegDetails
|
538
|
+
attr_accessor after_travel_steps: ::Array[Types::RouteFerryAfterTravelStep]
|
539
|
+
attr_accessor arrival: Types::RouteFerryArrival
|
540
|
+
attr_accessor before_travel_steps: ::Array[Types::RouteFerryBeforeTravelStep]
|
541
|
+
attr_accessor departure: Types::RouteFerryDeparture
|
542
|
+
attr_accessor notices: ::Array[Types::RouteFerryNotice]
|
543
|
+
attr_accessor pass_through_waypoints: ::Array[Types::RoutePassThroughWaypoint]
|
544
|
+
attr_accessor route_name: ::String
|
545
|
+
attr_accessor spans: ::Array[Types::RouteFerrySpan]
|
546
|
+
attr_accessor summary: Types::RouteFerrySummary
|
547
|
+
attr_accessor travel_steps: ::Array[Types::RouteFerryTravelStep]
|
548
|
+
SENSITIVE: []
|
549
|
+
end
|
550
|
+
|
551
|
+
class RouteFerryNotice
|
552
|
+
attr_accessor code: ("AccuratePolylineUnavailable" | "NoSchedule" | "Other" | "ViolatedAvoidFerry" | "ViolatedAvoidRailFerry")
|
553
|
+
attr_accessor impact: ("High" | "Low")
|
554
|
+
SENSITIVE: []
|
555
|
+
end
|
556
|
+
|
557
|
+
class RouteFerryOverviewSummary
|
558
|
+
attr_accessor distance: ::Integer
|
559
|
+
attr_accessor duration: ::Integer
|
560
|
+
SENSITIVE: []
|
561
|
+
end
|
562
|
+
|
563
|
+
class RouteFerryPlace
|
564
|
+
attr_accessor name: ::String
|
565
|
+
attr_accessor original_position: ::Array[::Float]
|
566
|
+
attr_accessor position: ::Array[::Float]
|
567
|
+
attr_accessor waypoint_index: ::Integer
|
568
|
+
SENSITIVE: [:original_position, :position]
|
569
|
+
end
|
570
|
+
|
571
|
+
class RouteFerrySpan
|
572
|
+
attr_accessor country: ::String
|
573
|
+
attr_accessor distance: ::Integer
|
574
|
+
attr_accessor duration: ::Integer
|
575
|
+
attr_accessor geometry_offset: ::Integer
|
576
|
+
attr_accessor names: ::Array[Types::LocalizedString]
|
577
|
+
attr_accessor region: ::String
|
578
|
+
SENSITIVE: []
|
579
|
+
end
|
580
|
+
|
581
|
+
class RouteFerrySummary
|
582
|
+
attr_accessor overview: Types::RouteFerryOverviewSummary
|
583
|
+
attr_accessor travel_only: Types::RouteFerryTravelOnlySummary
|
584
|
+
SENSITIVE: []
|
585
|
+
end
|
586
|
+
|
587
|
+
class RouteFerryTravelOnlySummary
|
588
|
+
attr_accessor duration: ::Integer
|
589
|
+
SENSITIVE: []
|
590
|
+
end
|
591
|
+
|
592
|
+
class RouteFerryTravelStep
|
593
|
+
attr_accessor distance: ::Integer
|
594
|
+
attr_accessor duration: ::Integer
|
595
|
+
attr_accessor geometry_offset: ::Integer
|
596
|
+
attr_accessor instruction: ::String
|
597
|
+
attr_accessor type: ("Depart" | "Continue" | "Arrive")
|
598
|
+
SENSITIVE: []
|
599
|
+
end
|
600
|
+
|
601
|
+
class RouteKeepStepDetails
|
602
|
+
attr_accessor intersection: ::Array[Types::LocalizedString]
|
603
|
+
attr_accessor steering_direction: ("Left" | "Right" | "Straight")
|
604
|
+
attr_accessor turn_angle: ::Float
|
605
|
+
attr_accessor turn_intensity: ("Sharp" | "Slight" | "Typical")
|
606
|
+
SENSITIVE: []
|
607
|
+
end
|
608
|
+
|
609
|
+
class RouteLeg
|
610
|
+
attr_accessor ferry_leg_details: Types::RouteFerryLegDetails
|
611
|
+
attr_accessor geometry: Types::RouteLegGeometry
|
612
|
+
attr_accessor language: ::String
|
613
|
+
attr_accessor pedestrian_leg_details: Types::RoutePedestrianLegDetails
|
614
|
+
attr_accessor travel_mode: ("Car" | "Ferry" | "Pedestrian" | "Scooter" | "Truck")
|
615
|
+
attr_accessor type: ("Ferry" | "Pedestrian" | "Vehicle")
|
616
|
+
attr_accessor vehicle_leg_details: Types::RouteVehicleLegDetails
|
617
|
+
SENSITIVE: []
|
618
|
+
end
|
619
|
+
|
620
|
+
class RouteLegGeometry
|
621
|
+
attr_accessor line_string: ::Array[::Array[::Float]]
|
622
|
+
attr_accessor polyline: ::String
|
623
|
+
SENSITIVE: [:polyline]
|
624
|
+
end
|
625
|
+
|
626
|
+
class RouteMajorRoadLabel
|
627
|
+
attr_accessor road_name: Types::LocalizedString
|
628
|
+
attr_accessor route_number: Types::RouteNumber
|
629
|
+
SENSITIVE: []
|
630
|
+
end
|
631
|
+
|
632
|
+
class RouteMatchingOptions
|
633
|
+
attr_accessor name_hint: ::String
|
634
|
+
attr_accessor on_road_threshold: ::Integer
|
635
|
+
attr_accessor radius: ::Integer
|
636
|
+
attr_accessor strategy: ("MatchAny" | "MatchMostSignificantRoad")
|
637
|
+
SENSITIVE: [:name_hint]
|
638
|
+
end
|
639
|
+
|
640
|
+
class RouteMatrixAllowOptions
|
641
|
+
attr_accessor hot: bool
|
642
|
+
attr_accessor hov: bool
|
643
|
+
SENSITIVE: []
|
644
|
+
end
|
645
|
+
|
646
|
+
class RouteMatrixAutoCircle
|
647
|
+
attr_accessor margin: ::Integer
|
648
|
+
attr_accessor max_radius: ::Integer
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
652
|
+
class RouteMatrixAvoidanceArea
|
653
|
+
attr_accessor geometry: Types::RouteMatrixAvoidanceAreaGeometry
|
654
|
+
SENSITIVE: []
|
655
|
+
end
|
656
|
+
|
657
|
+
class RouteMatrixAvoidanceAreaGeometry
|
658
|
+
attr_accessor bounding_box: ::Array[::Float]
|
659
|
+
attr_accessor polygon: ::Array[::Array[::Array[::Float]]]
|
660
|
+
attr_accessor polyline_polygon: ::Array[::String]
|
661
|
+
SENSITIVE: [:bounding_box]
|
662
|
+
end
|
663
|
+
|
664
|
+
class RouteMatrixAvoidanceOptions
|
665
|
+
attr_accessor areas: ::Array[Types::RouteMatrixAvoidanceArea]
|
666
|
+
attr_accessor car_shuttle_trains: bool
|
667
|
+
attr_accessor controlled_access_highways: bool
|
668
|
+
attr_accessor dirt_roads: bool
|
669
|
+
attr_accessor ferries: bool
|
670
|
+
attr_accessor toll_roads: bool
|
671
|
+
attr_accessor toll_transponders: bool
|
672
|
+
attr_accessor truck_road_types: ::Array[::String]
|
673
|
+
attr_accessor tunnels: bool
|
674
|
+
attr_accessor u_turns: bool
|
675
|
+
attr_accessor zone_categories: ::Array[Types::RouteMatrixAvoidanceZoneCategory]
|
676
|
+
SENSITIVE: []
|
677
|
+
end
|
678
|
+
|
679
|
+
class RouteMatrixAvoidanceZoneCategory
|
680
|
+
attr_accessor category: ("CongestionPricing" | "Environmental" | "Vignette")
|
681
|
+
SENSITIVE: []
|
682
|
+
end
|
683
|
+
|
684
|
+
class RouteMatrixBoundary
|
685
|
+
attr_accessor geometry: Types::RouteMatrixBoundaryGeometry
|
686
|
+
attr_accessor unbounded: bool
|
687
|
+
SENSITIVE: []
|
688
|
+
end
|
689
|
+
|
690
|
+
class RouteMatrixBoundaryGeometry
|
691
|
+
attr_accessor auto_circle: Types::RouteMatrixAutoCircle
|
692
|
+
attr_accessor circle: Types::Circle
|
693
|
+
attr_accessor bounding_box: ::Array[::Float]
|
694
|
+
attr_accessor polygon: ::Array[::Array[::Array[::Float]]]
|
695
|
+
SENSITIVE: [:circle, :bounding_box]
|
696
|
+
end
|
697
|
+
|
698
|
+
class RouteMatrixCarOptions
|
699
|
+
attr_accessor license_plate: Types::RouteMatrixVehicleLicensePlate
|
700
|
+
attr_accessor max_speed: ::Float
|
701
|
+
attr_accessor occupancy: ::Integer
|
702
|
+
SENSITIVE: []
|
703
|
+
end
|
704
|
+
|
705
|
+
class RouteMatrixDestination
|
706
|
+
attr_accessor options: Types::RouteMatrixDestinationOptions
|
707
|
+
attr_accessor position: ::Array[::Float]
|
708
|
+
SENSITIVE: [:position]
|
709
|
+
end
|
710
|
+
|
711
|
+
class RouteMatrixDestinationOptions
|
712
|
+
attr_accessor avoid_actions_for_distance: ::Integer
|
713
|
+
attr_accessor heading: ::Float
|
714
|
+
attr_accessor matching: Types::RouteMatrixMatchingOptions
|
715
|
+
attr_accessor side_of_street: Types::RouteMatrixSideOfStreetOptions
|
716
|
+
SENSITIVE: []
|
717
|
+
end
|
718
|
+
|
719
|
+
class RouteMatrixEntry
|
720
|
+
attr_accessor distance: ::Integer
|
721
|
+
attr_accessor duration: ::Integer
|
722
|
+
attr_accessor error: ("NoMatch" | "NoMatchDestination" | "NoMatchOrigin" | "NoRoute" | "OutOfBounds" | "OutOfBoundsDestination" | "OutOfBoundsOrigin" | "Other" | "Violation")
|
723
|
+
SENSITIVE: []
|
724
|
+
end
|
725
|
+
|
726
|
+
class RouteMatrixExclusionOptions
|
727
|
+
attr_accessor countries: ::Array[::String]
|
728
|
+
SENSITIVE: []
|
729
|
+
end
|
730
|
+
|
731
|
+
class RouteMatrixMatchingOptions
|
732
|
+
attr_accessor name_hint: ::String
|
733
|
+
attr_accessor on_road_threshold: ::Integer
|
734
|
+
attr_accessor radius: ::Integer
|
735
|
+
attr_accessor strategy: ("MatchAny" | "MatchMostSignificantRoad")
|
736
|
+
SENSITIVE: [:name_hint]
|
737
|
+
end
|
738
|
+
|
739
|
+
class RouteMatrixOrigin
|
740
|
+
attr_accessor options: Types::RouteMatrixOriginOptions
|
741
|
+
attr_accessor position: ::Array[::Float]
|
742
|
+
SENSITIVE: [:position]
|
743
|
+
end
|
744
|
+
|
745
|
+
class RouteMatrixOriginOptions
|
746
|
+
attr_accessor avoid_actions_for_distance: ::Integer
|
747
|
+
attr_accessor heading: ::Float
|
748
|
+
attr_accessor matching: Types::RouteMatrixMatchingOptions
|
749
|
+
attr_accessor side_of_street: Types::RouteMatrixSideOfStreetOptions
|
750
|
+
SENSITIVE: []
|
751
|
+
end
|
752
|
+
|
753
|
+
class RouteMatrixScooterOptions
|
754
|
+
attr_accessor license_plate: Types::RouteMatrixVehicleLicensePlate
|
755
|
+
attr_accessor max_speed: ::Float
|
756
|
+
attr_accessor occupancy: ::Integer
|
757
|
+
SENSITIVE: []
|
758
|
+
end
|
759
|
+
|
760
|
+
class RouteMatrixSideOfStreetOptions
|
761
|
+
attr_accessor position: ::Array[::Float]
|
762
|
+
attr_accessor use_with: ("AnyStreet" | "DividedStreetOnly")
|
763
|
+
SENSITIVE: [:position]
|
764
|
+
end
|
765
|
+
|
766
|
+
class RouteMatrixTrafficOptions
|
767
|
+
attr_accessor flow_event_threshold_override: ::Integer
|
768
|
+
attr_accessor usage: ("IgnoreTrafficData" | "UseTrafficData")
|
769
|
+
SENSITIVE: []
|
770
|
+
end
|
771
|
+
|
772
|
+
class RouteMatrixTrailerOptions
|
773
|
+
attr_accessor trailer_count: ::Integer
|
774
|
+
SENSITIVE: []
|
775
|
+
end
|
776
|
+
|
777
|
+
class RouteMatrixTravelModeOptions
|
778
|
+
attr_accessor car: Types::RouteMatrixCarOptions
|
779
|
+
attr_accessor scooter: Types::RouteMatrixScooterOptions
|
780
|
+
attr_accessor truck: Types::RouteMatrixTruckOptions
|
781
|
+
SENSITIVE: []
|
782
|
+
end
|
783
|
+
|
784
|
+
class RouteMatrixTruckOptions
|
785
|
+
attr_accessor axle_count: ::Integer
|
786
|
+
attr_accessor gross_weight: ::Integer
|
787
|
+
attr_accessor hazardous_cargos: ::Array[("Combustible" | "Corrosive" | "Explosive" | "Flammable" | "Gas" | "HarmfulToWater" | "Organic" | "Other" | "Poison" | "PoisonousInhalation" | "Radioactive")]
|
788
|
+
attr_accessor height: ::Integer
|
789
|
+
attr_accessor kpra_length: ::Integer
|
790
|
+
attr_accessor length: ::Integer
|
791
|
+
attr_accessor license_plate: Types::RouteMatrixVehicleLicensePlate
|
792
|
+
attr_accessor max_speed: ::Float
|
793
|
+
attr_accessor occupancy: ::Integer
|
794
|
+
attr_accessor payload_capacity: ::Integer
|
795
|
+
attr_accessor trailer: Types::RouteMatrixTrailerOptions
|
796
|
+
attr_accessor truck_type: ("LightTruck" | "StraightTruck" | "Tractor")
|
797
|
+
attr_accessor tunnel_restriction_code: ::String
|
798
|
+
attr_accessor weight_per_axle: ::Integer
|
799
|
+
attr_accessor weight_per_axle_group: Types::WeightPerAxleGroup
|
800
|
+
attr_accessor width: ::Integer
|
801
|
+
SENSITIVE: []
|
802
|
+
end
|
803
|
+
|
804
|
+
class RouteMatrixVehicleLicensePlate
|
805
|
+
attr_accessor last_character: ::String
|
806
|
+
SENSITIVE: []
|
807
|
+
end
|
808
|
+
|
809
|
+
class RouteNoticeDetailRange
|
810
|
+
attr_accessor min: ::Integer
|
811
|
+
attr_accessor max: ::Integer
|
812
|
+
SENSITIVE: []
|
813
|
+
end
|
814
|
+
|
815
|
+
class RouteNumber
|
816
|
+
attr_accessor direction: ("East" | "North" | "South" | "West")
|
817
|
+
attr_accessor language: ::String
|
818
|
+
attr_accessor value: ::String
|
819
|
+
SENSITIVE: []
|
820
|
+
end
|
821
|
+
|
822
|
+
class RouteOriginOptions
|
823
|
+
attr_accessor avoid_actions_for_distance: ::Integer
|
824
|
+
attr_accessor avoid_u_turns: bool
|
825
|
+
attr_accessor heading: ::Float
|
826
|
+
attr_accessor matching: Types::RouteMatchingOptions
|
827
|
+
attr_accessor side_of_street: Types::RouteSideOfStreetOptions
|
828
|
+
SENSITIVE: []
|
829
|
+
end
|
830
|
+
|
831
|
+
class RoutePassThroughPlace
|
832
|
+
attr_accessor original_position: ::Array[::Float]
|
833
|
+
attr_accessor position: ::Array[::Float]
|
834
|
+
attr_accessor waypoint_index: ::Integer
|
835
|
+
SENSITIVE: [:original_position, :position]
|
836
|
+
end
|
837
|
+
|
838
|
+
class RoutePassThroughWaypoint
|
839
|
+
attr_accessor geometry_offset: ::Integer
|
840
|
+
attr_accessor place: Types::RoutePassThroughPlace
|
841
|
+
SENSITIVE: []
|
842
|
+
end
|
843
|
+
|
844
|
+
class RoutePedestrianArrival
|
845
|
+
attr_accessor place: Types::RoutePedestrianPlace
|
846
|
+
attr_accessor time: ::String
|
847
|
+
SENSITIVE: []
|
848
|
+
end
|
849
|
+
|
850
|
+
class RoutePedestrianDeparture
|
851
|
+
attr_accessor place: Types::RoutePedestrianPlace
|
852
|
+
attr_accessor time: ::String
|
853
|
+
SENSITIVE: []
|
854
|
+
end
|
855
|
+
|
856
|
+
class RoutePedestrianLegDetails
|
857
|
+
attr_accessor arrival: Types::RoutePedestrianArrival
|
858
|
+
attr_accessor departure: Types::RoutePedestrianDeparture
|
859
|
+
attr_accessor notices: ::Array[Types::RoutePedestrianNotice]
|
860
|
+
attr_accessor pass_through_waypoints: ::Array[Types::RoutePassThroughWaypoint]
|
861
|
+
attr_accessor spans: ::Array[Types::RoutePedestrianSpan]
|
862
|
+
attr_accessor summary: Types::RoutePedestrianSummary
|
863
|
+
attr_accessor travel_steps: ::Array[Types::RoutePedestrianTravelStep]
|
864
|
+
SENSITIVE: []
|
865
|
+
end
|
866
|
+
|
867
|
+
class RoutePedestrianNotice
|
868
|
+
attr_accessor code: ("AccuratePolylineUnavailable" | "Other" | "ViolatedAvoidDirtRoad" | "ViolatedAvoidTunnel" | "ViolatedPedestrianOption")
|
869
|
+
attr_accessor impact: ("High" | "Low")
|
870
|
+
SENSITIVE: []
|
871
|
+
end
|
872
|
+
|
873
|
+
class RoutePedestrianOptions
|
874
|
+
attr_accessor speed: ::Float
|
875
|
+
SENSITIVE: []
|
876
|
+
end
|
877
|
+
|
878
|
+
class RoutePedestrianOverviewSummary
|
879
|
+
attr_accessor distance: ::Integer
|
880
|
+
attr_accessor duration: ::Integer
|
881
|
+
SENSITIVE: []
|
882
|
+
end
|
883
|
+
|
884
|
+
class RoutePedestrianPlace
|
885
|
+
attr_accessor name: ::String
|
886
|
+
attr_accessor original_position: ::Array[::Float]
|
887
|
+
attr_accessor position: ::Array[::Float]
|
888
|
+
attr_accessor side_of_street: ("Left" | "Right")
|
889
|
+
attr_accessor waypoint_index: ::Integer
|
890
|
+
SENSITIVE: [:original_position, :position]
|
891
|
+
end
|
892
|
+
|
893
|
+
class RoutePedestrianSpan
|
894
|
+
attr_accessor best_case_duration: ::Integer
|
895
|
+
attr_accessor country: ::String
|
896
|
+
attr_accessor distance: ::Integer
|
897
|
+
attr_accessor duration: ::Integer
|
898
|
+
attr_accessor dynamic_speed: Types::RouteSpanDynamicSpeedDetails
|
899
|
+
attr_accessor functional_classification: ::Integer
|
900
|
+
attr_accessor geometry_offset: ::Integer
|
901
|
+
attr_accessor incidents: ::Array[::Integer]
|
902
|
+
attr_accessor names: ::Array[Types::LocalizedString]
|
903
|
+
attr_accessor pedestrian_access: ::Array[("Allowed" | "Indoors" | "NoThroughTraffic" | "Park" | "Stairs" | "TollRoad")]
|
904
|
+
attr_accessor region: ::String
|
905
|
+
attr_accessor road_attributes: ::Array[("Bridge" | "BuiltUpArea" | "ControlledAccessHighway" | "DirtRoad" | "DividedRoad" | "Motorway" | "PrivateRoad" | "Ramp" | "RightHandTraffic" | "Roundabout" | "Tunnel" | "UnderConstruction")]
|
906
|
+
attr_accessor route_numbers: ::Array[Types::RouteNumber]
|
907
|
+
attr_accessor speed_limit: Types::RouteSpanSpeedLimitDetails
|
908
|
+
attr_accessor typical_duration: ::Integer
|
909
|
+
SENSITIVE: []
|
910
|
+
end
|
911
|
+
|
912
|
+
class RoutePedestrianSummary
|
913
|
+
attr_accessor overview: Types::RoutePedestrianOverviewSummary
|
914
|
+
attr_accessor travel_only: Types::RoutePedestrianTravelOnlySummary
|
915
|
+
SENSITIVE: []
|
916
|
+
end
|
917
|
+
|
918
|
+
class RoutePedestrianTravelOnlySummary
|
919
|
+
attr_accessor duration: ::Integer
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class RoutePedestrianTravelStep
|
924
|
+
attr_accessor continue_step_details: Types::RouteContinueStepDetails
|
925
|
+
attr_accessor current_road: Types::RouteRoad
|
926
|
+
attr_accessor distance: ::Integer
|
927
|
+
attr_accessor duration: ::Integer
|
928
|
+
attr_accessor exit_number: ::Array[Types::LocalizedString]
|
929
|
+
attr_accessor geometry_offset: ::Integer
|
930
|
+
attr_accessor instruction: ::String
|
931
|
+
attr_accessor keep_step_details: Types::RouteKeepStepDetails
|
932
|
+
attr_accessor next_road: Types::RouteRoad
|
933
|
+
attr_accessor roundabout_enter_step_details: Types::RouteRoundaboutEnterStepDetails
|
934
|
+
attr_accessor roundabout_exit_step_details: Types::RouteRoundaboutExitStepDetails
|
935
|
+
attr_accessor roundabout_pass_step_details: Types::RouteRoundaboutPassStepDetails
|
936
|
+
attr_accessor signpost: Types::RouteSignpost
|
937
|
+
attr_accessor turn_step_details: Types::RouteTurnStepDetails
|
938
|
+
attr_accessor type: ("Arrive" | "Continue" | "Depart" | "Keep" | "RoundaboutEnter" | "RoundaboutExit" | "RoundaboutPass" | "Turn" | "Exit" | "Ramp" | "UTurn")
|
939
|
+
SENSITIVE: []
|
940
|
+
end
|
941
|
+
|
942
|
+
class RouteRampStepDetails
|
943
|
+
attr_accessor intersection: ::Array[Types::LocalizedString]
|
944
|
+
attr_accessor steering_direction: ("Left" | "Right" | "Straight")
|
945
|
+
attr_accessor turn_angle: ::Float
|
946
|
+
attr_accessor turn_intensity: ("Sharp" | "Slight" | "Typical")
|
947
|
+
SENSITIVE: []
|
948
|
+
end
|
949
|
+
|
950
|
+
class RouteResponseNotice
|
951
|
+
attr_accessor code: ("MainLanguageNotFound" | "Other" | "TravelTimeExceedsDriverWorkHours")
|
952
|
+
attr_accessor impact: ("High" | "Low")
|
953
|
+
SENSITIVE: []
|
954
|
+
end
|
955
|
+
|
956
|
+
class RouteRoad
|
957
|
+
attr_accessor road_name: ::Array[Types::LocalizedString]
|
958
|
+
attr_accessor route_number: ::Array[Types::RouteNumber]
|
959
|
+
attr_accessor towards: ::Array[Types::LocalizedString]
|
960
|
+
attr_accessor type: ("Highway" | "Rural" | "Urban")
|
961
|
+
SENSITIVE: []
|
962
|
+
end
|
963
|
+
|
964
|
+
class RouteRoundaboutEnterStepDetails
|
965
|
+
attr_accessor intersection: ::Array[Types::LocalizedString]
|
966
|
+
attr_accessor steering_direction: ("Left" | "Right" | "Straight")
|
967
|
+
attr_accessor turn_angle: ::Float
|
968
|
+
attr_accessor turn_intensity: ("Sharp" | "Slight" | "Typical")
|
969
|
+
SENSITIVE: []
|
970
|
+
end
|
971
|
+
|
972
|
+
class RouteRoundaboutExitStepDetails
|
973
|
+
attr_accessor intersection: ::Array[Types::LocalizedString]
|
974
|
+
attr_accessor relative_exit: ::Integer
|
975
|
+
attr_accessor roundabout_angle: ::Float
|
976
|
+
attr_accessor steering_direction: ("Left" | "Right" | "Straight")
|
977
|
+
SENSITIVE: []
|
978
|
+
end
|
979
|
+
|
980
|
+
class RouteRoundaboutPassStepDetails
|
981
|
+
attr_accessor intersection: ::Array[Types::LocalizedString]
|
982
|
+
attr_accessor steering_direction: ("Left" | "Right" | "Straight")
|
983
|
+
attr_accessor turn_angle: ::Float
|
984
|
+
attr_accessor turn_intensity: ("Sharp" | "Slight" | "Typical")
|
985
|
+
SENSITIVE: []
|
986
|
+
end
|
987
|
+
|
988
|
+
class RouteScooterOptions
|
989
|
+
attr_accessor engine_type: ("Electric" | "InternalCombustion" | "PluginHybrid")
|
990
|
+
attr_accessor license_plate: Types::RouteVehicleLicensePlate
|
991
|
+
attr_accessor max_speed: ::Float
|
992
|
+
attr_accessor occupancy: ::Integer
|
993
|
+
SENSITIVE: []
|
994
|
+
end
|
995
|
+
|
996
|
+
class RouteSideOfStreetOptions
|
997
|
+
attr_accessor position: ::Array[::Float]
|
998
|
+
attr_accessor use_with: ("AnyStreet" | "DividedStreetOnly")
|
999
|
+
SENSITIVE: [:position]
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
class RouteSignpost
|
1003
|
+
attr_accessor labels: ::Array[Types::RouteSignpostLabel]
|
1004
|
+
SENSITIVE: []
|
1005
|
+
end
|
1006
|
+
|
1007
|
+
class RouteSignpostLabel
|
1008
|
+
attr_accessor route_number: Types::RouteNumber
|
1009
|
+
attr_accessor text: Types::LocalizedString
|
1010
|
+
SENSITIVE: []
|
1011
|
+
end
|
1012
|
+
|
1013
|
+
class RouteSpanDynamicSpeedDetails
|
1014
|
+
attr_accessor best_case_speed: ::Float
|
1015
|
+
attr_accessor turn_duration: ::Integer
|
1016
|
+
attr_accessor typical_speed: ::Float
|
1017
|
+
SENSITIVE: []
|
1018
|
+
end
|
1019
|
+
|
1020
|
+
class RouteSpanSpeedLimitDetails
|
1021
|
+
attr_accessor max_speed: ::Float
|
1022
|
+
attr_accessor unlimited: bool
|
1023
|
+
SENSITIVE: []
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
class RouteSummary
|
1027
|
+
attr_accessor distance: ::Integer
|
1028
|
+
attr_accessor duration: ::Integer
|
1029
|
+
attr_accessor tolls: Types::RouteTollSummary
|
1030
|
+
SENSITIVE: []
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class RouteToll
|
1034
|
+
attr_accessor country: ::String
|
1035
|
+
attr_accessor payment_sites: ::Array[Types::RouteTollPaymentSite]
|
1036
|
+
attr_accessor rates: ::Array[Types::RouteTollRate]
|
1037
|
+
attr_accessor systems: ::Array[::Integer]
|
1038
|
+
SENSITIVE: []
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
class RouteTollOptions
|
1042
|
+
attr_accessor all_transponders: bool
|
1043
|
+
attr_accessor all_vignettes: bool
|
1044
|
+
attr_accessor currency: ::String
|
1045
|
+
attr_accessor emission_type: Types::RouteEmissionType
|
1046
|
+
attr_accessor vehicle_category: ("Minibus")
|
1047
|
+
SENSITIVE: []
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
class RouteTollPass
|
1051
|
+
attr_accessor includes_return_trip: bool
|
1052
|
+
attr_accessor senior_pass: bool
|
1053
|
+
attr_accessor transfer_count: ::Integer
|
1054
|
+
attr_accessor trip_count: ::Integer
|
1055
|
+
attr_accessor validity_period: Types::RouteTollPassValidityPeriod
|
1056
|
+
SENSITIVE: []
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
class RouteTollPassValidityPeriod
|
1060
|
+
attr_accessor period: ("Annual" | "Days" | "ExtendedAnnual" | "Minutes" | "Months")
|
1061
|
+
attr_accessor period_count: ::Integer
|
1062
|
+
SENSITIVE: []
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
class RouteTollPaymentSite
|
1066
|
+
attr_accessor name: ::String
|
1067
|
+
attr_accessor position: ::Array[::Float]
|
1068
|
+
SENSITIVE: [:position]
|
1069
|
+
end
|
1070
|
+
|
1071
|
+
class RouteTollPrice
|
1072
|
+
attr_accessor currency: ::String
|
1073
|
+
attr_accessor estimate: bool
|
1074
|
+
attr_accessor per_duration: ::Integer
|
1075
|
+
attr_accessor range: bool
|
1076
|
+
attr_accessor range_value: Types::RouteTollPriceValueRange
|
1077
|
+
attr_accessor value: ::Float
|
1078
|
+
SENSITIVE: []
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class RouteTollPriceSummary
|
1082
|
+
attr_accessor currency: ::String
|
1083
|
+
attr_accessor estimate: bool
|
1084
|
+
attr_accessor range: bool
|
1085
|
+
attr_accessor range_value: Types::RouteTollPriceValueRange
|
1086
|
+
attr_accessor value: ::Float
|
1087
|
+
SENSITIVE: []
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
class RouteTollPriceValueRange
|
1091
|
+
attr_accessor min: ::Float
|
1092
|
+
attr_accessor max: ::Float
|
1093
|
+
SENSITIVE: []
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
class RouteTollRate
|
1097
|
+
attr_accessor applicable_times: ::String
|
1098
|
+
attr_accessor converted_price: Types::RouteTollPrice
|
1099
|
+
attr_accessor id: ::String
|
1100
|
+
attr_accessor local_price: Types::RouteTollPrice
|
1101
|
+
attr_accessor name: ::String
|
1102
|
+
attr_accessor pass: Types::RouteTollPass
|
1103
|
+
attr_accessor payment_methods: ::Array[("BankCard" | "Cash" | "CashExact" | "CreditCard" | "PassSubscription" | "TravelCard" | "Transponder" | "VideoToll")]
|
1104
|
+
attr_accessor transponders: ::Array[Types::RouteTransponder]
|
1105
|
+
SENSITIVE: []
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
class RouteTollSummary
|
1109
|
+
attr_accessor total: Types::RouteTollPriceSummary
|
1110
|
+
SENSITIVE: []
|
1111
|
+
end
|
1112
|
+
|
1113
|
+
class RouteTollSystem
|
1114
|
+
attr_accessor name: ::String
|
1115
|
+
SENSITIVE: []
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
class RouteTrafficOptions
|
1119
|
+
attr_accessor flow_event_threshold_override: ::Integer
|
1120
|
+
attr_accessor usage: ("IgnoreTrafficData" | "UseTrafficData")
|
1121
|
+
SENSITIVE: []
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
class RouteTrailerOptions
|
1125
|
+
attr_accessor axle_count: ::Integer
|
1126
|
+
attr_accessor trailer_count: ::Integer
|
1127
|
+
SENSITIVE: []
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class RouteTransponder
|
1131
|
+
attr_accessor system_name: ::String
|
1132
|
+
SENSITIVE: []
|
1133
|
+
end
|
1134
|
+
|
1135
|
+
class RouteTravelModeOptions
|
1136
|
+
attr_accessor car: Types::RouteCarOptions
|
1137
|
+
attr_accessor pedestrian: Types::RoutePedestrianOptions
|
1138
|
+
attr_accessor scooter: Types::RouteScooterOptions
|
1139
|
+
attr_accessor truck: Types::RouteTruckOptions
|
1140
|
+
SENSITIVE: []
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
class RouteTruckOptions
|
1144
|
+
attr_accessor axle_count: ::Integer
|
1145
|
+
attr_accessor engine_type: ("Electric" | "InternalCombustion" | "PluginHybrid")
|
1146
|
+
attr_accessor gross_weight: ::Integer
|
1147
|
+
attr_accessor hazardous_cargos: ::Array[("Combustible" | "Corrosive" | "Explosive" | "Flammable" | "Gas" | "HarmfulToWater" | "Organic" | "Other" | "Poison" | "PoisonousInhalation" | "Radioactive")]
|
1148
|
+
attr_accessor height: ::Integer
|
1149
|
+
attr_accessor height_above_first_axle: ::Integer
|
1150
|
+
attr_accessor kpra_length: ::Integer
|
1151
|
+
attr_accessor length: ::Integer
|
1152
|
+
attr_accessor license_plate: Types::RouteVehicleLicensePlate
|
1153
|
+
attr_accessor max_speed: ::Float
|
1154
|
+
attr_accessor occupancy: ::Integer
|
1155
|
+
attr_accessor payload_capacity: ::Integer
|
1156
|
+
attr_accessor tire_count: ::Integer
|
1157
|
+
attr_accessor trailer: Types::RouteTrailerOptions
|
1158
|
+
attr_accessor truck_type: ("LightTruck" | "StraightTruck" | "Tractor")
|
1159
|
+
attr_accessor tunnel_restriction_code: ::String
|
1160
|
+
attr_accessor weight_per_axle: ::Integer
|
1161
|
+
attr_accessor weight_per_axle_group: Types::WeightPerAxleGroup
|
1162
|
+
attr_accessor width: ::Integer
|
1163
|
+
SENSITIVE: []
|
1164
|
+
end
|
1165
|
+
|
1166
|
+
class RouteTurnStepDetails
|
1167
|
+
attr_accessor intersection: ::Array[Types::LocalizedString]
|
1168
|
+
attr_accessor steering_direction: ("Left" | "Right" | "Straight")
|
1169
|
+
attr_accessor turn_angle: ::Float
|
1170
|
+
attr_accessor turn_intensity: ("Sharp" | "Slight" | "Typical")
|
1171
|
+
SENSITIVE: []
|
1172
|
+
end
|
1173
|
+
|
1174
|
+
class RouteUTurnStepDetails
|
1175
|
+
attr_accessor intersection: ::Array[Types::LocalizedString]
|
1176
|
+
attr_accessor steering_direction: ("Left" | "Right" | "Straight")
|
1177
|
+
attr_accessor turn_angle: ::Float
|
1178
|
+
attr_accessor turn_intensity: ("Sharp" | "Slight" | "Typical")
|
1179
|
+
SENSITIVE: []
|
1180
|
+
end
|
1181
|
+
|
1182
|
+
class RouteVehicleArrival
|
1183
|
+
attr_accessor place: Types::RouteVehiclePlace
|
1184
|
+
attr_accessor time: ::String
|
1185
|
+
SENSITIVE: []
|
1186
|
+
end
|
1187
|
+
|
1188
|
+
class RouteVehicleDeparture
|
1189
|
+
attr_accessor place: Types::RouteVehiclePlace
|
1190
|
+
attr_accessor time: ::String
|
1191
|
+
SENSITIVE: []
|
1192
|
+
end
|
1193
|
+
|
1194
|
+
class RouteVehicleIncident
|
1195
|
+
attr_accessor description: ::String
|
1196
|
+
attr_accessor end_time: ::String
|
1197
|
+
attr_accessor severity: ("Critical" | "High" | "Medium" | "Low")
|
1198
|
+
attr_accessor start_time: ::String
|
1199
|
+
attr_accessor type: ("Accident" | "Congestion" | "Construction" | "DisabledVehicle" | "LaneRestriction" | "MassTransit" | "Other" | "PlannedEvent" | "RoadClosure" | "RoadHazard" | "Weather")
|
1200
|
+
SENSITIVE: []
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
class RouteVehicleLegDetails
|
1204
|
+
attr_accessor arrival: Types::RouteVehicleArrival
|
1205
|
+
attr_accessor departure: Types::RouteVehicleDeparture
|
1206
|
+
attr_accessor incidents: ::Array[Types::RouteVehicleIncident]
|
1207
|
+
attr_accessor notices: ::Array[Types::RouteVehicleNotice]
|
1208
|
+
attr_accessor pass_through_waypoints: ::Array[Types::RoutePassThroughWaypoint]
|
1209
|
+
attr_accessor spans: ::Array[Types::RouteVehicleSpan]
|
1210
|
+
attr_accessor summary: Types::RouteVehicleSummary
|
1211
|
+
attr_accessor tolls: ::Array[Types::RouteToll]
|
1212
|
+
attr_accessor toll_systems: ::Array[Types::RouteTollSystem]
|
1213
|
+
attr_accessor travel_steps: ::Array[Types::RouteVehicleTravelStep]
|
1214
|
+
attr_accessor truck_road_types: ::Array[::String]
|
1215
|
+
attr_accessor zones: ::Array[Types::RouteZone]
|
1216
|
+
SENSITIVE: []
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
class RouteVehicleLicensePlate
|
1220
|
+
attr_accessor last_character: ::String
|
1221
|
+
SENSITIVE: []
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
class RouteVehicleNotice
|
1225
|
+
attr_accessor code: ("AccuratePolylineUnavailable" | "Other" | "PotentialViolatedAvoidTollRoadUsage" | "PotentialViolatedCarpoolUsage" | "PotentialViolatedTurnRestrictionUsage" | "PotentialViolatedVehicleRestrictionUsage" | "PotentialViolatedZoneRestrictionUsage" | "SeasonalClosure" | "TollsDataTemporarilyUnavailable" | "TollsDataUnavailable" | "TollTransponder" | "ViolatedAvoidControlledAccessHighway" | "ViolatedAvoidDifficultTurns" | "ViolatedAvoidDirtRoad" | "ViolatedAvoidSeasonalClosure" | "ViolatedAvoidTollRoad" | "ViolatedAvoidTollTransponder" | "ViolatedAvoidTruckRoadType" | "ViolatedAvoidTunnel" | "ViolatedAvoidUTurns" | "ViolatedBlockedRoad" | "ViolatedCarpool" | "ViolatedEmergencyGate" | "ViolatedStartDirection" | "ViolatedTurnRestriction" | "ViolatedVehicleRestriction" | "ViolatedZoneRestriction")
|
1226
|
+
attr_accessor details: ::Array[Types::RouteVehicleNoticeDetail]
|
1227
|
+
attr_accessor impact: ("High" | "Low")
|
1228
|
+
SENSITIVE: []
|
1229
|
+
end
|
1230
|
+
|
1231
|
+
class RouteVehicleNoticeDetail
|
1232
|
+
attr_accessor title: ::String
|
1233
|
+
attr_accessor violated_constraints: Types::RouteViolatedConstraints
|
1234
|
+
SENSITIVE: []
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
class RouteVehicleOverviewSummary
|
1238
|
+
attr_accessor best_case_duration: ::Integer
|
1239
|
+
attr_accessor distance: ::Integer
|
1240
|
+
attr_accessor duration: ::Integer
|
1241
|
+
attr_accessor typical_duration: ::Integer
|
1242
|
+
SENSITIVE: []
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
class RouteVehiclePlace
|
1246
|
+
attr_accessor name: ::String
|
1247
|
+
attr_accessor original_position: ::Array[::Float]
|
1248
|
+
attr_accessor position: ::Array[::Float]
|
1249
|
+
attr_accessor side_of_street: ("Left" | "Right")
|
1250
|
+
attr_accessor waypoint_index: ::Integer
|
1251
|
+
SENSITIVE: [:original_position, :position]
|
1252
|
+
end
|
1253
|
+
|
1254
|
+
class RouteVehicleSpan
|
1255
|
+
attr_accessor best_case_duration: ::Integer
|
1256
|
+
attr_accessor car_access: ::Array[("Allowed" | "NoThroughTraffic" | "TollRoad")]
|
1257
|
+
attr_accessor country: ::String
|
1258
|
+
attr_accessor distance: ::Integer
|
1259
|
+
attr_accessor duration: ::Integer
|
1260
|
+
attr_accessor dynamic_speed: Types::RouteSpanDynamicSpeedDetails
|
1261
|
+
attr_accessor functional_classification: ::Integer
|
1262
|
+
attr_accessor gate: ("Emergency" | "KeyAccess" | "PermissionRequired")
|
1263
|
+
attr_accessor geometry_offset: ::Integer
|
1264
|
+
attr_accessor incidents: ::Array[::Integer]
|
1265
|
+
attr_accessor names: ::Array[Types::LocalizedString]
|
1266
|
+
attr_accessor notices: ::Array[::Integer]
|
1267
|
+
attr_accessor railway_crossing: ("Protected" | "Unprotected")
|
1268
|
+
attr_accessor region: ::String
|
1269
|
+
attr_accessor road_attributes: ::Array[("Bridge" | "BuiltUpArea" | "ControlledAccessHighway" | "DirtRoad" | "DividedRoad" | "Motorway" | "PrivateRoad" | "Ramp" | "RightHandTraffic" | "Roundabout" | "Tunnel" | "UnderConstruction")]
|
1270
|
+
attr_accessor route_numbers: ::Array[Types::RouteNumber]
|
1271
|
+
attr_accessor scooter_access: ::Array[("Allowed" | "NoThroughTraffic" | "TollRoad")]
|
1272
|
+
attr_accessor speed_limit: Types::RouteSpanSpeedLimitDetails
|
1273
|
+
attr_accessor toll_systems: ::Array[::Integer]
|
1274
|
+
attr_accessor truck_access: ::Array[("Allowed" | "NoThroughTraffic" | "TollRoad")]
|
1275
|
+
attr_accessor truck_road_types: ::Array[::Integer]
|
1276
|
+
attr_accessor typical_duration: ::Integer
|
1277
|
+
attr_accessor zones: ::Array[::Integer]
|
1278
|
+
SENSITIVE: []
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
class RouteVehicleSummary
|
1282
|
+
attr_accessor overview: Types::RouteVehicleOverviewSummary
|
1283
|
+
attr_accessor travel_only: Types::RouteVehicleTravelOnlySummary
|
1284
|
+
SENSITIVE: []
|
1285
|
+
end
|
1286
|
+
|
1287
|
+
class RouteVehicleTravelOnlySummary
|
1288
|
+
attr_accessor best_case_duration: ::Integer
|
1289
|
+
attr_accessor duration: ::Integer
|
1290
|
+
attr_accessor typical_duration: ::Integer
|
1291
|
+
SENSITIVE: []
|
1292
|
+
end
|
1293
|
+
|
1294
|
+
class RouteVehicleTravelStep
|
1295
|
+
attr_accessor continue_highway_step_details: Types::RouteContinueHighwayStepDetails
|
1296
|
+
attr_accessor continue_step_details: Types::RouteContinueStepDetails
|
1297
|
+
attr_accessor current_road: Types::RouteRoad
|
1298
|
+
attr_accessor distance: ::Integer
|
1299
|
+
attr_accessor duration: ::Integer
|
1300
|
+
attr_accessor enter_highway_step_details: Types::RouteEnterHighwayStepDetails
|
1301
|
+
attr_accessor exit_number: ::Array[Types::LocalizedString]
|
1302
|
+
attr_accessor exit_step_details: Types::RouteExitStepDetails
|
1303
|
+
attr_accessor geometry_offset: ::Integer
|
1304
|
+
attr_accessor instruction: ::String
|
1305
|
+
attr_accessor keep_step_details: Types::RouteKeepStepDetails
|
1306
|
+
attr_accessor next_road: Types::RouteRoad
|
1307
|
+
attr_accessor ramp_step_details: Types::RouteRampStepDetails
|
1308
|
+
attr_accessor roundabout_enter_step_details: Types::RouteRoundaboutEnterStepDetails
|
1309
|
+
attr_accessor roundabout_exit_step_details: Types::RouteRoundaboutExitStepDetails
|
1310
|
+
attr_accessor roundabout_pass_step_details: Types::RouteRoundaboutPassStepDetails
|
1311
|
+
attr_accessor signpost: Types::RouteSignpost
|
1312
|
+
attr_accessor turn_step_details: Types::RouteTurnStepDetails
|
1313
|
+
attr_accessor type: ("Arrive" | "Continue" | "ContinueHighway" | "Depart" | "EnterHighway" | "Exit" | "Keep" | "Ramp" | "RoundaboutEnter" | "RoundaboutExit" | "RoundaboutPass" | "Turn" | "UTurn")
|
1314
|
+
attr_accessor u_turn_step_details: Types::RouteUTurnStepDetails
|
1315
|
+
SENSITIVE: []
|
1316
|
+
end
|
1317
|
+
|
1318
|
+
class RouteViolatedConstraints
|
1319
|
+
attr_accessor all_hazards_restricted: bool
|
1320
|
+
attr_accessor axle_count: Types::RouteNoticeDetailRange
|
1321
|
+
attr_accessor hazardous_cargos: ::Array[("Combustible" | "Corrosive" | "Explosive" | "Flammable" | "Gas" | "HarmfulToWater" | "Organic" | "Other" | "Poison" | "PoisonousInhalation" | "Radioactive")]
|
1322
|
+
attr_accessor max_height: ::Integer
|
1323
|
+
attr_accessor max_kpra_length: ::Integer
|
1324
|
+
attr_accessor max_length: ::Integer
|
1325
|
+
attr_accessor max_payload_capacity: ::Integer
|
1326
|
+
attr_accessor max_weight: Types::RouteWeightConstraint
|
1327
|
+
attr_accessor max_weight_per_axle: ::Integer
|
1328
|
+
attr_accessor max_weight_per_axle_group: Types::WeightPerAxleGroup
|
1329
|
+
attr_accessor max_width: ::Integer
|
1330
|
+
attr_accessor occupancy: Types::RouteNoticeDetailRange
|
1331
|
+
attr_accessor restricted_times: ::String
|
1332
|
+
attr_accessor time_dependent: bool
|
1333
|
+
attr_accessor trailer_count: Types::RouteNoticeDetailRange
|
1334
|
+
attr_accessor travel_mode: bool
|
1335
|
+
attr_accessor truck_road_type: ::String
|
1336
|
+
attr_accessor truck_type: ("LightTruck" | "StraightTruck" | "Tractor")
|
1337
|
+
attr_accessor tunnel_restriction_code: ::String
|
1338
|
+
SENSITIVE: []
|
1339
|
+
end
|
1340
|
+
|
1341
|
+
class RouteWaypoint
|
1342
|
+
attr_accessor avoid_actions_for_distance: ::Integer
|
1343
|
+
attr_accessor avoid_u_turns: bool
|
1344
|
+
attr_accessor heading: ::Float
|
1345
|
+
attr_accessor matching: Types::RouteMatchingOptions
|
1346
|
+
attr_accessor pass_through: bool
|
1347
|
+
attr_accessor position: ::Array[::Float]
|
1348
|
+
attr_accessor side_of_street: Types::RouteSideOfStreetOptions
|
1349
|
+
attr_accessor stop_duration: ::Integer
|
1350
|
+
SENSITIVE: [:position]
|
1351
|
+
end
|
1352
|
+
|
1353
|
+
class RouteWeightConstraint
|
1354
|
+
attr_accessor type: ("Current" | "Gross" | "Unknown")
|
1355
|
+
attr_accessor value: ::Integer
|
1356
|
+
SENSITIVE: []
|
1357
|
+
end
|
1358
|
+
|
1359
|
+
class RouteZone
|
1360
|
+
attr_accessor category: ("CongestionPricing" | "Environmental" | "Vignette")
|
1361
|
+
attr_accessor name: ::String
|
1362
|
+
SENSITIVE: []
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
class SnapToRoadsRequest
|
1366
|
+
attr_accessor key: ::String
|
1367
|
+
attr_accessor snapped_geometry_format: ("FlexiblePolyline" | "Simple")
|
1368
|
+
attr_accessor snap_radius: ::Integer
|
1369
|
+
attr_accessor trace_points: ::Array[Types::RoadSnapTracePoint]
|
1370
|
+
attr_accessor travel_mode: ("Car" | "Pedestrian" | "Scooter" | "Truck")
|
1371
|
+
attr_accessor travel_mode_options: Types::RoadSnapTravelModeOptions
|
1372
|
+
SENSITIVE: [:key]
|
1373
|
+
end
|
1374
|
+
|
1375
|
+
class SnapToRoadsResponse
|
1376
|
+
attr_accessor notices: ::Array[Types::RoadSnapNotice]
|
1377
|
+
attr_accessor pricing_bucket: ::String
|
1378
|
+
attr_accessor snapped_geometry: Types::RoadSnapSnappedGeometry
|
1379
|
+
attr_accessor snapped_geometry_format: ("FlexiblePolyline" | "Simple")
|
1380
|
+
attr_accessor snapped_trace_points: ::Array[Types::RoadSnapSnappedTracePoint]
|
1381
|
+
SENSITIVE: []
|
1382
|
+
end
|
1383
|
+
|
1384
|
+
class ThrottlingException
|
1385
|
+
attr_accessor message: ::String
|
1386
|
+
SENSITIVE: []
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
class ValidationException
|
1390
|
+
attr_accessor message: ::String
|
1391
|
+
attr_accessor reason: ("UnknownOperation" | "Missing" | "CannotParse" | "FieldValidationFailed" | "Other" | "UnknownField")
|
1392
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1393
|
+
SENSITIVE: []
|
1394
|
+
end
|
1395
|
+
|
1396
|
+
class ValidationExceptionField
|
1397
|
+
attr_accessor name: ::String
|
1398
|
+
attr_accessor message: ::String
|
1399
|
+
SENSITIVE: []
|
1400
|
+
end
|
1401
|
+
|
1402
|
+
class WaypointOptimizationAccessHours
|
1403
|
+
attr_accessor from: Types::WaypointOptimizationAccessHoursEntry
|
1404
|
+
attr_accessor to: Types::WaypointOptimizationAccessHoursEntry
|
1405
|
+
SENSITIVE: []
|
1406
|
+
end
|
1407
|
+
|
1408
|
+
class WaypointOptimizationAccessHoursEntry
|
1409
|
+
attr_accessor day_of_week: ("Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday")
|
1410
|
+
attr_accessor time_of_day: ::String
|
1411
|
+
SENSITIVE: []
|
1412
|
+
end
|
1413
|
+
|
1414
|
+
class WaypointOptimizationAvoidanceArea
|
1415
|
+
attr_accessor geometry: Types::WaypointOptimizationAvoidanceAreaGeometry
|
1416
|
+
SENSITIVE: []
|
1417
|
+
end
|
1418
|
+
|
1419
|
+
class WaypointOptimizationAvoidanceAreaGeometry
|
1420
|
+
attr_accessor bounding_box: ::Array[::Float]
|
1421
|
+
SENSITIVE: [:bounding_box]
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
class WaypointOptimizationAvoidanceOptions
|
1425
|
+
attr_accessor areas: ::Array[Types::WaypointOptimizationAvoidanceArea]
|
1426
|
+
attr_accessor car_shuttle_trains: bool
|
1427
|
+
attr_accessor controlled_access_highways: bool
|
1428
|
+
attr_accessor dirt_roads: bool
|
1429
|
+
attr_accessor ferries: bool
|
1430
|
+
attr_accessor toll_roads: bool
|
1431
|
+
attr_accessor tunnels: bool
|
1432
|
+
attr_accessor u_turns: bool
|
1433
|
+
SENSITIVE: []
|
1434
|
+
end
|
1435
|
+
|
1436
|
+
class WaypointOptimizationConnection
|
1437
|
+
attr_accessor distance: ::Integer
|
1438
|
+
attr_accessor from: ::String
|
1439
|
+
attr_accessor rest_duration: ::Integer
|
1440
|
+
attr_accessor to: ::String
|
1441
|
+
attr_accessor travel_duration: ::Integer
|
1442
|
+
attr_accessor wait_duration: ::Integer
|
1443
|
+
SENSITIVE: []
|
1444
|
+
end
|
1445
|
+
|
1446
|
+
class WaypointOptimizationDestinationOptions
|
1447
|
+
attr_accessor access_hours: Types::WaypointOptimizationAccessHours
|
1448
|
+
attr_accessor appointment_time: ::String
|
1449
|
+
attr_accessor heading: ::Float
|
1450
|
+
attr_accessor id: ::String
|
1451
|
+
attr_accessor service_duration: ::Integer
|
1452
|
+
attr_accessor side_of_street: Types::WaypointOptimizationSideOfStreetOptions
|
1453
|
+
SENSITIVE: []
|
1454
|
+
end
|
1455
|
+
|
1456
|
+
class WaypointOptimizationDriverOptions
|
1457
|
+
attr_accessor rest_cycles: Types::WaypointOptimizationRestCycles
|
1458
|
+
attr_accessor rest_profile: Types::WaypointOptimizationRestProfile
|
1459
|
+
attr_accessor treat_service_time_as: ("Rest" | "Work")
|
1460
|
+
SENSITIVE: []
|
1461
|
+
end
|
1462
|
+
|
1463
|
+
class WaypointOptimizationExclusionOptions
|
1464
|
+
attr_accessor countries: ::Array[::String]
|
1465
|
+
SENSITIVE: []
|
1466
|
+
end
|
1467
|
+
|
1468
|
+
class WaypointOptimizationFailedConstraint
|
1469
|
+
attr_accessor constraint: ("AccessHours" | "AppointmentTime" | "Before" | "Heading" | "ServiceDuration" | "SideOfStreet")
|
1470
|
+
attr_accessor reason: ::String
|
1471
|
+
SENSITIVE: []
|
1472
|
+
end
|
1473
|
+
|
1474
|
+
class WaypointOptimizationImpedingWaypoint
|
1475
|
+
attr_accessor failed_constraints: ::Array[Types::WaypointOptimizationFailedConstraint]
|
1476
|
+
attr_accessor id: ::String
|
1477
|
+
attr_accessor position: ::Array[::Float]
|
1478
|
+
SENSITIVE: [:position]
|
1479
|
+
end
|
1480
|
+
|
1481
|
+
class WaypointOptimizationOptimizedWaypoint
|
1482
|
+
attr_accessor arrival_time: ::String
|
1483
|
+
attr_accessor departure_time: ::String
|
1484
|
+
attr_accessor id: ::String
|
1485
|
+
attr_accessor position: ::Array[::Float]
|
1486
|
+
SENSITIVE: [:position]
|
1487
|
+
end
|
1488
|
+
|
1489
|
+
class WaypointOptimizationOriginOptions
|
1490
|
+
attr_accessor id: ::String
|
1491
|
+
SENSITIVE: []
|
1492
|
+
end
|
1493
|
+
|
1494
|
+
class WaypointOptimizationPedestrianOptions
|
1495
|
+
attr_accessor speed: ::Float
|
1496
|
+
SENSITIVE: []
|
1497
|
+
end
|
1498
|
+
|
1499
|
+
class WaypointOptimizationRestCycleDurations
|
1500
|
+
attr_accessor rest_duration: ::Integer
|
1501
|
+
attr_accessor work_duration: ::Integer
|
1502
|
+
SENSITIVE: []
|
1503
|
+
end
|
1504
|
+
|
1505
|
+
class WaypointOptimizationRestCycles
|
1506
|
+
attr_accessor long_cycle: Types::WaypointOptimizationRestCycleDurations
|
1507
|
+
attr_accessor short_cycle: Types::WaypointOptimizationRestCycleDurations
|
1508
|
+
SENSITIVE: []
|
1509
|
+
end
|
1510
|
+
|
1511
|
+
class WaypointOptimizationRestProfile
|
1512
|
+
attr_accessor profile: ::String
|
1513
|
+
SENSITIVE: []
|
1514
|
+
end
|
1515
|
+
|
1516
|
+
class WaypointOptimizationSideOfStreetOptions
|
1517
|
+
attr_accessor position: ::Array[::Float]
|
1518
|
+
attr_accessor use_with: ("AnyStreet" | "DividedStreetOnly")
|
1519
|
+
SENSITIVE: [:position]
|
1520
|
+
end
|
1521
|
+
|
1522
|
+
class WaypointOptimizationTimeBreakdown
|
1523
|
+
attr_accessor rest_duration: ::Integer
|
1524
|
+
attr_accessor service_duration: ::Integer
|
1525
|
+
attr_accessor travel_duration: ::Integer
|
1526
|
+
attr_accessor wait_duration: ::Integer
|
1527
|
+
SENSITIVE: []
|
1528
|
+
end
|
1529
|
+
|
1530
|
+
class WaypointOptimizationTrafficOptions
|
1531
|
+
attr_accessor usage: ("IgnoreTrafficData" | "UseTrafficData")
|
1532
|
+
SENSITIVE: []
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
class WaypointOptimizationTrailerOptions
|
1536
|
+
attr_accessor trailer_count: ::Integer
|
1537
|
+
SENSITIVE: []
|
1538
|
+
end
|
1539
|
+
|
1540
|
+
class WaypointOptimizationTravelModeOptions
|
1541
|
+
attr_accessor pedestrian: Types::WaypointOptimizationPedestrianOptions
|
1542
|
+
attr_accessor truck: Types::WaypointOptimizationTruckOptions
|
1543
|
+
SENSITIVE: []
|
1544
|
+
end
|
1545
|
+
|
1546
|
+
class WaypointOptimizationTruckOptions
|
1547
|
+
attr_accessor gross_weight: ::Integer
|
1548
|
+
attr_accessor hazardous_cargos: ::Array[("Combustible" | "Corrosive" | "Explosive" | "Flammable" | "Gas" | "HarmfulToWater" | "Organic" | "Other" | "Poison" | "PoisonousInhalation" | "Radioactive")]
|
1549
|
+
attr_accessor height: ::Integer
|
1550
|
+
attr_accessor length: ::Integer
|
1551
|
+
attr_accessor trailer: Types::WaypointOptimizationTrailerOptions
|
1552
|
+
attr_accessor truck_type: ("StraightTruck" | "Tractor")
|
1553
|
+
attr_accessor tunnel_restriction_code: ::String
|
1554
|
+
attr_accessor weight_per_axle: ::Integer
|
1555
|
+
attr_accessor width: ::Integer
|
1556
|
+
SENSITIVE: []
|
1557
|
+
end
|
1558
|
+
|
1559
|
+
class WaypointOptimizationWaypoint
|
1560
|
+
attr_accessor access_hours: Types::WaypointOptimizationAccessHours
|
1561
|
+
attr_accessor appointment_time: ::String
|
1562
|
+
attr_accessor before: ::Array[::Integer]
|
1563
|
+
attr_accessor heading: ::Float
|
1564
|
+
attr_accessor id: ::String
|
1565
|
+
attr_accessor position: ::Array[::Float]
|
1566
|
+
attr_accessor service_duration: ::Integer
|
1567
|
+
attr_accessor side_of_street: Types::WaypointOptimizationSideOfStreetOptions
|
1568
|
+
SENSITIVE: [:position]
|
1569
|
+
end
|
1570
|
+
|
1571
|
+
class WeightPerAxleGroup
|
1572
|
+
attr_accessor single: ::Integer
|
1573
|
+
attr_accessor tandem: ::Integer
|
1574
|
+
attr_accessor triple: ::Integer
|
1575
|
+
attr_accessor quad: ::Integer
|
1576
|
+
attr_accessor quint: ::Integer
|
1577
|
+
SENSITIVE: []
|
1578
|
+
end
|
1579
|
+
end
|
1580
|
+
end
|