@aws-sdk/client-location 3.987.0 → 3.988.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 +79 -2251
- package/dist-cjs/models/LocationServiceException.js +12 -0
- package/dist-cjs/models/errors.js +115 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1846 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +55 -49
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var LocationServiceException = require('./models/LocationServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1941 +113,6 @@ class LocationClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class LocationServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, LocationServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends LocationServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class ConflictException extends LocationServiceException {
|
|
135
|
-
name = "ConflictException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "ConflictException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InternalServerException extends LocationServiceException {
|
|
149
|
-
name = "InternalServerException";
|
|
150
|
-
$fault = "server";
|
|
151
|
-
$retryable = {};
|
|
152
|
-
Message;
|
|
153
|
-
constructor(opts) {
|
|
154
|
-
super({
|
|
155
|
-
name: "InternalServerException",
|
|
156
|
-
$fault: "server",
|
|
157
|
-
...opts,
|
|
158
|
-
});
|
|
159
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
160
|
-
this.Message = opts.Message;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
class ServiceQuotaExceededException extends LocationServiceException {
|
|
164
|
-
name = "ServiceQuotaExceededException";
|
|
165
|
-
$fault = "client";
|
|
166
|
-
Message;
|
|
167
|
-
constructor(opts) {
|
|
168
|
-
super({
|
|
169
|
-
name: "ServiceQuotaExceededException",
|
|
170
|
-
$fault: "client",
|
|
171
|
-
...opts,
|
|
172
|
-
});
|
|
173
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
174
|
-
this.Message = opts.Message;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
class ThrottlingException extends LocationServiceException {
|
|
178
|
-
name = "ThrottlingException";
|
|
179
|
-
$fault = "client";
|
|
180
|
-
$retryable = {};
|
|
181
|
-
Message;
|
|
182
|
-
constructor(opts) {
|
|
183
|
-
super({
|
|
184
|
-
name: "ThrottlingException",
|
|
185
|
-
$fault: "client",
|
|
186
|
-
...opts,
|
|
187
|
-
});
|
|
188
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
189
|
-
this.Message = opts.Message;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class ValidationException extends LocationServiceException {
|
|
193
|
-
name = "ValidationException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
Message;
|
|
196
|
-
Reason;
|
|
197
|
-
FieldList;
|
|
198
|
-
constructor(opts) {
|
|
199
|
-
super({
|
|
200
|
-
name: "ValidationException",
|
|
201
|
-
$fault: "client",
|
|
202
|
-
...opts,
|
|
203
|
-
});
|
|
204
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
205
|
-
this.Message = opts.Message;
|
|
206
|
-
this.Reason = opts.Reason;
|
|
207
|
-
this.FieldList = opts.FieldList;
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
class ResourceNotFoundException extends LocationServiceException {
|
|
211
|
-
name = "ResourceNotFoundException";
|
|
212
|
-
$fault = "client";
|
|
213
|
-
Message;
|
|
214
|
-
constructor(opts) {
|
|
215
|
-
super({
|
|
216
|
-
name: "ResourceNotFoundException",
|
|
217
|
-
$fault: "client",
|
|
218
|
-
...opts,
|
|
219
|
-
});
|
|
220
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
221
|
-
this.Message = opts.Message;
|
|
222
|
-
}
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
const _A = "Accuracy";
|
|
226
|
-
const _AA = "AndroidApp";
|
|
227
|
-
const _AAA = "AllowAndroidApps";
|
|
228
|
-
const _AAAl = "AllowAppleApps";
|
|
229
|
-
const _AAL = "AndroidAppList";
|
|
230
|
-
const _AALp = "AppleAppList";
|
|
231
|
-
const _AAl = "AllowActions";
|
|
232
|
-
const _AAp = "AppleApp";
|
|
233
|
-
const _ADE = "AccessDeniedException";
|
|
234
|
-
const _AF = "AvoidFerries";
|
|
235
|
-
const _AK = "ApiKey";
|
|
236
|
-
const _AKF = "ApiKeyFilter";
|
|
237
|
-
const _AKR = "ApiKeyRestrictions";
|
|
238
|
-
const _AN = "AddressNumber";
|
|
239
|
-
const _AR = "AllowResources";
|
|
240
|
-
const _ARl = "AllowReferers";
|
|
241
|
-
const _AT = "AvoidTolls";
|
|
242
|
-
const _ATC = "AssociateTrackerConsumer";
|
|
243
|
-
const _ATCR = "AssociateTrackerConsumerRequest";
|
|
244
|
-
const _ATCRs = "AssociateTrackerConsumerResponse";
|
|
245
|
-
const _ATr = "ArrivalTime";
|
|
246
|
-
const _B = "Blob";
|
|
247
|
-
const _BB = "BoundingBox";
|
|
248
|
-
const _BDDPH = "BatchDeleteDevicePositionHistory";
|
|
249
|
-
const _BDDPHE = "BatchDeleteDevicePositionHistoryError";
|
|
250
|
-
const _BDDPHEL = "BatchDeleteDevicePositionHistoryErrorList";
|
|
251
|
-
const _BDDPHR = "BatchDeleteDevicePositionHistoryRequest";
|
|
252
|
-
const _BDDPHRa = "BatchDeleteDevicePositionHistoryResponse";
|
|
253
|
-
const _BDG = "BatchDeleteGeofence";
|
|
254
|
-
const _BDGE = "BatchDeleteGeofenceError";
|
|
255
|
-
const _BDGEL = "BatchDeleteGeofenceErrorList";
|
|
256
|
-
const _BDGR = "BatchDeleteGeofenceRequest";
|
|
257
|
-
const _BDGRa = "BatchDeleteGeofenceResponse";
|
|
258
|
-
const _BEG = "Base64EncodedGeobuf";
|
|
259
|
-
const _BEGE = "BatchEvaluateGeofencesError";
|
|
260
|
-
const _BEGEL = "BatchEvaluateGeofencesErrorList";
|
|
261
|
-
const _BEGR = "BatchEvaluateGeofencesRequest";
|
|
262
|
-
const _BEGRa = "BatchEvaluateGeofencesResponse";
|
|
263
|
-
const _BEGa = "BatchEvaluateGeofences";
|
|
264
|
-
const _BGDP = "BatchGetDevicePosition";
|
|
265
|
-
const _BGDPE = "BatchGetDevicePositionError";
|
|
266
|
-
const _BGDPEL = "BatchGetDevicePositionErrorList";
|
|
267
|
-
const _BGDPR = "BatchGetDevicePositionRequest";
|
|
268
|
-
const _BGDPRa = "BatchGetDevicePositionResponse";
|
|
269
|
-
const _BI = "BundleId";
|
|
270
|
-
const _BIE = "BatchItemError";
|
|
271
|
-
const _BP = "BiasPosition";
|
|
272
|
-
const _BPG = "BatchPutGeofence";
|
|
273
|
-
const _BPGE = "BatchPutGeofenceError";
|
|
274
|
-
const _BPGEL = "BatchPutGeofenceErrorList";
|
|
275
|
-
const _BPGR = "BatchPutGeofenceRequest";
|
|
276
|
-
const _BPGRE = "BatchPutGeofenceRequestEntry";
|
|
277
|
-
const _BPGREL = "BatchPutGeofenceRequestEntryList";
|
|
278
|
-
const _BPGRa = "BatchPutGeofenceResponse";
|
|
279
|
-
const _BPGS = "BatchPutGeofenceSuccess";
|
|
280
|
-
const _BPGSL = "BatchPutGeofenceSuccessList";
|
|
281
|
-
const _BUDP = "BatchUpdateDevicePosition";
|
|
282
|
-
const _BUDPE = "BatchUpdateDevicePositionError";
|
|
283
|
-
const _BUDPEL = "BatchUpdateDevicePositionErrorList";
|
|
284
|
-
const _BUDPR = "BatchUpdateDevicePositionRequest";
|
|
285
|
-
const _BUDPRa = "BatchUpdateDevicePositionResponse";
|
|
286
|
-
const _C = "Code";
|
|
287
|
-
const _CA = "ConsumerArn";
|
|
288
|
-
const _CAa = "CalculatorArn";
|
|
289
|
-
const _CAo = "CollectionArn";
|
|
290
|
-
const _CAon = "ConsumerArns";
|
|
291
|
-
const _CC = "CountryCode3";
|
|
292
|
-
const _CCL = "CountryCodeList";
|
|
293
|
-
const _CCOE = "CountryCode3OrEmpty";
|
|
294
|
-
const _CC_ = "Cache-Control";
|
|
295
|
-
const _CCa = "CacheControl";
|
|
296
|
-
const _CE = "ConflictException";
|
|
297
|
-
const _CF = "CertificateFingerprint";
|
|
298
|
-
const _CGC = "CreateGeofenceCollection";
|
|
299
|
-
const _CGCR = "CreateGeofenceCollectionRequest";
|
|
300
|
-
const _CGCRr = "CreateGeofenceCollectionResponse";
|
|
301
|
-
const _CI = "CellId";
|
|
302
|
-
const _CK = "CreateKey";
|
|
303
|
-
const _CKR = "CreateKeyRequest";
|
|
304
|
-
const _CKRr = "CreateKeyResponse";
|
|
305
|
-
const _CL = "CustomLayers";
|
|
306
|
-
const _CM = "CreateMap";
|
|
307
|
-
const _CMO = "CarModeOptions";
|
|
308
|
-
const _CMR = "CreateMapRequest";
|
|
309
|
-
const _CMRr = "CreateMapResponse";
|
|
310
|
-
const _CN = "CollectionName";
|
|
311
|
-
const _CNa = "CalculatorName";
|
|
312
|
-
const _CPI = "CreatePlaceIndex";
|
|
313
|
-
const _CPIR = "CreatePlaceIndexRequest";
|
|
314
|
-
const _CPIRr = "CreatePlaceIndexResponse";
|
|
315
|
-
const _CR = "CalculateRoute";
|
|
316
|
-
const _CRC = "CreateRouteCalculator";
|
|
317
|
-
const _CRCMO = "CalculateRouteCarModeOptions";
|
|
318
|
-
const _CRCR = "CreateRouteCalculatorRequest";
|
|
319
|
-
const _CRCRr = "CreateRouteCalculatorResponse";
|
|
320
|
-
const _CRM = "CalculateRouteMatrix";
|
|
321
|
-
const _CRMR = "CalculateRouteMatrixRequest";
|
|
322
|
-
const _CRMRa = "CalculateRouteMatrixResponse";
|
|
323
|
-
const _CRMS = "CalculateRouteMatrixSummary";
|
|
324
|
-
const _CRR = "CalculateRouteRequest";
|
|
325
|
-
const _CRRa = "CalculateRouteResponse";
|
|
326
|
-
const _CRS = "CalculateRouteSummary";
|
|
327
|
-
const _CRTMO = "CalculateRouteTruckModeOptions";
|
|
328
|
-
const _CS = "CellSignals";
|
|
329
|
-
const _CT = "CreateTime";
|
|
330
|
-
const _CTR = "CreateTrackerRequest";
|
|
331
|
-
const _CTRr = "CreateTrackerResponse";
|
|
332
|
-
const _CT_ = "Content-Type";
|
|
333
|
-
const _CTo = "ContentType";
|
|
334
|
-
const _CTr = "CreateTracker";
|
|
335
|
-
const _CU = "ConfigurationUpdate";
|
|
336
|
-
const _Ca = "Categories";
|
|
337
|
-
const _Ce = "Center";
|
|
338
|
-
const _Ci = "Circle";
|
|
339
|
-
const _Co = "Configuration";
|
|
340
|
-
const _Cou = "Country";
|
|
341
|
-
const _D = "Distance";
|
|
342
|
-
const _DD = "DeviationDistance";
|
|
343
|
-
const _DGC = "DeleteGeofenceCollection";
|
|
344
|
-
const _DGCR = "DeleteGeofenceCollectionRequest";
|
|
345
|
-
const _DGCRe = "DeleteGeofenceCollectionResponse";
|
|
346
|
-
const _DGCRes = "DescribeGeofenceCollectionRequest";
|
|
347
|
-
const _DGCResc = "DescribeGeofenceCollectionResponse";
|
|
348
|
-
const _DGCe = "DescribeGeofenceCollection";
|
|
349
|
-
const _DI = "DeviceId";
|
|
350
|
-
const _DIe = "DeviceIds";
|
|
351
|
-
const _DK = "DeleteKey";
|
|
352
|
-
const _DKR = "DeleteKeyRequest";
|
|
353
|
-
const _DKRe = "DeleteKeyResponse";
|
|
354
|
-
const _DKRes = "DescribeKeyRequest";
|
|
355
|
-
const _DKResc = "DescribeKeyResponse";
|
|
356
|
-
const _DKe = "DescribeKey";
|
|
357
|
-
const _DM = "DeleteMap";
|
|
358
|
-
const _DMR = "DeleteMapRequest";
|
|
359
|
-
const _DMRe = "DeleteMapResponse";
|
|
360
|
-
const _DMRes = "DescribeMapRequest";
|
|
361
|
-
const _DMResc = "DescribeMapResponse";
|
|
362
|
-
const _DMe = "DescribeMap";
|
|
363
|
-
const _DN = "DepartNow";
|
|
364
|
-
const _DP = "DevicePositions";
|
|
365
|
-
const _DPI = "DeletePlaceIndex";
|
|
366
|
-
const _DPIR = "DeletePlaceIndexRequest";
|
|
367
|
-
const _DPIRe = "DeletePlaceIndexResponse";
|
|
368
|
-
const _DPIRes = "DescribePlaceIndexRequest";
|
|
369
|
-
const _DPIResc = "DescribePlaceIndexResponse";
|
|
370
|
-
const _DPIe = "DescribePlaceIndex";
|
|
371
|
-
const _DPL = "DevicePositionList";
|
|
372
|
-
const _DPU = "DevicePositionUpdates";
|
|
373
|
-
const _DPUL = "DevicePositionUpdateList";
|
|
374
|
-
const _DPUe = "DevicePositionUpdate";
|
|
375
|
-
const _DPe = "DeparturePositions";
|
|
376
|
-
const _DPep = "DeparturePosition";
|
|
377
|
-
const _DPes = "DestinationPositions";
|
|
378
|
-
const _DPest = "DestinationPosition";
|
|
379
|
-
const _DPev = "DevicePosition";
|
|
380
|
-
const _DRC = "DeleteRouteCalculator";
|
|
381
|
-
const _DRCR = "DeleteRouteCalculatorRequest";
|
|
382
|
-
const _DRCRe = "DeleteRouteCalculatorResponse";
|
|
383
|
-
const _DRCRes = "DescribeRouteCalculatorRequest";
|
|
384
|
-
const _DRCResc = "DescribeRouteCalculatorResponse";
|
|
385
|
-
const _DRCe = "DescribeRouteCalculator";
|
|
386
|
-
const _DS = "DataSource";
|
|
387
|
-
const _DSC = "DataSourceConfiguration";
|
|
388
|
-
const _DSe = "DeviceState";
|
|
389
|
-
const _DSu = "DurationSeconds";
|
|
390
|
-
const _DT = "DepartureTime";
|
|
391
|
-
const _DTC = "DisassociateTrackerConsumer";
|
|
392
|
-
const _DTCR = "DisassociateTrackerConsumerRequest";
|
|
393
|
-
const _DTCRi = "DisassociateTrackerConsumerResponse";
|
|
394
|
-
const _DTR = "DeleteTrackerRequest";
|
|
395
|
-
const _DTRe = "DeleteTrackerResponse";
|
|
396
|
-
const _DTRes = "DescribeTrackerRequest";
|
|
397
|
-
const _DTResc = "DescribeTrackerResponse";
|
|
398
|
-
const _DTe = "DeleteTracker";
|
|
399
|
-
const _DTes = "DescribeTracker";
|
|
400
|
-
const _DU = "DistanceUnit";
|
|
401
|
-
const _De = "Description";
|
|
402
|
-
const _Di = "Dimensions";
|
|
403
|
-
const _E = "Error";
|
|
404
|
-
const _EBE = "EventBridgeEnabled";
|
|
405
|
-
const _EC = "ErrorCount";
|
|
406
|
-
const _EI = "EventId";
|
|
407
|
-
const _EP = "EndPosition";
|
|
408
|
-
const _ET = "ExpireTime";
|
|
409
|
-
const _ETE = "EndTimeExclusive";
|
|
410
|
-
const _ETv = "EventType";
|
|
411
|
-
const _Ea = "Earfcn";
|
|
412
|
-
const _En = "Entries";
|
|
413
|
-
const _Er = "Errors";
|
|
414
|
-
const _F = "Filter";
|
|
415
|
-
const _FBB = "FilterBBox";
|
|
416
|
-
const _FBT = "ForecastedBreachTime";
|
|
417
|
-
const _FC = "FilterCountries";
|
|
418
|
-
const _FCi = "FilterCategories";
|
|
419
|
-
const _FD = "ForceDelete";
|
|
420
|
-
const _FE = "ForecastedEvent";
|
|
421
|
-
const _FEL = "ForecastedEventsList";
|
|
422
|
-
const _FEo = "ForecastedEvents";
|
|
423
|
-
const _FG = "FilterGeometry";
|
|
424
|
-
const _FGE = "ForecastGeofenceEvents";
|
|
425
|
-
const _FGEDS = "ForecastGeofenceEventsDeviceState";
|
|
426
|
-
const _FGER = "ForecastGeofenceEventsRequest";
|
|
427
|
-
const _FGERo = "ForecastGeofenceEventsResponse";
|
|
428
|
-
const _FL = "FieldList";
|
|
429
|
-
const _FN = "FileName";
|
|
430
|
-
const _FPCL = "FilterPlaceCategoryList";
|
|
431
|
-
const _FS = "FontStack";
|
|
432
|
-
const _FU = "ForceUpdate";
|
|
433
|
-
const _FUR = "FontUnicodeRange";
|
|
434
|
-
const _G = "Geometry";
|
|
435
|
-
const _GC = "GeofenceCount";
|
|
436
|
-
const _GDP = "GetDevicePosition";
|
|
437
|
-
const _GDPH = "GetDevicePositionHistory";
|
|
438
|
-
const _GDPHR = "GetDevicePositionHistoryRequest";
|
|
439
|
-
const _GDPHRe = "GetDevicePositionHistoryResponse";
|
|
440
|
-
const _GDPR = "GetDevicePositionRequest";
|
|
441
|
-
const _GDPRe = "GetDevicePositionResponse";
|
|
442
|
-
const _GG = "GeofenceGeometry";
|
|
443
|
-
const _GGR = "GetGeofenceRequest";
|
|
444
|
-
const _GGRe = "GetGeofenceResponse";
|
|
445
|
-
const _GGe = "GetGeofence";
|
|
446
|
-
const _GI = "GeofenceId";
|
|
447
|
-
const _GIe = "GeofenceIds";
|
|
448
|
-
const _GMG = "GetMapGlyphs";
|
|
449
|
-
const _GMGR = "GetMapGlyphsRequest";
|
|
450
|
-
const _GMGRe = "GetMapGlyphsResponse";
|
|
451
|
-
const _GMS = "GetMapSprites";
|
|
452
|
-
const _GMSD = "GetMapStyleDescriptor";
|
|
453
|
-
const _GMSDR = "GetMapStyleDescriptorRequest";
|
|
454
|
-
const _GMSDRe = "GetMapStyleDescriptorResponse";
|
|
455
|
-
const _GMSR = "GetMapSpritesRequest";
|
|
456
|
-
const _GMSRe = "GetMapSpritesResponse";
|
|
457
|
-
const _GMT = "GetMapTile";
|
|
458
|
-
const _GMTR = "GetMapTileRequest";
|
|
459
|
-
const _GMTRe = "GetMapTileResponse";
|
|
460
|
-
const _GO = "GeometryOffset";
|
|
461
|
-
const _GP = "GeofenceProperties";
|
|
462
|
-
const _GPR = "GetPlaceRequest";
|
|
463
|
-
const _GPRe = "GetPlaceResponse";
|
|
464
|
-
const _GPe = "GetPlace";
|
|
465
|
-
const _Ge = "Geobuf";
|
|
466
|
-
const _H = "Horizontal";
|
|
467
|
-
const _He = "Height";
|
|
468
|
-
const _I = "Interpolated";
|
|
469
|
-
const _IA = "IndexArn";
|
|
470
|
-
const _IAp = "Ipv4Address";
|
|
471
|
-
const _IDIG = "IsDeviceInGeofence";
|
|
472
|
-
const _ILG = "IncludeLegGeometry";
|
|
473
|
-
const _IN = "IndexName";
|
|
474
|
-
const _IS = "InferredState";
|
|
475
|
-
const _ISE = "InternalServerException";
|
|
476
|
-
const _IU = "IntendedUse";
|
|
477
|
-
const _K = "Key";
|
|
478
|
-
const _KA = "KeyArn";
|
|
479
|
-
const _KKEGQ = "KmsKeyEnableGeospatialQueries";
|
|
480
|
-
const _KKI = "KmsKeyId";
|
|
481
|
-
const _KN = "KeyName";
|
|
482
|
-
const _KS = "KeyStatus";
|
|
483
|
-
const _L = "Legs";
|
|
484
|
-
const _LCD = "LteCellDetails";
|
|
485
|
-
const _LCDL = "LteCellDetailsList";
|
|
486
|
-
const _LDP = "ListDevicePositions";
|
|
487
|
-
const _LDPR = "ListDevicePositionsRequest";
|
|
488
|
-
const _LDPRE = "ListDevicePositionsResponseEntry";
|
|
489
|
-
const _LDPREL = "ListDevicePositionsResponseEntryList";
|
|
490
|
-
const _LDPRi = "ListDevicePositionsResponse";
|
|
491
|
-
const _LG = "LegGeometry";
|
|
492
|
-
const _LGC = "ListGeofenceCollections";
|
|
493
|
-
const _LGCR = "ListGeofenceCollectionsRequest";
|
|
494
|
-
const _LGCRE = "ListGeofenceCollectionsResponseEntry";
|
|
495
|
-
const _LGCREL = "ListGeofenceCollectionsResponseEntryList";
|
|
496
|
-
const _LGCRi = "ListGeofenceCollectionsResponse";
|
|
497
|
-
const _LGR = "ListGeofencesRequest";
|
|
498
|
-
const _LGRE = "ListGeofenceResponseEntry";
|
|
499
|
-
const _LGREL = "ListGeofenceResponseEntryList";
|
|
500
|
-
const _LGRi = "ListGeofencesResponse";
|
|
501
|
-
const _LGi = "ListGeofences";
|
|
502
|
-
const _LI = "LocalId";
|
|
503
|
-
const _LK = "ListKeys";
|
|
504
|
-
const _LKR = "ListKeysRequest";
|
|
505
|
-
const _LKRE = "ListKeysResponseEntry";
|
|
506
|
-
const _LKREL = "ListKeysResponseEntryList";
|
|
507
|
-
const _LKRi = "ListKeysResponse";
|
|
508
|
-
const _LL = "LegList";
|
|
509
|
-
const _LLI = "LteLocalId";
|
|
510
|
-
const _LM = "ListMaps";
|
|
511
|
-
const _LMR = "ListMapsRequest";
|
|
512
|
-
const _LMRE = "ListMapsResponseEntry";
|
|
513
|
-
const _LMREL = "ListMapsResponseEntryList";
|
|
514
|
-
const _LMRi = "ListMapsResponse";
|
|
515
|
-
const _LNM = "LteNetworkMeasurements";
|
|
516
|
-
const _LNML = "LteNetworkMeasurementsList";
|
|
517
|
-
const _LPI = "ListPlaceIndexes";
|
|
518
|
-
const _LPIR = "ListPlaceIndexesRequest";
|
|
519
|
-
const _LPIRE = "ListPlaceIndexesResponseEntry";
|
|
520
|
-
const _LPIREL = "ListPlaceIndexesResponseEntryList";
|
|
521
|
-
const _LPIRi = "ListPlaceIndexesResponse";
|
|
522
|
-
const _LR = "LinearRing";
|
|
523
|
-
const _LRC = "ListRouteCalculators";
|
|
524
|
-
const _LRCR = "ListRouteCalculatorsRequest";
|
|
525
|
-
const _LRCRE = "ListRouteCalculatorsResponseEntry";
|
|
526
|
-
const _LRCREL = "ListRouteCalculatorsResponseEntryList";
|
|
527
|
-
const _LRCRi = "ListRouteCalculatorsResponse";
|
|
528
|
-
const _LRi = "LinearRings";
|
|
529
|
-
const _LS = "LineString";
|
|
530
|
-
const _LT = "ListTrackers";
|
|
531
|
-
const _LTC = "ListTrackerConsumers";
|
|
532
|
-
const _LTCR = "ListTrackerConsumersRequest";
|
|
533
|
-
const _LTCRi = "ListTrackerConsumersResponse";
|
|
534
|
-
const _LTFR = "ListTagsForResource";
|
|
535
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
536
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
537
|
-
const _LTR = "ListTrackersRequest";
|
|
538
|
-
const _LTRE = "ListTrackersResponseEntry";
|
|
539
|
-
const _LTREL = "ListTrackersResponseEntryList";
|
|
540
|
-
const _LTRi = "ListTrackersResponse";
|
|
541
|
-
const _La = "Language";
|
|
542
|
-
const _Lab = "Label";
|
|
543
|
-
const _Le = "Leg";
|
|
544
|
-
const _Len = "Length";
|
|
545
|
-
const _M = "Message";
|
|
546
|
-
const _MA = "MapArn";
|
|
547
|
-
const _MAa = "MacAddress";
|
|
548
|
-
const _MC = "MapConfiguration";
|
|
549
|
-
const _MCU = "MapConfigurationUpdate";
|
|
550
|
-
const _MLR = "MultiLinearRings";
|
|
551
|
-
const _MN = "MapName";
|
|
552
|
-
const _MP = "MultiPolygon";
|
|
553
|
-
const _MR = "MaxResults";
|
|
554
|
-
const _Mc = "Mcc";
|
|
555
|
-
const _Mn = "Mnc";
|
|
556
|
-
const _Mu = "Municipality";
|
|
557
|
-
const _N = "Neighborhood";
|
|
558
|
-
const _NC = "NrCapable";
|
|
559
|
-
const _ND = "NearestDistance";
|
|
560
|
-
const _NE = "NoExpiry";
|
|
561
|
-
const _NM = "NetworkMeasurements";
|
|
562
|
-
const _NT = "NextToken";
|
|
563
|
-
const _Na = "Name";
|
|
564
|
-
const _O = "Offset";
|
|
565
|
-
const _OF = "OptimizeFor";
|
|
566
|
-
const _P = "Package";
|
|
567
|
-
const _PA = "PositionalAccuracy";
|
|
568
|
-
const _PC = "PlaceCategory";
|
|
569
|
-
const _PCL = "PlaceCategoryList";
|
|
570
|
-
const _PCo = "PostalCode";
|
|
571
|
-
const _PD = "ProxyDetected";
|
|
572
|
-
const _PF = "PositionFiltering";
|
|
573
|
-
const _PG = "PlaceGeometry";
|
|
574
|
-
const _PGR = "PutGeofenceRequest";
|
|
575
|
-
const _PGRu = "PutGeofenceResponse";
|
|
576
|
-
const _PGu = "PutGeofence";
|
|
577
|
-
const _PI = "PlaceId";
|
|
578
|
-
const _PL = "PositionList";
|
|
579
|
-
const _PM = "PropertyMap";
|
|
580
|
-
const _PP = "PricingPlan";
|
|
581
|
-
const _PPDS = "PricingPlanDataSource";
|
|
582
|
-
const _PPM = "PositionPropertyMap";
|
|
583
|
-
const _PPo = "PositionProperties";
|
|
584
|
-
const _PSC = "PlaceSupplementalCategory";
|
|
585
|
-
const _PSCL = "PlaceSupplementalCategoryList";
|
|
586
|
-
const _PV = "PoliticalView";
|
|
587
|
-
const _Pc = "Pci";
|
|
588
|
-
const _Pl = "Place";
|
|
589
|
-
const _Po = "Position";
|
|
590
|
-
const _Poi = "Point";
|
|
591
|
-
const _Pol = "Polygon";
|
|
592
|
-
const _R = "Radius";
|
|
593
|
-
const _RA = "ResourceArn";
|
|
594
|
-
const _RBB = "RouteBBox";
|
|
595
|
-
const _RBBe = "ResultBBox";
|
|
596
|
-
const _RC = "RouteCount";
|
|
597
|
-
const _RM = "RouteMatrix";
|
|
598
|
-
const _RME = "RouteMatrixEntry";
|
|
599
|
-
const _RMEE = "RouteMatrixEntryError";
|
|
600
|
-
const _RMR = "RouteMatrixRow";
|
|
601
|
-
const _RNFE = "ResourceNotFoundException";
|
|
602
|
-
const _RP = "RefererPattern";
|
|
603
|
-
const _RPL = "RefererPatternList";
|
|
604
|
-
const _RT = "ReceivedTime";
|
|
605
|
-
const _Re = "Restrictions";
|
|
606
|
-
const _Rea = "Reason";
|
|
607
|
-
const _Reg = "Region";
|
|
608
|
-
const _Rel = "Relevance";
|
|
609
|
-
const _Res = "Results";
|
|
610
|
-
const _Rs = "Rsrp";
|
|
611
|
-
const _Rsr = "Rsrq";
|
|
612
|
-
const _Rss = "Rss";
|
|
613
|
-
const _S = "Successes";
|
|
614
|
-
const _SB = "SensitiveBoolean";
|
|
615
|
-
const _SC = "SupplementalCategories";
|
|
616
|
-
const _SD = "SensitiveDouble";
|
|
617
|
-
const _SDP = "SnappedDeparturePositions";
|
|
618
|
-
const _SDPn = "SnappedDestinationPositions";
|
|
619
|
-
const _SFPR = "SearchForPositionResult";
|
|
620
|
-
const _SFPRL = "SearchForPositionResultList";
|
|
621
|
-
const _SFSR = "SearchForSuggestionsResult";
|
|
622
|
-
const _SFSRL = "SearchForSuggestionsResultList";
|
|
623
|
-
const _SFTR = "SearchForTextResult";
|
|
624
|
-
const _SFTRL = "SearchForTextResultList";
|
|
625
|
-
const _SI = "SensitiveInteger";
|
|
626
|
-
const _SL = "StepList";
|
|
627
|
-
const _SM = "SubMunicipality";
|
|
628
|
-
const _SP = "StartPosition";
|
|
629
|
-
const _SPIFP = "SearchPlaceIndexForPosition";
|
|
630
|
-
const _SPIFPR = "SearchPlaceIndexForPositionRequest";
|
|
631
|
-
const _SPIFPRe = "SearchPlaceIndexForPositionResponse";
|
|
632
|
-
const _SPIFPS = "SearchPlaceIndexForPositionSummary";
|
|
633
|
-
const _SPIFS = "SearchPlaceIndexForSuggestions";
|
|
634
|
-
const _SPIFSR = "SearchPlaceIndexForSuggestionsRequest";
|
|
635
|
-
const _SPIFSRe = "SearchPlaceIndexForSuggestionsResponse";
|
|
636
|
-
const _SPIFSS = "SearchPlaceIndexForSuggestionsSummary";
|
|
637
|
-
const _SPIFT = "SearchPlaceIndexForText";
|
|
638
|
-
const _SPIFTR = "SearchPlaceIndexForTextRequest";
|
|
639
|
-
const _SPIFTRe = "SearchPlaceIndexForTextResponse";
|
|
640
|
-
const _SPIFTS = "SearchPlaceIndexForTextSummary";
|
|
641
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
642
|
-
const _SR = "SubRegion";
|
|
643
|
-
const _SS = "SensitiveString";
|
|
644
|
-
const _ST = "SampleTime";
|
|
645
|
-
const _STI = "StartTimeInclusive";
|
|
646
|
-
const _SU = "SpeedUnit";
|
|
647
|
-
const _Sp = "Speed";
|
|
648
|
-
const _St = "Status";
|
|
649
|
-
const _Ste = "Steps";
|
|
650
|
-
const _Step = "Step";
|
|
651
|
-
const _Str = "Street";
|
|
652
|
-
const _Sty = "Style";
|
|
653
|
-
const _Su = "Summary";
|
|
654
|
-
const _T = "Timestamp";
|
|
655
|
-
const _TA = "TrackerArn";
|
|
656
|
-
const _TAi = "TimingAdvance";
|
|
657
|
-
const _TD = "TruckDimensions";
|
|
658
|
-
const _TE = "ThrottlingException";
|
|
659
|
-
const _TFG = "TrackingFilterGeometry";
|
|
660
|
-
const _THM = "TimeHorizonMinutes";
|
|
661
|
-
const _TK = "TagKeys";
|
|
662
|
-
const _TM = "TravelMode";
|
|
663
|
-
const _TMO = "TruckModeOptions";
|
|
664
|
-
const _TN = "TrackerName";
|
|
665
|
-
const _TR = "TagResource";
|
|
666
|
-
const _TRR = "TagResourceRequest";
|
|
667
|
-
const _TRRa = "TagResourceResponse";
|
|
668
|
-
const _TW = "TruckWeight";
|
|
669
|
-
const _TZ = "TimeZone";
|
|
670
|
-
const _Ta = "Tags";
|
|
671
|
-
const _Tac = "Tac";
|
|
672
|
-
const _Te = "Text";
|
|
673
|
-
const _To = "Total";
|
|
674
|
-
const _U = "Updates";
|
|
675
|
-
const _UGC = "UpdateGeofenceCollection";
|
|
676
|
-
const _UGCR = "UpdateGeofenceCollectionRequest";
|
|
677
|
-
const _UGCRp = "UpdateGeofenceCollectionResponse";
|
|
678
|
-
const _UK = "UpdateKey";
|
|
679
|
-
const _UKR = "UpdateKeyRequest";
|
|
680
|
-
const _UKRp = "UpdateKeyResponse";
|
|
681
|
-
const _UM = "UpdateMap";
|
|
682
|
-
const _UMR = "UpdateMapRequest";
|
|
683
|
-
const _UMRp = "UpdateMapResponse";
|
|
684
|
-
const _UN = "UnitNumber";
|
|
685
|
-
const _UPI = "UpdatePlaceIndex";
|
|
686
|
-
const _UPIR = "UpdatePlaceIndexRequest";
|
|
687
|
-
const _UPIRp = "UpdatePlaceIndexResponse";
|
|
688
|
-
const _UR = "UntagResource";
|
|
689
|
-
const _URC = "UpdateRouteCalculator";
|
|
690
|
-
const _URCR = "UpdateRouteCalculatorRequest";
|
|
691
|
-
const _URCRp = "UpdateRouteCalculatorResponse";
|
|
692
|
-
const _URR = "UntagResourceRequest";
|
|
693
|
-
const _URRn = "UntagResourceResponse";
|
|
694
|
-
const _UT = "UpdateTime";
|
|
695
|
-
const _UTR = "UpdateTrackerRequest";
|
|
696
|
-
const _UTRp = "UpdateTrackerResponse";
|
|
697
|
-
const _UTn = "UnitType";
|
|
698
|
-
const _UTp = "UpdateTracker";
|
|
699
|
-
const _Un = "Unit";
|
|
700
|
-
const _VDP = "VerifyDevicePosition";
|
|
701
|
-
const _VDPR = "VerifyDevicePositionRequest";
|
|
702
|
-
const _VDPRe = "VerifyDevicePositionResponse";
|
|
703
|
-
const _VE = "ValidationException";
|
|
704
|
-
const _VEF = "ValidationExceptionField";
|
|
705
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
706
|
-
const _W = "Weight";
|
|
707
|
-
const _WFAP = "WiFiAccessPoints";
|
|
708
|
-
const _WFAPL = "WiFiAccessPointList";
|
|
709
|
-
const _WFAPi = "WiFiAccessPoint";
|
|
710
|
-
const _WP = "WaypointPositions";
|
|
711
|
-
const _WPL = "WaypointPositionList";
|
|
712
|
-
const _Wi = "Width";
|
|
713
|
-
const _X = "X";
|
|
714
|
-
const _Y = "Y";
|
|
715
|
-
const _Z = "Z";
|
|
716
|
-
const _c = "client";
|
|
717
|
-
const _e = "error";
|
|
718
|
-
const _en = "endpoint";
|
|
719
|
-
const _fD = "forceDelete";
|
|
720
|
-
const _fL = "fieldList";
|
|
721
|
-
const _h = "http";
|
|
722
|
-
const _hE = "httpError";
|
|
723
|
-
const _hH = "httpHeader";
|
|
724
|
-
const _hQ = "httpQuery";
|
|
725
|
-
const _jN = "jsonName";
|
|
726
|
-
const _k = "key";
|
|
727
|
-
const _l = "language";
|
|
728
|
-
const _m = "message";
|
|
729
|
-
const _n = "name";
|
|
730
|
-
const _r = "reason";
|
|
731
|
-
const _s = "server";
|
|
732
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.location";
|
|
733
|
-
const _tK = "tagKeys";
|
|
734
|
-
const n0 = "com.amazonaws.location";
|
|
735
|
-
var ApiKey = [0, n0, _AK, 8, 0];
|
|
736
|
-
var Base64EncodedGeobuf = [0, n0, _BEG, 8, 21];
|
|
737
|
-
var CountryCode3 = [0, n0, _CC, 8, 0];
|
|
738
|
-
var CountryCode3OrEmpty = [0, n0, _CCOE, 8, 0];
|
|
739
|
-
var PlaceCategory = [0, n0, _PC, 8, 0];
|
|
740
|
-
var PlaceId = [0, n0, _PI, 8, 0];
|
|
741
|
-
var PlaceSupplementalCategory = [0, n0, _PSC, 8, 0];
|
|
742
|
-
var RefererPattern = [0, n0, _RP, 8, 0];
|
|
743
|
-
var SensitiveBoolean = [0, n0, _SB, 8, 2];
|
|
744
|
-
var SensitiveDouble = [0, n0, _SD, 8, 1];
|
|
745
|
-
var SensitiveInteger = [0, n0, _SI, 8, 1];
|
|
746
|
-
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
747
|
-
var Timestamp = [0, n0, _T, 8, 5];
|
|
748
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
749
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
750
|
-
[_M],
|
|
751
|
-
[[0, { [_jN]: _m }]], 1
|
|
752
|
-
];
|
|
753
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
754
|
-
var AndroidApp$ = [3, n0, _AA,
|
|
755
|
-
0,
|
|
756
|
-
[_P, _CF],
|
|
757
|
-
[0, 0], 2
|
|
758
|
-
];
|
|
759
|
-
var ApiKeyFilter$ = [3, n0, _AKF,
|
|
760
|
-
0,
|
|
761
|
-
[_KS],
|
|
762
|
-
[0]
|
|
763
|
-
];
|
|
764
|
-
var ApiKeyRestrictions$ = [3, n0, _AKR,
|
|
765
|
-
0,
|
|
766
|
-
[_AAl, _AR, _ARl, _AAA, _AAAl],
|
|
767
|
-
[64 | 0, 64 | 0, [() => RefererPatternList, 0], () => AndroidAppList, () => AppleAppList], 2
|
|
768
|
-
];
|
|
769
|
-
var AppleApp$ = [3, n0, _AAp,
|
|
770
|
-
0,
|
|
771
|
-
[_BI],
|
|
772
|
-
[0], 1
|
|
773
|
-
];
|
|
774
|
-
var AssociateTrackerConsumerRequest$ = [3, n0, _ATCR,
|
|
775
|
-
0,
|
|
776
|
-
[_TN, _CA],
|
|
777
|
-
[[0, 1], 0], 2
|
|
778
|
-
];
|
|
779
|
-
var AssociateTrackerConsumerResponse$ = [3, n0, _ATCRs,
|
|
780
|
-
0,
|
|
781
|
-
[],
|
|
782
|
-
[]
|
|
783
|
-
];
|
|
784
|
-
var BatchDeleteDevicePositionHistoryError$ = [3, n0, _BDDPHE,
|
|
785
|
-
0,
|
|
786
|
-
[_DI, _E],
|
|
787
|
-
[0, () => BatchItemError$], 2
|
|
788
|
-
];
|
|
789
|
-
var BatchDeleteDevicePositionHistoryRequest$ = [3, n0, _BDDPHR,
|
|
790
|
-
0,
|
|
791
|
-
[_TN, _DIe],
|
|
792
|
-
[[0, 1], 64 | 0], 2
|
|
793
|
-
];
|
|
794
|
-
var BatchDeleteDevicePositionHistoryResponse$ = [3, n0, _BDDPHRa,
|
|
795
|
-
0,
|
|
796
|
-
[_Er],
|
|
797
|
-
[() => BatchDeleteDevicePositionHistoryErrorList], 1
|
|
798
|
-
];
|
|
799
|
-
var BatchDeleteGeofenceError$ = [3, n0, _BDGE,
|
|
800
|
-
0,
|
|
801
|
-
[_GI, _E],
|
|
802
|
-
[0, () => BatchItemError$], 2
|
|
803
|
-
];
|
|
804
|
-
var BatchDeleteGeofenceRequest$ = [3, n0, _BDGR,
|
|
805
|
-
0,
|
|
806
|
-
[_CN, _GIe],
|
|
807
|
-
[[0, 1], 64 | 0], 2
|
|
808
|
-
];
|
|
809
|
-
var BatchDeleteGeofenceResponse$ = [3, n0, _BDGRa,
|
|
810
|
-
0,
|
|
811
|
-
[_Er],
|
|
812
|
-
[() => BatchDeleteGeofenceErrorList], 1
|
|
813
|
-
];
|
|
814
|
-
var BatchEvaluateGeofencesError$ = [3, n0, _BEGE,
|
|
815
|
-
0,
|
|
816
|
-
[_DI, _ST, _E],
|
|
817
|
-
[0, [() => Timestamp, 0], () => BatchItemError$], 3
|
|
818
|
-
];
|
|
819
|
-
var BatchEvaluateGeofencesRequest$ = [3, n0, _BEGR,
|
|
820
|
-
0,
|
|
821
|
-
[_CN, _DPU],
|
|
822
|
-
[[0, 1], [() => DevicePositionUpdateList, 0]], 2
|
|
823
|
-
];
|
|
824
|
-
var BatchEvaluateGeofencesResponse$ = [3, n0, _BEGRa,
|
|
825
|
-
0,
|
|
826
|
-
[_Er],
|
|
827
|
-
[[() => BatchEvaluateGeofencesErrorList, 0]], 1
|
|
828
|
-
];
|
|
829
|
-
var BatchGetDevicePositionError$ = [3, n0, _BGDPE,
|
|
830
|
-
0,
|
|
831
|
-
[_DI, _E],
|
|
832
|
-
[0, () => BatchItemError$], 2
|
|
833
|
-
];
|
|
834
|
-
var BatchGetDevicePositionRequest$ = [3, n0, _BGDPR,
|
|
835
|
-
0,
|
|
836
|
-
[_TN, _DIe],
|
|
837
|
-
[[0, 1], 64 | 0], 2
|
|
838
|
-
];
|
|
839
|
-
var BatchGetDevicePositionResponse$ = [3, n0, _BGDPRa,
|
|
840
|
-
0,
|
|
841
|
-
[_Er, _DP],
|
|
842
|
-
[() => BatchGetDevicePositionErrorList, [() => DevicePositionList, 0]], 2
|
|
843
|
-
];
|
|
844
|
-
var BatchItemError$ = [3, n0, _BIE,
|
|
845
|
-
0,
|
|
846
|
-
[_C, _M],
|
|
847
|
-
[0, 0]
|
|
848
|
-
];
|
|
849
|
-
var BatchPutGeofenceError$ = [3, n0, _BPGE,
|
|
850
|
-
0,
|
|
851
|
-
[_GI, _E],
|
|
852
|
-
[0, () => BatchItemError$], 2
|
|
853
|
-
];
|
|
854
|
-
var BatchPutGeofenceRequest$ = [3, n0, _BPGR,
|
|
855
|
-
0,
|
|
856
|
-
[_CN, _En],
|
|
857
|
-
[[0, 1], [() => BatchPutGeofenceRequestEntryList, 0]], 2
|
|
858
|
-
];
|
|
859
|
-
var BatchPutGeofenceRequestEntry$ = [3, n0, _BPGRE,
|
|
860
|
-
0,
|
|
861
|
-
[_GI, _G, _GP],
|
|
862
|
-
[0, [() => GeofenceGeometry$, 0], [() => PropertyMap, 0]], 2
|
|
863
|
-
];
|
|
864
|
-
var BatchPutGeofenceResponse$ = [3, n0, _BPGRa,
|
|
865
|
-
0,
|
|
866
|
-
[_S, _Er],
|
|
867
|
-
[[() => BatchPutGeofenceSuccessList, 0], () => BatchPutGeofenceErrorList], 2
|
|
868
|
-
];
|
|
869
|
-
var BatchPutGeofenceSuccess$ = [3, n0, _BPGS,
|
|
870
|
-
0,
|
|
871
|
-
[_GI, _CT, _UT],
|
|
872
|
-
[0, [() => Timestamp, 0], [() => Timestamp, 0]], 3
|
|
873
|
-
];
|
|
874
|
-
var BatchUpdateDevicePositionError$ = [3, n0, _BUDPE,
|
|
875
|
-
0,
|
|
876
|
-
[_DI, _ST, _E],
|
|
877
|
-
[0, [() => Timestamp, 0], () => BatchItemError$], 3
|
|
878
|
-
];
|
|
879
|
-
var BatchUpdateDevicePositionRequest$ = [3, n0, _BUDPR,
|
|
880
|
-
0,
|
|
881
|
-
[_TN, _U],
|
|
882
|
-
[[0, 1], [() => DevicePositionUpdateList, 0]], 2
|
|
883
|
-
];
|
|
884
|
-
var BatchUpdateDevicePositionResponse$ = [3, n0, _BUDPRa,
|
|
885
|
-
0,
|
|
886
|
-
[_Er],
|
|
887
|
-
[[() => BatchUpdateDevicePositionErrorList, 0]], 1
|
|
888
|
-
];
|
|
889
|
-
var CalculateRouteCarModeOptions$ = [3, n0, _CRCMO,
|
|
890
|
-
0,
|
|
891
|
-
[_AF, _AT],
|
|
892
|
-
[[() => SensitiveBoolean, 0], [() => SensitiveBoolean, 0]]
|
|
893
|
-
];
|
|
894
|
-
var CalculateRouteMatrixRequest$ = [3, n0, _CRMR,
|
|
895
|
-
0,
|
|
896
|
-
[_CNa, _DPe, _DPes, _TM, _DT, _DN, _DU, _CMO, _TMO, _K],
|
|
897
|
-
[[0, 1], [() => PositionList, 0], [() => PositionList, 0], 0, [() => Timestamp, 0], [() => SensitiveBoolean, 0], 0, [() => CalculateRouteCarModeOptions$, 0], [() => CalculateRouteTruckModeOptions$, 0], [() => ApiKey, { [_hQ]: _k }]], 3
|
|
898
|
-
];
|
|
899
|
-
var CalculateRouteMatrixResponse$ = [3, n0, _CRMRa,
|
|
900
|
-
0,
|
|
901
|
-
[_RM, _Su, _SDP, _SDPn],
|
|
902
|
-
[[() => RouteMatrix, 0], () => CalculateRouteMatrixSummary$, [() => PositionList, 0], [() => PositionList, 0]], 2
|
|
903
|
-
];
|
|
904
|
-
var CalculateRouteMatrixSummary$ = [3, n0, _CRMS,
|
|
905
|
-
0,
|
|
906
|
-
[_DS, _RC, _EC, _DU],
|
|
907
|
-
[0, 1, 1, 0], 4
|
|
908
|
-
];
|
|
909
|
-
var CalculateRouteRequest$ = [3, n0, _CRR,
|
|
910
|
-
0,
|
|
911
|
-
[_CNa, _DPep, _DPest, _WP, _TM, _DT, _DN, _DU, _ILG, _CMO, _TMO, _ATr, _OF, _K],
|
|
912
|
-
[[0, 1], [() => Position, 0], [() => Position, 0], [() => WaypointPositionList, 0], 0, [() => Timestamp, 0], [() => SensitiveBoolean, 0], 0, [() => SensitiveBoolean, 0], [() => CalculateRouteCarModeOptions$, 0], [() => CalculateRouteTruckModeOptions$, 0], [() => Timestamp, 0], 0, [() => ApiKey, { [_hQ]: _k }]], 3
|
|
913
|
-
];
|
|
914
|
-
var CalculateRouteResponse$ = [3, n0, _CRRa,
|
|
915
|
-
0,
|
|
916
|
-
[_L, _Su],
|
|
917
|
-
[[() => LegList, 0], [() => CalculateRouteSummary$, 0]], 2
|
|
918
|
-
];
|
|
919
|
-
var CalculateRouteSummary$ = [3, n0, _CRS,
|
|
920
|
-
0,
|
|
921
|
-
[_RBB, _DS, _D, _DSu, _DU],
|
|
922
|
-
[[() => BoundingBox, 0], 0, [() => SensitiveDouble, 0], [() => SensitiveDouble, 0], 0], 5
|
|
923
|
-
];
|
|
924
|
-
var CalculateRouteTruckModeOptions$ = [3, n0, _CRTMO,
|
|
925
|
-
0,
|
|
926
|
-
[_AF, _AT, _Di, _W],
|
|
927
|
-
[[() => SensitiveBoolean, 0], [() => SensitiveBoolean, 0], [() => TruckDimensions$, 0], [() => TruckWeight$, 0]]
|
|
928
|
-
];
|
|
929
|
-
var CellSignals$ = [3, n0, _CS,
|
|
930
|
-
0,
|
|
931
|
-
[_LCD],
|
|
932
|
-
[() => LteCellDetailsList], 1
|
|
933
|
-
];
|
|
934
|
-
var Circle$ = [3, n0, _Ci,
|
|
935
|
-
8,
|
|
936
|
-
[_Ce, _R],
|
|
937
|
-
[[() => Position, 0], [() => SensitiveDouble, 0]], 2
|
|
938
|
-
];
|
|
939
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
940
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
941
|
-
[_M],
|
|
942
|
-
[[0, { [_jN]: _m }]], 1
|
|
943
|
-
];
|
|
944
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
945
|
-
var CreateGeofenceCollectionRequest$ = [3, n0, _CGCR,
|
|
946
|
-
0,
|
|
947
|
-
[_CN, _PP, _PPDS, _De, _Ta, _KKI],
|
|
948
|
-
[0, 0, 0, 0, 128 | 0, 0], 1
|
|
949
|
-
];
|
|
950
|
-
var CreateGeofenceCollectionResponse$ = [3, n0, _CGCRr,
|
|
951
|
-
0,
|
|
952
|
-
[_CN, _CAo, _CT],
|
|
953
|
-
[0, 0, [() => Timestamp, 0]], 3
|
|
954
|
-
];
|
|
955
|
-
var CreateKeyRequest$ = [3, n0, _CKR,
|
|
956
|
-
0,
|
|
957
|
-
[_KN, _Re, _De, _ET, _NE, _Ta],
|
|
958
|
-
[0, [() => ApiKeyRestrictions$, 0], 0, [() => Timestamp, 0], 2, 128 | 0], 2
|
|
959
|
-
];
|
|
960
|
-
var CreateKeyResponse$ = [3, n0, _CKRr,
|
|
961
|
-
0,
|
|
962
|
-
[_K, _KA, _KN, _CT],
|
|
963
|
-
[[() => ApiKey, 0], 0, 0, [() => Timestamp, 0]], 4
|
|
964
|
-
];
|
|
965
|
-
var CreateMapRequest$ = [3, n0, _CMR,
|
|
966
|
-
0,
|
|
967
|
-
[_MN, _Co, _PP, _De, _Ta],
|
|
968
|
-
[0, [() => MapConfiguration$, 0], 0, 0, 128 | 0], 2
|
|
969
|
-
];
|
|
970
|
-
var CreateMapResponse$ = [3, n0, _CMRr,
|
|
971
|
-
0,
|
|
972
|
-
[_MN, _MA, _CT],
|
|
973
|
-
[0, 0, [() => Timestamp, 0]], 3
|
|
974
|
-
];
|
|
975
|
-
var CreatePlaceIndexRequest$ = [3, n0, _CPIR,
|
|
976
|
-
0,
|
|
977
|
-
[_IN, _DS, _PP, _De, _DSC, _Ta],
|
|
978
|
-
[0, 0, 0, 0, () => DataSourceConfiguration$, 128 | 0], 2
|
|
979
|
-
];
|
|
980
|
-
var CreatePlaceIndexResponse$ = [3, n0, _CPIRr,
|
|
981
|
-
0,
|
|
982
|
-
[_IN, _IA, _CT],
|
|
983
|
-
[0, 0, [() => Timestamp, 0]], 3
|
|
984
|
-
];
|
|
985
|
-
var CreateRouteCalculatorRequest$ = [3, n0, _CRCR,
|
|
986
|
-
0,
|
|
987
|
-
[_CNa, _DS, _PP, _De, _Ta],
|
|
988
|
-
[0, 0, 0, 0, 128 | 0], 2
|
|
989
|
-
];
|
|
990
|
-
var CreateRouteCalculatorResponse$ = [3, n0, _CRCRr,
|
|
991
|
-
0,
|
|
992
|
-
[_CNa, _CAa, _CT],
|
|
993
|
-
[0, 0, [() => Timestamp, 0]], 3
|
|
994
|
-
];
|
|
995
|
-
var CreateTrackerRequest$ = [3, n0, _CTR,
|
|
996
|
-
0,
|
|
997
|
-
[_TN, _PP, _KKI, _PPDS, _De, _Ta, _PF, _EBE, _KKEGQ],
|
|
998
|
-
[0, 0, 0, 0, 0, 128 | 0, 0, 2, 2], 1
|
|
999
|
-
];
|
|
1000
|
-
var CreateTrackerResponse$ = [3, n0, _CTRr,
|
|
1001
|
-
0,
|
|
1002
|
-
[_TN, _TA, _CT],
|
|
1003
|
-
[0, 0, [() => Timestamp, 0]], 3
|
|
1004
|
-
];
|
|
1005
|
-
var DataSourceConfiguration$ = [3, n0, _DSC,
|
|
1006
|
-
0,
|
|
1007
|
-
[_IU],
|
|
1008
|
-
[0]
|
|
1009
|
-
];
|
|
1010
|
-
var DeleteGeofenceCollectionRequest$ = [3, n0, _DGCR,
|
|
1011
|
-
0,
|
|
1012
|
-
[_CN],
|
|
1013
|
-
[[0, 1]], 1
|
|
1014
|
-
];
|
|
1015
|
-
var DeleteGeofenceCollectionResponse$ = [3, n0, _DGCRe,
|
|
1016
|
-
0,
|
|
1017
|
-
[],
|
|
1018
|
-
[]
|
|
1019
|
-
];
|
|
1020
|
-
var DeleteKeyRequest$ = [3, n0, _DKR,
|
|
1021
|
-
0,
|
|
1022
|
-
[_KN, _FD],
|
|
1023
|
-
[[0, 1], [2, { [_hQ]: _fD }]], 1
|
|
1024
|
-
];
|
|
1025
|
-
var DeleteKeyResponse$ = [3, n0, _DKRe,
|
|
1026
|
-
0,
|
|
1027
|
-
[],
|
|
1028
|
-
[]
|
|
1029
|
-
];
|
|
1030
|
-
var DeleteMapRequest$ = [3, n0, _DMR,
|
|
1031
|
-
0,
|
|
1032
|
-
[_MN],
|
|
1033
|
-
[[0, 1]], 1
|
|
1034
|
-
];
|
|
1035
|
-
var DeleteMapResponse$ = [3, n0, _DMRe,
|
|
1036
|
-
0,
|
|
1037
|
-
[],
|
|
1038
|
-
[]
|
|
1039
|
-
];
|
|
1040
|
-
var DeletePlaceIndexRequest$ = [3, n0, _DPIR,
|
|
1041
|
-
0,
|
|
1042
|
-
[_IN],
|
|
1043
|
-
[[0, 1]], 1
|
|
1044
|
-
];
|
|
1045
|
-
var DeletePlaceIndexResponse$ = [3, n0, _DPIRe,
|
|
1046
|
-
0,
|
|
1047
|
-
[],
|
|
1048
|
-
[]
|
|
1049
|
-
];
|
|
1050
|
-
var DeleteRouteCalculatorRequest$ = [3, n0, _DRCR,
|
|
1051
|
-
0,
|
|
1052
|
-
[_CNa],
|
|
1053
|
-
[[0, 1]], 1
|
|
1054
|
-
];
|
|
1055
|
-
var DeleteRouteCalculatorResponse$ = [3, n0, _DRCRe,
|
|
1056
|
-
0,
|
|
1057
|
-
[],
|
|
1058
|
-
[]
|
|
1059
|
-
];
|
|
1060
|
-
var DeleteTrackerRequest$ = [3, n0, _DTR,
|
|
1061
|
-
0,
|
|
1062
|
-
[_TN],
|
|
1063
|
-
[[0, 1]], 1
|
|
1064
|
-
];
|
|
1065
|
-
var DeleteTrackerResponse$ = [3, n0, _DTRe,
|
|
1066
|
-
0,
|
|
1067
|
-
[],
|
|
1068
|
-
[]
|
|
1069
|
-
];
|
|
1070
|
-
var DescribeGeofenceCollectionRequest$ = [3, n0, _DGCRes,
|
|
1071
|
-
0,
|
|
1072
|
-
[_CN],
|
|
1073
|
-
[[0, 1]], 1
|
|
1074
|
-
];
|
|
1075
|
-
var DescribeGeofenceCollectionResponse$ = [3, n0, _DGCResc,
|
|
1076
|
-
0,
|
|
1077
|
-
[_CN, _CAo, _De, _CT, _UT, _PP, _PPDS, _KKI, _Ta, _GC],
|
|
1078
|
-
[0, 0, 0, [() => Timestamp, 0], [() => Timestamp, 0], 0, 0, 0, 128 | 0, 1], 5
|
|
1079
|
-
];
|
|
1080
|
-
var DescribeKeyRequest$ = [3, n0, _DKRes,
|
|
1081
|
-
0,
|
|
1082
|
-
[_KN],
|
|
1083
|
-
[[0, 1]], 1
|
|
1084
|
-
];
|
|
1085
|
-
var DescribeKeyResponse$ = [3, n0, _DKResc,
|
|
1086
|
-
0,
|
|
1087
|
-
[_K, _KA, _KN, _Re, _CT, _ET, _UT, _De, _Ta],
|
|
1088
|
-
[[() => ApiKey, 0], 0, 0, [() => ApiKeyRestrictions$, 0], [() => Timestamp, 0], [() => Timestamp, 0], [() => Timestamp, 0], 0, 128 | 0], 7
|
|
1089
|
-
];
|
|
1090
|
-
var DescribeMapRequest$ = [3, n0, _DMRes,
|
|
1091
|
-
0,
|
|
1092
|
-
[_MN],
|
|
1093
|
-
[[0, 1]], 1
|
|
1094
|
-
];
|
|
1095
|
-
var DescribeMapResponse$ = [3, n0, _DMResc,
|
|
1096
|
-
0,
|
|
1097
|
-
[_MN, _MA, _DS, _Co, _De, _CT, _UT, _PP, _Ta],
|
|
1098
|
-
[0, 0, 0, [() => MapConfiguration$, 0], 0, [() => Timestamp, 0], [() => Timestamp, 0], 0, 128 | 0], 7
|
|
1099
|
-
];
|
|
1100
|
-
var DescribePlaceIndexRequest$ = [3, n0, _DPIRes,
|
|
1101
|
-
0,
|
|
1102
|
-
[_IN],
|
|
1103
|
-
[[0, 1]], 1
|
|
1104
|
-
];
|
|
1105
|
-
var DescribePlaceIndexResponse$ = [3, n0, _DPIResc,
|
|
1106
|
-
0,
|
|
1107
|
-
[_IN, _IA, _De, _CT, _UT, _DS, _DSC, _PP, _Ta],
|
|
1108
|
-
[0, 0, 0, [() => Timestamp, 0], [() => Timestamp, 0], 0, () => DataSourceConfiguration$, 0, 128 | 0], 7
|
|
1109
|
-
];
|
|
1110
|
-
var DescribeRouteCalculatorRequest$ = [3, n0, _DRCRes,
|
|
1111
|
-
0,
|
|
1112
|
-
[_CNa],
|
|
1113
|
-
[[0, 1]], 1
|
|
1114
|
-
];
|
|
1115
|
-
var DescribeRouteCalculatorResponse$ = [3, n0, _DRCResc,
|
|
1116
|
-
0,
|
|
1117
|
-
[_CNa, _CAa, _De, _CT, _UT, _DS, _PP, _Ta],
|
|
1118
|
-
[0, 0, 0, [() => Timestamp, 0], [() => Timestamp, 0], 0, 0, 128 | 0], 6
|
|
1119
|
-
];
|
|
1120
|
-
var DescribeTrackerRequest$ = [3, n0, _DTRes,
|
|
1121
|
-
0,
|
|
1122
|
-
[_TN],
|
|
1123
|
-
[[0, 1]], 1
|
|
1124
|
-
];
|
|
1125
|
-
var DescribeTrackerResponse$ = [3, n0, _DTResc,
|
|
1126
|
-
0,
|
|
1127
|
-
[_TN, _TA, _De, _CT, _UT, _PP, _PPDS, _Ta, _KKI, _PF, _EBE, _KKEGQ],
|
|
1128
|
-
[0, 0, 0, [() => Timestamp, 0], [() => Timestamp, 0], 0, 0, 128 | 0, 0, 0, 2, 2], 5
|
|
1129
|
-
];
|
|
1130
|
-
var DevicePosition$ = [3, n0, _DPev,
|
|
1131
|
-
0,
|
|
1132
|
-
[_ST, _RT, _Po, _DI, _A, _PPo],
|
|
1133
|
-
[[() => Timestamp, 0], [() => Timestamp, 0], [() => Position, 0], 0, [() => PositionalAccuracy$, 0], [() => PositionPropertyMap, 0]], 3
|
|
1134
|
-
];
|
|
1135
|
-
var DevicePositionUpdate$ = [3, n0, _DPUe,
|
|
1136
|
-
0,
|
|
1137
|
-
[_DI, _ST, _Po, _A, _PPo],
|
|
1138
|
-
[0, [() => Timestamp, 0], [() => Position, 0], [() => PositionalAccuracy$, 0], [() => PositionPropertyMap, 0]], 3
|
|
1139
|
-
];
|
|
1140
|
-
var DeviceState$ = [3, n0, _DSe,
|
|
1141
|
-
0,
|
|
1142
|
-
[_DI, _ST, _Po, _A, _IAp, _WFAP, _CS],
|
|
1143
|
-
[0, [() => Timestamp, 0], [() => Position, 0], [() => PositionalAccuracy$, 0], 0, () => WiFiAccessPointList, () => CellSignals$], 3
|
|
1144
|
-
];
|
|
1145
|
-
var DisassociateTrackerConsumerRequest$ = [3, n0, _DTCR,
|
|
1146
|
-
0,
|
|
1147
|
-
[_TN, _CA],
|
|
1148
|
-
[[0, 1], [0, 1]], 2
|
|
1149
|
-
];
|
|
1150
|
-
var DisassociateTrackerConsumerResponse$ = [3, n0, _DTCRi,
|
|
1151
|
-
0,
|
|
1152
|
-
[],
|
|
1153
|
-
[]
|
|
1154
|
-
];
|
|
1155
|
-
var ForecastedEvent$ = [3, n0, _FE,
|
|
1156
|
-
0,
|
|
1157
|
-
[_EI, _GI, _IDIG, _ND, _ETv, _FBT, _GP],
|
|
1158
|
-
[0, 0, 2, 1, 0, [() => Timestamp, 0], [() => PropertyMap, 0]], 5
|
|
1159
|
-
];
|
|
1160
|
-
var ForecastGeofenceEventsDeviceState$ = [3, n0, _FGEDS,
|
|
1161
|
-
0,
|
|
1162
|
-
[_Po, _Sp],
|
|
1163
|
-
[[() => Position, 0], 1], 1
|
|
1164
|
-
];
|
|
1165
|
-
var ForecastGeofenceEventsRequest$ = [3, n0, _FGER,
|
|
1166
|
-
0,
|
|
1167
|
-
[_CN, _DSe, _THM, _DU, _SU, _NT, _MR],
|
|
1168
|
-
[[0, 1], [() => ForecastGeofenceEventsDeviceState$, 0], 1, 0, 0, 0, 1], 2
|
|
1169
|
-
];
|
|
1170
|
-
var ForecastGeofenceEventsResponse$ = [3, n0, _FGERo,
|
|
1171
|
-
0,
|
|
1172
|
-
[_FEo, _DU, _SU, _NT],
|
|
1173
|
-
[[() => ForecastedEventsList, 0], 0, 0, 0], 3
|
|
1174
|
-
];
|
|
1175
|
-
var GeofenceGeometry$ = [3, n0, _GG,
|
|
1176
|
-
0,
|
|
1177
|
-
[_Pol, _Ci, _Ge, _MP],
|
|
1178
|
-
[[() => LinearRings, 0], [() => Circle$, 0], [() => Base64EncodedGeobuf, 0], [() => MultiLinearRings, 0]]
|
|
1179
|
-
];
|
|
1180
|
-
var GetDevicePositionHistoryRequest$ = [3, n0, _GDPHR,
|
|
1181
|
-
0,
|
|
1182
|
-
[_TN, _DI, _NT, _STI, _ETE, _MR],
|
|
1183
|
-
[[0, 1], [0, 1], 0, [() => Timestamp, 0], [() => Timestamp, 0], 1], 2
|
|
1184
|
-
];
|
|
1185
|
-
var GetDevicePositionHistoryResponse$ = [3, n0, _GDPHRe,
|
|
1186
|
-
0,
|
|
1187
|
-
[_DP, _NT],
|
|
1188
|
-
[[() => DevicePositionList, 0], 0], 1
|
|
1189
|
-
];
|
|
1190
|
-
var GetDevicePositionRequest$ = [3, n0, _GDPR,
|
|
1191
|
-
0,
|
|
1192
|
-
[_TN, _DI],
|
|
1193
|
-
[[0, 1], [0, 1]], 2
|
|
1194
|
-
];
|
|
1195
|
-
var GetDevicePositionResponse$ = [3, n0, _GDPRe,
|
|
1196
|
-
0,
|
|
1197
|
-
[_ST, _RT, _Po, _DI, _A, _PPo],
|
|
1198
|
-
[[() => Timestamp, 0], [() => Timestamp, 0], [() => Position, 0], 0, [() => PositionalAccuracy$, 0], [() => PositionPropertyMap, 0]], 3
|
|
1199
|
-
];
|
|
1200
|
-
var GetGeofenceRequest$ = [3, n0, _GGR,
|
|
1201
|
-
0,
|
|
1202
|
-
[_CN, _GI],
|
|
1203
|
-
[[0, 1], [0, 1]], 2
|
|
1204
|
-
];
|
|
1205
|
-
var GetGeofenceResponse$ = [3, n0, _GGRe,
|
|
1206
|
-
0,
|
|
1207
|
-
[_GI, _G, _St, _CT, _UT, _GP],
|
|
1208
|
-
[0, [() => GeofenceGeometry$, 0], 0, [() => Timestamp, 0], [() => Timestamp, 0], [() => PropertyMap, 0]], 5
|
|
1209
|
-
];
|
|
1210
|
-
var GetMapGlyphsRequest$ = [3, n0, _GMGR,
|
|
1211
|
-
0,
|
|
1212
|
-
[_MN, _FS, _FUR, _K],
|
|
1213
|
-
[[0, 1], [0, 1], [0, 1], [() => ApiKey, { [_hQ]: _k }]], 3
|
|
1214
|
-
];
|
|
1215
|
-
var GetMapGlyphsResponse$ = [3, n0, _GMGRe,
|
|
1216
|
-
0,
|
|
1217
|
-
[_B, _CTo, _CCa],
|
|
1218
|
-
[[21, 16], [0, { [_hH]: _CT_ }], [0, { [_hH]: _CC_ }]]
|
|
1219
|
-
];
|
|
1220
|
-
var GetMapSpritesRequest$ = [3, n0, _GMSR,
|
|
1221
|
-
0,
|
|
1222
|
-
[_MN, _FN, _K],
|
|
1223
|
-
[[0, 1], [0, 1], [() => ApiKey, { [_hQ]: _k }]], 2
|
|
1224
|
-
];
|
|
1225
|
-
var GetMapSpritesResponse$ = [3, n0, _GMSRe,
|
|
1226
|
-
0,
|
|
1227
|
-
[_B, _CTo, _CCa],
|
|
1228
|
-
[[21, 16], [0, { [_hH]: _CT_ }], [0, { [_hH]: _CC_ }]]
|
|
1229
|
-
];
|
|
1230
|
-
var GetMapStyleDescriptorRequest$ = [3, n0, _GMSDR,
|
|
1231
|
-
0,
|
|
1232
|
-
[_MN, _K],
|
|
1233
|
-
[[0, 1], [() => ApiKey, { [_hQ]: _k }]], 1
|
|
1234
|
-
];
|
|
1235
|
-
var GetMapStyleDescriptorResponse$ = [3, n0, _GMSDRe,
|
|
1236
|
-
0,
|
|
1237
|
-
[_B, _CTo, _CCa],
|
|
1238
|
-
[[21, 16], [0, { [_hH]: _CT_ }], [0, { [_hH]: _CC_ }]]
|
|
1239
|
-
];
|
|
1240
|
-
var GetMapTileRequest$ = [3, n0, _GMTR,
|
|
1241
|
-
0,
|
|
1242
|
-
[_MN, _Z, _X, _Y, _K],
|
|
1243
|
-
[[0, 1], [() => SensitiveString, 1], [() => SensitiveString, 1], [() => SensitiveString, 1], [() => ApiKey, { [_hQ]: _k }]], 4
|
|
1244
|
-
];
|
|
1245
|
-
var GetMapTileResponse$ = [3, n0, _GMTRe,
|
|
1246
|
-
0,
|
|
1247
|
-
[_B, _CTo, _CCa],
|
|
1248
|
-
[[21, 16], [0, { [_hH]: _CT_ }], [0, { [_hH]: _CC_ }]]
|
|
1249
|
-
];
|
|
1250
|
-
var GetPlaceRequest$ = [3, n0, _GPR,
|
|
1251
|
-
0,
|
|
1252
|
-
[_IN, _PI, _La, _K],
|
|
1253
|
-
[[0, 1], [() => PlaceId, 1], [0, { [_hQ]: _l }], [() => ApiKey, { [_hQ]: _k }]], 2
|
|
1254
|
-
];
|
|
1255
|
-
var GetPlaceResponse$ = [3, n0, _GPRe,
|
|
1256
|
-
0,
|
|
1257
|
-
[_Pl],
|
|
1258
|
-
[[() => Place$, 0]], 1
|
|
1259
|
-
];
|
|
1260
|
-
var InferredState$ = [3, n0, _IS,
|
|
1261
|
-
0,
|
|
1262
|
-
[_PD, _Po, _A, _DD],
|
|
1263
|
-
[2, [() => Position, 0], [() => PositionalAccuracy$, 0], 1], 1
|
|
1264
|
-
];
|
|
1265
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
1266
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1267
|
-
[_M],
|
|
1268
|
-
[[0, { [_jN]: _m }]], 1
|
|
1269
|
-
];
|
|
1270
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
1271
|
-
var Leg$ = [3, n0, _Le,
|
|
1272
|
-
0,
|
|
1273
|
-
[_SP, _EP, _D, _DSu, _Ste, _G],
|
|
1274
|
-
[[() => Position, 0], [() => Position, 0], [() => SensitiveDouble, 0], [() => SensitiveDouble, 0], [() => StepList, 0], [() => LegGeometry$, 0]], 5
|
|
1275
|
-
];
|
|
1276
|
-
var LegGeometry$ = [3, n0, _LG,
|
|
1277
|
-
0,
|
|
1278
|
-
[_LS],
|
|
1279
|
-
[[() => LineString, 0]]
|
|
1280
|
-
];
|
|
1281
|
-
var ListDevicePositionsRequest$ = [3, n0, _LDPR,
|
|
1282
|
-
0,
|
|
1283
|
-
[_TN, _MR, _NT, _FG],
|
|
1284
|
-
[[0, 1], 1, 0, [() => TrackingFilterGeometry$, 0]], 1
|
|
1285
|
-
];
|
|
1286
|
-
var ListDevicePositionsResponse$ = [3, n0, _LDPRi,
|
|
1287
|
-
0,
|
|
1288
|
-
[_En, _NT],
|
|
1289
|
-
[[() => ListDevicePositionsResponseEntryList, 0], 0], 1
|
|
1290
|
-
];
|
|
1291
|
-
var ListDevicePositionsResponseEntry$ = [3, n0, _LDPRE,
|
|
1292
|
-
0,
|
|
1293
|
-
[_DI, _ST, _Po, _A, _PPo],
|
|
1294
|
-
[0, [() => Timestamp, 0], [() => Position, 0], [() => PositionalAccuracy$, 0], [() => PositionPropertyMap, 0]], 3
|
|
1295
|
-
];
|
|
1296
|
-
var ListGeofenceCollectionsRequest$ = [3, n0, _LGCR,
|
|
1297
|
-
0,
|
|
1298
|
-
[_MR, _NT],
|
|
1299
|
-
[1, 0]
|
|
1300
|
-
];
|
|
1301
|
-
var ListGeofenceCollectionsResponse$ = [3, n0, _LGCRi,
|
|
1302
|
-
0,
|
|
1303
|
-
[_En, _NT],
|
|
1304
|
-
[[() => ListGeofenceCollectionsResponseEntryList, 0], 0], 1
|
|
1305
|
-
];
|
|
1306
|
-
var ListGeofenceCollectionsResponseEntry$ = [3, n0, _LGCRE,
|
|
1307
|
-
0,
|
|
1308
|
-
[_CN, _De, _CT, _UT, _PP, _PPDS],
|
|
1309
|
-
[0, 0, [() => Timestamp, 0], [() => Timestamp, 0], 0, 0], 4
|
|
1310
|
-
];
|
|
1311
|
-
var ListGeofenceResponseEntry$ = [3, n0, _LGRE,
|
|
1312
|
-
0,
|
|
1313
|
-
[_GI, _G, _St, _CT, _UT, _GP],
|
|
1314
|
-
[0, [() => GeofenceGeometry$, 0], 0, [() => Timestamp, 0], [() => Timestamp, 0], [() => PropertyMap, 0]], 5
|
|
1315
|
-
];
|
|
1316
|
-
var ListGeofencesRequest$ = [3, n0, _LGR,
|
|
1317
|
-
0,
|
|
1318
|
-
[_CN, _NT, _MR],
|
|
1319
|
-
[[0, 1], 0, 1], 1
|
|
1320
|
-
];
|
|
1321
|
-
var ListGeofencesResponse$ = [3, n0, _LGRi,
|
|
1322
|
-
0,
|
|
1323
|
-
[_En, _NT],
|
|
1324
|
-
[[() => ListGeofenceResponseEntryList, 0], 0], 1
|
|
1325
|
-
];
|
|
1326
|
-
var ListKeysRequest$ = [3, n0, _LKR,
|
|
1327
|
-
0,
|
|
1328
|
-
[_MR, _NT, _F],
|
|
1329
|
-
[1, 0, () => ApiKeyFilter$]
|
|
1330
|
-
];
|
|
1331
|
-
var ListKeysResponse$ = [3, n0, _LKRi,
|
|
1332
|
-
0,
|
|
1333
|
-
[_En, _NT],
|
|
1334
|
-
[[() => ListKeysResponseEntryList, 0], 0], 1
|
|
1335
|
-
];
|
|
1336
|
-
var ListKeysResponseEntry$ = [3, n0, _LKRE,
|
|
1337
|
-
0,
|
|
1338
|
-
[_KN, _ET, _Re, _CT, _UT, _De],
|
|
1339
|
-
[0, [() => Timestamp, 0], [() => ApiKeyRestrictions$, 0], [() => Timestamp, 0], [() => Timestamp, 0], 0], 5
|
|
1340
|
-
];
|
|
1341
|
-
var ListMapsRequest$ = [3, n0, _LMR,
|
|
1342
|
-
0,
|
|
1343
|
-
[_MR, _NT],
|
|
1344
|
-
[1, 0]
|
|
1345
|
-
];
|
|
1346
|
-
var ListMapsResponse$ = [3, n0, _LMRi,
|
|
1347
|
-
0,
|
|
1348
|
-
[_En, _NT],
|
|
1349
|
-
[[() => ListMapsResponseEntryList, 0], 0], 1
|
|
1350
|
-
];
|
|
1351
|
-
var ListMapsResponseEntry$ = [3, n0, _LMRE,
|
|
1352
|
-
0,
|
|
1353
|
-
[_MN, _De, _DS, _CT, _UT, _PP],
|
|
1354
|
-
[0, 0, 0, [() => Timestamp, 0], [() => Timestamp, 0], 0], 5
|
|
1355
|
-
];
|
|
1356
|
-
var ListPlaceIndexesRequest$ = [3, n0, _LPIR,
|
|
1357
|
-
0,
|
|
1358
|
-
[_MR, _NT],
|
|
1359
|
-
[1, 0]
|
|
1360
|
-
];
|
|
1361
|
-
var ListPlaceIndexesResponse$ = [3, n0, _LPIRi,
|
|
1362
|
-
0,
|
|
1363
|
-
[_En, _NT],
|
|
1364
|
-
[[() => ListPlaceIndexesResponseEntryList, 0], 0], 1
|
|
1365
|
-
];
|
|
1366
|
-
var ListPlaceIndexesResponseEntry$ = [3, n0, _LPIRE,
|
|
1367
|
-
0,
|
|
1368
|
-
[_IN, _De, _DS, _CT, _UT, _PP],
|
|
1369
|
-
[0, 0, 0, [() => Timestamp, 0], [() => Timestamp, 0], 0], 5
|
|
1370
|
-
];
|
|
1371
|
-
var ListRouteCalculatorsRequest$ = [3, n0, _LRCR,
|
|
1372
|
-
0,
|
|
1373
|
-
[_MR, _NT],
|
|
1374
|
-
[1, 0]
|
|
1375
|
-
];
|
|
1376
|
-
var ListRouteCalculatorsResponse$ = [3, n0, _LRCRi,
|
|
1377
|
-
0,
|
|
1378
|
-
[_En, _NT],
|
|
1379
|
-
[[() => ListRouteCalculatorsResponseEntryList, 0], 0], 1
|
|
1380
|
-
];
|
|
1381
|
-
var ListRouteCalculatorsResponseEntry$ = [3, n0, _LRCRE,
|
|
1382
|
-
0,
|
|
1383
|
-
[_CNa, _De, _DS, _CT, _UT, _PP],
|
|
1384
|
-
[0, 0, 0, [() => Timestamp, 0], [() => Timestamp, 0], 0], 5
|
|
1385
|
-
];
|
|
1386
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1387
|
-
0,
|
|
1388
|
-
[_RA],
|
|
1389
|
-
[[0, 1]], 1
|
|
1390
|
-
];
|
|
1391
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1392
|
-
0,
|
|
1393
|
-
[_Ta],
|
|
1394
|
-
[128 | 0]
|
|
1395
|
-
];
|
|
1396
|
-
var ListTrackerConsumersRequest$ = [3, n0, _LTCR,
|
|
1397
|
-
0,
|
|
1398
|
-
[_TN, _MR, _NT],
|
|
1399
|
-
[[0, 1], 1, 0], 1
|
|
1400
|
-
];
|
|
1401
|
-
var ListTrackerConsumersResponse$ = [3, n0, _LTCRi,
|
|
1402
|
-
0,
|
|
1403
|
-
[_CAon, _NT],
|
|
1404
|
-
[64 | 0, 0], 1
|
|
1405
|
-
];
|
|
1406
|
-
var ListTrackersRequest$ = [3, n0, _LTR,
|
|
1407
|
-
0,
|
|
1408
|
-
[_MR, _NT],
|
|
1409
|
-
[1, 0]
|
|
1410
|
-
];
|
|
1411
|
-
var ListTrackersResponse$ = [3, n0, _LTRi,
|
|
1412
|
-
0,
|
|
1413
|
-
[_En, _NT],
|
|
1414
|
-
[[() => ListTrackersResponseEntryList, 0], 0], 1
|
|
1415
|
-
];
|
|
1416
|
-
var ListTrackersResponseEntry$ = [3, n0, _LTRE,
|
|
1417
|
-
0,
|
|
1418
|
-
[_TN, _De, _CT, _UT, _PP, _PPDS],
|
|
1419
|
-
[0, 0, [() => Timestamp, 0], [() => Timestamp, 0], 0, 0], 4
|
|
1420
|
-
];
|
|
1421
|
-
var LteCellDetails$ = [3, n0, _LCD,
|
|
1422
|
-
0,
|
|
1423
|
-
[_CI, _Mc, _Mn, _LI, _NM, _TAi, _NC, _Rs, _Rsr, _Tac],
|
|
1424
|
-
[1, 1, 1, () => LteLocalId$, () => LteNetworkMeasurementsList, 1, 2, 1, 1, 1], 3
|
|
1425
|
-
];
|
|
1426
|
-
var LteLocalId$ = [3, n0, _LLI,
|
|
1427
|
-
0,
|
|
1428
|
-
[_Ea, _Pc],
|
|
1429
|
-
[1, 1], 2
|
|
1430
|
-
];
|
|
1431
|
-
var LteNetworkMeasurements$ = [3, n0, _LNM,
|
|
1432
|
-
0,
|
|
1433
|
-
[_Ea, _CI, _Pc, _Rs, _Rsr],
|
|
1434
|
-
[1, 1, 1, 1, 1], 3
|
|
1435
|
-
];
|
|
1436
|
-
var MapConfiguration$ = [3, n0, _MC,
|
|
1437
|
-
0,
|
|
1438
|
-
[_Sty, _PV, _CL],
|
|
1439
|
-
[0, [() => CountryCode3, 0], 64 | 0], 1
|
|
1440
|
-
];
|
|
1441
|
-
var MapConfigurationUpdate$ = [3, n0, _MCU,
|
|
1442
|
-
0,
|
|
1443
|
-
[_PV, _CL],
|
|
1444
|
-
[[() => CountryCode3OrEmpty, 0], 64 | 0]
|
|
1445
|
-
];
|
|
1446
|
-
var Place$ = [3, n0, _Pl,
|
|
1447
|
-
0,
|
|
1448
|
-
[_G, _Lab, _AN, _Str, _N, _Mu, _SR, _Reg, _Cou, _PCo, _I, _TZ, _UTn, _UN, _Ca, _SC, _SM],
|
|
1449
|
-
[[() => PlaceGeometry$, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => SensitiveBoolean, 0], [() => TimeZone$, 0], [() => SensitiveString, 0], [() => SensitiveString, 0], [() => PlaceCategoryList, 0], [() => PlaceSupplementalCategoryList, 0], [() => SensitiveString, 0]], 1
|
|
1450
|
-
];
|
|
1451
|
-
var PlaceGeometry$ = [3, n0, _PG,
|
|
1452
|
-
0,
|
|
1453
|
-
[_Poi],
|
|
1454
|
-
[[() => Position, 0]]
|
|
1455
|
-
];
|
|
1456
|
-
var PositionalAccuracy$ = [3, n0, _PA,
|
|
1457
|
-
0,
|
|
1458
|
-
[_H],
|
|
1459
|
-
[[() => SensitiveDouble, 0]], 1
|
|
1460
|
-
];
|
|
1461
|
-
var PutGeofenceRequest$ = [3, n0, _PGR,
|
|
1462
|
-
0,
|
|
1463
|
-
[_CN, _GI, _G, _GP],
|
|
1464
|
-
[[0, 1], [0, 1], [() => GeofenceGeometry$, 0], [() => PropertyMap, 0]], 3
|
|
1465
|
-
];
|
|
1466
|
-
var PutGeofenceResponse$ = [3, n0, _PGRu,
|
|
1467
|
-
0,
|
|
1468
|
-
[_GI, _CT, _UT],
|
|
1469
|
-
[0, [() => Timestamp, 0], [() => Timestamp, 0]], 3
|
|
1470
|
-
];
|
|
1471
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1472
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1473
|
-
[_M],
|
|
1474
|
-
[[0, { [_jN]: _m }]], 1
|
|
1475
|
-
];
|
|
1476
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1477
|
-
var RouteMatrixEntry$ = [3, n0, _RME,
|
|
1478
|
-
0,
|
|
1479
|
-
[_D, _DSu, _E],
|
|
1480
|
-
[[() => SensitiveDouble, 0], [() => SensitiveDouble, 0], () => RouteMatrixEntryError$]
|
|
1481
|
-
];
|
|
1482
|
-
var RouteMatrixEntryError$ = [3, n0, _RMEE,
|
|
1483
|
-
0,
|
|
1484
|
-
[_C, _M],
|
|
1485
|
-
[0, 0], 1
|
|
1486
|
-
];
|
|
1487
|
-
var SearchForPositionResult$ = [3, n0, _SFPR,
|
|
1488
|
-
0,
|
|
1489
|
-
[_Pl, _D, _PI],
|
|
1490
|
-
[[() => Place$, 0], [() => SensitiveDouble, 0], [() => PlaceId, 0]], 2
|
|
1491
|
-
];
|
|
1492
|
-
var SearchForSuggestionsResult$ = [3, n0, _SFSR,
|
|
1493
|
-
0,
|
|
1494
|
-
[_Te, _PI, _Ca, _SC],
|
|
1495
|
-
[[() => SensitiveString, 0], [() => PlaceId, 0], [() => PlaceCategoryList, 0], [() => PlaceSupplementalCategoryList, 0]], 1
|
|
1496
|
-
];
|
|
1497
|
-
var SearchForTextResult$ = [3, n0, _SFTR,
|
|
1498
|
-
0,
|
|
1499
|
-
[_Pl, _D, _Rel, _PI],
|
|
1500
|
-
[[() => Place$, 0], [() => SensitiveDouble, 0], [() => SensitiveDouble, 0], [() => PlaceId, 0]], 1
|
|
1501
|
-
];
|
|
1502
|
-
var SearchPlaceIndexForPositionRequest$ = [3, n0, _SPIFPR,
|
|
1503
|
-
0,
|
|
1504
|
-
[_IN, _Po, _MR, _La, _K],
|
|
1505
|
-
[[0, 1], [() => Position, 0], 1, 0, [() => ApiKey, { [_hQ]: _k }]], 2
|
|
1506
|
-
];
|
|
1507
|
-
var SearchPlaceIndexForPositionResponse$ = [3, n0, _SPIFPRe,
|
|
1508
|
-
0,
|
|
1509
|
-
[_Su, _Res],
|
|
1510
|
-
[[() => SearchPlaceIndexForPositionSummary$, 0], [() => SearchForPositionResultList, 0]], 2
|
|
1511
|
-
];
|
|
1512
|
-
var SearchPlaceIndexForPositionSummary$ = [3, n0, _SPIFPS,
|
|
1513
|
-
0,
|
|
1514
|
-
[_Po, _DS, _MR, _La],
|
|
1515
|
-
[[() => Position, 0], 0, 1, 0], 2
|
|
1516
|
-
];
|
|
1517
|
-
var SearchPlaceIndexForSuggestionsRequest$ = [3, n0, _SPIFSR,
|
|
1518
|
-
0,
|
|
1519
|
-
[_IN, _Te, _BP, _FBB, _FC, _MR, _La, _FCi, _K],
|
|
1520
|
-
[[0, 1], [() => SensitiveString, 0], [() => Position, 0], [() => BoundingBox, 0], [() => CountryCodeList, 0], 1, 0, [() => FilterPlaceCategoryList, 0], [() => ApiKey, { [_hQ]: _k }]], 2
|
|
1521
|
-
];
|
|
1522
|
-
var SearchPlaceIndexForSuggestionsResponse$ = [3, n0, _SPIFSRe,
|
|
1523
|
-
0,
|
|
1524
|
-
[_Su, _Res],
|
|
1525
|
-
[[() => SearchPlaceIndexForSuggestionsSummary$, 0], [() => SearchForSuggestionsResultList, 0]], 2
|
|
1526
|
-
];
|
|
1527
|
-
var SearchPlaceIndexForSuggestionsSummary$ = [3, n0, _SPIFSS,
|
|
1528
|
-
0,
|
|
1529
|
-
[_Te, _DS, _BP, _FBB, _FC, _MR, _La, _FCi],
|
|
1530
|
-
[[() => SensitiveString, 0], 0, [() => Position, 0], [() => BoundingBox, 0], [() => CountryCodeList, 0], 1, 0, [() => FilterPlaceCategoryList, 0]], 2
|
|
1531
|
-
];
|
|
1532
|
-
var SearchPlaceIndexForTextRequest$ = [3, n0, _SPIFTR,
|
|
1533
|
-
0,
|
|
1534
|
-
[_IN, _Te, _BP, _FBB, _FC, _MR, _La, _FCi, _K],
|
|
1535
|
-
[[0, 1], [() => SensitiveString, 0], [() => Position, 0], [() => BoundingBox, 0], [() => CountryCodeList, 0], 1, 0, [() => FilterPlaceCategoryList, 0], [() => ApiKey, { [_hQ]: _k }]], 2
|
|
1536
|
-
];
|
|
1537
|
-
var SearchPlaceIndexForTextResponse$ = [3, n0, _SPIFTRe,
|
|
1538
|
-
0,
|
|
1539
|
-
[_Su, _Res],
|
|
1540
|
-
[[() => SearchPlaceIndexForTextSummary$, 0], [() => SearchForTextResultList, 0]], 2
|
|
1541
|
-
];
|
|
1542
|
-
var SearchPlaceIndexForTextSummary$ = [3, n0, _SPIFTS,
|
|
1543
|
-
0,
|
|
1544
|
-
[_Te, _DS, _BP, _FBB, _FC, _MR, _RBBe, _La, _FCi],
|
|
1545
|
-
[[() => SensitiveString, 0], 0, [() => Position, 0], [() => BoundingBox, 0], [() => CountryCodeList, 0], 1, [() => BoundingBox, 0], 0, [() => FilterPlaceCategoryList, 0]], 2
|
|
1546
|
-
];
|
|
1547
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1548
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1549
|
-
[_M],
|
|
1550
|
-
[[0, { [_jN]: _m }]], 1
|
|
1551
|
-
];
|
|
1552
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1553
|
-
var Step$ = [3, n0, _Step,
|
|
1554
|
-
0,
|
|
1555
|
-
[_SP, _EP, _D, _DSu, _GO],
|
|
1556
|
-
[[() => Position, 0], [() => Position, 0], [() => SensitiveDouble, 0], [() => SensitiveDouble, 0], 1], 4
|
|
1557
|
-
];
|
|
1558
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1559
|
-
0,
|
|
1560
|
-
[_RA, _Ta],
|
|
1561
|
-
[[0, 1], 128 | 0], 2
|
|
1562
|
-
];
|
|
1563
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1564
|
-
0,
|
|
1565
|
-
[],
|
|
1566
|
-
[]
|
|
1567
|
-
];
|
|
1568
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1569
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1570
|
-
[_M],
|
|
1571
|
-
[[0, { [_jN]: _m }]], 1
|
|
1572
|
-
];
|
|
1573
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1574
|
-
var TimeZone$ = [3, n0, _TZ,
|
|
1575
|
-
0,
|
|
1576
|
-
[_Na, _O],
|
|
1577
|
-
[[() => SensitiveString, 0], [() => SensitiveInteger, 0]], 1
|
|
1578
|
-
];
|
|
1579
|
-
var TrackingFilterGeometry$ = [3, n0, _TFG,
|
|
1580
|
-
0,
|
|
1581
|
-
[_Pol],
|
|
1582
|
-
[[() => LinearRings, 0]]
|
|
1583
|
-
];
|
|
1584
|
-
var TruckDimensions$ = [3, n0, _TD,
|
|
1585
|
-
0,
|
|
1586
|
-
[_Len, _He, _Wi, _Un],
|
|
1587
|
-
[[() => SensitiveDouble, 0], [() => SensitiveDouble, 0], [() => SensitiveDouble, 0], 0]
|
|
1588
|
-
];
|
|
1589
|
-
var TruckWeight$ = [3, n0, _TW,
|
|
1590
|
-
0,
|
|
1591
|
-
[_To, _Un],
|
|
1592
|
-
[[() => SensitiveDouble, 0], 0]
|
|
1593
|
-
];
|
|
1594
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1595
|
-
0,
|
|
1596
|
-
[_RA, _TK],
|
|
1597
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1598
|
-
];
|
|
1599
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1600
|
-
0,
|
|
1601
|
-
[],
|
|
1602
|
-
[]
|
|
1603
|
-
];
|
|
1604
|
-
var UpdateGeofenceCollectionRequest$ = [3, n0, _UGCR,
|
|
1605
|
-
0,
|
|
1606
|
-
[_CN, _PP, _PPDS, _De],
|
|
1607
|
-
[[0, 1], 0, 0, 0], 1
|
|
1608
|
-
];
|
|
1609
|
-
var UpdateGeofenceCollectionResponse$ = [3, n0, _UGCRp,
|
|
1610
|
-
0,
|
|
1611
|
-
[_CN, _CAo, _UT],
|
|
1612
|
-
[0, 0, [() => Timestamp, 0]], 3
|
|
1613
|
-
];
|
|
1614
|
-
var UpdateKeyRequest$ = [3, n0, _UKR,
|
|
1615
|
-
0,
|
|
1616
|
-
[_KN, _De, _ET, _NE, _FU, _Re],
|
|
1617
|
-
[[0, 1], 0, [() => Timestamp, 0], 2, 2, [() => ApiKeyRestrictions$, 0]], 1
|
|
1618
|
-
];
|
|
1619
|
-
var UpdateKeyResponse$ = [3, n0, _UKRp,
|
|
1620
|
-
0,
|
|
1621
|
-
[_KA, _KN, _UT],
|
|
1622
|
-
[0, 0, [() => Timestamp, 0]], 3
|
|
1623
|
-
];
|
|
1624
|
-
var UpdateMapRequest$ = [3, n0, _UMR,
|
|
1625
|
-
0,
|
|
1626
|
-
[_MN, _PP, _De, _CU],
|
|
1627
|
-
[[0, 1], 0, 0, [() => MapConfigurationUpdate$, 0]], 1
|
|
1628
|
-
];
|
|
1629
|
-
var UpdateMapResponse$ = [3, n0, _UMRp,
|
|
1630
|
-
0,
|
|
1631
|
-
[_MN, _MA, _UT],
|
|
1632
|
-
[0, 0, [() => Timestamp, 0]], 3
|
|
1633
|
-
];
|
|
1634
|
-
var UpdatePlaceIndexRequest$ = [3, n0, _UPIR,
|
|
1635
|
-
0,
|
|
1636
|
-
[_IN, _PP, _De, _DSC],
|
|
1637
|
-
[[0, 1], 0, 0, () => DataSourceConfiguration$], 1
|
|
1638
|
-
];
|
|
1639
|
-
var UpdatePlaceIndexResponse$ = [3, n0, _UPIRp,
|
|
1640
|
-
0,
|
|
1641
|
-
[_IN, _IA, _UT],
|
|
1642
|
-
[0, 0, [() => Timestamp, 0]], 3
|
|
1643
|
-
];
|
|
1644
|
-
var UpdateRouteCalculatorRequest$ = [3, n0, _URCR,
|
|
1645
|
-
0,
|
|
1646
|
-
[_CNa, _PP, _De],
|
|
1647
|
-
[[0, 1], 0, 0], 1
|
|
1648
|
-
];
|
|
1649
|
-
var UpdateRouteCalculatorResponse$ = [3, n0, _URCRp,
|
|
1650
|
-
0,
|
|
1651
|
-
[_CNa, _CAa, _UT],
|
|
1652
|
-
[0, 0, [() => Timestamp, 0]], 3
|
|
1653
|
-
];
|
|
1654
|
-
var UpdateTrackerRequest$ = [3, n0, _UTR,
|
|
1655
|
-
0,
|
|
1656
|
-
[_TN, _PP, _PPDS, _De, _PF, _EBE, _KKEGQ],
|
|
1657
|
-
[[0, 1], 0, 0, 0, 0, 2, 2], 1
|
|
1658
|
-
];
|
|
1659
|
-
var UpdateTrackerResponse$ = [3, n0, _UTRp,
|
|
1660
|
-
0,
|
|
1661
|
-
[_TN, _TA, _UT],
|
|
1662
|
-
[0, 0, [() => Timestamp, 0]], 3
|
|
1663
|
-
];
|
|
1664
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1665
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1666
|
-
[_M, _Rea, _FL],
|
|
1667
|
-
[[0, { [_jN]: _m }], [0, { [_jN]: _r }], [() => ValidationExceptionFieldList, { [_jN]: _fL }]], 3
|
|
1668
|
-
];
|
|
1669
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1670
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1671
|
-
0,
|
|
1672
|
-
[_Na, _M],
|
|
1673
|
-
[[0, { [_jN]: _n }], [0, { [_jN]: _m }]], 2
|
|
1674
|
-
];
|
|
1675
|
-
var VerifyDevicePositionRequest$ = [3, n0, _VDPR,
|
|
1676
|
-
0,
|
|
1677
|
-
[_TN, _DSe, _DU],
|
|
1678
|
-
[[0, 1], [() => DeviceState$, 0], 0], 2
|
|
1679
|
-
];
|
|
1680
|
-
var VerifyDevicePositionResponse$ = [3, n0, _VDPRe,
|
|
1681
|
-
0,
|
|
1682
|
-
[_IS, _DI, _ST, _RT, _DU],
|
|
1683
|
-
[[() => InferredState$, 0], 0, [() => Timestamp, 0], [() => Timestamp, 0], 0], 5
|
|
1684
|
-
];
|
|
1685
|
-
var WiFiAccessPoint$ = [3, n0, _WFAPi,
|
|
1686
|
-
0,
|
|
1687
|
-
[_MAa, _Rss],
|
|
1688
|
-
[0, 1], 2
|
|
1689
|
-
];
|
|
1690
|
-
var LocationServiceException$ = [-3, _sm, "LocationServiceException", 0, [], []];
|
|
1691
|
-
schema.TypeRegistry.for(_sm).registerError(LocationServiceException$, LocationServiceException);
|
|
1692
|
-
var AndroidAppList = [1, n0, _AAL,
|
|
1693
|
-
0, () => AndroidApp$
|
|
1694
|
-
];
|
|
1695
|
-
var AppleAppList = [1, n0, _AALp,
|
|
1696
|
-
0, () => AppleApp$
|
|
1697
|
-
];
|
|
1698
|
-
var BatchDeleteDevicePositionHistoryErrorList = [1, n0, _BDDPHEL,
|
|
1699
|
-
0, () => BatchDeleteDevicePositionHistoryError$
|
|
1700
|
-
];
|
|
1701
|
-
var BatchDeleteGeofenceErrorList = [1, n0, _BDGEL,
|
|
1702
|
-
0, () => BatchDeleteGeofenceError$
|
|
1703
|
-
];
|
|
1704
|
-
var BatchEvaluateGeofencesErrorList = [1, n0, _BEGEL,
|
|
1705
|
-
0, [() => BatchEvaluateGeofencesError$,
|
|
1706
|
-
0]
|
|
1707
|
-
];
|
|
1708
|
-
var BatchGetDevicePositionErrorList = [1, n0, _BGDPEL,
|
|
1709
|
-
0, () => BatchGetDevicePositionError$
|
|
1710
|
-
];
|
|
1711
|
-
var BatchPutGeofenceErrorList = [1, n0, _BPGEL,
|
|
1712
|
-
0, () => BatchPutGeofenceError$
|
|
1713
|
-
];
|
|
1714
|
-
var BatchPutGeofenceRequestEntryList = [1, n0, _BPGREL,
|
|
1715
|
-
0, [() => BatchPutGeofenceRequestEntry$,
|
|
1716
|
-
0]
|
|
1717
|
-
];
|
|
1718
|
-
var BatchPutGeofenceSuccessList = [1, n0, _BPGSL,
|
|
1719
|
-
0, [() => BatchPutGeofenceSuccess$,
|
|
1720
|
-
0]
|
|
1721
|
-
];
|
|
1722
|
-
var BatchUpdateDevicePositionErrorList = [1, n0, _BUDPEL,
|
|
1723
|
-
0, [() => BatchUpdateDevicePositionError$,
|
|
1724
|
-
0]
|
|
1725
|
-
];
|
|
1726
|
-
var BoundingBox = [1, n0, _BB,
|
|
1727
|
-
8, 1
|
|
1728
|
-
];
|
|
1729
|
-
var CountryCodeList = [1, n0, _CCL,
|
|
1730
|
-
0, [() => CountryCode3,
|
|
1731
|
-
0]
|
|
1732
|
-
];
|
|
1733
|
-
var DevicePositionList = [1, n0, _DPL,
|
|
1734
|
-
0, [() => DevicePosition$,
|
|
1735
|
-
0]
|
|
1736
|
-
];
|
|
1737
|
-
var DevicePositionUpdateList = [1, n0, _DPUL,
|
|
1738
|
-
0, [() => DevicePositionUpdate$,
|
|
1739
|
-
0]
|
|
1740
|
-
];
|
|
1741
|
-
var FilterPlaceCategoryList = [1, n0, _FPCL,
|
|
1742
|
-
0, [() => PlaceCategory,
|
|
1743
|
-
0]
|
|
1744
|
-
];
|
|
1745
|
-
var ForecastedEventsList = [1, n0, _FEL,
|
|
1746
|
-
0, [() => ForecastedEvent$,
|
|
1747
|
-
0]
|
|
1748
|
-
];
|
|
1749
|
-
var LegList = [1, n0, _LL,
|
|
1750
|
-
0, [() => Leg$,
|
|
1751
|
-
0]
|
|
1752
|
-
];
|
|
1753
|
-
var LinearRing = [1, n0, _LR,
|
|
1754
|
-
0, [() => Position,
|
|
1755
|
-
0]
|
|
1756
|
-
];
|
|
1757
|
-
var LinearRings = [1, n0, _LRi,
|
|
1758
|
-
0, [() => LinearRing,
|
|
1759
|
-
0]
|
|
1760
|
-
];
|
|
1761
|
-
var LineString = [1, n0, _LS,
|
|
1762
|
-
0, [() => Position,
|
|
1763
|
-
0]
|
|
1764
|
-
];
|
|
1765
|
-
var ListDevicePositionsResponseEntryList = [1, n0, _LDPREL,
|
|
1766
|
-
0, [() => ListDevicePositionsResponseEntry$,
|
|
1767
|
-
0]
|
|
1768
|
-
];
|
|
1769
|
-
var ListGeofenceCollectionsResponseEntryList = [1, n0, _LGCREL,
|
|
1770
|
-
0, [() => ListGeofenceCollectionsResponseEntry$,
|
|
1771
|
-
0]
|
|
1772
|
-
];
|
|
1773
|
-
var ListGeofenceResponseEntryList = [1, n0, _LGREL,
|
|
1774
|
-
0, [() => ListGeofenceResponseEntry$,
|
|
1775
|
-
0]
|
|
1776
|
-
];
|
|
1777
|
-
var ListKeysResponseEntryList = [1, n0, _LKREL,
|
|
1778
|
-
0, [() => ListKeysResponseEntry$,
|
|
1779
|
-
0]
|
|
1780
|
-
];
|
|
1781
|
-
var ListMapsResponseEntryList = [1, n0, _LMREL,
|
|
1782
|
-
0, [() => ListMapsResponseEntry$,
|
|
1783
|
-
0]
|
|
1784
|
-
];
|
|
1785
|
-
var ListPlaceIndexesResponseEntryList = [1, n0, _LPIREL,
|
|
1786
|
-
0, [() => ListPlaceIndexesResponseEntry$,
|
|
1787
|
-
0]
|
|
1788
|
-
];
|
|
1789
|
-
var ListRouteCalculatorsResponseEntryList = [1, n0, _LRCREL,
|
|
1790
|
-
0, [() => ListRouteCalculatorsResponseEntry$,
|
|
1791
|
-
0]
|
|
1792
|
-
];
|
|
1793
|
-
var ListTrackersResponseEntryList = [1, n0, _LTREL,
|
|
1794
|
-
0, [() => ListTrackersResponseEntry$,
|
|
1795
|
-
0]
|
|
1796
|
-
];
|
|
1797
|
-
var LteCellDetailsList = [1, n0, _LCDL,
|
|
1798
|
-
0, () => LteCellDetails$
|
|
1799
|
-
];
|
|
1800
|
-
var LteNetworkMeasurementsList = [1, n0, _LNML,
|
|
1801
|
-
0, () => LteNetworkMeasurements$
|
|
1802
|
-
];
|
|
1803
|
-
var MultiLinearRings = [1, n0, _MLR,
|
|
1804
|
-
0, [() => LinearRings,
|
|
1805
|
-
0]
|
|
1806
|
-
];
|
|
1807
|
-
var PlaceCategoryList = [1, n0, _PCL,
|
|
1808
|
-
0, [() => PlaceCategory,
|
|
1809
|
-
0]
|
|
1810
|
-
];
|
|
1811
|
-
var PlaceSupplementalCategoryList = [1, n0, _PSCL,
|
|
1812
|
-
0, [() => PlaceSupplementalCategory,
|
|
1813
|
-
0]
|
|
1814
|
-
];
|
|
1815
|
-
var Position = [1, n0, _Po,
|
|
1816
|
-
8, 1
|
|
1817
|
-
];
|
|
1818
|
-
var PositionList = [1, n0, _PL,
|
|
1819
|
-
0, [() => Position,
|
|
1820
|
-
0]
|
|
1821
|
-
];
|
|
1822
|
-
var RefererPatternList = [1, n0, _RPL,
|
|
1823
|
-
0, [() => RefererPattern,
|
|
1824
|
-
0]
|
|
1825
|
-
];
|
|
1826
|
-
var RouteMatrix = [1, n0, _RM,
|
|
1827
|
-
0, [() => RouteMatrixRow,
|
|
1828
|
-
0]
|
|
1829
|
-
];
|
|
1830
|
-
var RouteMatrixRow = [1, n0, _RMR,
|
|
1831
|
-
0, [() => RouteMatrixEntry$,
|
|
1832
|
-
0]
|
|
1833
|
-
];
|
|
1834
|
-
var SearchForPositionResultList = [1, n0, _SFPRL,
|
|
1835
|
-
0, [() => SearchForPositionResult$,
|
|
1836
|
-
0]
|
|
1837
|
-
];
|
|
1838
|
-
var SearchForSuggestionsResultList = [1, n0, _SFSRL,
|
|
1839
|
-
0, [() => SearchForSuggestionsResult$,
|
|
1840
|
-
0]
|
|
1841
|
-
];
|
|
1842
|
-
var SearchForTextResultList = [1, n0, _SFTRL,
|
|
1843
|
-
0, [() => SearchForTextResult$,
|
|
1844
|
-
0]
|
|
1845
|
-
];
|
|
1846
|
-
var StepList = [1, n0, _SL,
|
|
1847
|
-
0, [() => Step$,
|
|
1848
|
-
0]
|
|
1849
|
-
];
|
|
1850
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1851
|
-
0, [() => ValidationExceptionField$,
|
|
1852
|
-
0]
|
|
1853
|
-
];
|
|
1854
|
-
var WaypointPositionList = [1, n0, _WPL,
|
|
1855
|
-
0, [() => Position,
|
|
1856
|
-
0]
|
|
1857
|
-
];
|
|
1858
|
-
var WiFiAccessPointList = [1, n0, _WFAPL,
|
|
1859
|
-
0, () => WiFiAccessPoint$
|
|
1860
|
-
];
|
|
1861
|
-
var PositionPropertyMap = [2, n0, _PPM,
|
|
1862
|
-
8, 0, 0
|
|
1863
|
-
];
|
|
1864
|
-
var PropertyMap = [2, n0, _PM,
|
|
1865
|
-
8, 0, 0
|
|
1866
|
-
];
|
|
1867
|
-
var AssociateTrackerConsumer$ = [9, n0, _ATC,
|
|
1868
|
-
{ [_en]: ["cp.tracking."], [_h]: ["POST", "/tracking/v0/trackers/{TrackerName}/consumers", 200] }, () => AssociateTrackerConsumerRequest$, () => AssociateTrackerConsumerResponse$
|
|
1869
|
-
];
|
|
1870
|
-
var BatchDeleteDevicePositionHistory$ = [9, n0, _BDDPH,
|
|
1871
|
-
{ [_en]: ["tracking."], [_h]: ["POST", "/tracking/v0/trackers/{TrackerName}/delete-positions", 200] }, () => BatchDeleteDevicePositionHistoryRequest$, () => BatchDeleteDevicePositionHistoryResponse$
|
|
1872
|
-
];
|
|
1873
|
-
var BatchDeleteGeofence$ = [9, n0, _BDG,
|
|
1874
|
-
{ [_en]: ["geofencing."], [_h]: ["POST", "/geofencing/v0/collections/{CollectionName}/delete-geofences", 200] }, () => BatchDeleteGeofenceRequest$, () => BatchDeleteGeofenceResponse$
|
|
1875
|
-
];
|
|
1876
|
-
var BatchEvaluateGeofences$ = [9, n0, _BEGa,
|
|
1877
|
-
{ [_en]: ["geofencing."], [_h]: ["POST", "/geofencing/v0/collections/{CollectionName}/positions", 200] }, () => BatchEvaluateGeofencesRequest$, () => BatchEvaluateGeofencesResponse$
|
|
1878
|
-
];
|
|
1879
|
-
var BatchGetDevicePosition$ = [9, n0, _BGDP,
|
|
1880
|
-
{ [_en]: ["tracking."], [_h]: ["POST", "/tracking/v0/trackers/{TrackerName}/get-positions", 200] }, () => BatchGetDevicePositionRequest$, () => BatchGetDevicePositionResponse$
|
|
1881
|
-
];
|
|
1882
|
-
var BatchPutGeofence$ = [9, n0, _BPG,
|
|
1883
|
-
{ [_en]: ["geofencing."], [_h]: ["POST", "/geofencing/v0/collections/{CollectionName}/put-geofences", 200] }, () => BatchPutGeofenceRequest$, () => BatchPutGeofenceResponse$
|
|
1884
|
-
];
|
|
1885
|
-
var BatchUpdateDevicePosition$ = [9, n0, _BUDP,
|
|
1886
|
-
{ [_en]: ["tracking."], [_h]: ["POST", "/tracking/v0/trackers/{TrackerName}/positions", 200] }, () => BatchUpdateDevicePositionRequest$, () => BatchUpdateDevicePositionResponse$
|
|
1887
|
-
];
|
|
1888
|
-
var CalculateRoute$ = [9, n0, _CR,
|
|
1889
|
-
{ [_en]: ["routes."], [_h]: ["POST", "/routes/v0/calculators/{CalculatorName}/calculate/route", 200] }, () => CalculateRouteRequest$, () => CalculateRouteResponse$
|
|
1890
|
-
];
|
|
1891
|
-
var CalculateRouteMatrix$ = [9, n0, _CRM,
|
|
1892
|
-
{ [_en]: ["routes."], [_h]: ["POST", "/routes/v0/calculators/{CalculatorName}/calculate/route-matrix", 200] }, () => CalculateRouteMatrixRequest$, () => CalculateRouteMatrixResponse$
|
|
1893
|
-
];
|
|
1894
|
-
var CreateGeofenceCollection$ = [9, n0, _CGC,
|
|
1895
|
-
{ [_en]: ["cp.geofencing."], [_h]: ["POST", "/geofencing/v0/collections", 200] }, () => CreateGeofenceCollectionRequest$, () => CreateGeofenceCollectionResponse$
|
|
1896
|
-
];
|
|
1897
|
-
var CreateKey$ = [9, n0, _CK,
|
|
1898
|
-
{ [_en]: ["cp.metadata."], [_h]: ["POST", "/metadata/v0/keys", 200] }, () => CreateKeyRequest$, () => CreateKeyResponse$
|
|
1899
|
-
];
|
|
1900
|
-
var CreateMap$ = [9, n0, _CM,
|
|
1901
|
-
{ [_en]: ["cp.maps."], [_h]: ["POST", "/maps/v0/maps", 200] }, () => CreateMapRequest$, () => CreateMapResponse$
|
|
1902
|
-
];
|
|
1903
|
-
var CreatePlaceIndex$ = [9, n0, _CPI,
|
|
1904
|
-
{ [_en]: ["cp.places."], [_h]: ["POST", "/places/v0/indexes", 200] }, () => CreatePlaceIndexRequest$, () => CreatePlaceIndexResponse$
|
|
1905
|
-
];
|
|
1906
|
-
var CreateRouteCalculator$ = [9, n0, _CRC,
|
|
1907
|
-
{ [_en]: ["cp.routes."], [_h]: ["POST", "/routes/v0/calculators", 200] }, () => CreateRouteCalculatorRequest$, () => CreateRouteCalculatorResponse$
|
|
1908
|
-
];
|
|
1909
|
-
var CreateTracker$ = [9, n0, _CTr,
|
|
1910
|
-
{ [_en]: ["cp.tracking."], [_h]: ["POST", "/tracking/v0/trackers", 200] }, () => CreateTrackerRequest$, () => CreateTrackerResponse$
|
|
1911
|
-
];
|
|
1912
|
-
var DeleteGeofenceCollection$ = [9, n0, _DGC,
|
|
1913
|
-
{ [_en]: ["cp.geofencing."], [_h]: ["DELETE", "/geofencing/v0/collections/{CollectionName}", 200] }, () => DeleteGeofenceCollectionRequest$, () => DeleteGeofenceCollectionResponse$
|
|
1914
|
-
];
|
|
1915
|
-
var DeleteKey$ = [9, n0, _DK,
|
|
1916
|
-
{ [_en]: ["cp.metadata."], [_h]: ["DELETE", "/metadata/v0/keys/{KeyName}", 200] }, () => DeleteKeyRequest$, () => DeleteKeyResponse$
|
|
1917
|
-
];
|
|
1918
|
-
var DeleteMap$ = [9, n0, _DM,
|
|
1919
|
-
{ [_en]: ["cp.maps."], [_h]: ["DELETE", "/maps/v0/maps/{MapName}", 200] }, () => DeleteMapRequest$, () => DeleteMapResponse$
|
|
1920
|
-
];
|
|
1921
|
-
var DeletePlaceIndex$ = [9, n0, _DPI,
|
|
1922
|
-
{ [_en]: ["cp.places."], [_h]: ["DELETE", "/places/v0/indexes/{IndexName}", 200] }, () => DeletePlaceIndexRequest$, () => DeletePlaceIndexResponse$
|
|
1923
|
-
];
|
|
1924
|
-
var DeleteRouteCalculator$ = [9, n0, _DRC,
|
|
1925
|
-
{ [_en]: ["cp.routes."], [_h]: ["DELETE", "/routes/v0/calculators/{CalculatorName}", 200] }, () => DeleteRouteCalculatorRequest$, () => DeleteRouteCalculatorResponse$
|
|
1926
|
-
];
|
|
1927
|
-
var DeleteTracker$ = [9, n0, _DTe,
|
|
1928
|
-
{ [_en]: ["cp.tracking."], [_h]: ["DELETE", "/tracking/v0/trackers/{TrackerName}", 200] }, () => DeleteTrackerRequest$, () => DeleteTrackerResponse$
|
|
1929
|
-
];
|
|
1930
|
-
var DescribeGeofenceCollection$ = [9, n0, _DGCe,
|
|
1931
|
-
{ [_en]: ["cp.geofencing."], [_h]: ["GET", "/geofencing/v0/collections/{CollectionName}", 200] }, () => DescribeGeofenceCollectionRequest$, () => DescribeGeofenceCollectionResponse$
|
|
1932
|
-
];
|
|
1933
|
-
var DescribeKey$ = [9, n0, _DKe,
|
|
1934
|
-
{ [_en]: ["cp.metadata."], [_h]: ["GET", "/metadata/v0/keys/{KeyName}", 200] }, () => DescribeKeyRequest$, () => DescribeKeyResponse$
|
|
1935
|
-
];
|
|
1936
|
-
var DescribeMap$ = [9, n0, _DMe,
|
|
1937
|
-
{ [_en]: ["cp.maps."], [_h]: ["GET", "/maps/v0/maps/{MapName}", 200] }, () => DescribeMapRequest$, () => DescribeMapResponse$
|
|
1938
|
-
];
|
|
1939
|
-
var DescribePlaceIndex$ = [9, n0, _DPIe,
|
|
1940
|
-
{ [_en]: ["cp.places."], [_h]: ["GET", "/places/v0/indexes/{IndexName}", 200] }, () => DescribePlaceIndexRequest$, () => DescribePlaceIndexResponse$
|
|
1941
|
-
];
|
|
1942
|
-
var DescribeRouteCalculator$ = [9, n0, _DRCe,
|
|
1943
|
-
{ [_en]: ["cp.routes."], [_h]: ["GET", "/routes/v0/calculators/{CalculatorName}", 200] }, () => DescribeRouteCalculatorRequest$, () => DescribeRouteCalculatorResponse$
|
|
1944
|
-
];
|
|
1945
|
-
var DescribeTracker$ = [9, n0, _DTes,
|
|
1946
|
-
{ [_en]: ["cp.tracking."], [_h]: ["GET", "/tracking/v0/trackers/{TrackerName}", 200] }, () => DescribeTrackerRequest$, () => DescribeTrackerResponse$
|
|
1947
|
-
];
|
|
1948
|
-
var DisassociateTrackerConsumer$ = [9, n0, _DTC,
|
|
1949
|
-
{ [_en]: ["cp.tracking."], [_h]: ["DELETE", "/tracking/v0/trackers/{TrackerName}/consumers/{ConsumerArn}", 200] }, () => DisassociateTrackerConsumerRequest$, () => DisassociateTrackerConsumerResponse$
|
|
1950
|
-
];
|
|
1951
|
-
var ForecastGeofenceEvents$ = [9, n0, _FGE,
|
|
1952
|
-
{ [_en]: ["geofencing."], [_h]: ["POST", "/geofencing/v0/collections/{CollectionName}/forecast-geofence-events", 200] }, () => ForecastGeofenceEventsRequest$, () => ForecastGeofenceEventsResponse$
|
|
1953
|
-
];
|
|
1954
|
-
var GetDevicePosition$ = [9, n0, _GDP,
|
|
1955
|
-
{ [_en]: ["tracking."], [_h]: ["GET", "/tracking/v0/trackers/{TrackerName}/devices/{DeviceId}/positions/latest", 200] }, () => GetDevicePositionRequest$, () => GetDevicePositionResponse$
|
|
1956
|
-
];
|
|
1957
|
-
var GetDevicePositionHistory$ = [9, n0, _GDPH,
|
|
1958
|
-
{ [_en]: ["tracking."], [_h]: ["POST", "/tracking/v0/trackers/{TrackerName}/devices/{DeviceId}/list-positions", 200] }, () => GetDevicePositionHistoryRequest$, () => GetDevicePositionHistoryResponse$
|
|
1959
|
-
];
|
|
1960
|
-
var GetGeofence$ = [9, n0, _GGe,
|
|
1961
|
-
{ [_en]: ["geofencing."], [_h]: ["GET", "/geofencing/v0/collections/{CollectionName}/geofences/{GeofenceId}", 200] }, () => GetGeofenceRequest$, () => GetGeofenceResponse$
|
|
1962
|
-
];
|
|
1963
|
-
var GetMapGlyphs$ = [9, n0, _GMG,
|
|
1964
|
-
{ [_en]: ["maps."], [_h]: ["GET", "/maps/v0/maps/{MapName}/glyphs/{FontStack}/{FontUnicodeRange}", 200] }, () => GetMapGlyphsRequest$, () => GetMapGlyphsResponse$
|
|
1965
|
-
];
|
|
1966
|
-
var GetMapSprites$ = [9, n0, _GMS,
|
|
1967
|
-
{ [_en]: ["maps."], [_h]: ["GET", "/maps/v0/maps/{MapName}/sprites/{FileName}", 200] }, () => GetMapSpritesRequest$, () => GetMapSpritesResponse$
|
|
1968
|
-
];
|
|
1969
|
-
var GetMapStyleDescriptor$ = [9, n0, _GMSD,
|
|
1970
|
-
{ [_en]: ["maps."], [_h]: ["GET", "/maps/v0/maps/{MapName}/style-descriptor", 200] }, () => GetMapStyleDescriptorRequest$, () => GetMapStyleDescriptorResponse$
|
|
1971
|
-
];
|
|
1972
|
-
var GetMapTile$ = [9, n0, _GMT,
|
|
1973
|
-
{ [_en]: ["maps."], [_h]: ["GET", "/maps/v0/maps/{MapName}/tiles/{Z}/{X}/{Y}", 200] }, () => GetMapTileRequest$, () => GetMapTileResponse$
|
|
1974
|
-
];
|
|
1975
|
-
var GetPlace$ = [9, n0, _GPe,
|
|
1976
|
-
{ [_en]: ["places."], [_h]: ["GET", "/places/v0/indexes/{IndexName}/places/{PlaceId}", 200] }, () => GetPlaceRequest$, () => GetPlaceResponse$
|
|
1977
|
-
];
|
|
1978
|
-
var ListDevicePositions$ = [9, n0, _LDP,
|
|
1979
|
-
{ [_en]: ["tracking."], [_h]: ["POST", "/tracking/v0/trackers/{TrackerName}/list-positions", 200] }, () => ListDevicePositionsRequest$, () => ListDevicePositionsResponse$
|
|
1980
|
-
];
|
|
1981
|
-
var ListGeofenceCollections$ = [9, n0, _LGC,
|
|
1982
|
-
{ [_en]: ["cp.geofencing."], [_h]: ["POST", "/geofencing/v0/list-collections", 200] }, () => ListGeofenceCollectionsRequest$, () => ListGeofenceCollectionsResponse$
|
|
1983
|
-
];
|
|
1984
|
-
var ListGeofences$ = [9, n0, _LGi,
|
|
1985
|
-
{ [_en]: ["geofencing."], [_h]: ["POST", "/geofencing/v0/collections/{CollectionName}/list-geofences", 200] }, () => ListGeofencesRequest$, () => ListGeofencesResponse$
|
|
1986
|
-
];
|
|
1987
|
-
var ListKeys$ = [9, n0, _LK,
|
|
1988
|
-
{ [_en]: ["cp.metadata."], [_h]: ["POST", "/metadata/v0/list-keys", 200] }, () => ListKeysRequest$, () => ListKeysResponse$
|
|
1989
|
-
];
|
|
1990
|
-
var ListMaps$ = [9, n0, _LM,
|
|
1991
|
-
{ [_en]: ["cp.maps."], [_h]: ["POST", "/maps/v0/list-maps", 200] }, () => ListMapsRequest$, () => ListMapsResponse$
|
|
1992
|
-
];
|
|
1993
|
-
var ListPlaceIndexes$ = [9, n0, _LPI,
|
|
1994
|
-
{ [_en]: ["cp.places."], [_h]: ["POST", "/places/v0/list-indexes", 200] }, () => ListPlaceIndexesRequest$, () => ListPlaceIndexesResponse$
|
|
1995
|
-
];
|
|
1996
|
-
var ListRouteCalculators$ = [9, n0, _LRC,
|
|
1997
|
-
{ [_en]: ["cp.routes."], [_h]: ["POST", "/routes/v0/list-calculators", 200] }, () => ListRouteCalculatorsRequest$, () => ListRouteCalculatorsResponse$
|
|
1998
|
-
];
|
|
1999
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2000
|
-
{ [_en]: ["cp.metadata."], [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2001
|
-
];
|
|
2002
|
-
var ListTrackerConsumers$ = [9, n0, _LTC,
|
|
2003
|
-
{ [_en]: ["cp.tracking."], [_h]: ["POST", "/tracking/v0/trackers/{TrackerName}/list-consumers", 200] }, () => ListTrackerConsumersRequest$, () => ListTrackerConsumersResponse$
|
|
2004
|
-
];
|
|
2005
|
-
var ListTrackers$ = [9, n0, _LT,
|
|
2006
|
-
{ [_en]: ["cp.tracking."], [_h]: ["POST", "/tracking/v0/list-trackers", 200] }, () => ListTrackersRequest$, () => ListTrackersResponse$
|
|
2007
|
-
];
|
|
2008
|
-
var PutGeofence$ = [9, n0, _PGu,
|
|
2009
|
-
{ [_en]: ["geofencing."], [_h]: ["PUT", "/geofencing/v0/collections/{CollectionName}/geofences/{GeofenceId}", 200] }, () => PutGeofenceRequest$, () => PutGeofenceResponse$
|
|
2010
|
-
];
|
|
2011
|
-
var SearchPlaceIndexForPosition$ = [9, n0, _SPIFP,
|
|
2012
|
-
{ [_en]: ["places."], [_h]: ["POST", "/places/v0/indexes/{IndexName}/search/position", 200] }, () => SearchPlaceIndexForPositionRequest$, () => SearchPlaceIndexForPositionResponse$
|
|
2013
|
-
];
|
|
2014
|
-
var SearchPlaceIndexForSuggestions$ = [9, n0, _SPIFS,
|
|
2015
|
-
{ [_en]: ["places."], [_h]: ["POST", "/places/v0/indexes/{IndexName}/search/suggestions", 200] }, () => SearchPlaceIndexForSuggestionsRequest$, () => SearchPlaceIndexForSuggestionsResponse$
|
|
2016
|
-
];
|
|
2017
|
-
var SearchPlaceIndexForText$ = [9, n0, _SPIFT,
|
|
2018
|
-
{ [_en]: ["places."], [_h]: ["POST", "/places/v0/indexes/{IndexName}/search/text", 200] }, () => SearchPlaceIndexForTextRequest$, () => SearchPlaceIndexForTextResponse$
|
|
2019
|
-
];
|
|
2020
|
-
var TagResource$ = [9, n0, _TR,
|
|
2021
|
-
{ [_en]: ["cp.metadata."], [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2022
|
-
];
|
|
2023
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2024
|
-
{ [_en]: ["cp.metadata."], [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2025
|
-
];
|
|
2026
|
-
var UpdateGeofenceCollection$ = [9, n0, _UGC,
|
|
2027
|
-
{ [_en]: ["cp.geofencing."], [_h]: ["PATCH", "/geofencing/v0/collections/{CollectionName}", 200] }, () => UpdateGeofenceCollectionRequest$, () => UpdateGeofenceCollectionResponse$
|
|
2028
|
-
];
|
|
2029
|
-
var UpdateKey$ = [9, n0, _UK,
|
|
2030
|
-
{ [_en]: ["cp.metadata."], [_h]: ["PATCH", "/metadata/v0/keys/{KeyName}", 200] }, () => UpdateKeyRequest$, () => UpdateKeyResponse$
|
|
2031
|
-
];
|
|
2032
|
-
var UpdateMap$ = [9, n0, _UM,
|
|
2033
|
-
{ [_en]: ["cp.maps."], [_h]: ["PATCH", "/maps/v0/maps/{MapName}", 200] }, () => UpdateMapRequest$, () => UpdateMapResponse$
|
|
2034
|
-
];
|
|
2035
|
-
var UpdatePlaceIndex$ = [9, n0, _UPI,
|
|
2036
|
-
{ [_en]: ["cp.places."], [_h]: ["PATCH", "/places/v0/indexes/{IndexName}", 200] }, () => UpdatePlaceIndexRequest$, () => UpdatePlaceIndexResponse$
|
|
2037
|
-
];
|
|
2038
|
-
var UpdateRouteCalculator$ = [9, n0, _URC,
|
|
2039
|
-
{ [_en]: ["cp.routes."], [_h]: ["PATCH", "/routes/v0/calculators/{CalculatorName}", 200] }, () => UpdateRouteCalculatorRequest$, () => UpdateRouteCalculatorResponse$
|
|
2040
|
-
];
|
|
2041
|
-
var UpdateTracker$ = [9, n0, _UTp,
|
|
2042
|
-
{ [_en]: ["cp.tracking."], [_h]: ["PATCH", "/tracking/v0/trackers/{TrackerName}", 200] }, () => UpdateTrackerRequest$, () => UpdateTrackerResponse$
|
|
2043
|
-
];
|
|
2044
|
-
var VerifyDevicePosition$ = [9, n0, _VDP,
|
|
2045
|
-
{ [_en]: ["tracking."], [_h]: ["POST", "/tracking/v0/trackers/{TrackerName}/positions/verify", 200] }, () => VerifyDevicePositionRequest$, () => VerifyDevicePositionResponse$
|
|
2046
|
-
];
|
|
2047
|
-
|
|
2048
116
|
class AssociateTrackerConsumerCommand extends smithyClient.Command
|
|
2049
117
|
.classBuilder()
|
|
2050
118
|
.ep(commonParams)
|
|
@@ -2053,7 +121,7 @@ class AssociateTrackerConsumerCommand extends smithyClient.Command
|
|
|
2053
121
|
})
|
|
2054
122
|
.s("LocationService", "AssociateTrackerConsumer", {})
|
|
2055
123
|
.n("LocationClient", "AssociateTrackerConsumerCommand")
|
|
2056
|
-
.sc(AssociateTrackerConsumer$)
|
|
124
|
+
.sc(schemas_0.AssociateTrackerConsumer$)
|
|
2057
125
|
.build() {
|
|
2058
126
|
}
|
|
2059
127
|
|
|
@@ -2065,7 +133,7 @@ class BatchDeleteDevicePositionHistoryCommand extends smithyClient.Command
|
|
|
2065
133
|
})
|
|
2066
134
|
.s("LocationService", "BatchDeleteDevicePositionHistory", {})
|
|
2067
135
|
.n("LocationClient", "BatchDeleteDevicePositionHistoryCommand")
|
|
2068
|
-
.sc(BatchDeleteDevicePositionHistory$)
|
|
136
|
+
.sc(schemas_0.BatchDeleteDevicePositionHistory$)
|
|
2069
137
|
.build() {
|
|
2070
138
|
}
|
|
2071
139
|
|
|
@@ -2077,7 +145,7 @@ class BatchDeleteGeofenceCommand extends smithyClient.Command
|
|
|
2077
145
|
})
|
|
2078
146
|
.s("LocationService", "BatchDeleteGeofence", {})
|
|
2079
147
|
.n("LocationClient", "BatchDeleteGeofenceCommand")
|
|
2080
|
-
.sc(BatchDeleteGeofence$)
|
|
148
|
+
.sc(schemas_0.BatchDeleteGeofence$)
|
|
2081
149
|
.build() {
|
|
2082
150
|
}
|
|
2083
151
|
|
|
@@ -2089,7 +157,7 @@ class BatchEvaluateGeofencesCommand extends smithyClient.Command
|
|
|
2089
157
|
})
|
|
2090
158
|
.s("LocationService", "BatchEvaluateGeofences", {})
|
|
2091
159
|
.n("LocationClient", "BatchEvaluateGeofencesCommand")
|
|
2092
|
-
.sc(BatchEvaluateGeofences$)
|
|
160
|
+
.sc(schemas_0.BatchEvaluateGeofences$)
|
|
2093
161
|
.build() {
|
|
2094
162
|
}
|
|
2095
163
|
|
|
@@ -2101,7 +169,7 @@ class BatchGetDevicePositionCommand extends smithyClient.Command
|
|
|
2101
169
|
})
|
|
2102
170
|
.s("LocationService", "BatchGetDevicePosition", {})
|
|
2103
171
|
.n("LocationClient", "BatchGetDevicePositionCommand")
|
|
2104
|
-
.sc(BatchGetDevicePosition$)
|
|
172
|
+
.sc(schemas_0.BatchGetDevicePosition$)
|
|
2105
173
|
.build() {
|
|
2106
174
|
}
|
|
2107
175
|
|
|
@@ -2113,7 +181,7 @@ class BatchPutGeofenceCommand extends smithyClient.Command
|
|
|
2113
181
|
})
|
|
2114
182
|
.s("LocationService", "BatchPutGeofence", {})
|
|
2115
183
|
.n("LocationClient", "BatchPutGeofenceCommand")
|
|
2116
|
-
.sc(BatchPutGeofence$)
|
|
184
|
+
.sc(schemas_0.BatchPutGeofence$)
|
|
2117
185
|
.build() {
|
|
2118
186
|
}
|
|
2119
187
|
|
|
@@ -2125,7 +193,7 @@ class BatchUpdateDevicePositionCommand extends smithyClient.Command
|
|
|
2125
193
|
})
|
|
2126
194
|
.s("LocationService", "BatchUpdateDevicePosition", {})
|
|
2127
195
|
.n("LocationClient", "BatchUpdateDevicePositionCommand")
|
|
2128
|
-
.sc(BatchUpdateDevicePosition$)
|
|
196
|
+
.sc(schemas_0.BatchUpdateDevicePosition$)
|
|
2129
197
|
.build() {
|
|
2130
198
|
}
|
|
2131
199
|
|
|
@@ -2137,7 +205,7 @@ class CalculateRouteCommand extends smithyClient.Command
|
|
|
2137
205
|
})
|
|
2138
206
|
.s("LocationService", "CalculateRoute", {})
|
|
2139
207
|
.n("LocationClient", "CalculateRouteCommand")
|
|
2140
|
-
.sc(CalculateRoute$)
|
|
208
|
+
.sc(schemas_0.CalculateRoute$)
|
|
2141
209
|
.build() {
|
|
2142
210
|
}
|
|
2143
211
|
|
|
@@ -2149,7 +217,7 @@ class CalculateRouteMatrixCommand extends smithyClient.Command
|
|
|
2149
217
|
})
|
|
2150
218
|
.s("LocationService", "CalculateRouteMatrix", {})
|
|
2151
219
|
.n("LocationClient", "CalculateRouteMatrixCommand")
|
|
2152
|
-
.sc(CalculateRouteMatrix$)
|
|
220
|
+
.sc(schemas_0.CalculateRouteMatrix$)
|
|
2153
221
|
.build() {
|
|
2154
222
|
}
|
|
2155
223
|
|
|
@@ -2161,7 +229,7 @@ class CreateGeofenceCollectionCommand extends smithyClient.Command
|
|
|
2161
229
|
})
|
|
2162
230
|
.s("LocationService", "CreateGeofenceCollection", {})
|
|
2163
231
|
.n("LocationClient", "CreateGeofenceCollectionCommand")
|
|
2164
|
-
.sc(CreateGeofenceCollection$)
|
|
232
|
+
.sc(schemas_0.CreateGeofenceCollection$)
|
|
2165
233
|
.build() {
|
|
2166
234
|
}
|
|
2167
235
|
|
|
@@ -2173,7 +241,7 @@ class CreateKeyCommand extends smithyClient.Command
|
|
|
2173
241
|
})
|
|
2174
242
|
.s("LocationService", "CreateKey", {})
|
|
2175
243
|
.n("LocationClient", "CreateKeyCommand")
|
|
2176
|
-
.sc(CreateKey$)
|
|
244
|
+
.sc(schemas_0.CreateKey$)
|
|
2177
245
|
.build() {
|
|
2178
246
|
}
|
|
2179
247
|
|
|
@@ -2185,7 +253,7 @@ class CreateMapCommand extends smithyClient.Command
|
|
|
2185
253
|
})
|
|
2186
254
|
.s("LocationService", "CreateMap", {})
|
|
2187
255
|
.n("LocationClient", "CreateMapCommand")
|
|
2188
|
-
.sc(CreateMap$)
|
|
256
|
+
.sc(schemas_0.CreateMap$)
|
|
2189
257
|
.build() {
|
|
2190
258
|
}
|
|
2191
259
|
|
|
@@ -2197,7 +265,7 @@ class CreatePlaceIndexCommand extends smithyClient.Command
|
|
|
2197
265
|
})
|
|
2198
266
|
.s("LocationService", "CreatePlaceIndex", {})
|
|
2199
267
|
.n("LocationClient", "CreatePlaceIndexCommand")
|
|
2200
|
-
.sc(CreatePlaceIndex$)
|
|
268
|
+
.sc(schemas_0.CreatePlaceIndex$)
|
|
2201
269
|
.build() {
|
|
2202
270
|
}
|
|
2203
271
|
|
|
@@ -2209,7 +277,7 @@ class CreateRouteCalculatorCommand extends smithyClient.Command
|
|
|
2209
277
|
})
|
|
2210
278
|
.s("LocationService", "CreateRouteCalculator", {})
|
|
2211
279
|
.n("LocationClient", "CreateRouteCalculatorCommand")
|
|
2212
|
-
.sc(CreateRouteCalculator$)
|
|
280
|
+
.sc(schemas_0.CreateRouteCalculator$)
|
|
2213
281
|
.build() {
|
|
2214
282
|
}
|
|
2215
283
|
|
|
@@ -2221,7 +289,7 @@ class CreateTrackerCommand extends smithyClient.Command
|
|
|
2221
289
|
})
|
|
2222
290
|
.s("LocationService", "CreateTracker", {})
|
|
2223
291
|
.n("LocationClient", "CreateTrackerCommand")
|
|
2224
|
-
.sc(CreateTracker$)
|
|
292
|
+
.sc(schemas_0.CreateTracker$)
|
|
2225
293
|
.build() {
|
|
2226
294
|
}
|
|
2227
295
|
|
|
@@ -2233,7 +301,7 @@ class DeleteGeofenceCollectionCommand extends smithyClient.Command
|
|
|
2233
301
|
})
|
|
2234
302
|
.s("LocationService", "DeleteGeofenceCollection", {})
|
|
2235
303
|
.n("LocationClient", "DeleteGeofenceCollectionCommand")
|
|
2236
|
-
.sc(DeleteGeofenceCollection$)
|
|
304
|
+
.sc(schemas_0.DeleteGeofenceCollection$)
|
|
2237
305
|
.build() {
|
|
2238
306
|
}
|
|
2239
307
|
|
|
@@ -2245,7 +313,7 @@ class DeleteKeyCommand extends smithyClient.Command
|
|
|
2245
313
|
})
|
|
2246
314
|
.s("LocationService", "DeleteKey", {})
|
|
2247
315
|
.n("LocationClient", "DeleteKeyCommand")
|
|
2248
|
-
.sc(DeleteKey$)
|
|
316
|
+
.sc(schemas_0.DeleteKey$)
|
|
2249
317
|
.build() {
|
|
2250
318
|
}
|
|
2251
319
|
|
|
@@ -2257,7 +325,7 @@ class DeleteMapCommand extends smithyClient.Command
|
|
|
2257
325
|
})
|
|
2258
326
|
.s("LocationService", "DeleteMap", {})
|
|
2259
327
|
.n("LocationClient", "DeleteMapCommand")
|
|
2260
|
-
.sc(DeleteMap$)
|
|
328
|
+
.sc(schemas_0.DeleteMap$)
|
|
2261
329
|
.build() {
|
|
2262
330
|
}
|
|
2263
331
|
|
|
@@ -2269,7 +337,7 @@ class DeletePlaceIndexCommand extends smithyClient.Command
|
|
|
2269
337
|
})
|
|
2270
338
|
.s("LocationService", "DeletePlaceIndex", {})
|
|
2271
339
|
.n("LocationClient", "DeletePlaceIndexCommand")
|
|
2272
|
-
.sc(DeletePlaceIndex$)
|
|
340
|
+
.sc(schemas_0.DeletePlaceIndex$)
|
|
2273
341
|
.build() {
|
|
2274
342
|
}
|
|
2275
343
|
|
|
@@ -2281,7 +349,7 @@ class DeleteRouteCalculatorCommand extends smithyClient.Command
|
|
|
2281
349
|
})
|
|
2282
350
|
.s("LocationService", "DeleteRouteCalculator", {})
|
|
2283
351
|
.n("LocationClient", "DeleteRouteCalculatorCommand")
|
|
2284
|
-
.sc(DeleteRouteCalculator$)
|
|
352
|
+
.sc(schemas_0.DeleteRouteCalculator$)
|
|
2285
353
|
.build() {
|
|
2286
354
|
}
|
|
2287
355
|
|
|
@@ -2293,7 +361,7 @@ class DeleteTrackerCommand extends smithyClient.Command
|
|
|
2293
361
|
})
|
|
2294
362
|
.s("LocationService", "DeleteTracker", {})
|
|
2295
363
|
.n("LocationClient", "DeleteTrackerCommand")
|
|
2296
|
-
.sc(DeleteTracker$)
|
|
364
|
+
.sc(schemas_0.DeleteTracker$)
|
|
2297
365
|
.build() {
|
|
2298
366
|
}
|
|
2299
367
|
|
|
@@ -2305,7 +373,7 @@ class DescribeGeofenceCollectionCommand extends smithyClient.Command
|
|
|
2305
373
|
})
|
|
2306
374
|
.s("LocationService", "DescribeGeofenceCollection", {})
|
|
2307
375
|
.n("LocationClient", "DescribeGeofenceCollectionCommand")
|
|
2308
|
-
.sc(DescribeGeofenceCollection$)
|
|
376
|
+
.sc(schemas_0.DescribeGeofenceCollection$)
|
|
2309
377
|
.build() {
|
|
2310
378
|
}
|
|
2311
379
|
|
|
@@ -2317,7 +385,7 @@ class DescribeKeyCommand extends smithyClient.Command
|
|
|
2317
385
|
})
|
|
2318
386
|
.s("LocationService", "DescribeKey", {})
|
|
2319
387
|
.n("LocationClient", "DescribeKeyCommand")
|
|
2320
|
-
.sc(DescribeKey$)
|
|
388
|
+
.sc(schemas_0.DescribeKey$)
|
|
2321
389
|
.build() {
|
|
2322
390
|
}
|
|
2323
391
|
|
|
@@ -2329,7 +397,7 @@ class DescribeMapCommand extends smithyClient.Command
|
|
|
2329
397
|
})
|
|
2330
398
|
.s("LocationService", "DescribeMap", {})
|
|
2331
399
|
.n("LocationClient", "DescribeMapCommand")
|
|
2332
|
-
.sc(DescribeMap$)
|
|
400
|
+
.sc(schemas_0.DescribeMap$)
|
|
2333
401
|
.build() {
|
|
2334
402
|
}
|
|
2335
403
|
|
|
@@ -2341,7 +409,7 @@ class DescribePlaceIndexCommand extends smithyClient.Command
|
|
|
2341
409
|
})
|
|
2342
410
|
.s("LocationService", "DescribePlaceIndex", {})
|
|
2343
411
|
.n("LocationClient", "DescribePlaceIndexCommand")
|
|
2344
|
-
.sc(DescribePlaceIndex$)
|
|
412
|
+
.sc(schemas_0.DescribePlaceIndex$)
|
|
2345
413
|
.build() {
|
|
2346
414
|
}
|
|
2347
415
|
|
|
@@ -2353,7 +421,7 @@ class DescribeRouteCalculatorCommand extends smithyClient.Command
|
|
|
2353
421
|
})
|
|
2354
422
|
.s("LocationService", "DescribeRouteCalculator", {})
|
|
2355
423
|
.n("LocationClient", "DescribeRouteCalculatorCommand")
|
|
2356
|
-
.sc(DescribeRouteCalculator$)
|
|
424
|
+
.sc(schemas_0.DescribeRouteCalculator$)
|
|
2357
425
|
.build() {
|
|
2358
426
|
}
|
|
2359
427
|
|
|
@@ -2365,7 +433,7 @@ class DescribeTrackerCommand extends smithyClient.Command
|
|
|
2365
433
|
})
|
|
2366
434
|
.s("LocationService", "DescribeTracker", {})
|
|
2367
435
|
.n("LocationClient", "DescribeTrackerCommand")
|
|
2368
|
-
.sc(DescribeTracker$)
|
|
436
|
+
.sc(schemas_0.DescribeTracker$)
|
|
2369
437
|
.build() {
|
|
2370
438
|
}
|
|
2371
439
|
|
|
@@ -2377,7 +445,7 @@ class DisassociateTrackerConsumerCommand extends smithyClient.Command
|
|
|
2377
445
|
})
|
|
2378
446
|
.s("LocationService", "DisassociateTrackerConsumer", {})
|
|
2379
447
|
.n("LocationClient", "DisassociateTrackerConsumerCommand")
|
|
2380
|
-
.sc(DisassociateTrackerConsumer$)
|
|
448
|
+
.sc(schemas_0.DisassociateTrackerConsumer$)
|
|
2381
449
|
.build() {
|
|
2382
450
|
}
|
|
2383
451
|
|
|
@@ -2389,7 +457,7 @@ class ForecastGeofenceEventsCommand extends smithyClient.Command
|
|
|
2389
457
|
})
|
|
2390
458
|
.s("LocationService", "ForecastGeofenceEvents", {})
|
|
2391
459
|
.n("LocationClient", "ForecastGeofenceEventsCommand")
|
|
2392
|
-
.sc(ForecastGeofenceEvents$)
|
|
460
|
+
.sc(schemas_0.ForecastGeofenceEvents$)
|
|
2393
461
|
.build() {
|
|
2394
462
|
}
|
|
2395
463
|
|
|
@@ -2401,7 +469,7 @@ class GetDevicePositionCommand extends smithyClient.Command
|
|
|
2401
469
|
})
|
|
2402
470
|
.s("LocationService", "GetDevicePosition", {})
|
|
2403
471
|
.n("LocationClient", "GetDevicePositionCommand")
|
|
2404
|
-
.sc(GetDevicePosition$)
|
|
472
|
+
.sc(schemas_0.GetDevicePosition$)
|
|
2405
473
|
.build() {
|
|
2406
474
|
}
|
|
2407
475
|
|
|
@@ -2413,7 +481,7 @@ class GetDevicePositionHistoryCommand extends smithyClient.Command
|
|
|
2413
481
|
})
|
|
2414
482
|
.s("LocationService", "GetDevicePositionHistory", {})
|
|
2415
483
|
.n("LocationClient", "GetDevicePositionHistoryCommand")
|
|
2416
|
-
.sc(GetDevicePositionHistory$)
|
|
484
|
+
.sc(schemas_0.GetDevicePositionHistory$)
|
|
2417
485
|
.build() {
|
|
2418
486
|
}
|
|
2419
487
|
|
|
@@ -2425,7 +493,7 @@ class GetGeofenceCommand extends smithyClient.Command
|
|
|
2425
493
|
})
|
|
2426
494
|
.s("LocationService", "GetGeofence", {})
|
|
2427
495
|
.n("LocationClient", "GetGeofenceCommand")
|
|
2428
|
-
.sc(GetGeofence$)
|
|
496
|
+
.sc(schemas_0.GetGeofence$)
|
|
2429
497
|
.build() {
|
|
2430
498
|
}
|
|
2431
499
|
|
|
@@ -2437,7 +505,7 @@ class GetMapGlyphsCommand extends smithyClient.Command
|
|
|
2437
505
|
})
|
|
2438
506
|
.s("LocationService", "GetMapGlyphs", {})
|
|
2439
507
|
.n("LocationClient", "GetMapGlyphsCommand")
|
|
2440
|
-
.sc(GetMapGlyphs$)
|
|
508
|
+
.sc(schemas_0.GetMapGlyphs$)
|
|
2441
509
|
.build() {
|
|
2442
510
|
}
|
|
2443
511
|
|
|
@@ -2449,7 +517,7 @@ class GetMapSpritesCommand extends smithyClient.Command
|
|
|
2449
517
|
})
|
|
2450
518
|
.s("LocationService", "GetMapSprites", {})
|
|
2451
519
|
.n("LocationClient", "GetMapSpritesCommand")
|
|
2452
|
-
.sc(GetMapSprites$)
|
|
520
|
+
.sc(schemas_0.GetMapSprites$)
|
|
2453
521
|
.build() {
|
|
2454
522
|
}
|
|
2455
523
|
|
|
@@ -2461,7 +529,7 @@ class GetMapStyleDescriptorCommand extends smithyClient.Command
|
|
|
2461
529
|
})
|
|
2462
530
|
.s("LocationService", "GetMapStyleDescriptor", {})
|
|
2463
531
|
.n("LocationClient", "GetMapStyleDescriptorCommand")
|
|
2464
|
-
.sc(GetMapStyleDescriptor$)
|
|
532
|
+
.sc(schemas_0.GetMapStyleDescriptor$)
|
|
2465
533
|
.build() {
|
|
2466
534
|
}
|
|
2467
535
|
|
|
@@ -2473,7 +541,7 @@ class GetMapTileCommand extends smithyClient.Command
|
|
|
2473
541
|
})
|
|
2474
542
|
.s("LocationService", "GetMapTile", {})
|
|
2475
543
|
.n("LocationClient", "GetMapTileCommand")
|
|
2476
|
-
.sc(GetMapTile$)
|
|
544
|
+
.sc(schemas_0.GetMapTile$)
|
|
2477
545
|
.build() {
|
|
2478
546
|
}
|
|
2479
547
|
|
|
@@ -2485,7 +553,7 @@ class GetPlaceCommand extends smithyClient.Command
|
|
|
2485
553
|
})
|
|
2486
554
|
.s("LocationService", "GetPlace", {})
|
|
2487
555
|
.n("LocationClient", "GetPlaceCommand")
|
|
2488
|
-
.sc(GetPlace$)
|
|
556
|
+
.sc(schemas_0.GetPlace$)
|
|
2489
557
|
.build() {
|
|
2490
558
|
}
|
|
2491
559
|
|
|
@@ -2497,7 +565,7 @@ class ListDevicePositionsCommand extends smithyClient.Command
|
|
|
2497
565
|
})
|
|
2498
566
|
.s("LocationService", "ListDevicePositions", {})
|
|
2499
567
|
.n("LocationClient", "ListDevicePositionsCommand")
|
|
2500
|
-
.sc(ListDevicePositions$)
|
|
568
|
+
.sc(schemas_0.ListDevicePositions$)
|
|
2501
569
|
.build() {
|
|
2502
570
|
}
|
|
2503
571
|
|
|
@@ -2509,7 +577,7 @@ class ListGeofenceCollectionsCommand extends smithyClient.Command
|
|
|
2509
577
|
})
|
|
2510
578
|
.s("LocationService", "ListGeofenceCollections", {})
|
|
2511
579
|
.n("LocationClient", "ListGeofenceCollectionsCommand")
|
|
2512
|
-
.sc(ListGeofenceCollections$)
|
|
580
|
+
.sc(schemas_0.ListGeofenceCollections$)
|
|
2513
581
|
.build() {
|
|
2514
582
|
}
|
|
2515
583
|
|
|
@@ -2521,7 +589,7 @@ class ListGeofencesCommand extends smithyClient.Command
|
|
|
2521
589
|
})
|
|
2522
590
|
.s("LocationService", "ListGeofences", {})
|
|
2523
591
|
.n("LocationClient", "ListGeofencesCommand")
|
|
2524
|
-
.sc(ListGeofences$)
|
|
592
|
+
.sc(schemas_0.ListGeofences$)
|
|
2525
593
|
.build() {
|
|
2526
594
|
}
|
|
2527
595
|
|
|
@@ -2533,7 +601,7 @@ class ListKeysCommand extends smithyClient.Command
|
|
|
2533
601
|
})
|
|
2534
602
|
.s("LocationService", "ListKeys", {})
|
|
2535
603
|
.n("LocationClient", "ListKeysCommand")
|
|
2536
|
-
.sc(ListKeys$)
|
|
604
|
+
.sc(schemas_0.ListKeys$)
|
|
2537
605
|
.build() {
|
|
2538
606
|
}
|
|
2539
607
|
|
|
@@ -2545,7 +613,7 @@ class ListMapsCommand extends smithyClient.Command
|
|
|
2545
613
|
})
|
|
2546
614
|
.s("LocationService", "ListMaps", {})
|
|
2547
615
|
.n("LocationClient", "ListMapsCommand")
|
|
2548
|
-
.sc(ListMaps$)
|
|
616
|
+
.sc(schemas_0.ListMaps$)
|
|
2549
617
|
.build() {
|
|
2550
618
|
}
|
|
2551
619
|
|
|
@@ -2557,7 +625,7 @@ class ListPlaceIndexesCommand extends smithyClient.Command
|
|
|
2557
625
|
})
|
|
2558
626
|
.s("LocationService", "ListPlaceIndexes", {})
|
|
2559
627
|
.n("LocationClient", "ListPlaceIndexesCommand")
|
|
2560
|
-
.sc(ListPlaceIndexes$)
|
|
628
|
+
.sc(schemas_0.ListPlaceIndexes$)
|
|
2561
629
|
.build() {
|
|
2562
630
|
}
|
|
2563
631
|
|
|
@@ -2569,7 +637,7 @@ class ListRouteCalculatorsCommand extends smithyClient.Command
|
|
|
2569
637
|
})
|
|
2570
638
|
.s("LocationService", "ListRouteCalculators", {})
|
|
2571
639
|
.n("LocationClient", "ListRouteCalculatorsCommand")
|
|
2572
|
-
.sc(ListRouteCalculators$)
|
|
640
|
+
.sc(schemas_0.ListRouteCalculators$)
|
|
2573
641
|
.build() {
|
|
2574
642
|
}
|
|
2575
643
|
|
|
@@ -2581,7 +649,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2581
649
|
})
|
|
2582
650
|
.s("LocationService", "ListTagsForResource", {})
|
|
2583
651
|
.n("LocationClient", "ListTagsForResourceCommand")
|
|
2584
|
-
.sc(ListTagsForResource$)
|
|
652
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
2585
653
|
.build() {
|
|
2586
654
|
}
|
|
2587
655
|
|
|
@@ -2593,7 +661,7 @@ class ListTrackerConsumersCommand extends smithyClient.Command
|
|
|
2593
661
|
})
|
|
2594
662
|
.s("LocationService", "ListTrackerConsumers", {})
|
|
2595
663
|
.n("LocationClient", "ListTrackerConsumersCommand")
|
|
2596
|
-
.sc(ListTrackerConsumers$)
|
|
664
|
+
.sc(schemas_0.ListTrackerConsumers$)
|
|
2597
665
|
.build() {
|
|
2598
666
|
}
|
|
2599
667
|
|
|
@@ -2605,7 +673,7 @@ class ListTrackersCommand extends smithyClient.Command
|
|
|
2605
673
|
})
|
|
2606
674
|
.s("LocationService", "ListTrackers", {})
|
|
2607
675
|
.n("LocationClient", "ListTrackersCommand")
|
|
2608
|
-
.sc(ListTrackers$)
|
|
676
|
+
.sc(schemas_0.ListTrackers$)
|
|
2609
677
|
.build() {
|
|
2610
678
|
}
|
|
2611
679
|
|
|
@@ -2617,7 +685,7 @@ class PutGeofenceCommand extends smithyClient.Command
|
|
|
2617
685
|
})
|
|
2618
686
|
.s("LocationService", "PutGeofence", {})
|
|
2619
687
|
.n("LocationClient", "PutGeofenceCommand")
|
|
2620
|
-
.sc(PutGeofence$)
|
|
688
|
+
.sc(schemas_0.PutGeofence$)
|
|
2621
689
|
.build() {
|
|
2622
690
|
}
|
|
2623
691
|
|
|
@@ -2629,7 +697,7 @@ class SearchPlaceIndexForPositionCommand extends smithyClient.Command
|
|
|
2629
697
|
})
|
|
2630
698
|
.s("LocationService", "SearchPlaceIndexForPosition", {})
|
|
2631
699
|
.n("LocationClient", "SearchPlaceIndexForPositionCommand")
|
|
2632
|
-
.sc(SearchPlaceIndexForPosition$)
|
|
700
|
+
.sc(schemas_0.SearchPlaceIndexForPosition$)
|
|
2633
701
|
.build() {
|
|
2634
702
|
}
|
|
2635
703
|
|
|
@@ -2641,7 +709,7 @@ class SearchPlaceIndexForSuggestionsCommand extends smithyClient.Command
|
|
|
2641
709
|
})
|
|
2642
710
|
.s("LocationService", "SearchPlaceIndexForSuggestions", {})
|
|
2643
711
|
.n("LocationClient", "SearchPlaceIndexForSuggestionsCommand")
|
|
2644
|
-
.sc(SearchPlaceIndexForSuggestions$)
|
|
712
|
+
.sc(schemas_0.SearchPlaceIndexForSuggestions$)
|
|
2645
713
|
.build() {
|
|
2646
714
|
}
|
|
2647
715
|
|
|
@@ -2653,7 +721,7 @@ class SearchPlaceIndexForTextCommand extends smithyClient.Command
|
|
|
2653
721
|
})
|
|
2654
722
|
.s("LocationService", "SearchPlaceIndexForText", {})
|
|
2655
723
|
.n("LocationClient", "SearchPlaceIndexForTextCommand")
|
|
2656
|
-
.sc(SearchPlaceIndexForText$)
|
|
724
|
+
.sc(schemas_0.SearchPlaceIndexForText$)
|
|
2657
725
|
.build() {
|
|
2658
726
|
}
|
|
2659
727
|
|
|
@@ -2665,7 +733,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2665
733
|
})
|
|
2666
734
|
.s("LocationService", "TagResource", {})
|
|
2667
735
|
.n("LocationClient", "TagResourceCommand")
|
|
2668
|
-
.sc(TagResource$)
|
|
736
|
+
.sc(schemas_0.TagResource$)
|
|
2669
737
|
.build() {
|
|
2670
738
|
}
|
|
2671
739
|
|
|
@@ -2677,7 +745,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2677
745
|
})
|
|
2678
746
|
.s("LocationService", "UntagResource", {})
|
|
2679
747
|
.n("LocationClient", "UntagResourceCommand")
|
|
2680
|
-
.sc(UntagResource$)
|
|
748
|
+
.sc(schemas_0.UntagResource$)
|
|
2681
749
|
.build() {
|
|
2682
750
|
}
|
|
2683
751
|
|
|
@@ -2689,7 +757,7 @@ class UpdateGeofenceCollectionCommand extends smithyClient.Command
|
|
|
2689
757
|
})
|
|
2690
758
|
.s("LocationService", "UpdateGeofenceCollection", {})
|
|
2691
759
|
.n("LocationClient", "UpdateGeofenceCollectionCommand")
|
|
2692
|
-
.sc(UpdateGeofenceCollection$)
|
|
760
|
+
.sc(schemas_0.UpdateGeofenceCollection$)
|
|
2693
761
|
.build() {
|
|
2694
762
|
}
|
|
2695
763
|
|
|
@@ -2701,7 +769,7 @@ class UpdateKeyCommand extends smithyClient.Command
|
|
|
2701
769
|
})
|
|
2702
770
|
.s("LocationService", "UpdateKey", {})
|
|
2703
771
|
.n("LocationClient", "UpdateKeyCommand")
|
|
2704
|
-
.sc(UpdateKey$)
|
|
772
|
+
.sc(schemas_0.UpdateKey$)
|
|
2705
773
|
.build() {
|
|
2706
774
|
}
|
|
2707
775
|
|
|
@@ -2713,7 +781,7 @@ class UpdateMapCommand extends smithyClient.Command
|
|
|
2713
781
|
})
|
|
2714
782
|
.s("LocationService", "UpdateMap", {})
|
|
2715
783
|
.n("LocationClient", "UpdateMapCommand")
|
|
2716
|
-
.sc(UpdateMap$)
|
|
784
|
+
.sc(schemas_0.UpdateMap$)
|
|
2717
785
|
.build() {
|
|
2718
786
|
}
|
|
2719
787
|
|
|
@@ -2725,7 +793,7 @@ class UpdatePlaceIndexCommand extends smithyClient.Command
|
|
|
2725
793
|
})
|
|
2726
794
|
.s("LocationService", "UpdatePlaceIndex", {})
|
|
2727
795
|
.n("LocationClient", "UpdatePlaceIndexCommand")
|
|
2728
|
-
.sc(UpdatePlaceIndex$)
|
|
796
|
+
.sc(schemas_0.UpdatePlaceIndex$)
|
|
2729
797
|
.build() {
|
|
2730
798
|
}
|
|
2731
799
|
|
|
@@ -2737,7 +805,7 @@ class UpdateRouteCalculatorCommand extends smithyClient.Command
|
|
|
2737
805
|
})
|
|
2738
806
|
.s("LocationService", "UpdateRouteCalculator", {})
|
|
2739
807
|
.n("LocationClient", "UpdateRouteCalculatorCommand")
|
|
2740
|
-
.sc(UpdateRouteCalculator$)
|
|
808
|
+
.sc(schemas_0.UpdateRouteCalculator$)
|
|
2741
809
|
.build() {
|
|
2742
810
|
}
|
|
2743
811
|
|
|
@@ -2749,7 +817,7 @@ class UpdateTrackerCommand extends smithyClient.Command
|
|
|
2749
817
|
})
|
|
2750
818
|
.s("LocationService", "UpdateTracker", {})
|
|
2751
819
|
.n("LocationClient", "UpdateTrackerCommand")
|
|
2752
|
-
.sc(UpdateTracker$)
|
|
820
|
+
.sc(schemas_0.UpdateTracker$)
|
|
2753
821
|
.build() {
|
|
2754
822
|
}
|
|
2755
823
|
|
|
@@ -2761,7 +829,7 @@ class VerifyDevicePositionCommand extends smithyClient.Command
|
|
|
2761
829
|
})
|
|
2762
830
|
.s("LocationService", "VerifyDevicePosition", {})
|
|
2763
831
|
.n("LocationClient", "VerifyDevicePositionCommand")
|
|
2764
|
-
.sc(VerifyDevicePosition$)
|
|
832
|
+
.sc(schemas_0.VerifyDevicePosition$)
|
|
2765
833
|
.build() {
|
|
2766
834
|
}
|
|
2767
835
|
|
|
@@ -2874,324 +942,72 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2874
942
|
enumerable: true,
|
|
2875
943
|
get: function () { return smithyClient.Client; }
|
|
2876
944
|
});
|
|
2877
|
-
exports
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
exports.ApiKeyRestrictions$ = ApiKeyRestrictions$;
|
|
2882
|
-
exports.AppleApp$ = AppleApp$;
|
|
2883
|
-
exports.AssociateTrackerConsumer$ = AssociateTrackerConsumer$;
|
|
945
|
+
Object.defineProperty(exports, "LocationServiceException", {
|
|
946
|
+
enumerable: true,
|
|
947
|
+
get: function () { return LocationServiceException.LocationServiceException; }
|
|
948
|
+
});
|
|
2884
949
|
exports.AssociateTrackerConsumerCommand = AssociateTrackerConsumerCommand;
|
|
2885
|
-
exports.AssociateTrackerConsumerRequest$ = AssociateTrackerConsumerRequest$;
|
|
2886
|
-
exports.AssociateTrackerConsumerResponse$ = AssociateTrackerConsumerResponse$;
|
|
2887
|
-
exports.BatchDeleteDevicePositionHistory$ = BatchDeleteDevicePositionHistory$;
|
|
2888
950
|
exports.BatchDeleteDevicePositionHistoryCommand = BatchDeleteDevicePositionHistoryCommand;
|
|
2889
|
-
exports.BatchDeleteDevicePositionHistoryError$ = BatchDeleteDevicePositionHistoryError$;
|
|
2890
|
-
exports.BatchDeleteDevicePositionHistoryRequest$ = BatchDeleteDevicePositionHistoryRequest$;
|
|
2891
|
-
exports.BatchDeleteDevicePositionHistoryResponse$ = BatchDeleteDevicePositionHistoryResponse$;
|
|
2892
|
-
exports.BatchDeleteGeofence$ = BatchDeleteGeofence$;
|
|
2893
951
|
exports.BatchDeleteGeofenceCommand = BatchDeleteGeofenceCommand;
|
|
2894
|
-
exports.BatchDeleteGeofenceError$ = BatchDeleteGeofenceError$;
|
|
2895
|
-
exports.BatchDeleteGeofenceRequest$ = BatchDeleteGeofenceRequest$;
|
|
2896
|
-
exports.BatchDeleteGeofenceResponse$ = BatchDeleteGeofenceResponse$;
|
|
2897
|
-
exports.BatchEvaluateGeofences$ = BatchEvaluateGeofences$;
|
|
2898
952
|
exports.BatchEvaluateGeofencesCommand = BatchEvaluateGeofencesCommand;
|
|
2899
|
-
exports.BatchEvaluateGeofencesError$ = BatchEvaluateGeofencesError$;
|
|
2900
|
-
exports.BatchEvaluateGeofencesRequest$ = BatchEvaluateGeofencesRequest$;
|
|
2901
|
-
exports.BatchEvaluateGeofencesResponse$ = BatchEvaluateGeofencesResponse$;
|
|
2902
|
-
exports.BatchGetDevicePosition$ = BatchGetDevicePosition$;
|
|
2903
953
|
exports.BatchGetDevicePositionCommand = BatchGetDevicePositionCommand;
|
|
2904
|
-
exports.BatchGetDevicePositionError$ = BatchGetDevicePositionError$;
|
|
2905
|
-
exports.BatchGetDevicePositionRequest$ = BatchGetDevicePositionRequest$;
|
|
2906
|
-
exports.BatchGetDevicePositionResponse$ = BatchGetDevicePositionResponse$;
|
|
2907
|
-
exports.BatchItemError$ = BatchItemError$;
|
|
2908
|
-
exports.BatchPutGeofence$ = BatchPutGeofence$;
|
|
2909
954
|
exports.BatchPutGeofenceCommand = BatchPutGeofenceCommand;
|
|
2910
|
-
exports.BatchPutGeofenceError$ = BatchPutGeofenceError$;
|
|
2911
|
-
exports.BatchPutGeofenceRequest$ = BatchPutGeofenceRequest$;
|
|
2912
|
-
exports.BatchPutGeofenceRequestEntry$ = BatchPutGeofenceRequestEntry$;
|
|
2913
|
-
exports.BatchPutGeofenceResponse$ = BatchPutGeofenceResponse$;
|
|
2914
|
-
exports.BatchPutGeofenceSuccess$ = BatchPutGeofenceSuccess$;
|
|
2915
|
-
exports.BatchUpdateDevicePosition$ = BatchUpdateDevicePosition$;
|
|
2916
955
|
exports.BatchUpdateDevicePositionCommand = BatchUpdateDevicePositionCommand;
|
|
2917
|
-
exports.BatchUpdateDevicePositionError$ = BatchUpdateDevicePositionError$;
|
|
2918
|
-
exports.BatchUpdateDevicePositionRequest$ = BatchUpdateDevicePositionRequest$;
|
|
2919
|
-
exports.BatchUpdateDevicePositionResponse$ = BatchUpdateDevicePositionResponse$;
|
|
2920
|
-
exports.CalculateRoute$ = CalculateRoute$;
|
|
2921
|
-
exports.CalculateRouteCarModeOptions$ = CalculateRouteCarModeOptions$;
|
|
2922
956
|
exports.CalculateRouteCommand = CalculateRouteCommand;
|
|
2923
|
-
exports.CalculateRouteMatrix$ = CalculateRouteMatrix$;
|
|
2924
957
|
exports.CalculateRouteMatrixCommand = CalculateRouteMatrixCommand;
|
|
2925
|
-
exports.CalculateRouteMatrixRequest$ = CalculateRouteMatrixRequest$;
|
|
2926
|
-
exports.CalculateRouteMatrixResponse$ = CalculateRouteMatrixResponse$;
|
|
2927
|
-
exports.CalculateRouteMatrixSummary$ = CalculateRouteMatrixSummary$;
|
|
2928
|
-
exports.CalculateRouteRequest$ = CalculateRouteRequest$;
|
|
2929
|
-
exports.CalculateRouteResponse$ = CalculateRouteResponse$;
|
|
2930
|
-
exports.CalculateRouteSummary$ = CalculateRouteSummary$;
|
|
2931
|
-
exports.CalculateRouteTruckModeOptions$ = CalculateRouteTruckModeOptions$;
|
|
2932
|
-
exports.CellSignals$ = CellSignals$;
|
|
2933
|
-
exports.Circle$ = Circle$;
|
|
2934
|
-
exports.ConflictException = ConflictException;
|
|
2935
|
-
exports.ConflictException$ = ConflictException$;
|
|
2936
|
-
exports.CreateGeofenceCollection$ = CreateGeofenceCollection$;
|
|
2937
958
|
exports.CreateGeofenceCollectionCommand = CreateGeofenceCollectionCommand;
|
|
2938
|
-
exports.CreateGeofenceCollectionRequest$ = CreateGeofenceCollectionRequest$;
|
|
2939
|
-
exports.CreateGeofenceCollectionResponse$ = CreateGeofenceCollectionResponse$;
|
|
2940
|
-
exports.CreateKey$ = CreateKey$;
|
|
2941
959
|
exports.CreateKeyCommand = CreateKeyCommand;
|
|
2942
|
-
exports.CreateKeyRequest$ = CreateKeyRequest$;
|
|
2943
|
-
exports.CreateKeyResponse$ = CreateKeyResponse$;
|
|
2944
|
-
exports.CreateMap$ = CreateMap$;
|
|
2945
960
|
exports.CreateMapCommand = CreateMapCommand;
|
|
2946
|
-
exports.CreateMapRequest$ = CreateMapRequest$;
|
|
2947
|
-
exports.CreateMapResponse$ = CreateMapResponse$;
|
|
2948
|
-
exports.CreatePlaceIndex$ = CreatePlaceIndex$;
|
|
2949
961
|
exports.CreatePlaceIndexCommand = CreatePlaceIndexCommand;
|
|
2950
|
-
exports.CreatePlaceIndexRequest$ = CreatePlaceIndexRequest$;
|
|
2951
|
-
exports.CreatePlaceIndexResponse$ = CreatePlaceIndexResponse$;
|
|
2952
|
-
exports.CreateRouteCalculator$ = CreateRouteCalculator$;
|
|
2953
962
|
exports.CreateRouteCalculatorCommand = CreateRouteCalculatorCommand;
|
|
2954
|
-
exports.CreateRouteCalculatorRequest$ = CreateRouteCalculatorRequest$;
|
|
2955
|
-
exports.CreateRouteCalculatorResponse$ = CreateRouteCalculatorResponse$;
|
|
2956
|
-
exports.CreateTracker$ = CreateTracker$;
|
|
2957
963
|
exports.CreateTrackerCommand = CreateTrackerCommand;
|
|
2958
|
-
exports.CreateTrackerRequest$ = CreateTrackerRequest$;
|
|
2959
|
-
exports.CreateTrackerResponse$ = CreateTrackerResponse$;
|
|
2960
|
-
exports.DataSourceConfiguration$ = DataSourceConfiguration$;
|
|
2961
|
-
exports.DeleteGeofenceCollection$ = DeleteGeofenceCollection$;
|
|
2962
964
|
exports.DeleteGeofenceCollectionCommand = DeleteGeofenceCollectionCommand;
|
|
2963
|
-
exports.DeleteGeofenceCollectionRequest$ = DeleteGeofenceCollectionRequest$;
|
|
2964
|
-
exports.DeleteGeofenceCollectionResponse$ = DeleteGeofenceCollectionResponse$;
|
|
2965
|
-
exports.DeleteKey$ = DeleteKey$;
|
|
2966
965
|
exports.DeleteKeyCommand = DeleteKeyCommand;
|
|
2967
|
-
exports.DeleteKeyRequest$ = DeleteKeyRequest$;
|
|
2968
|
-
exports.DeleteKeyResponse$ = DeleteKeyResponse$;
|
|
2969
|
-
exports.DeleteMap$ = DeleteMap$;
|
|
2970
966
|
exports.DeleteMapCommand = DeleteMapCommand;
|
|
2971
|
-
exports.DeleteMapRequest$ = DeleteMapRequest$;
|
|
2972
|
-
exports.DeleteMapResponse$ = DeleteMapResponse$;
|
|
2973
|
-
exports.DeletePlaceIndex$ = DeletePlaceIndex$;
|
|
2974
967
|
exports.DeletePlaceIndexCommand = DeletePlaceIndexCommand;
|
|
2975
|
-
exports.DeletePlaceIndexRequest$ = DeletePlaceIndexRequest$;
|
|
2976
|
-
exports.DeletePlaceIndexResponse$ = DeletePlaceIndexResponse$;
|
|
2977
|
-
exports.DeleteRouteCalculator$ = DeleteRouteCalculator$;
|
|
2978
968
|
exports.DeleteRouteCalculatorCommand = DeleteRouteCalculatorCommand;
|
|
2979
|
-
exports.DeleteRouteCalculatorRequest$ = DeleteRouteCalculatorRequest$;
|
|
2980
|
-
exports.DeleteRouteCalculatorResponse$ = DeleteRouteCalculatorResponse$;
|
|
2981
|
-
exports.DeleteTracker$ = DeleteTracker$;
|
|
2982
969
|
exports.DeleteTrackerCommand = DeleteTrackerCommand;
|
|
2983
|
-
exports.DeleteTrackerRequest$ = DeleteTrackerRequest$;
|
|
2984
|
-
exports.DeleteTrackerResponse$ = DeleteTrackerResponse$;
|
|
2985
|
-
exports.DescribeGeofenceCollection$ = DescribeGeofenceCollection$;
|
|
2986
970
|
exports.DescribeGeofenceCollectionCommand = DescribeGeofenceCollectionCommand;
|
|
2987
|
-
exports.DescribeGeofenceCollectionRequest$ = DescribeGeofenceCollectionRequest$;
|
|
2988
|
-
exports.DescribeGeofenceCollectionResponse$ = DescribeGeofenceCollectionResponse$;
|
|
2989
|
-
exports.DescribeKey$ = DescribeKey$;
|
|
2990
971
|
exports.DescribeKeyCommand = DescribeKeyCommand;
|
|
2991
|
-
exports.DescribeKeyRequest$ = DescribeKeyRequest$;
|
|
2992
|
-
exports.DescribeKeyResponse$ = DescribeKeyResponse$;
|
|
2993
|
-
exports.DescribeMap$ = DescribeMap$;
|
|
2994
972
|
exports.DescribeMapCommand = DescribeMapCommand;
|
|
2995
|
-
exports.DescribeMapRequest$ = DescribeMapRequest$;
|
|
2996
|
-
exports.DescribeMapResponse$ = DescribeMapResponse$;
|
|
2997
|
-
exports.DescribePlaceIndex$ = DescribePlaceIndex$;
|
|
2998
973
|
exports.DescribePlaceIndexCommand = DescribePlaceIndexCommand;
|
|
2999
|
-
exports.DescribePlaceIndexRequest$ = DescribePlaceIndexRequest$;
|
|
3000
|
-
exports.DescribePlaceIndexResponse$ = DescribePlaceIndexResponse$;
|
|
3001
|
-
exports.DescribeRouteCalculator$ = DescribeRouteCalculator$;
|
|
3002
974
|
exports.DescribeRouteCalculatorCommand = DescribeRouteCalculatorCommand;
|
|
3003
|
-
exports.DescribeRouteCalculatorRequest$ = DescribeRouteCalculatorRequest$;
|
|
3004
|
-
exports.DescribeRouteCalculatorResponse$ = DescribeRouteCalculatorResponse$;
|
|
3005
|
-
exports.DescribeTracker$ = DescribeTracker$;
|
|
3006
975
|
exports.DescribeTrackerCommand = DescribeTrackerCommand;
|
|
3007
|
-
exports.DescribeTrackerRequest$ = DescribeTrackerRequest$;
|
|
3008
|
-
exports.DescribeTrackerResponse$ = DescribeTrackerResponse$;
|
|
3009
|
-
exports.DevicePosition$ = DevicePosition$;
|
|
3010
|
-
exports.DevicePositionUpdate$ = DevicePositionUpdate$;
|
|
3011
|
-
exports.DeviceState$ = DeviceState$;
|
|
3012
|
-
exports.DisassociateTrackerConsumer$ = DisassociateTrackerConsumer$;
|
|
3013
976
|
exports.DisassociateTrackerConsumerCommand = DisassociateTrackerConsumerCommand;
|
|
3014
|
-
exports.DisassociateTrackerConsumerRequest$ = DisassociateTrackerConsumerRequest$;
|
|
3015
|
-
exports.DisassociateTrackerConsumerResponse$ = DisassociateTrackerConsumerResponse$;
|
|
3016
|
-
exports.ForecastGeofenceEvents$ = ForecastGeofenceEvents$;
|
|
3017
977
|
exports.ForecastGeofenceEventsCommand = ForecastGeofenceEventsCommand;
|
|
3018
|
-
exports.ForecastGeofenceEventsDeviceState$ = ForecastGeofenceEventsDeviceState$;
|
|
3019
|
-
exports.ForecastGeofenceEventsRequest$ = ForecastGeofenceEventsRequest$;
|
|
3020
|
-
exports.ForecastGeofenceEventsResponse$ = ForecastGeofenceEventsResponse$;
|
|
3021
|
-
exports.ForecastedEvent$ = ForecastedEvent$;
|
|
3022
|
-
exports.GeofenceGeometry$ = GeofenceGeometry$;
|
|
3023
|
-
exports.GetDevicePosition$ = GetDevicePosition$;
|
|
3024
978
|
exports.GetDevicePositionCommand = GetDevicePositionCommand;
|
|
3025
|
-
exports.GetDevicePositionHistory$ = GetDevicePositionHistory$;
|
|
3026
979
|
exports.GetDevicePositionHistoryCommand = GetDevicePositionHistoryCommand;
|
|
3027
|
-
exports.GetDevicePositionHistoryRequest$ = GetDevicePositionHistoryRequest$;
|
|
3028
|
-
exports.GetDevicePositionHistoryResponse$ = GetDevicePositionHistoryResponse$;
|
|
3029
|
-
exports.GetDevicePositionRequest$ = GetDevicePositionRequest$;
|
|
3030
|
-
exports.GetDevicePositionResponse$ = GetDevicePositionResponse$;
|
|
3031
|
-
exports.GetGeofence$ = GetGeofence$;
|
|
3032
980
|
exports.GetGeofenceCommand = GetGeofenceCommand;
|
|
3033
|
-
exports.GetGeofenceRequest$ = GetGeofenceRequest$;
|
|
3034
|
-
exports.GetGeofenceResponse$ = GetGeofenceResponse$;
|
|
3035
|
-
exports.GetMapGlyphs$ = GetMapGlyphs$;
|
|
3036
981
|
exports.GetMapGlyphsCommand = GetMapGlyphsCommand;
|
|
3037
|
-
exports.GetMapGlyphsRequest$ = GetMapGlyphsRequest$;
|
|
3038
|
-
exports.GetMapGlyphsResponse$ = GetMapGlyphsResponse$;
|
|
3039
|
-
exports.GetMapSprites$ = GetMapSprites$;
|
|
3040
982
|
exports.GetMapSpritesCommand = GetMapSpritesCommand;
|
|
3041
|
-
exports.GetMapSpritesRequest$ = GetMapSpritesRequest$;
|
|
3042
|
-
exports.GetMapSpritesResponse$ = GetMapSpritesResponse$;
|
|
3043
|
-
exports.GetMapStyleDescriptor$ = GetMapStyleDescriptor$;
|
|
3044
983
|
exports.GetMapStyleDescriptorCommand = GetMapStyleDescriptorCommand;
|
|
3045
|
-
exports.GetMapStyleDescriptorRequest$ = GetMapStyleDescriptorRequest$;
|
|
3046
|
-
exports.GetMapStyleDescriptorResponse$ = GetMapStyleDescriptorResponse$;
|
|
3047
|
-
exports.GetMapTile$ = GetMapTile$;
|
|
3048
984
|
exports.GetMapTileCommand = GetMapTileCommand;
|
|
3049
|
-
exports.GetMapTileRequest$ = GetMapTileRequest$;
|
|
3050
|
-
exports.GetMapTileResponse$ = GetMapTileResponse$;
|
|
3051
|
-
exports.GetPlace$ = GetPlace$;
|
|
3052
985
|
exports.GetPlaceCommand = GetPlaceCommand;
|
|
3053
|
-
exports.GetPlaceRequest$ = GetPlaceRequest$;
|
|
3054
|
-
exports.GetPlaceResponse$ = GetPlaceResponse$;
|
|
3055
|
-
exports.InferredState$ = InferredState$;
|
|
3056
|
-
exports.InternalServerException = InternalServerException;
|
|
3057
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
3058
|
-
exports.Leg$ = Leg$;
|
|
3059
|
-
exports.LegGeometry$ = LegGeometry$;
|
|
3060
|
-
exports.ListDevicePositions$ = ListDevicePositions$;
|
|
3061
986
|
exports.ListDevicePositionsCommand = ListDevicePositionsCommand;
|
|
3062
|
-
exports.ListDevicePositionsRequest$ = ListDevicePositionsRequest$;
|
|
3063
|
-
exports.ListDevicePositionsResponse$ = ListDevicePositionsResponse$;
|
|
3064
|
-
exports.ListDevicePositionsResponseEntry$ = ListDevicePositionsResponseEntry$;
|
|
3065
|
-
exports.ListGeofenceCollections$ = ListGeofenceCollections$;
|
|
3066
987
|
exports.ListGeofenceCollectionsCommand = ListGeofenceCollectionsCommand;
|
|
3067
|
-
exports.ListGeofenceCollectionsRequest$ = ListGeofenceCollectionsRequest$;
|
|
3068
|
-
exports.ListGeofenceCollectionsResponse$ = ListGeofenceCollectionsResponse$;
|
|
3069
|
-
exports.ListGeofenceCollectionsResponseEntry$ = ListGeofenceCollectionsResponseEntry$;
|
|
3070
|
-
exports.ListGeofenceResponseEntry$ = ListGeofenceResponseEntry$;
|
|
3071
|
-
exports.ListGeofences$ = ListGeofences$;
|
|
3072
988
|
exports.ListGeofencesCommand = ListGeofencesCommand;
|
|
3073
|
-
exports.ListGeofencesRequest$ = ListGeofencesRequest$;
|
|
3074
|
-
exports.ListGeofencesResponse$ = ListGeofencesResponse$;
|
|
3075
|
-
exports.ListKeys$ = ListKeys$;
|
|
3076
989
|
exports.ListKeysCommand = ListKeysCommand;
|
|
3077
|
-
exports.ListKeysRequest$ = ListKeysRequest$;
|
|
3078
|
-
exports.ListKeysResponse$ = ListKeysResponse$;
|
|
3079
|
-
exports.ListKeysResponseEntry$ = ListKeysResponseEntry$;
|
|
3080
|
-
exports.ListMaps$ = ListMaps$;
|
|
3081
990
|
exports.ListMapsCommand = ListMapsCommand;
|
|
3082
|
-
exports.ListMapsRequest$ = ListMapsRequest$;
|
|
3083
|
-
exports.ListMapsResponse$ = ListMapsResponse$;
|
|
3084
|
-
exports.ListMapsResponseEntry$ = ListMapsResponseEntry$;
|
|
3085
|
-
exports.ListPlaceIndexes$ = ListPlaceIndexes$;
|
|
3086
991
|
exports.ListPlaceIndexesCommand = ListPlaceIndexesCommand;
|
|
3087
|
-
exports.ListPlaceIndexesRequest$ = ListPlaceIndexesRequest$;
|
|
3088
|
-
exports.ListPlaceIndexesResponse$ = ListPlaceIndexesResponse$;
|
|
3089
|
-
exports.ListPlaceIndexesResponseEntry$ = ListPlaceIndexesResponseEntry$;
|
|
3090
|
-
exports.ListRouteCalculators$ = ListRouteCalculators$;
|
|
3091
992
|
exports.ListRouteCalculatorsCommand = ListRouteCalculatorsCommand;
|
|
3092
|
-
exports.ListRouteCalculatorsRequest$ = ListRouteCalculatorsRequest$;
|
|
3093
|
-
exports.ListRouteCalculatorsResponse$ = ListRouteCalculatorsResponse$;
|
|
3094
|
-
exports.ListRouteCalculatorsResponseEntry$ = ListRouteCalculatorsResponseEntry$;
|
|
3095
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
3096
993
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3097
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3098
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3099
|
-
exports.ListTrackerConsumers$ = ListTrackerConsumers$;
|
|
3100
994
|
exports.ListTrackerConsumersCommand = ListTrackerConsumersCommand;
|
|
3101
|
-
exports.ListTrackerConsumersRequest$ = ListTrackerConsumersRequest$;
|
|
3102
|
-
exports.ListTrackerConsumersResponse$ = ListTrackerConsumersResponse$;
|
|
3103
|
-
exports.ListTrackers$ = ListTrackers$;
|
|
3104
995
|
exports.ListTrackersCommand = ListTrackersCommand;
|
|
3105
|
-
exports.ListTrackersRequest$ = ListTrackersRequest$;
|
|
3106
|
-
exports.ListTrackersResponse$ = ListTrackersResponse$;
|
|
3107
|
-
exports.ListTrackersResponseEntry$ = ListTrackersResponseEntry$;
|
|
3108
996
|
exports.Location = Location;
|
|
3109
997
|
exports.LocationClient = LocationClient;
|
|
3110
|
-
exports.LocationServiceException = LocationServiceException;
|
|
3111
|
-
exports.LocationServiceException$ = LocationServiceException$;
|
|
3112
|
-
exports.LteCellDetails$ = LteCellDetails$;
|
|
3113
|
-
exports.LteLocalId$ = LteLocalId$;
|
|
3114
|
-
exports.LteNetworkMeasurements$ = LteNetworkMeasurements$;
|
|
3115
|
-
exports.MapConfiguration$ = MapConfiguration$;
|
|
3116
|
-
exports.MapConfigurationUpdate$ = MapConfigurationUpdate$;
|
|
3117
|
-
exports.Place$ = Place$;
|
|
3118
|
-
exports.PlaceGeometry$ = PlaceGeometry$;
|
|
3119
|
-
exports.PositionalAccuracy$ = PositionalAccuracy$;
|
|
3120
|
-
exports.PutGeofence$ = PutGeofence$;
|
|
3121
998
|
exports.PutGeofenceCommand = PutGeofenceCommand;
|
|
3122
|
-
exports.PutGeofenceRequest$ = PutGeofenceRequest$;
|
|
3123
|
-
exports.PutGeofenceResponse$ = PutGeofenceResponse$;
|
|
3124
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3125
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3126
|
-
exports.RouteMatrixEntry$ = RouteMatrixEntry$;
|
|
3127
|
-
exports.RouteMatrixEntryError$ = RouteMatrixEntryError$;
|
|
3128
|
-
exports.SearchForPositionResult$ = SearchForPositionResult$;
|
|
3129
|
-
exports.SearchForSuggestionsResult$ = SearchForSuggestionsResult$;
|
|
3130
|
-
exports.SearchForTextResult$ = SearchForTextResult$;
|
|
3131
|
-
exports.SearchPlaceIndexForPosition$ = SearchPlaceIndexForPosition$;
|
|
3132
999
|
exports.SearchPlaceIndexForPositionCommand = SearchPlaceIndexForPositionCommand;
|
|
3133
|
-
exports.SearchPlaceIndexForPositionRequest$ = SearchPlaceIndexForPositionRequest$;
|
|
3134
|
-
exports.SearchPlaceIndexForPositionResponse$ = SearchPlaceIndexForPositionResponse$;
|
|
3135
|
-
exports.SearchPlaceIndexForPositionSummary$ = SearchPlaceIndexForPositionSummary$;
|
|
3136
|
-
exports.SearchPlaceIndexForSuggestions$ = SearchPlaceIndexForSuggestions$;
|
|
3137
1000
|
exports.SearchPlaceIndexForSuggestionsCommand = SearchPlaceIndexForSuggestionsCommand;
|
|
3138
|
-
exports.SearchPlaceIndexForSuggestionsRequest$ = SearchPlaceIndexForSuggestionsRequest$;
|
|
3139
|
-
exports.SearchPlaceIndexForSuggestionsResponse$ = SearchPlaceIndexForSuggestionsResponse$;
|
|
3140
|
-
exports.SearchPlaceIndexForSuggestionsSummary$ = SearchPlaceIndexForSuggestionsSummary$;
|
|
3141
|
-
exports.SearchPlaceIndexForText$ = SearchPlaceIndexForText$;
|
|
3142
1001
|
exports.SearchPlaceIndexForTextCommand = SearchPlaceIndexForTextCommand;
|
|
3143
|
-
exports.SearchPlaceIndexForTextRequest$ = SearchPlaceIndexForTextRequest$;
|
|
3144
|
-
exports.SearchPlaceIndexForTextResponse$ = SearchPlaceIndexForTextResponse$;
|
|
3145
|
-
exports.SearchPlaceIndexForTextSummary$ = SearchPlaceIndexForTextSummary$;
|
|
3146
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3147
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3148
|
-
exports.Step$ = Step$;
|
|
3149
|
-
exports.TagResource$ = TagResource$;
|
|
3150
1002
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3151
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3152
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3153
|
-
exports.ThrottlingException = ThrottlingException;
|
|
3154
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
3155
|
-
exports.TimeZone$ = TimeZone$;
|
|
3156
|
-
exports.TrackingFilterGeometry$ = TrackingFilterGeometry$;
|
|
3157
|
-
exports.TruckDimensions$ = TruckDimensions$;
|
|
3158
|
-
exports.TruckWeight$ = TruckWeight$;
|
|
3159
|
-
exports.UntagResource$ = UntagResource$;
|
|
3160
1003
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3161
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3162
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3163
|
-
exports.UpdateGeofenceCollection$ = UpdateGeofenceCollection$;
|
|
3164
1004
|
exports.UpdateGeofenceCollectionCommand = UpdateGeofenceCollectionCommand;
|
|
3165
|
-
exports.UpdateGeofenceCollectionRequest$ = UpdateGeofenceCollectionRequest$;
|
|
3166
|
-
exports.UpdateGeofenceCollectionResponse$ = UpdateGeofenceCollectionResponse$;
|
|
3167
|
-
exports.UpdateKey$ = UpdateKey$;
|
|
3168
1005
|
exports.UpdateKeyCommand = UpdateKeyCommand;
|
|
3169
|
-
exports.UpdateKeyRequest$ = UpdateKeyRequest$;
|
|
3170
|
-
exports.UpdateKeyResponse$ = UpdateKeyResponse$;
|
|
3171
|
-
exports.UpdateMap$ = UpdateMap$;
|
|
3172
1006
|
exports.UpdateMapCommand = UpdateMapCommand;
|
|
3173
|
-
exports.UpdateMapRequest$ = UpdateMapRequest$;
|
|
3174
|
-
exports.UpdateMapResponse$ = UpdateMapResponse$;
|
|
3175
|
-
exports.UpdatePlaceIndex$ = UpdatePlaceIndex$;
|
|
3176
1007
|
exports.UpdatePlaceIndexCommand = UpdatePlaceIndexCommand;
|
|
3177
|
-
exports.UpdatePlaceIndexRequest$ = UpdatePlaceIndexRequest$;
|
|
3178
|
-
exports.UpdatePlaceIndexResponse$ = UpdatePlaceIndexResponse$;
|
|
3179
|
-
exports.UpdateRouteCalculator$ = UpdateRouteCalculator$;
|
|
3180
1008
|
exports.UpdateRouteCalculatorCommand = UpdateRouteCalculatorCommand;
|
|
3181
|
-
exports.UpdateRouteCalculatorRequest$ = UpdateRouteCalculatorRequest$;
|
|
3182
|
-
exports.UpdateRouteCalculatorResponse$ = UpdateRouteCalculatorResponse$;
|
|
3183
|
-
exports.UpdateTracker$ = UpdateTracker$;
|
|
3184
1009
|
exports.UpdateTrackerCommand = UpdateTrackerCommand;
|
|
3185
|
-
exports.UpdateTrackerRequest$ = UpdateTrackerRequest$;
|
|
3186
|
-
exports.UpdateTrackerResponse$ = UpdateTrackerResponse$;
|
|
3187
|
-
exports.ValidationException = ValidationException;
|
|
3188
|
-
exports.ValidationException$ = ValidationException$;
|
|
3189
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
3190
|
-
exports.VerifyDevicePosition$ = VerifyDevicePosition$;
|
|
3191
1010
|
exports.VerifyDevicePositionCommand = VerifyDevicePositionCommand;
|
|
3192
|
-
exports.VerifyDevicePositionRequest$ = VerifyDevicePositionRequest$;
|
|
3193
|
-
exports.VerifyDevicePositionResponse$ = VerifyDevicePositionResponse$;
|
|
3194
|
-
exports.WiFiAccessPoint$ = WiFiAccessPoint$;
|
|
3195
1011
|
exports.paginateForecastGeofenceEvents = paginateForecastGeofenceEvents;
|
|
3196
1012
|
exports.paginateGetDevicePositionHistory = paginateGetDevicePositionHistory;
|
|
3197
1013
|
exports.paginateListDevicePositions = paginateListDevicePositions;
|
|
@@ -3203,3 +1019,15 @@ exports.paginateListPlaceIndexes = paginateListPlaceIndexes;
|
|
|
3203
1019
|
exports.paginateListRouteCalculators = paginateListRouteCalculators;
|
|
3204
1020
|
exports.paginateListTrackerConsumers = paginateListTrackerConsumers;
|
|
3205
1021
|
exports.paginateListTrackers = paginateListTrackers;
|
|
1022
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1023
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1024
|
+
enumerable: true,
|
|
1025
|
+
get: function () { return schemas_0[k]; }
|
|
1026
|
+
});
|
|
1027
|
+
});
|
|
1028
|
+
Object.keys(errors).forEach(function (k) {
|
|
1029
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1030
|
+
enumerable: true,
|
|
1031
|
+
get: function () { return errors[k]; }
|
|
1032
|
+
});
|
|
1033
|
+
});
|