@aws-sdk/client-geo-routes 3.936.0 → 3.939.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +655 -100
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +487 -0
- package/dist-es/models/models_0.js +1 -487
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +1045 -0
- package/dist-types/models/errors.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +1 -1045
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +617 -0
- package/dist-types/ts3.4/models/errors.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +68 -617
- package/package.json +2 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DayOfWeek, GeometryFormat, IsolineEngineType, IsolineHazardousCargoType, IsolineOptimizationObjective, IsolineTravelMode, IsolineTruckType, IsolineZoneCategory, MatchingStrategy, MeasurementSystem, RoadSnapHazardousCargoType, RoadSnapNoticeCode, RoadSnapTravelMode, RouteDirection, RouteEngineType, RouteFerryAfterTravelStepType, RouteFerryBeforeTravelStepType, RouteFerryNoticeCode, RouteFerryTravelStepType, RouteHazardousCargoType, RouteLegAdditionalFeature, RouteLegTravelMode, RouteLegType, RouteMatrixErrorCode, RouteMatrixHazardousCargoType, RouteMatrixTravelMode, RouteMatrixTruckType, RouteMatrixZoneCategory, RouteNoticeImpact, RoutePedestrianNoticeCode, RoutePedestrianTravelStepType, RouteResponseNoticeCode, RouteRoadType, RouteSideOfStreet, RouteSpanAdditionalFeature, RouteSpanCarAccessAttribute, RouteSpanGateAttribute, RouteSpanPedestrianAccessAttribute, RouteSpanRailwayCrossingAttribute, RouteSpanRoadAttribute, RouteSpanScooterAccessAttribute, RouteSpanTruckAccessAttribute, RouteSteeringDirection, RouteTollPassValidityPeriodType, RouteTollPaymentMethod, RouteTollVehicleCategory, RouteTravelMode, RouteTravelStepType, RouteTruckType, RouteTurnIntensity, RouteVehicleIncidentSeverity, RouteVehicleIncidentType, RouteVehicleNoticeCode, RouteVehicleTravelStepType, RouteWeightConstraintType, RouteZoneCategory, RoutingObjective, SideOfStreetMatchingStrategy, TrafficUsage, WaypointOptimizationClusteringAlgorithm, WaypointOptimizationConstraint, WaypointOptimizationHazardousCargoType, WaypointOptimizationSequencingObjective, WaypointOptimizationServiceTimeTreatment, WaypointOptimizationTravelMode, WaypointOptimizationTruckType } from "./enums";
|
|
1
2
|
/**
|
|
2
3
|
* <p>Features that are allowed while calculating an isoline.</p>
|
|
3
4
|
* @public
|
|
@@ -93,19 +94,6 @@ export interface IsolineAvoidanceArea {
|
|
|
93
94
|
*/
|
|
94
95
|
Geometry: IsolineAvoidanceAreaGeometry | undefined;
|
|
95
96
|
}
|
|
96
|
-
/**
|
|
97
|
-
* @public
|
|
98
|
-
* @enum
|
|
99
|
-
*/
|
|
100
|
-
export declare const IsolineZoneCategory: {
|
|
101
|
-
readonly CONGESTION_PRICING: "CongestionPricing";
|
|
102
|
-
readonly ENVIRONMENTAL: "Environmental";
|
|
103
|
-
readonly VIGNETTE: "Vignette";
|
|
104
|
-
};
|
|
105
|
-
/**
|
|
106
|
-
* @public
|
|
107
|
-
*/
|
|
108
|
-
export type IsolineZoneCategory = (typeof IsolineZoneCategory)[keyof typeof IsolineZoneCategory];
|
|
109
97
|
/**
|
|
110
98
|
* <p>Zone category to be avoided.</p>
|
|
111
99
|
* @public
|
|
@@ -183,18 +171,6 @@ export interface IsolineAvoidanceOptions {
|
|
|
183
171
|
*/
|
|
184
172
|
ZoneCategories?: IsolineAvoidanceZoneCategory[] | undefined;
|
|
185
173
|
}
|
|
186
|
-
/**
|
|
187
|
-
* @public
|
|
188
|
-
* @enum
|
|
189
|
-
*/
|
|
190
|
-
export declare const MatchingStrategy: {
|
|
191
|
-
readonly MATCH_ANY: "MatchAny";
|
|
192
|
-
readonly MATCH_MOST_SIGNIFICANT_ROAD: "MatchMostSignificantRoad";
|
|
193
|
-
};
|
|
194
|
-
/**
|
|
195
|
-
* @public
|
|
196
|
-
*/
|
|
197
|
-
export type MatchingStrategy = (typeof MatchingStrategy)[keyof typeof MatchingStrategy];
|
|
198
174
|
/**
|
|
199
175
|
* <p>Isoline matching related options.</p>
|
|
200
176
|
* @public
|
|
@@ -221,18 +197,6 @@ export interface IsolineMatchingOptions {
|
|
|
221
197
|
*/
|
|
222
198
|
Strategy?: MatchingStrategy | undefined;
|
|
223
199
|
}
|
|
224
|
-
/**
|
|
225
|
-
* @public
|
|
226
|
-
* @enum
|
|
227
|
-
*/
|
|
228
|
-
export declare const SideOfStreetMatchingStrategy: {
|
|
229
|
-
readonly ANY_STREET: "AnyStreet";
|
|
230
|
-
readonly DIVIDED_STREET_ONLY: "DividedStreetOnly";
|
|
231
|
-
};
|
|
232
|
-
/**
|
|
233
|
-
* @public
|
|
234
|
-
*/
|
|
235
|
-
export type SideOfStreetMatchingStrategy = (typeof SideOfStreetMatchingStrategy)[keyof typeof SideOfStreetMatchingStrategy];
|
|
236
200
|
/**
|
|
237
201
|
* <p>Options to configure matching the provided position to a side of the street.</p>
|
|
238
202
|
* @public
|
|
@@ -275,18 +239,6 @@ export interface IsolineDestinationOptions {
|
|
|
275
239
|
*/
|
|
276
240
|
SideOfStreet?: IsolineSideOfStreetOptions | undefined;
|
|
277
241
|
}
|
|
278
|
-
/**
|
|
279
|
-
* @public
|
|
280
|
-
* @enum
|
|
281
|
-
*/
|
|
282
|
-
export declare const GeometryFormat: {
|
|
283
|
-
readonly FLEXIBLE_POLYLINE: "FlexiblePolyline";
|
|
284
|
-
readonly SIMPLE: "Simple";
|
|
285
|
-
};
|
|
286
|
-
/**
|
|
287
|
-
* @public
|
|
288
|
-
*/
|
|
289
|
-
export type GeometryFormat = (typeof GeometryFormat)[keyof typeof GeometryFormat];
|
|
290
242
|
/**
|
|
291
243
|
* <p>Isoline granularity related options.</p>
|
|
292
244
|
* @public
|
|
@@ -303,31 +255,6 @@ export interface IsolineGranularityOptions {
|
|
|
303
255
|
*/
|
|
304
256
|
MaxResolution?: number | undefined;
|
|
305
257
|
}
|
|
306
|
-
/**
|
|
307
|
-
* @public
|
|
308
|
-
* @enum
|
|
309
|
-
*/
|
|
310
|
-
export declare const IsolineOptimizationObjective: {
|
|
311
|
-
readonly ACCURATE_CALCULATION: "AccurateCalculation";
|
|
312
|
-
readonly BALANCED_CALCULATION: "BalancedCalculation";
|
|
313
|
-
readonly FAST_CALCULATION: "FastCalculation";
|
|
314
|
-
};
|
|
315
|
-
/**
|
|
316
|
-
* @public
|
|
317
|
-
*/
|
|
318
|
-
export type IsolineOptimizationObjective = (typeof IsolineOptimizationObjective)[keyof typeof IsolineOptimizationObjective];
|
|
319
|
-
/**
|
|
320
|
-
* @public
|
|
321
|
-
* @enum
|
|
322
|
-
*/
|
|
323
|
-
export declare const RoutingObjective: {
|
|
324
|
-
readonly FASTEST_ROUTE: "FastestRoute";
|
|
325
|
-
readonly SHORTEST_ROUTE: "ShortestRoute";
|
|
326
|
-
};
|
|
327
|
-
/**
|
|
328
|
-
* @public
|
|
329
|
-
*/
|
|
330
|
-
export type RoutingObjective = (typeof RoutingObjective)[keyof typeof RoutingObjective];
|
|
331
258
|
/**
|
|
332
259
|
* <p>Origin related options.</p>
|
|
333
260
|
* @public
|
|
@@ -370,18 +297,6 @@ export interface IsolineThresholds {
|
|
|
370
297
|
*/
|
|
371
298
|
Time?: number[] | undefined;
|
|
372
299
|
}
|
|
373
|
-
/**
|
|
374
|
-
* @public
|
|
375
|
-
* @enum
|
|
376
|
-
*/
|
|
377
|
-
export declare const TrafficUsage: {
|
|
378
|
-
readonly IGNORE_TRAFFIC_DATA: "IgnoreTrafficData";
|
|
379
|
-
readonly USE_TRAFFIC_DATA: "UseTrafficData";
|
|
380
|
-
};
|
|
381
|
-
/**
|
|
382
|
-
* @public
|
|
383
|
-
*/
|
|
384
|
-
export type TrafficUsage = (typeof TrafficUsage)[keyof typeof TrafficUsage];
|
|
385
300
|
/**
|
|
386
301
|
* <p>Options related to traffic.</p>
|
|
387
302
|
* @public
|
|
@@ -398,33 +313,6 @@ export interface IsolineTrafficOptions {
|
|
|
398
313
|
*/
|
|
399
314
|
Usage?: TrafficUsage | undefined;
|
|
400
315
|
}
|
|
401
|
-
/**
|
|
402
|
-
* @public
|
|
403
|
-
* @enum
|
|
404
|
-
*/
|
|
405
|
-
export declare const IsolineTravelMode: {
|
|
406
|
-
readonly CAR: "Car";
|
|
407
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
408
|
-
readonly SCOOTER: "Scooter";
|
|
409
|
-
readonly TRUCK: "Truck";
|
|
410
|
-
};
|
|
411
|
-
/**
|
|
412
|
-
* @public
|
|
413
|
-
*/
|
|
414
|
-
export type IsolineTravelMode = (typeof IsolineTravelMode)[keyof typeof IsolineTravelMode];
|
|
415
|
-
/**
|
|
416
|
-
* @public
|
|
417
|
-
* @enum
|
|
418
|
-
*/
|
|
419
|
-
export declare const IsolineEngineType: {
|
|
420
|
-
readonly ELECTRIC: "Electric";
|
|
421
|
-
readonly INTERNAL_COMBUSTION: "InternalCombustion";
|
|
422
|
-
readonly PLUGIN_HYBRID: "PluginHybrid";
|
|
423
|
-
};
|
|
424
|
-
/**
|
|
425
|
-
* @public
|
|
426
|
-
*/
|
|
427
|
-
export type IsolineEngineType = (typeof IsolineEngineType)[keyof typeof IsolineEngineType];
|
|
428
316
|
/**
|
|
429
317
|
* <p>The vehicle license plate.</p>
|
|
430
318
|
* @public
|
|
@@ -488,27 +376,6 @@ export interface IsolineScooterOptions {
|
|
|
488
376
|
*/
|
|
489
377
|
Occupancy?: number | undefined;
|
|
490
378
|
}
|
|
491
|
-
/**
|
|
492
|
-
* @public
|
|
493
|
-
* @enum
|
|
494
|
-
*/
|
|
495
|
-
export declare const IsolineHazardousCargoType: {
|
|
496
|
-
readonly COMBUSTIBLE: "Combustible";
|
|
497
|
-
readonly CORROSIVE: "Corrosive";
|
|
498
|
-
readonly EXPLOSIVE: "Explosive";
|
|
499
|
-
readonly FLAMMABLE: "Flammable";
|
|
500
|
-
readonly GAS: "Gas";
|
|
501
|
-
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
502
|
-
readonly ORGANIC: "Organic";
|
|
503
|
-
readonly OTHER: "Other";
|
|
504
|
-
readonly POISON: "Poison";
|
|
505
|
-
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
506
|
-
readonly RADIOACTIVE: "Radioactive";
|
|
507
|
-
};
|
|
508
|
-
/**
|
|
509
|
-
* @public
|
|
510
|
-
*/
|
|
511
|
-
export type IsolineHazardousCargoType = (typeof IsolineHazardousCargoType)[keyof typeof IsolineHazardousCargoType];
|
|
512
379
|
/**
|
|
513
380
|
* <p>Trailer options corresponding to the vehicle.</p>
|
|
514
381
|
* @public
|
|
@@ -525,19 +392,6 @@ export interface IsolineTrailerOptions {
|
|
|
525
392
|
*/
|
|
526
393
|
TrailerCount?: number | undefined;
|
|
527
394
|
}
|
|
528
|
-
/**
|
|
529
|
-
* @public
|
|
530
|
-
* @enum
|
|
531
|
-
*/
|
|
532
|
-
export declare const IsolineTruckType: {
|
|
533
|
-
readonly LIGHT_TRUCK: "LightTruck";
|
|
534
|
-
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
535
|
-
readonly TRACTOR: "Tractor";
|
|
536
|
-
};
|
|
537
|
-
/**
|
|
538
|
-
* @public
|
|
539
|
-
*/
|
|
540
|
-
export type IsolineTruckType = (typeof IsolineTruckType)[keyof typeof IsolineTruckType];
|
|
541
395
|
/**
|
|
542
396
|
* <p>Specifies the total weight for the specified axle group. Meant for usage in countries that have different regulations based on the axle group type.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
|
|
543
397
|
* @public
|
|
@@ -921,44 +775,6 @@ export interface ValidationExceptionField {
|
|
|
921
775
|
*/
|
|
922
776
|
Message: string | undefined;
|
|
923
777
|
}
|
|
924
|
-
/**
|
|
925
|
-
* @public
|
|
926
|
-
* @enum
|
|
927
|
-
*/
|
|
928
|
-
export declare const ValidationExceptionReason: {
|
|
929
|
-
/**
|
|
930
|
-
* The input cannot be parsed. For example a required JSON document, ARN identifier,
|
|
931
|
-
* date value, or numeric field cannot be parsed.
|
|
932
|
-
*
|
|
933
|
-
*/
|
|
934
|
-
readonly CANNOT_PARSE: "CannotParse";
|
|
935
|
-
/**
|
|
936
|
-
* The input is present and parsable, but it is otherwise invalid. For example, a
|
|
937
|
-
* required numeric argument is outside the allowed range.
|
|
938
|
-
*
|
|
939
|
-
*/
|
|
940
|
-
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|
|
941
|
-
/**
|
|
942
|
-
* The required input is missing.
|
|
943
|
-
*/
|
|
944
|
-
readonly MISSING: "Missing";
|
|
945
|
-
/**
|
|
946
|
-
* The input is invalid but no more specific reason is applicable.
|
|
947
|
-
*/
|
|
948
|
-
readonly OTHER: "Other";
|
|
949
|
-
/**
|
|
950
|
-
* No such field is supported.
|
|
951
|
-
*/
|
|
952
|
-
readonly UNKNOWN_FIELD: "UnknownField";
|
|
953
|
-
/**
|
|
954
|
-
* No such operation is supported.
|
|
955
|
-
*/
|
|
956
|
-
readonly UNKNOWN_OPERATION: "UnknownOperation";
|
|
957
|
-
};
|
|
958
|
-
/**
|
|
959
|
-
* @public
|
|
960
|
-
*/
|
|
961
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
962
778
|
/**
|
|
963
779
|
* <p>Allow Options related to the route matrix.</p>
|
|
964
780
|
* @public
|
|
@@ -1007,19 +823,6 @@ export interface RouteMatrixAvoidanceArea {
|
|
|
1007
823
|
*/
|
|
1008
824
|
Geometry: RouteMatrixAvoidanceAreaGeometry | undefined;
|
|
1009
825
|
}
|
|
1010
|
-
/**
|
|
1011
|
-
* @public
|
|
1012
|
-
* @enum
|
|
1013
|
-
*/
|
|
1014
|
-
export declare const RouteMatrixZoneCategory: {
|
|
1015
|
-
readonly CONGESTION_PRICING: "CongestionPricing";
|
|
1016
|
-
readonly ENVIRONMENTAL: "Environmental";
|
|
1017
|
-
readonly VIGNETTE: "Vignette";
|
|
1018
|
-
};
|
|
1019
|
-
/**
|
|
1020
|
-
* @public
|
|
1021
|
-
*/
|
|
1022
|
-
export type RouteMatrixZoneCategory = (typeof RouteMatrixZoneCategory)[keyof typeof RouteMatrixZoneCategory];
|
|
1023
826
|
/**
|
|
1024
827
|
* <p>Zone categories to be avoided.</p>
|
|
1025
828
|
* @public
|
|
@@ -1319,20 +1122,6 @@ export interface RouteMatrixTrafficOptions {
|
|
|
1319
1122
|
*/
|
|
1320
1123
|
Usage?: TrafficUsage | undefined;
|
|
1321
1124
|
}
|
|
1322
|
-
/**
|
|
1323
|
-
* @public
|
|
1324
|
-
* @enum
|
|
1325
|
-
*/
|
|
1326
|
-
export declare const RouteMatrixTravelMode: {
|
|
1327
|
-
readonly CAR: "Car";
|
|
1328
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
1329
|
-
readonly SCOOTER: "Scooter";
|
|
1330
|
-
readonly TRUCK: "Truck";
|
|
1331
|
-
};
|
|
1332
|
-
/**
|
|
1333
|
-
* @public
|
|
1334
|
-
*/
|
|
1335
|
-
export type RouteMatrixTravelMode = (typeof RouteMatrixTravelMode)[keyof typeof RouteMatrixTravelMode];
|
|
1336
1125
|
/**
|
|
1337
1126
|
* <p>The vehicle License Plate.</p>
|
|
1338
1127
|
* @public
|
|
@@ -1386,27 +1175,6 @@ export interface RouteMatrixScooterOptions {
|
|
|
1386
1175
|
*/
|
|
1387
1176
|
Occupancy?: number | undefined;
|
|
1388
1177
|
}
|
|
1389
|
-
/**
|
|
1390
|
-
* @public
|
|
1391
|
-
* @enum
|
|
1392
|
-
*/
|
|
1393
|
-
export declare const RouteMatrixHazardousCargoType: {
|
|
1394
|
-
readonly COMBUSTIBLE: "Combustible";
|
|
1395
|
-
readonly CORROSIVE: "Corrosive";
|
|
1396
|
-
readonly EXPLOSIVE: "Explosive";
|
|
1397
|
-
readonly FLAMMABLE: "Flammable";
|
|
1398
|
-
readonly GAS: "Gas";
|
|
1399
|
-
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
1400
|
-
readonly ORGANIC: "Organic";
|
|
1401
|
-
readonly OTHER: "Other";
|
|
1402
|
-
readonly POISON: "Poison";
|
|
1403
|
-
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
1404
|
-
readonly RADIOACTIVE: "Radioactive";
|
|
1405
|
-
};
|
|
1406
|
-
/**
|
|
1407
|
-
* @public
|
|
1408
|
-
*/
|
|
1409
|
-
export type RouteMatrixHazardousCargoType = (typeof RouteMatrixHazardousCargoType)[keyof typeof RouteMatrixHazardousCargoType];
|
|
1410
1178
|
/**
|
|
1411
1179
|
* <p>Trailer options corresponding to the vehicle.</p>
|
|
1412
1180
|
* @public
|
|
@@ -1418,19 +1186,6 @@ export interface RouteMatrixTrailerOptions {
|
|
|
1418
1186
|
*/
|
|
1419
1187
|
TrailerCount?: number | undefined;
|
|
1420
1188
|
}
|
|
1421
|
-
/**
|
|
1422
|
-
* @public
|
|
1423
|
-
* @enum
|
|
1424
|
-
*/
|
|
1425
|
-
export declare const RouteMatrixTruckType: {
|
|
1426
|
-
readonly LIGHT_TRUCK: "LightTruck";
|
|
1427
|
-
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
1428
|
-
readonly TRACTOR: "Tractor";
|
|
1429
|
-
};
|
|
1430
|
-
/**
|
|
1431
|
-
* @public
|
|
1432
|
-
*/
|
|
1433
|
-
export type RouteMatrixTruckType = (typeof RouteMatrixTruckType)[keyof typeof RouteMatrixTruckType];
|
|
1434
1189
|
/**
|
|
1435
1190
|
* <p>Travel mode options when the provided travel mode is "Truck"</p>
|
|
1436
1191
|
* @public
|
|
@@ -1608,25 +1363,6 @@ export interface CalculateRouteMatrixRequest {
|
|
|
1608
1363
|
*/
|
|
1609
1364
|
TravelModeOptions?: RouteMatrixTravelModeOptions | undefined;
|
|
1610
1365
|
}
|
|
1611
|
-
/**
|
|
1612
|
-
* @public
|
|
1613
|
-
* @enum
|
|
1614
|
-
*/
|
|
1615
|
-
export declare const RouteMatrixErrorCode: {
|
|
1616
|
-
readonly NO_MATCH: "NoMatch";
|
|
1617
|
-
readonly NO_MATCH_DESTINATION: "NoMatchDestination";
|
|
1618
|
-
readonly NO_MATCH_ORIGIN: "NoMatchOrigin";
|
|
1619
|
-
readonly NO_ROUTE: "NoRoute";
|
|
1620
|
-
readonly OTHER: "Other";
|
|
1621
|
-
readonly OUT_OF_BOUNDS: "OutOfBounds";
|
|
1622
|
-
readonly OUT_OF_BOUNDS_DESTINATION: "OutOfBoundsDestination";
|
|
1623
|
-
readonly OUT_OF_BOUNDS_ORIGIN: "OutOfBoundsOrigin";
|
|
1624
|
-
readonly VIOLATION: "Violation";
|
|
1625
|
-
};
|
|
1626
|
-
/**
|
|
1627
|
-
* @public
|
|
1628
|
-
*/
|
|
1629
|
-
export type RouteMatrixErrorCode = (typeof RouteMatrixErrorCode)[keyof typeof RouteMatrixErrorCode];
|
|
1630
1366
|
/**
|
|
1631
1367
|
* <p>The calculated route matrix containing the results for all pairs of Origins to Destination positions. Each row corresponds to one entry in Origins. Each entry in the row corresponds to the route from that entry in Origins to an entry in Destination positions.</p>
|
|
1632
1368
|
* @public
|
|
@@ -1736,19 +1472,6 @@ export interface RouteAvoidanceArea {
|
|
|
1736
1472
|
*/
|
|
1737
1473
|
Geometry: RouteAvoidanceAreaGeometry | undefined;
|
|
1738
1474
|
}
|
|
1739
|
-
/**
|
|
1740
|
-
* @public
|
|
1741
|
-
* @enum
|
|
1742
|
-
*/
|
|
1743
|
-
export declare const RouteZoneCategory: {
|
|
1744
|
-
readonly CONGESTION_PRICING: "CongestionPricing";
|
|
1745
|
-
readonly ENVIRONMENTAL: "Environmental";
|
|
1746
|
-
readonly VIGNETTE: "Vignette";
|
|
1747
|
-
};
|
|
1748
|
-
/**
|
|
1749
|
-
* @public
|
|
1750
|
-
*/
|
|
1751
|
-
export type RouteZoneCategory = (typeof RouteZoneCategory)[keyof typeof RouteZoneCategory];
|
|
1752
1475
|
/**
|
|
1753
1476
|
* <p>Zone categories to be avoided.</p>
|
|
1754
1477
|
* @public
|
|
@@ -1942,37 +1665,6 @@ export interface RouteExclusionOptions {
|
|
|
1942
1665
|
*/
|
|
1943
1666
|
Countries: string[] | undefined;
|
|
1944
1667
|
}
|
|
1945
|
-
/**
|
|
1946
|
-
* @public
|
|
1947
|
-
* @enum
|
|
1948
|
-
*/
|
|
1949
|
-
export declare const MeasurementSystem: {
|
|
1950
|
-
readonly IMPERIAL: "Imperial";
|
|
1951
|
-
readonly METRIC: "Metric";
|
|
1952
|
-
};
|
|
1953
|
-
/**
|
|
1954
|
-
* @public
|
|
1955
|
-
*/
|
|
1956
|
-
export type MeasurementSystem = (typeof MeasurementSystem)[keyof typeof MeasurementSystem];
|
|
1957
|
-
/**
|
|
1958
|
-
* @public
|
|
1959
|
-
* @enum
|
|
1960
|
-
*/
|
|
1961
|
-
export declare const RouteLegAdditionalFeature: {
|
|
1962
|
-
readonly ELEVATION: "Elevation";
|
|
1963
|
-
readonly INCIDENTS: "Incidents";
|
|
1964
|
-
readonly PASS_THROUGH_WAYPOINTS: "PassThroughWaypoints";
|
|
1965
|
-
readonly SUMMARY: "Summary";
|
|
1966
|
-
readonly TOLLS: "Tolls";
|
|
1967
|
-
readonly TRAVEL_STEP_INSTRUCTIONS: "TravelStepInstructions";
|
|
1968
|
-
readonly TRUCK_ROAD_TYPES: "TruckRoadTypes";
|
|
1969
|
-
readonly TYPICAL_DURATION: "TypicalDuration";
|
|
1970
|
-
readonly ZONES: "Zones";
|
|
1971
|
-
};
|
|
1972
|
-
/**
|
|
1973
|
-
* @public
|
|
1974
|
-
*/
|
|
1975
|
-
export type RouteLegAdditionalFeature = (typeof RouteLegAdditionalFeature)[keyof typeof RouteLegAdditionalFeature];
|
|
1976
1668
|
/**
|
|
1977
1669
|
* <p>Origin related options.</p>
|
|
1978
1670
|
* @public
|
|
@@ -2004,40 +1696,6 @@ export interface RouteOriginOptions {
|
|
|
2004
1696
|
*/
|
|
2005
1697
|
SideOfStreet?: RouteSideOfStreetOptions | undefined;
|
|
2006
1698
|
}
|
|
2007
|
-
/**
|
|
2008
|
-
* @public
|
|
2009
|
-
* @enum
|
|
2010
|
-
*/
|
|
2011
|
-
export declare const RouteSpanAdditionalFeature: {
|
|
2012
|
-
readonly BEST_CASE_DURATION: "BestCaseDuration";
|
|
2013
|
-
readonly CAR_ACCESS: "CarAccess";
|
|
2014
|
-
readonly CONSUMPTION: "Consumption";
|
|
2015
|
-
readonly COUNTRY: "Country";
|
|
2016
|
-
readonly DISTANCE: "Distance";
|
|
2017
|
-
readonly DURATION: "Duration";
|
|
2018
|
-
readonly DYNAMIC_SPEED: "DynamicSpeed";
|
|
2019
|
-
readonly FUNCTIONAL_CLASSIFICATION: "FunctionalClassification";
|
|
2020
|
-
readonly GATES: "Gates";
|
|
2021
|
-
readonly INCIDENTS: "Incidents";
|
|
2022
|
-
readonly NAMES: "Names";
|
|
2023
|
-
readonly NOTICES: "Notices";
|
|
2024
|
-
readonly PEDESTRIAN_ACCESS: "PedestrianAccess";
|
|
2025
|
-
readonly RAILWAY_CROSSINGS: "RailwayCrossings";
|
|
2026
|
-
readonly REGION: "Region";
|
|
2027
|
-
readonly ROAD_ATTRIBUTES: "RoadAttributes";
|
|
2028
|
-
readonly ROUTE_NUMBERS: "RouteNumbers";
|
|
2029
|
-
readonly SCOOTER_ACCESS: "ScooterAccess";
|
|
2030
|
-
readonly SPEED_LIMIT: "SpeedLimit";
|
|
2031
|
-
readonly TOLL_SYSTEMS: "TollSystems";
|
|
2032
|
-
readonly TRUCK_ACCESS: "TruckAccess";
|
|
2033
|
-
readonly TRUCK_ROAD_TYPES: "TruckRoadTypes";
|
|
2034
|
-
readonly TYPICAL_DURATION: "TypicalDuration";
|
|
2035
|
-
readonly ZONES: "Zones";
|
|
2036
|
-
};
|
|
2037
|
-
/**
|
|
2038
|
-
* @public
|
|
2039
|
-
*/
|
|
2040
|
-
export type RouteSpanAdditionalFeature = (typeof RouteSpanAdditionalFeature)[keyof typeof RouteSpanAdditionalFeature];
|
|
2041
1699
|
/**
|
|
2042
1700
|
* <p>Type of the emission.</p> <p> <b>Valid values</b>: <code>Euro1, Euro2, Euro3, Euro4, Euro5, Euro6, EuroEev</code> </p>
|
|
2043
1701
|
* @public
|
|
@@ -2054,17 +1712,6 @@ export interface RouteEmissionType {
|
|
|
2054
1712
|
*/
|
|
2055
1713
|
Type: string | undefined;
|
|
2056
1714
|
}
|
|
2057
|
-
/**
|
|
2058
|
-
* @public
|
|
2059
|
-
* @enum
|
|
2060
|
-
*/
|
|
2061
|
-
export declare const RouteTollVehicleCategory: {
|
|
2062
|
-
readonly MINIBUS: "Minibus";
|
|
2063
|
-
};
|
|
2064
|
-
/**
|
|
2065
|
-
* @public
|
|
2066
|
-
*/
|
|
2067
|
-
export type RouteTollVehicleCategory = (typeof RouteTollVehicleCategory)[keyof typeof RouteTollVehicleCategory];
|
|
2068
1715
|
/**
|
|
2069
1716
|
* <p>Options related to Tolls on a route.</p>
|
|
2070
1717
|
* @public
|
|
@@ -2112,33 +1759,6 @@ export interface RouteTrafficOptions {
|
|
|
2112
1759
|
*/
|
|
2113
1760
|
Usage?: TrafficUsage | undefined;
|
|
2114
1761
|
}
|
|
2115
|
-
/**
|
|
2116
|
-
* @public
|
|
2117
|
-
* @enum
|
|
2118
|
-
*/
|
|
2119
|
-
export declare const RouteTravelMode: {
|
|
2120
|
-
readonly CAR: "Car";
|
|
2121
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
2122
|
-
readonly SCOOTER: "Scooter";
|
|
2123
|
-
readonly TRUCK: "Truck";
|
|
2124
|
-
};
|
|
2125
|
-
/**
|
|
2126
|
-
* @public
|
|
2127
|
-
*/
|
|
2128
|
-
export type RouteTravelMode = (typeof RouteTravelMode)[keyof typeof RouteTravelMode];
|
|
2129
|
-
/**
|
|
2130
|
-
* @public
|
|
2131
|
-
* @enum
|
|
2132
|
-
*/
|
|
2133
|
-
export declare const RouteEngineType: {
|
|
2134
|
-
readonly ELECTRIC: "Electric";
|
|
2135
|
-
readonly INTERNAL_COMBUSTION: "InternalCombustion";
|
|
2136
|
-
readonly PLUGIN_HYBRID: "PluginHybrid";
|
|
2137
|
-
};
|
|
2138
|
-
/**
|
|
2139
|
-
* @public
|
|
2140
|
-
*/
|
|
2141
|
-
export type RouteEngineType = (typeof RouteEngineType)[keyof typeof RouteEngineType];
|
|
2142
1762
|
/**
|
|
2143
1763
|
* <p>License plate information of the vehicle. Currently, only the last character is used where license plate based controlled access is enforced.</p>
|
|
2144
1764
|
* @public
|
|
@@ -2213,27 +1833,6 @@ export interface RouteScooterOptions {
|
|
|
2213
1833
|
*/
|
|
2214
1834
|
Occupancy?: number | undefined;
|
|
2215
1835
|
}
|
|
2216
|
-
/**
|
|
2217
|
-
* @public
|
|
2218
|
-
* @enum
|
|
2219
|
-
*/
|
|
2220
|
-
export declare const RouteHazardousCargoType: {
|
|
2221
|
-
readonly COMBUSTIBLE: "Combustible";
|
|
2222
|
-
readonly CORROSIVE: "Corrosive";
|
|
2223
|
-
readonly EXPLOSIVE: "Explosive";
|
|
2224
|
-
readonly FLAMMABLE: "Flammable";
|
|
2225
|
-
readonly GAS: "Gas";
|
|
2226
|
-
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
2227
|
-
readonly ORGANIC: "Organic";
|
|
2228
|
-
readonly OTHER: "Other";
|
|
2229
|
-
readonly POISON: "Poison";
|
|
2230
|
-
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
2231
|
-
readonly RADIOACTIVE: "Radioactive";
|
|
2232
|
-
};
|
|
2233
|
-
/**
|
|
2234
|
-
* @public
|
|
2235
|
-
*/
|
|
2236
|
-
export type RouteHazardousCargoType = (typeof RouteHazardousCargoType)[keyof typeof RouteHazardousCargoType];
|
|
2237
1836
|
/**
|
|
2238
1837
|
* <p>Trailer options corresponding to the vehicle.</p>
|
|
2239
1838
|
* @public
|
|
@@ -2250,19 +1849,6 @@ export interface RouteTrailerOptions {
|
|
|
2250
1849
|
*/
|
|
2251
1850
|
TrailerCount?: number | undefined;
|
|
2252
1851
|
}
|
|
2253
|
-
/**
|
|
2254
|
-
* @public
|
|
2255
|
-
* @enum
|
|
2256
|
-
*/
|
|
2257
|
-
export declare const RouteTruckType: {
|
|
2258
|
-
readonly LIGHT_TRUCK: "LightTruck";
|
|
2259
|
-
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
2260
|
-
readonly TRACTOR: "Tractor";
|
|
2261
|
-
};
|
|
2262
|
-
/**
|
|
2263
|
-
* @public
|
|
2264
|
-
*/
|
|
2265
|
-
export type RouteTruckType = (typeof RouteTruckType)[keyof typeof RouteTruckType];
|
|
2266
1852
|
/**
|
|
2267
1853
|
* <p>Travel mode options when the provided travel mode is "Truck"</p>
|
|
2268
1854
|
* @public
|
|
@@ -2390,18 +1976,6 @@ export interface RouteTravelModeOptions {
|
|
|
2390
1976
|
*/
|
|
2391
1977
|
Truck?: RouteTruckOptions | undefined;
|
|
2392
1978
|
}
|
|
2393
|
-
/**
|
|
2394
|
-
* @public
|
|
2395
|
-
* @enum
|
|
2396
|
-
*/
|
|
2397
|
-
export declare const RouteTravelStepType: {
|
|
2398
|
-
readonly DEFAULT: "Default";
|
|
2399
|
-
readonly TURN_BY_TURN: "TurnByTurn";
|
|
2400
|
-
};
|
|
2401
|
-
/**
|
|
2402
|
-
* @public
|
|
2403
|
-
*/
|
|
2404
|
-
export type RouteTravelStepType = (typeof RouteTravelStepType)[keyof typeof RouteTravelStepType];
|
|
2405
1979
|
/**
|
|
2406
1980
|
* <p>Waypoint between the Origin and Destination.</p>
|
|
2407
1981
|
* @public
|
|
@@ -2578,31 +2152,6 @@ export interface CalculateRoutesRequest {
|
|
|
2578
2152
|
*/
|
|
2579
2153
|
Waypoints?: RouteWaypoint[] | undefined;
|
|
2580
2154
|
}
|
|
2581
|
-
/**
|
|
2582
|
-
* @public
|
|
2583
|
-
* @enum
|
|
2584
|
-
*/
|
|
2585
|
-
export declare const RouteResponseNoticeCode: {
|
|
2586
|
-
readonly MAIN_LANGUAGE_NOT_FOUND: "MainLanguageNotFound";
|
|
2587
|
-
readonly OTHER: "Other";
|
|
2588
|
-
readonly TRAVEL_TIME_EXCEEDS_DRIVER_WORK_HOURS: "TravelTimeExceedsDriverWorkHours";
|
|
2589
|
-
};
|
|
2590
|
-
/**
|
|
2591
|
-
* @public
|
|
2592
|
-
*/
|
|
2593
|
-
export type RouteResponseNoticeCode = (typeof RouteResponseNoticeCode)[keyof typeof RouteResponseNoticeCode];
|
|
2594
|
-
/**
|
|
2595
|
-
* @public
|
|
2596
|
-
* @enum
|
|
2597
|
-
*/
|
|
2598
|
-
export declare const RouteNoticeImpact: {
|
|
2599
|
-
readonly HIGH: "High";
|
|
2600
|
-
readonly LOW: "Low";
|
|
2601
|
-
};
|
|
2602
|
-
/**
|
|
2603
|
-
* @public
|
|
2604
|
-
*/
|
|
2605
|
-
export type RouteNoticeImpact = (typeof RouteNoticeImpact)[keyof typeof RouteNoticeImpact];
|
|
2606
2155
|
/**
|
|
2607
2156
|
* <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
|
|
2608
2157
|
* @public
|
|
@@ -2619,17 +2168,6 @@ export interface RouteResponseNotice {
|
|
|
2619
2168
|
*/
|
|
2620
2169
|
Impact?: RouteNoticeImpact | undefined;
|
|
2621
2170
|
}
|
|
2622
|
-
/**
|
|
2623
|
-
* @public
|
|
2624
|
-
* @enum
|
|
2625
|
-
*/
|
|
2626
|
-
export declare const RouteFerryAfterTravelStepType: {
|
|
2627
|
-
readonly DEBOARD: "Deboard";
|
|
2628
|
-
};
|
|
2629
|
-
/**
|
|
2630
|
-
* @public
|
|
2631
|
-
*/
|
|
2632
|
-
export type RouteFerryAfterTravelStepType = (typeof RouteFerryAfterTravelStepType)[keyof typeof RouteFerryAfterTravelStepType];
|
|
2633
2171
|
/**
|
|
2634
2172
|
* <p>Steps of a leg that must be performed after the travel portion of the leg.</p>
|
|
2635
2173
|
* @public
|
|
@@ -2693,17 +2231,6 @@ export interface RouteFerryArrival {
|
|
|
2693
2231
|
*/
|
|
2694
2232
|
Time?: string | undefined;
|
|
2695
2233
|
}
|
|
2696
|
-
/**
|
|
2697
|
-
* @public
|
|
2698
|
-
* @enum
|
|
2699
|
-
*/
|
|
2700
|
-
export declare const RouteFerryBeforeTravelStepType: {
|
|
2701
|
-
readonly BOARD: "Board";
|
|
2702
|
-
};
|
|
2703
|
-
/**
|
|
2704
|
-
* @public
|
|
2705
|
-
*/
|
|
2706
|
-
export type RouteFerryBeforeTravelStepType = (typeof RouteFerryBeforeTravelStepType)[keyof typeof RouteFerryBeforeTravelStepType];
|
|
2707
2234
|
/**
|
|
2708
2235
|
* <p>Steps of a leg that must be performed before the travel portion of the leg.</p>
|
|
2709
2236
|
* @public
|
|
@@ -2741,23 +2268,6 @@ export interface RouteFerryDeparture {
|
|
|
2741
2268
|
*/
|
|
2742
2269
|
Time?: string | undefined;
|
|
2743
2270
|
}
|
|
2744
|
-
/**
|
|
2745
|
-
* @public
|
|
2746
|
-
* @enum
|
|
2747
|
-
*/
|
|
2748
|
-
export declare const RouteFerryNoticeCode: {
|
|
2749
|
-
readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
|
|
2750
|
-
readonly NO_SCHEDULE: "NoSchedule";
|
|
2751
|
-
readonly OTHER: "Other";
|
|
2752
|
-
readonly POTENTIAL_VIOLATED_VEHICLE_RESTRICTION_USAGE: "PotentialViolatedVehicleRestrictionUsage";
|
|
2753
|
-
readonly SEASONAL_CLOSURE: "SeasonalClosure";
|
|
2754
|
-
readonly VIOLATED_AVOID_FERRY: "ViolatedAvoidFerry";
|
|
2755
|
-
readonly VIOLATED_AVOID_RAIL_FERRY: "ViolatedAvoidRailFerry";
|
|
2756
|
-
};
|
|
2757
|
-
/**
|
|
2758
|
-
* @public
|
|
2759
|
-
*/
|
|
2760
|
-
export type RouteFerryNoticeCode = (typeof RouteFerryNoticeCode)[keyof typeof RouteFerryNoticeCode];
|
|
2761
2271
|
/**
|
|
2762
2272
|
* <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
|
|
2763
2273
|
* @public
|
|
@@ -2906,19 +2416,6 @@ export interface RouteFerrySummary {
|
|
|
2906
2416
|
*/
|
|
2907
2417
|
TravelOnly?: RouteFerryTravelOnlySummary | undefined;
|
|
2908
2418
|
}
|
|
2909
|
-
/**
|
|
2910
|
-
* @public
|
|
2911
|
-
* @enum
|
|
2912
|
-
*/
|
|
2913
|
-
export declare const RouteFerryTravelStepType: {
|
|
2914
|
-
readonly ARRIVE: "Arrive";
|
|
2915
|
-
readonly CONTINUE: "Continue";
|
|
2916
|
-
readonly DEPART: "Depart";
|
|
2917
|
-
};
|
|
2918
|
-
/**
|
|
2919
|
-
* @public
|
|
2920
|
-
*/
|
|
2921
|
-
export type RouteFerryTravelStepType = (typeof RouteFerryTravelStepType)[keyof typeof RouteFerryTravelStepType];
|
|
2922
2419
|
/**
|
|
2923
2420
|
* <p>Steps of a leg that must be performed during the travel portion of the leg.</p>
|
|
2924
2421
|
* @public
|
|
@@ -3022,18 +2519,6 @@ export interface RouteLegGeometry {
|
|
|
3022
2519
|
*/
|
|
3023
2520
|
Polyline?: string | undefined;
|
|
3024
2521
|
}
|
|
3025
|
-
/**
|
|
3026
|
-
* @public
|
|
3027
|
-
* @enum
|
|
3028
|
-
*/
|
|
3029
|
-
export declare const RouteSideOfStreet: {
|
|
3030
|
-
readonly LEFT: "Left";
|
|
3031
|
-
readonly RIGHT: "Right";
|
|
3032
|
-
};
|
|
3033
|
-
/**
|
|
3034
|
-
* @public
|
|
3035
|
-
*/
|
|
3036
|
-
export type RouteSideOfStreet = (typeof RouteSideOfStreet)[keyof typeof RouteSideOfStreet];
|
|
3037
2522
|
/**
|
|
3038
2523
|
* <p>Place details corresponding to the arrival or departure.</p>
|
|
3039
2524
|
* @public
|
|
@@ -3097,21 +2582,6 @@ export interface RoutePedestrianDeparture {
|
|
|
3097
2582
|
*/
|
|
3098
2583
|
Time?: string | undefined;
|
|
3099
2584
|
}
|
|
3100
|
-
/**
|
|
3101
|
-
* @public
|
|
3102
|
-
* @enum
|
|
3103
|
-
*/
|
|
3104
|
-
export declare const RoutePedestrianNoticeCode: {
|
|
3105
|
-
readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
|
|
3106
|
-
readonly OTHER: "Other";
|
|
3107
|
-
readonly VIOLATED_AVOID_DIRT_ROAD: "ViolatedAvoidDirtRoad";
|
|
3108
|
-
readonly VIOLATED_AVOID_TUNNEL: "ViolatedAvoidTunnel";
|
|
3109
|
-
readonly VIOLATED_PEDESTRIAN_OPTION: "ViolatedPedestrianOption";
|
|
3110
|
-
};
|
|
3111
|
-
/**
|
|
3112
|
-
* @public
|
|
3113
|
-
*/
|
|
3114
|
-
export type RoutePedestrianNoticeCode = (typeof RoutePedestrianNoticeCode)[keyof typeof RoutePedestrianNoticeCode];
|
|
3115
2585
|
/**
|
|
3116
2586
|
* <p>Notices are additional information returned that indicate issues that occurred during route calculation.</p>
|
|
3117
2587
|
* @public
|
|
@@ -3149,58 +2619,6 @@ export interface RouteSpanDynamicSpeedDetails {
|
|
|
3149
2619
|
*/
|
|
3150
2620
|
TypicalSpeed?: number | undefined;
|
|
3151
2621
|
}
|
|
3152
|
-
/**
|
|
3153
|
-
* @public
|
|
3154
|
-
* @enum
|
|
3155
|
-
*/
|
|
3156
|
-
export declare const RouteSpanPedestrianAccessAttribute: {
|
|
3157
|
-
readonly ALLOWED: "Allowed";
|
|
3158
|
-
readonly INDOORS: "Indoors";
|
|
3159
|
-
readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
|
|
3160
|
-
readonly PARK: "Park";
|
|
3161
|
-
readonly STAIRS: "Stairs";
|
|
3162
|
-
readonly TOLL_ROAD: "TollRoad";
|
|
3163
|
-
};
|
|
3164
|
-
/**
|
|
3165
|
-
* @public
|
|
3166
|
-
*/
|
|
3167
|
-
export type RouteSpanPedestrianAccessAttribute = (typeof RouteSpanPedestrianAccessAttribute)[keyof typeof RouteSpanPedestrianAccessAttribute];
|
|
3168
|
-
/**
|
|
3169
|
-
* @public
|
|
3170
|
-
* @enum
|
|
3171
|
-
*/
|
|
3172
|
-
export declare const RouteSpanRoadAttribute: {
|
|
3173
|
-
readonly BRIDGE: "Bridge";
|
|
3174
|
-
readonly BUILT_UP_AREA: "BuiltUpArea";
|
|
3175
|
-
readonly CONTROLLED_ACCESS_HIGHWAY: "ControlledAccessHighway";
|
|
3176
|
-
readonly DIRT_ROAD: "DirtRoad";
|
|
3177
|
-
readonly DIVIDED_ROAD: "DividedRoad";
|
|
3178
|
-
readonly MOTORWAY: "Motorway";
|
|
3179
|
-
readonly PRIVATE_ROAD: "PrivateRoad";
|
|
3180
|
-
readonly RAMP: "Ramp";
|
|
3181
|
-
readonly RIGHT_HAND_TRAFFIC: "RightHandTraffic";
|
|
3182
|
-
readonly ROUNDABOUT: "Roundabout";
|
|
3183
|
-
readonly TUNNEL: "Tunnel";
|
|
3184
|
-
readonly UNDER_CONSTRUCTION: "UnderConstruction";
|
|
3185
|
-
};
|
|
3186
|
-
/**
|
|
3187
|
-
* @public
|
|
3188
|
-
*/
|
|
3189
|
-
export type RouteSpanRoadAttribute = (typeof RouteSpanRoadAttribute)[keyof typeof RouteSpanRoadAttribute];
|
|
3190
|
-
/**
|
|
3191
|
-
* @public
|
|
3192
|
-
* @enum
|
|
3193
|
-
*/
|
|
3194
|
-
export declare const RouteDirection: {
|
|
3195
|
-
readonly EAST: "East";
|
|
3196
|
-
readonly NORTH: "North";
|
|
3197
|
-
readonly SOUTH: "South";
|
|
3198
|
-
readonly WEST: "West";
|
|
3199
|
-
};
|
|
3200
|
-
/**
|
|
3201
|
-
* @public
|
|
3202
|
-
*/
|
|
3203
|
-
export type RouteDirection = (typeof RouteDirection)[keyof typeof RouteDirection];
|
|
3204
2622
|
/**
|
|
3205
2623
|
* <p>The route number.</p>
|
|
3206
2624
|
* @public
|
|
@@ -3373,19 +2791,6 @@ export interface RouteContinueStepDetails {
|
|
|
3373
2791
|
*/
|
|
3374
2792
|
Intersection: LocalizedString[] | undefined;
|
|
3375
2793
|
}
|
|
3376
|
-
/**
|
|
3377
|
-
* @public
|
|
3378
|
-
* @enum
|
|
3379
|
-
*/
|
|
3380
|
-
export declare const RouteRoadType: {
|
|
3381
|
-
readonly HIGHWAY: "Highway";
|
|
3382
|
-
readonly RURAL: "Rural";
|
|
3383
|
-
readonly URBAN: "Urban";
|
|
3384
|
-
};
|
|
3385
|
-
/**
|
|
3386
|
-
* @public
|
|
3387
|
-
*/
|
|
3388
|
-
export type RouteRoadType = (typeof RouteRoadType)[keyof typeof RouteRoadType];
|
|
3389
2794
|
/**
|
|
3390
2795
|
* <p>The road on the route.</p>
|
|
3391
2796
|
* @public
|
|
@@ -3412,32 +2817,6 @@ export interface RouteRoad {
|
|
|
3412
2817
|
*/
|
|
3413
2818
|
Type?: RouteRoadType | undefined;
|
|
3414
2819
|
}
|
|
3415
|
-
/**
|
|
3416
|
-
* @public
|
|
3417
|
-
* @enum
|
|
3418
|
-
*/
|
|
3419
|
-
export declare const RouteSteeringDirection: {
|
|
3420
|
-
readonly LEFT: "Left";
|
|
3421
|
-
readonly RIGHT: "Right";
|
|
3422
|
-
readonly STRAIGHT: "Straight";
|
|
3423
|
-
};
|
|
3424
|
-
/**
|
|
3425
|
-
* @public
|
|
3426
|
-
*/
|
|
3427
|
-
export type RouteSteeringDirection = (typeof RouteSteeringDirection)[keyof typeof RouteSteeringDirection];
|
|
3428
|
-
/**
|
|
3429
|
-
* @public
|
|
3430
|
-
* @enum
|
|
3431
|
-
*/
|
|
3432
|
-
export declare const RouteTurnIntensity: {
|
|
3433
|
-
readonly SHARP: "Sharp";
|
|
3434
|
-
readonly SLIGHT: "Slight";
|
|
3435
|
-
readonly TYPICAL: "Typical";
|
|
3436
|
-
};
|
|
3437
|
-
/**
|
|
3438
|
-
* @public
|
|
3439
|
-
*/
|
|
3440
|
-
export type RouteTurnIntensity = (typeof RouteTurnIntensity)[keyof typeof RouteTurnIntensity];
|
|
3441
2820
|
/**
|
|
3442
2821
|
* <p>Details that are specific to a Keep step.</p>
|
|
3443
2822
|
* @public
|
|
@@ -3595,27 +2974,6 @@ export interface RouteTurnStepDetails {
|
|
|
3595
2974
|
*/
|
|
3596
2975
|
TurnIntensity?: RouteTurnIntensity | undefined;
|
|
3597
2976
|
}
|
|
3598
|
-
/**
|
|
3599
|
-
* @public
|
|
3600
|
-
* @enum
|
|
3601
|
-
*/
|
|
3602
|
-
export declare const RoutePedestrianTravelStepType: {
|
|
3603
|
-
readonly ARRIVE: "Arrive";
|
|
3604
|
-
readonly CONTINUE: "Continue";
|
|
3605
|
-
readonly DEPART: "Depart";
|
|
3606
|
-
readonly EXIT: "Exit";
|
|
3607
|
-
readonly KEEP: "Keep";
|
|
3608
|
-
readonly RAMP: "Ramp";
|
|
3609
|
-
readonly ROUNDABOUT_ENTER: "RoundaboutEnter";
|
|
3610
|
-
readonly ROUNDABOUT_EXIT: "RoundaboutExit";
|
|
3611
|
-
readonly ROUNDABOUT_PASS: "RoundaboutPass";
|
|
3612
|
-
readonly TURN: "Turn";
|
|
3613
|
-
readonly U_TURN: "UTurn";
|
|
3614
|
-
};
|
|
3615
|
-
/**
|
|
3616
|
-
* @public
|
|
3617
|
-
*/
|
|
3618
|
-
export type RoutePedestrianTravelStepType = (typeof RoutePedestrianTravelStepType)[keyof typeof RoutePedestrianTravelStepType];
|
|
3619
2977
|
/**
|
|
3620
2978
|
* <p>Steps of a leg that must be performed during the travel portion of the leg.</p>
|
|
3621
2979
|
* @public
|
|
@@ -3738,35 +3096,6 @@ export interface RoutePedestrianLegDetails {
|
|
|
3738
3096
|
*/
|
|
3739
3097
|
TravelSteps: RoutePedestrianTravelStep[] | undefined;
|
|
3740
3098
|
}
|
|
3741
|
-
/**
|
|
3742
|
-
* @public
|
|
3743
|
-
* @enum
|
|
3744
|
-
*/
|
|
3745
|
-
export declare const RouteLegTravelMode: {
|
|
3746
|
-
readonly CAR: "Car";
|
|
3747
|
-
readonly CAR_SHUTTLE_TRAIN: "CarShuttleTrain";
|
|
3748
|
-
readonly FERRY: "Ferry";
|
|
3749
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
3750
|
-
readonly SCOOTER: "Scooter";
|
|
3751
|
-
readonly TRUCK: "Truck";
|
|
3752
|
-
};
|
|
3753
|
-
/**
|
|
3754
|
-
* @public
|
|
3755
|
-
*/
|
|
3756
|
-
export type RouteLegTravelMode = (typeof RouteLegTravelMode)[keyof typeof RouteLegTravelMode];
|
|
3757
|
-
/**
|
|
3758
|
-
* @public
|
|
3759
|
-
* @enum
|
|
3760
|
-
*/
|
|
3761
|
-
export declare const RouteLegType: {
|
|
3762
|
-
readonly FERRY: "Ferry";
|
|
3763
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
3764
|
-
readonly VEHICLE: "Vehicle";
|
|
3765
|
-
};
|
|
3766
|
-
/**
|
|
3767
|
-
* @public
|
|
3768
|
-
*/
|
|
3769
|
-
export type RouteLegType = (typeof RouteLegType)[keyof typeof RouteLegType];
|
|
3770
3099
|
/**
|
|
3771
3100
|
* <p>Place details corresponding to the arrival or departure.</p>
|
|
3772
3101
|
* @public
|
|
@@ -3830,41 +3159,6 @@ export interface RouteVehicleDeparture {
|
|
|
3830
3159
|
*/
|
|
3831
3160
|
Time?: string | undefined;
|
|
3832
3161
|
}
|
|
3833
|
-
/**
|
|
3834
|
-
* @public
|
|
3835
|
-
* @enum
|
|
3836
|
-
*/
|
|
3837
|
-
export declare const RouteVehicleIncidentSeverity: {
|
|
3838
|
-
readonly CRITICAL: "Critical";
|
|
3839
|
-
readonly HIGH: "High";
|
|
3840
|
-
readonly LOW: "Low";
|
|
3841
|
-
readonly MEDIUM: "Medium";
|
|
3842
|
-
};
|
|
3843
|
-
/**
|
|
3844
|
-
* @public
|
|
3845
|
-
*/
|
|
3846
|
-
export type RouteVehicleIncidentSeverity = (typeof RouteVehicleIncidentSeverity)[keyof typeof RouteVehicleIncidentSeverity];
|
|
3847
|
-
/**
|
|
3848
|
-
* @public
|
|
3849
|
-
* @enum
|
|
3850
|
-
*/
|
|
3851
|
-
export declare const RouteVehicleIncidentType: {
|
|
3852
|
-
readonly ACCIDENT: "Accident";
|
|
3853
|
-
readonly CONGESTION: "Congestion";
|
|
3854
|
-
readonly CONSTRUCTION: "Construction";
|
|
3855
|
-
readonly DISABLED_VEHICLE: "DisabledVehicle";
|
|
3856
|
-
readonly LANE_RESTRICTION: "LaneRestriction";
|
|
3857
|
-
readonly MASS_TRANSIT: "MassTransit";
|
|
3858
|
-
readonly OTHER: "Other";
|
|
3859
|
-
readonly PLANNED_EVENT: "PlannedEvent";
|
|
3860
|
-
readonly ROAD_CLOSURE: "RoadClosure";
|
|
3861
|
-
readonly ROAD_HAZARD: "RoadHazard";
|
|
3862
|
-
readonly WEATHER: "Weather";
|
|
3863
|
-
};
|
|
3864
|
-
/**
|
|
3865
|
-
* @public
|
|
3866
|
-
*/
|
|
3867
|
-
export type RouteVehicleIncidentType = (typeof RouteVehicleIncidentType)[keyof typeof RouteVehicleIncidentType];
|
|
3868
3162
|
/**
|
|
3869
3163
|
* <p>Incidents corresponding to this leg of the route.</p>
|
|
3870
3164
|
* @public
|
|
@@ -3896,43 +3190,6 @@ export interface RouteVehicleIncident {
|
|
|
3896
3190
|
*/
|
|
3897
3191
|
Type?: RouteVehicleIncidentType | undefined;
|
|
3898
3192
|
}
|
|
3899
|
-
/**
|
|
3900
|
-
* @public
|
|
3901
|
-
* @enum
|
|
3902
|
-
*/
|
|
3903
|
-
export declare const RouteVehicleNoticeCode: {
|
|
3904
|
-
readonly ACCURATE_POLYLINE_UNAVAILABLE: "AccuratePolylineUnavailable";
|
|
3905
|
-
readonly OTHER: "Other";
|
|
3906
|
-
readonly POTENTIAL_VIOLATED_AVOID_TOLL_ROAD_USAGE: "PotentialViolatedAvoidTollRoadUsage";
|
|
3907
|
-
readonly POTENTIAL_VIOLATED_CARPOOL_USAGE: "PotentialViolatedCarpoolUsage";
|
|
3908
|
-
readonly POTENTIAL_VIOLATED_TURN_RESTRICTION_USAGE: "PotentialViolatedTurnRestrictionUsage";
|
|
3909
|
-
readonly POTENTIAL_VIOLATED_VEHICLE_RESTRICTION_USAGE: "PotentialViolatedVehicleRestrictionUsage";
|
|
3910
|
-
readonly POTENTIAL_VIOLATED_ZONE_RESTRICTION_USAGE: "PotentialViolatedZoneRestrictionUsage";
|
|
3911
|
-
readonly SEASONAL_CLOSURE: "SeasonalClosure";
|
|
3912
|
-
readonly TOLLS_DATA_TEMPORARILY_UNAVAILABLE: "TollsDataTemporarilyUnavailable";
|
|
3913
|
-
readonly TOLLS_DATA_UNAVAILABLE: "TollsDataUnavailable";
|
|
3914
|
-
readonly TOLL_TRANSPONDER: "TollTransponder";
|
|
3915
|
-
readonly VIOLATED_AVOID_CONTROLLED_ACCESS_HIGHWAY: "ViolatedAvoidControlledAccessHighway";
|
|
3916
|
-
readonly VIOLATED_AVOID_DIFFICULT_TURNS: "ViolatedAvoidDifficultTurns";
|
|
3917
|
-
readonly VIOLATED_AVOID_DIRT_ROAD: "ViolatedAvoidDirtRoad";
|
|
3918
|
-
readonly VIOLATED_AVOID_SEASONAL_CLOSURE: "ViolatedAvoidSeasonalClosure";
|
|
3919
|
-
readonly VIOLATED_AVOID_TOLL_ROAD: "ViolatedAvoidTollRoad";
|
|
3920
|
-
readonly VIOLATED_AVOID_TOLL_TRANSPONDER: "ViolatedAvoidTollTransponder";
|
|
3921
|
-
readonly VIOLATED_AVOID_TRUCK_ROAD_TYPE: "ViolatedAvoidTruckRoadType";
|
|
3922
|
-
readonly VIOLATED_AVOID_TUNNEL: "ViolatedAvoidTunnel";
|
|
3923
|
-
readonly VIOLATED_AVOID_U_TURNS: "ViolatedAvoidUTurns";
|
|
3924
|
-
readonly VIOLATED_BLOCKED_ROAD: "ViolatedBlockedRoad";
|
|
3925
|
-
readonly VIOLATED_CARPOOL: "ViolatedCarpool";
|
|
3926
|
-
readonly VIOLATED_EMERGENCY_GATE: "ViolatedEmergencyGate";
|
|
3927
|
-
readonly VIOLATED_START_DIRECTION: "ViolatedStartDirection";
|
|
3928
|
-
readonly VIOLATED_TURN_RESTRICTION: "ViolatedTurnRestriction";
|
|
3929
|
-
readonly VIOLATED_VEHICLE_RESTRICTION: "ViolatedVehicleRestriction";
|
|
3930
|
-
readonly VIOLATED_ZONE_RESTRICTION: "ViolatedZoneRestriction";
|
|
3931
|
-
};
|
|
3932
|
-
/**
|
|
3933
|
-
* @public
|
|
3934
|
-
*/
|
|
3935
|
-
export type RouteVehicleNoticeCode = (typeof RouteVehicleNoticeCode)[keyof typeof RouteVehicleNoticeCode];
|
|
3936
3193
|
/**
|
|
3937
3194
|
* <p>Notice Detail that is a range.</p>
|
|
3938
3195
|
* @public
|
|
@@ -3949,19 +3206,6 @@ export interface RouteNoticeDetailRange {
|
|
|
3949
3206
|
*/
|
|
3950
3207
|
Max?: number | undefined;
|
|
3951
3208
|
}
|
|
3952
|
-
/**
|
|
3953
|
-
* @public
|
|
3954
|
-
* @enum
|
|
3955
|
-
*/
|
|
3956
|
-
export declare const RouteWeightConstraintType: {
|
|
3957
|
-
readonly CURRENT: "Current";
|
|
3958
|
-
readonly GROSS: "Gross";
|
|
3959
|
-
readonly UNKNOWN: "Unknown";
|
|
3960
|
-
};
|
|
3961
|
-
/**
|
|
3962
|
-
* @public
|
|
3963
|
-
*/
|
|
3964
|
-
export type RouteWeightConstraintType = (typeof RouteWeightConstraintType)[keyof typeof RouteWeightConstraintType];
|
|
3965
3209
|
/**
|
|
3966
3210
|
* <p>The weight constraint for the route.</p> <p> <b>Unit</b>: <code>Kilograms</code> </p>
|
|
3967
3211
|
* @public
|
|
@@ -4116,70 +3360,6 @@ export interface RouteVehicleNotice {
|
|
|
4116
3360
|
*/
|
|
4117
3361
|
Impact?: RouteNoticeImpact | undefined;
|
|
4118
3362
|
}
|
|
4119
|
-
/**
|
|
4120
|
-
* @public
|
|
4121
|
-
* @enum
|
|
4122
|
-
*/
|
|
4123
|
-
export declare const RouteSpanCarAccessAttribute: {
|
|
4124
|
-
readonly ALLOWED: "Allowed";
|
|
4125
|
-
readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
|
|
4126
|
-
readonly TOLL_ROAD: "TollRoad";
|
|
4127
|
-
};
|
|
4128
|
-
/**
|
|
4129
|
-
* @public
|
|
4130
|
-
*/
|
|
4131
|
-
export type RouteSpanCarAccessAttribute = (typeof RouteSpanCarAccessAttribute)[keyof typeof RouteSpanCarAccessAttribute];
|
|
4132
|
-
/**
|
|
4133
|
-
* @public
|
|
4134
|
-
* @enum
|
|
4135
|
-
*/
|
|
4136
|
-
export declare const RouteSpanGateAttribute: {
|
|
4137
|
-
readonly EMERGENCY: "Emergency";
|
|
4138
|
-
readonly KEY_ACCESS: "KeyAccess";
|
|
4139
|
-
readonly PERMISSION_REQUIRED: "PermissionRequired";
|
|
4140
|
-
};
|
|
4141
|
-
/**
|
|
4142
|
-
* @public
|
|
4143
|
-
*/
|
|
4144
|
-
export type RouteSpanGateAttribute = (typeof RouteSpanGateAttribute)[keyof typeof RouteSpanGateAttribute];
|
|
4145
|
-
/**
|
|
4146
|
-
* @public
|
|
4147
|
-
* @enum
|
|
4148
|
-
*/
|
|
4149
|
-
export declare const RouteSpanRailwayCrossingAttribute: {
|
|
4150
|
-
readonly PROTECTED: "Protected";
|
|
4151
|
-
readonly UNPROTECTED: "Unprotected";
|
|
4152
|
-
};
|
|
4153
|
-
/**
|
|
4154
|
-
* @public
|
|
4155
|
-
*/
|
|
4156
|
-
export type RouteSpanRailwayCrossingAttribute = (typeof RouteSpanRailwayCrossingAttribute)[keyof typeof RouteSpanRailwayCrossingAttribute];
|
|
4157
|
-
/**
|
|
4158
|
-
* @public
|
|
4159
|
-
* @enum
|
|
4160
|
-
*/
|
|
4161
|
-
export declare const RouteSpanScooterAccessAttribute: {
|
|
4162
|
-
readonly ALLOWED: "Allowed";
|
|
4163
|
-
readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
|
|
4164
|
-
readonly TOLL_ROAD: "TollRoad";
|
|
4165
|
-
};
|
|
4166
|
-
/**
|
|
4167
|
-
* @public
|
|
4168
|
-
*/
|
|
4169
|
-
export type RouteSpanScooterAccessAttribute = (typeof RouteSpanScooterAccessAttribute)[keyof typeof RouteSpanScooterAccessAttribute];
|
|
4170
|
-
/**
|
|
4171
|
-
* @public
|
|
4172
|
-
* @enum
|
|
4173
|
-
*/
|
|
4174
|
-
export declare const RouteSpanTruckAccessAttribute: {
|
|
4175
|
-
readonly ALLOWED: "Allowed";
|
|
4176
|
-
readonly NO_THROUGH_TRAFFIC: "NoThroughTraffic";
|
|
4177
|
-
readonly TOLL_ROAD: "TollRoad";
|
|
4178
|
-
};
|
|
4179
|
-
/**
|
|
4180
|
-
* @public
|
|
4181
|
-
*/
|
|
4182
|
-
export type RouteSpanTruckAccessAttribute = (typeof RouteSpanTruckAccessAttribute)[keyof typeof RouteSpanTruckAccessAttribute];
|
|
4183
3363
|
/**
|
|
4184
3364
|
* <p>Span computed for the requested SpanAdditionalFeatures.</p>
|
|
4185
3365
|
* @public
|
|
@@ -4432,21 +3612,6 @@ export interface RouteTollPrice {
|
|
|
4432
3612
|
*/
|
|
4433
3613
|
Value: number | undefined;
|
|
4434
3614
|
}
|
|
4435
|
-
/**
|
|
4436
|
-
* @public
|
|
4437
|
-
* @enum
|
|
4438
|
-
*/
|
|
4439
|
-
export declare const RouteTollPassValidityPeriodType: {
|
|
4440
|
-
readonly ANNUAL: "Annual";
|
|
4441
|
-
readonly DAYS: "Days";
|
|
4442
|
-
readonly EXTENDED_ANNUAL: "ExtendedAnnual";
|
|
4443
|
-
readonly MINUTES: "Minutes";
|
|
4444
|
-
readonly MONTHS: "Months";
|
|
4445
|
-
};
|
|
4446
|
-
/**
|
|
4447
|
-
* @public
|
|
4448
|
-
*/
|
|
4449
|
-
export type RouteTollPassValidityPeriodType = (typeof RouteTollPassValidityPeriodType)[keyof typeof RouteTollPassValidityPeriodType];
|
|
4450
3615
|
/**
|
|
4451
3616
|
* <p>Period for which the pass is valid.</p>
|
|
4452
3617
|
* @public
|
|
@@ -4494,24 +3659,6 @@ export interface RouteTollPass {
|
|
|
4494
3659
|
*/
|
|
4495
3660
|
ValidityPeriod?: RouteTollPassValidityPeriod | undefined;
|
|
4496
3661
|
}
|
|
4497
|
-
/**
|
|
4498
|
-
* @public
|
|
4499
|
-
* @enum
|
|
4500
|
-
*/
|
|
4501
|
-
export declare const RouteTollPaymentMethod: {
|
|
4502
|
-
readonly BANK_CARD: "BankCard";
|
|
4503
|
-
readonly CASH: "Cash";
|
|
4504
|
-
readonly CASH_EXACT: "CashExact";
|
|
4505
|
-
readonly CREDIT_CARD: "CreditCard";
|
|
4506
|
-
readonly PASS_SUBSCRIPTION: "PassSubscription";
|
|
4507
|
-
readonly TRANSPONDER: "Transponder";
|
|
4508
|
-
readonly TRAVEL_CARD: "TravelCard";
|
|
4509
|
-
readonly VIDEO_TOLL: "VideoToll";
|
|
4510
|
-
};
|
|
4511
|
-
/**
|
|
4512
|
-
* @public
|
|
4513
|
-
*/
|
|
4514
|
-
export type RouteTollPaymentMethod = (typeof RouteTollPaymentMethod)[keyof typeof RouteTollPaymentMethod];
|
|
4515
3662
|
/**
|
|
4516
3663
|
* <p>Transponders for which this toll can be applied.</p>
|
|
4517
3664
|
* @public
|
|
@@ -4715,29 +3862,6 @@ export interface RouteRampStepDetails {
|
|
|
4715
3862
|
*/
|
|
4716
3863
|
TurnIntensity?: RouteTurnIntensity | undefined;
|
|
4717
3864
|
}
|
|
4718
|
-
/**
|
|
4719
|
-
* @public
|
|
4720
|
-
* @enum
|
|
4721
|
-
*/
|
|
4722
|
-
export declare const RouteVehicleTravelStepType: {
|
|
4723
|
-
readonly ARRIVE: "Arrive";
|
|
4724
|
-
readonly CONTINUE: "Continue";
|
|
4725
|
-
readonly CONTINUE_HIGHWAY: "ContinueHighway";
|
|
4726
|
-
readonly DEPART: "Depart";
|
|
4727
|
-
readonly ENTER_HIGHWAY: "EnterHighway";
|
|
4728
|
-
readonly EXIT: "Exit";
|
|
4729
|
-
readonly KEEP: "Keep";
|
|
4730
|
-
readonly RAMP: "Ramp";
|
|
4731
|
-
readonly ROUNDABOUT_ENTER: "RoundaboutEnter";
|
|
4732
|
-
readonly ROUNDABOUT_EXIT: "RoundaboutExit";
|
|
4733
|
-
readonly ROUNDABOUT_PASS: "RoundaboutPass";
|
|
4734
|
-
readonly TURN: "Turn";
|
|
4735
|
-
readonly U_TURN: "UTurn";
|
|
4736
|
-
};
|
|
4737
|
-
/**
|
|
4738
|
-
* @public
|
|
4739
|
-
*/
|
|
4740
|
-
export type RouteVehicleTravelStepType = (typeof RouteVehicleTravelStepType)[keyof typeof RouteVehicleTravelStepType];
|
|
4741
3865
|
/**
|
|
4742
3866
|
* <p>Details related to the U-turn step.</p>
|
|
4743
3867
|
* @public
|
|
@@ -5118,23 +4242,6 @@ export interface CalculateRoutesResponse {
|
|
|
5118
4242
|
*/
|
|
5119
4243
|
Routes: Route[] | undefined;
|
|
5120
4244
|
}
|
|
5121
|
-
/**
|
|
5122
|
-
* @public
|
|
5123
|
-
* @enum
|
|
5124
|
-
*/
|
|
5125
|
-
export declare const DayOfWeek: {
|
|
5126
|
-
readonly FRIDAY: "Friday";
|
|
5127
|
-
readonly MONDAY: "Monday";
|
|
5128
|
-
readonly SATURDAY: "Saturday";
|
|
5129
|
-
readonly SUNDAY: "Sunday";
|
|
5130
|
-
readonly THURSDAY: "Thursday";
|
|
5131
|
-
readonly TUESDAY: "Tuesday";
|
|
5132
|
-
readonly WEDNESDAY: "Wednesday";
|
|
5133
|
-
};
|
|
5134
|
-
/**
|
|
5135
|
-
* @public
|
|
5136
|
-
*/
|
|
5137
|
-
export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek];
|
|
5138
4245
|
/**
|
|
5139
4246
|
* <p>Geometry of the area to be avoided.</p>
|
|
5140
4247
|
* @public
|
|
@@ -5203,18 +4310,6 @@ export interface WaypointOptimizationAvoidanceOptions {
|
|
|
5203
4310
|
*/
|
|
5204
4311
|
UTurns?: boolean | undefined;
|
|
5205
4312
|
}
|
|
5206
|
-
/**
|
|
5207
|
-
* @public
|
|
5208
|
-
* @enum
|
|
5209
|
-
*/
|
|
5210
|
-
export declare const WaypointOptimizationClusteringAlgorithm: {
|
|
5211
|
-
readonly DRIVING_DISTANCE: "DrivingDistance";
|
|
5212
|
-
readonly TOPOLOGY_SEGMENT: "TopologySegment";
|
|
5213
|
-
};
|
|
5214
|
-
/**
|
|
5215
|
-
* @public
|
|
5216
|
-
*/
|
|
5217
|
-
export type WaypointOptimizationClusteringAlgorithm = (typeof WaypointOptimizationClusteringAlgorithm)[keyof typeof WaypointOptimizationClusteringAlgorithm];
|
|
5218
4313
|
/**
|
|
5219
4314
|
* <p>Driving distance related options.</p>
|
|
5220
4315
|
* @public
|
|
@@ -5369,18 +4464,6 @@ export interface WaypointOptimizationRestProfile {
|
|
|
5369
4464
|
*/
|
|
5370
4465
|
Profile: string | undefined;
|
|
5371
4466
|
}
|
|
5372
|
-
/**
|
|
5373
|
-
* @public
|
|
5374
|
-
* @enum
|
|
5375
|
-
*/
|
|
5376
|
-
export declare const WaypointOptimizationServiceTimeTreatment: {
|
|
5377
|
-
readonly REST: "Rest";
|
|
5378
|
-
readonly WORK: "Work";
|
|
5379
|
-
};
|
|
5380
|
-
/**
|
|
5381
|
-
* @public
|
|
5382
|
-
*/
|
|
5383
|
-
export type WaypointOptimizationServiceTimeTreatment = (typeof WaypointOptimizationServiceTimeTreatment)[keyof typeof WaypointOptimizationServiceTimeTreatment];
|
|
5384
4467
|
/**
|
|
5385
4468
|
* <p>Driver related options.</p>
|
|
5386
4469
|
* @public
|
|
@@ -5413,18 +4496,6 @@ export interface WaypointOptimizationExclusionOptions {
|
|
|
5413
4496
|
*/
|
|
5414
4497
|
Countries: string[] | undefined;
|
|
5415
4498
|
}
|
|
5416
|
-
/**
|
|
5417
|
-
* @public
|
|
5418
|
-
* @enum
|
|
5419
|
-
*/
|
|
5420
|
-
export declare const WaypointOptimizationSequencingObjective: {
|
|
5421
|
-
readonly FASTEST_ROUTE: "FastestRoute";
|
|
5422
|
-
readonly SHORTEST_ROUTE: "ShortestRoute";
|
|
5423
|
-
};
|
|
5424
|
-
/**
|
|
5425
|
-
* @public
|
|
5426
|
-
*/
|
|
5427
|
-
export type WaypointOptimizationSequencingObjective = (typeof WaypointOptimizationSequencingObjective)[keyof typeof WaypointOptimizationSequencingObjective];
|
|
5428
4499
|
/**
|
|
5429
4500
|
* <p>Origin related options.</p>
|
|
5430
4501
|
* @public
|
|
@@ -5447,20 +4518,6 @@ export interface WaypointOptimizationTrafficOptions {
|
|
|
5447
4518
|
*/
|
|
5448
4519
|
Usage?: TrafficUsage | undefined;
|
|
5449
4520
|
}
|
|
5450
|
-
/**
|
|
5451
|
-
* @public
|
|
5452
|
-
* @enum
|
|
5453
|
-
*/
|
|
5454
|
-
export declare const WaypointOptimizationTravelMode: {
|
|
5455
|
-
readonly CAR: "Car";
|
|
5456
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
5457
|
-
readonly SCOOTER: "Scooter";
|
|
5458
|
-
readonly TRUCK: "Truck";
|
|
5459
|
-
};
|
|
5460
|
-
/**
|
|
5461
|
-
* @public
|
|
5462
|
-
*/
|
|
5463
|
-
export type WaypointOptimizationTravelMode = (typeof WaypointOptimizationTravelMode)[keyof typeof WaypointOptimizationTravelMode];
|
|
5464
4521
|
/**
|
|
5465
4522
|
* <p>Options related to a pedestrian.</p>
|
|
5466
4523
|
* @public
|
|
@@ -5472,27 +4529,6 @@ export interface WaypointOptimizationPedestrianOptions {
|
|
|
5472
4529
|
*/
|
|
5473
4530
|
Speed?: number | undefined;
|
|
5474
4531
|
}
|
|
5475
|
-
/**
|
|
5476
|
-
* @public
|
|
5477
|
-
* @enum
|
|
5478
|
-
*/
|
|
5479
|
-
export declare const WaypointOptimizationHazardousCargoType: {
|
|
5480
|
-
readonly COMBUSTIBLE: "Combustible";
|
|
5481
|
-
readonly CORROSIVE: "Corrosive";
|
|
5482
|
-
readonly EXPLOSIVE: "Explosive";
|
|
5483
|
-
readonly FLAMMABLE: "Flammable";
|
|
5484
|
-
readonly GAS: "Gas";
|
|
5485
|
-
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
5486
|
-
readonly ORGANIC: "Organic";
|
|
5487
|
-
readonly OTHER: "Other";
|
|
5488
|
-
readonly POISON: "Poison";
|
|
5489
|
-
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
5490
|
-
readonly RADIOACTIVE: "Radioactive";
|
|
5491
|
-
};
|
|
5492
|
-
/**
|
|
5493
|
-
* @public
|
|
5494
|
-
*/
|
|
5495
|
-
export type WaypointOptimizationHazardousCargoType = (typeof WaypointOptimizationHazardousCargoType)[keyof typeof WaypointOptimizationHazardousCargoType];
|
|
5496
4532
|
/**
|
|
5497
4533
|
* <p>Trailer options corresponding to the vehicle.</p>
|
|
5498
4534
|
* @public
|
|
@@ -5504,18 +4540,6 @@ export interface WaypointOptimizationTrailerOptions {
|
|
|
5504
4540
|
*/
|
|
5505
4541
|
TrailerCount?: number | undefined;
|
|
5506
4542
|
}
|
|
5507
|
-
/**
|
|
5508
|
-
* @public
|
|
5509
|
-
* @enum
|
|
5510
|
-
*/
|
|
5511
|
-
export declare const WaypointOptimizationTruckType: {
|
|
5512
|
-
readonly STRAIGHT_TRUCK: "StraightTruck";
|
|
5513
|
-
readonly TRACTOR: "Tractor";
|
|
5514
|
-
};
|
|
5515
|
-
/**
|
|
5516
|
-
* @public
|
|
5517
|
-
*/
|
|
5518
|
-
export type WaypointOptimizationTruckType = (typeof WaypointOptimizationTruckType)[keyof typeof WaypointOptimizationTruckType];
|
|
5519
4543
|
/**
|
|
5520
4544
|
* <p>Travel mode options when the provided travel mode is "Truck"</p>
|
|
5521
4545
|
* @public
|
|
@@ -5745,22 +4769,6 @@ export interface WaypointOptimizationConnection {
|
|
|
5745
4769
|
*/
|
|
5746
4770
|
WaitDuration: number | undefined;
|
|
5747
4771
|
}
|
|
5748
|
-
/**
|
|
5749
|
-
* @public
|
|
5750
|
-
* @enum
|
|
5751
|
-
*/
|
|
5752
|
-
export declare const WaypointOptimizationConstraint: {
|
|
5753
|
-
readonly ACCESS_HOURS: "AccessHours";
|
|
5754
|
-
readonly APPOINTMENT_TIME: "AppointmentTime";
|
|
5755
|
-
readonly BEFORE: "Before";
|
|
5756
|
-
readonly HEADING: "Heading";
|
|
5757
|
-
readonly SERVICE_DURATION: "ServiceDuration";
|
|
5758
|
-
readonly SIDE_OF_STREET: "SideOfStreet";
|
|
5759
|
-
};
|
|
5760
|
-
/**
|
|
5761
|
-
* @public
|
|
5762
|
-
*/
|
|
5763
|
-
export type WaypointOptimizationConstraint = (typeof WaypointOptimizationConstraint)[keyof typeof WaypointOptimizationConstraint];
|
|
5764
4772
|
/**
|
|
5765
4773
|
* <p>The failed constraint.</p>
|
|
5766
4774
|
* @public
|
|
@@ -5921,41 +4929,6 @@ export interface RoadSnapTracePoint {
|
|
|
5921
4929
|
*/
|
|
5922
4930
|
Timestamp?: string | undefined;
|
|
5923
4931
|
}
|
|
5924
|
-
/**
|
|
5925
|
-
* @public
|
|
5926
|
-
* @enum
|
|
5927
|
-
*/
|
|
5928
|
-
export declare const RoadSnapTravelMode: {
|
|
5929
|
-
readonly CAR: "Car";
|
|
5930
|
-
readonly PEDESTRIAN: "Pedestrian";
|
|
5931
|
-
readonly SCOOTER: "Scooter";
|
|
5932
|
-
readonly TRUCK: "Truck";
|
|
5933
|
-
};
|
|
5934
|
-
/**
|
|
5935
|
-
* @public
|
|
5936
|
-
*/
|
|
5937
|
-
export type RoadSnapTravelMode = (typeof RoadSnapTravelMode)[keyof typeof RoadSnapTravelMode];
|
|
5938
|
-
/**
|
|
5939
|
-
* @public
|
|
5940
|
-
* @enum
|
|
5941
|
-
*/
|
|
5942
|
-
export declare const RoadSnapHazardousCargoType: {
|
|
5943
|
-
readonly COMBUSTIBLE: "Combustible";
|
|
5944
|
-
readonly CORROSIVE: "Corrosive";
|
|
5945
|
-
readonly EXPLOSIVE: "Explosive";
|
|
5946
|
-
readonly FLAMMABLE: "Flammable";
|
|
5947
|
-
readonly GAS: "Gas";
|
|
5948
|
-
readonly HARMFUL_TO_WATER: "HarmfulToWater";
|
|
5949
|
-
readonly ORGANIC: "Organic";
|
|
5950
|
-
readonly OTHER: "Other";
|
|
5951
|
-
readonly POISON: "Poison";
|
|
5952
|
-
readonly POISONOUS_INHALATION: "PoisonousInhalation";
|
|
5953
|
-
readonly RADIOACTIVE: "Radioactive";
|
|
5954
|
-
};
|
|
5955
|
-
/**
|
|
5956
|
-
* @public
|
|
5957
|
-
*/
|
|
5958
|
-
export type RoadSnapHazardousCargoType = (typeof RoadSnapHazardousCargoType)[keyof typeof RoadSnapHazardousCargoType];
|
|
5959
4932
|
/**
|
|
5960
4933
|
* <p>Trailer options corresponding to the vehicle.</p>
|
|
5961
4934
|
* @public
|
|
@@ -6054,23 +5027,6 @@ export interface SnapToRoadsRequest {
|
|
|
6054
5027
|
*/
|
|
6055
5028
|
TravelModeOptions?: RoadSnapTravelModeOptions | undefined;
|
|
6056
5029
|
}
|
|
6057
|
-
/**
|
|
6058
|
-
* @public
|
|
6059
|
-
* @enum
|
|
6060
|
-
*/
|
|
6061
|
-
export declare const RoadSnapNoticeCode: {
|
|
6062
|
-
readonly TRACE_POINTS_HEADING_IGNORED: "TracePointsHeadingIgnored";
|
|
6063
|
-
readonly TRACE_POINTS_IGNORED: "TracePointsIgnored";
|
|
6064
|
-
readonly TRACE_POINTS_MOVED_BY_LARGE_DISTANCE: "TracePointsMovedByLargeDistance";
|
|
6065
|
-
readonly TRACE_POINTS_NOT_MATCHED: "TracePointsNotMatched";
|
|
6066
|
-
readonly TRACE_POINTS_OUT_OF_SEQUENCE: "TracePointsOutOfSequence";
|
|
6067
|
-
readonly TRACE_POINTS_SPEED_ESTIMATED: "TracePointsSpeedEstimated";
|
|
6068
|
-
readonly TRACE_POINTS_SPEED_IGNORED: "TracePointsSpeedIgnored";
|
|
6069
|
-
};
|
|
6070
|
-
/**
|
|
6071
|
-
* @public
|
|
6072
|
-
*/
|
|
6073
|
-
export type RoadSnapNoticeCode = (typeof RoadSnapNoticeCode)[keyof typeof RoadSnapNoticeCode];
|
|
6074
5030
|
/**
|
|
6075
5031
|
* <p>Notices provide information around factors that may have influenced snapping in a manner atypical to the standard use cases.</p>
|
|
6076
5032
|
* @public
|