@aws-sdk/client-location 3.721.0 → 3.723.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 +322 -227
- package/dist-es/LocationClient.js +1 -0
- package/dist-es/models/models_0.js +25 -16
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -258,7 +258,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
258
258
|
}, "resolveRuntimeExtensions");
|
|
259
259
|
|
|
260
260
|
// src/LocationClient.ts
|
|
261
|
-
var
|
|
261
|
+
var LocationClient = class extends import_smithy_client.Client {
|
|
262
|
+
static {
|
|
263
|
+
__name(this, "LocationClient");
|
|
264
|
+
}
|
|
265
|
+
/**
|
|
266
|
+
* The resolved configuration of LocationClient class. This is resolved and normalized from the {@link LocationClientConfig | constructor configuration interface}.
|
|
267
|
+
*/
|
|
268
|
+
config;
|
|
262
269
|
constructor(...[configuration]) {
|
|
263
270
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
264
271
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -268,7 +275,7 @@ var _LocationClient = class _LocationClient extends import_smithy_client.Client
|
|
|
268
275
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
269
276
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
270
277
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
271
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
278
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
272
279
|
super(_config_8);
|
|
273
280
|
this.config = _config_8;
|
|
274
281
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -296,8 +303,6 @@ var _LocationClient = class _LocationClient extends import_smithy_client.Client
|
|
|
296
303
|
super.destroy();
|
|
297
304
|
}
|
|
298
305
|
};
|
|
299
|
-
__name(_LocationClient, "LocationClient");
|
|
300
|
-
var LocationClient = _LocationClient;
|
|
301
306
|
|
|
302
307
|
// src/Location.ts
|
|
303
308
|
|
|
@@ -315,7 +320,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
315
320
|
|
|
316
321
|
// src/models/LocationServiceException.ts
|
|
317
322
|
|
|
318
|
-
var
|
|
323
|
+
var LocationServiceException = class _LocationServiceException extends import_smithy_client.ServiceException {
|
|
324
|
+
static {
|
|
325
|
+
__name(this, "LocationServiceException");
|
|
326
|
+
}
|
|
319
327
|
/**
|
|
320
328
|
* @internal
|
|
321
329
|
*/
|
|
@@ -324,12 +332,16 @@ var _LocationServiceException = class _LocationServiceException extends import_s
|
|
|
324
332
|
Object.setPrototypeOf(this, _LocationServiceException.prototype);
|
|
325
333
|
}
|
|
326
334
|
};
|
|
327
|
-
__name(_LocationServiceException, "LocationServiceException");
|
|
328
|
-
var LocationServiceException = _LocationServiceException;
|
|
329
335
|
|
|
330
336
|
// src/models/models_0.ts
|
|
331
337
|
|
|
332
|
-
var
|
|
338
|
+
var AccessDeniedException = class _AccessDeniedException extends LocationServiceException {
|
|
339
|
+
static {
|
|
340
|
+
__name(this, "AccessDeniedException");
|
|
341
|
+
}
|
|
342
|
+
name = "AccessDeniedException";
|
|
343
|
+
$fault = "client";
|
|
344
|
+
Message;
|
|
333
345
|
/**
|
|
334
346
|
* @internal
|
|
335
347
|
*/
|
|
@@ -339,15 +351,17 @@ var _AccessDeniedException = class _AccessDeniedException extends LocationServic
|
|
|
339
351
|
$fault: "client",
|
|
340
352
|
...opts
|
|
341
353
|
});
|
|
342
|
-
this.name = "AccessDeniedException";
|
|
343
|
-
this.$fault = "client";
|
|
344
354
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
345
355
|
this.Message = opts.Message;
|
|
346
356
|
}
|
|
347
357
|
};
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
358
|
+
var ConflictException = class _ConflictException extends LocationServiceException {
|
|
359
|
+
static {
|
|
360
|
+
__name(this, "ConflictException");
|
|
361
|
+
}
|
|
362
|
+
name = "ConflictException";
|
|
363
|
+
$fault = "client";
|
|
364
|
+
Message;
|
|
351
365
|
/**
|
|
352
366
|
* @internal
|
|
353
367
|
*/
|
|
@@ -357,15 +371,18 @@ var _ConflictException = class _ConflictException extends LocationServiceExcepti
|
|
|
357
371
|
$fault: "client",
|
|
358
372
|
...opts
|
|
359
373
|
});
|
|
360
|
-
this.name = "ConflictException";
|
|
361
|
-
this.$fault = "client";
|
|
362
374
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
363
375
|
this.Message = opts.Message;
|
|
364
376
|
}
|
|
365
377
|
};
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
378
|
+
var InternalServerException = class _InternalServerException extends LocationServiceException {
|
|
379
|
+
static {
|
|
380
|
+
__name(this, "InternalServerException");
|
|
381
|
+
}
|
|
382
|
+
name = "InternalServerException";
|
|
383
|
+
$fault = "server";
|
|
384
|
+
$retryable = {};
|
|
385
|
+
Message;
|
|
369
386
|
/**
|
|
370
387
|
* @internal
|
|
371
388
|
*/
|
|
@@ -375,16 +392,21 @@ var _InternalServerException = class _InternalServerException extends LocationSe
|
|
|
375
392
|
$fault: "server",
|
|
376
393
|
...opts
|
|
377
394
|
});
|
|
378
|
-
this.name = "InternalServerException";
|
|
379
|
-
this.$fault = "server";
|
|
380
|
-
this.$retryable = {};
|
|
381
395
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
382
396
|
this.Message = opts.Message;
|
|
383
397
|
}
|
|
384
398
|
};
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
399
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends LocationServiceException {
|
|
400
|
+
static {
|
|
401
|
+
__name(this, "ServiceQuotaExceededException");
|
|
402
|
+
}
|
|
403
|
+
name = "ServiceQuotaExceededException";
|
|
404
|
+
$fault = "client";
|
|
405
|
+
/**
|
|
406
|
+
* <p>A message with the reason for the service quota exceeded exception error.</p>
|
|
407
|
+
* @public
|
|
408
|
+
*/
|
|
409
|
+
Message;
|
|
388
410
|
/**
|
|
389
411
|
* @internal
|
|
390
412
|
*/
|
|
@@ -394,15 +416,18 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
394
416
|
$fault: "client",
|
|
395
417
|
...opts
|
|
396
418
|
});
|
|
397
|
-
this.name = "ServiceQuotaExceededException";
|
|
398
|
-
this.$fault = "client";
|
|
399
419
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
400
420
|
this.Message = opts.Message;
|
|
401
421
|
}
|
|
402
422
|
};
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
423
|
+
var ThrottlingException = class _ThrottlingException extends LocationServiceException {
|
|
424
|
+
static {
|
|
425
|
+
__name(this, "ThrottlingException");
|
|
426
|
+
}
|
|
427
|
+
name = "ThrottlingException";
|
|
428
|
+
$fault = "client";
|
|
429
|
+
$retryable = {};
|
|
430
|
+
Message;
|
|
406
431
|
/**
|
|
407
432
|
* @internal
|
|
408
433
|
*/
|
|
@@ -412,16 +437,27 @@ var _ThrottlingException = class _ThrottlingException extends LocationServiceExc
|
|
|
412
437
|
$fault: "client",
|
|
413
438
|
...opts
|
|
414
439
|
});
|
|
415
|
-
this.name = "ThrottlingException";
|
|
416
|
-
this.$fault = "client";
|
|
417
|
-
this.$retryable = {};
|
|
418
440
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
419
441
|
this.Message = opts.Message;
|
|
420
442
|
}
|
|
421
443
|
};
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
444
|
+
var ValidationException = class _ValidationException extends LocationServiceException {
|
|
445
|
+
static {
|
|
446
|
+
__name(this, "ValidationException");
|
|
447
|
+
}
|
|
448
|
+
name = "ValidationException";
|
|
449
|
+
$fault = "client";
|
|
450
|
+
Message;
|
|
451
|
+
/**
|
|
452
|
+
* <p>A message with the reason for the validation exception error.</p>
|
|
453
|
+
* @public
|
|
454
|
+
*/
|
|
455
|
+
Reason;
|
|
456
|
+
/**
|
|
457
|
+
* <p>The field where the invalid entry was detected.</p>
|
|
458
|
+
* @public
|
|
459
|
+
*/
|
|
460
|
+
FieldList;
|
|
425
461
|
/**
|
|
426
462
|
* @internal
|
|
427
463
|
*/
|
|
@@ -431,17 +467,19 @@ var _ValidationException = class _ValidationException extends LocationServiceExc
|
|
|
431
467
|
$fault: "client",
|
|
432
468
|
...opts
|
|
433
469
|
});
|
|
434
|
-
this.name = "ValidationException";
|
|
435
|
-
this.$fault = "client";
|
|
436
470
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
437
471
|
this.Message = opts.Message;
|
|
438
472
|
this.Reason = opts.Reason;
|
|
439
473
|
this.FieldList = opts.FieldList;
|
|
440
474
|
}
|
|
441
475
|
};
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
476
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends LocationServiceException {
|
|
477
|
+
static {
|
|
478
|
+
__name(this, "ResourceNotFoundException");
|
|
479
|
+
}
|
|
480
|
+
name = "ResourceNotFoundException";
|
|
481
|
+
$fault = "client";
|
|
482
|
+
Message;
|
|
445
483
|
/**
|
|
446
484
|
* @internal
|
|
447
485
|
*/
|
|
@@ -451,14 +489,10 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Locati
|
|
|
451
489
|
$fault: "client",
|
|
452
490
|
...opts
|
|
453
491
|
});
|
|
454
|
-
this.name = "ResourceNotFoundException";
|
|
455
|
-
this.$fault = "client";
|
|
456
492
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
457
493
|
this.Message = opts.Message;
|
|
458
494
|
}
|
|
459
495
|
};
|
|
460
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
461
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
462
496
|
var CreateKeyResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
463
497
|
...obj,
|
|
464
498
|
...obj.Key && { Key: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -3791,841 +3825,901 @@ var _l = "language";
|
|
|
3791
3825
|
var _tK = "tagKeys";
|
|
3792
3826
|
|
|
3793
3827
|
// src/commands/AssociateTrackerConsumerCommand.ts
|
|
3794
|
-
var
|
|
3828
|
+
var AssociateTrackerConsumerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3795
3829
|
return [
|
|
3796
3830
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3797
3831
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3798
3832
|
];
|
|
3799
3833
|
}).s("LocationService", "AssociateTrackerConsumer", {}).n("LocationClient", "AssociateTrackerConsumerCommand").f(void 0, void 0).ser(se_AssociateTrackerConsumerCommand).de(de_AssociateTrackerConsumerCommand).build() {
|
|
3834
|
+
static {
|
|
3835
|
+
__name(this, "AssociateTrackerConsumerCommand");
|
|
3836
|
+
}
|
|
3800
3837
|
};
|
|
3801
|
-
__name(_AssociateTrackerConsumerCommand, "AssociateTrackerConsumerCommand");
|
|
3802
|
-
var AssociateTrackerConsumerCommand = _AssociateTrackerConsumerCommand;
|
|
3803
3838
|
|
|
3804
3839
|
// src/commands/BatchDeleteDevicePositionHistoryCommand.ts
|
|
3805
3840
|
|
|
3806
3841
|
|
|
3807
3842
|
|
|
3808
|
-
var
|
|
3843
|
+
var BatchDeleteDevicePositionHistoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3809
3844
|
return [
|
|
3810
3845
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3811
3846
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3812
3847
|
];
|
|
3813
3848
|
}).s("LocationService", "BatchDeleteDevicePositionHistory", {}).n("LocationClient", "BatchDeleteDevicePositionHistoryCommand").f(void 0, void 0).ser(se_BatchDeleteDevicePositionHistoryCommand).de(de_BatchDeleteDevicePositionHistoryCommand).build() {
|
|
3849
|
+
static {
|
|
3850
|
+
__name(this, "BatchDeleteDevicePositionHistoryCommand");
|
|
3851
|
+
}
|
|
3814
3852
|
};
|
|
3815
|
-
__name(_BatchDeleteDevicePositionHistoryCommand, "BatchDeleteDevicePositionHistoryCommand");
|
|
3816
|
-
var BatchDeleteDevicePositionHistoryCommand = _BatchDeleteDevicePositionHistoryCommand;
|
|
3817
3853
|
|
|
3818
3854
|
// src/commands/BatchDeleteGeofenceCommand.ts
|
|
3819
3855
|
|
|
3820
3856
|
|
|
3821
3857
|
|
|
3822
|
-
var
|
|
3858
|
+
var BatchDeleteGeofenceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3823
3859
|
return [
|
|
3824
3860
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3825
3861
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3826
3862
|
];
|
|
3827
3863
|
}).s("LocationService", "BatchDeleteGeofence", {}).n("LocationClient", "BatchDeleteGeofenceCommand").f(void 0, void 0).ser(se_BatchDeleteGeofenceCommand).de(de_BatchDeleteGeofenceCommand).build() {
|
|
3864
|
+
static {
|
|
3865
|
+
__name(this, "BatchDeleteGeofenceCommand");
|
|
3866
|
+
}
|
|
3828
3867
|
};
|
|
3829
|
-
__name(_BatchDeleteGeofenceCommand, "BatchDeleteGeofenceCommand");
|
|
3830
|
-
var BatchDeleteGeofenceCommand = _BatchDeleteGeofenceCommand;
|
|
3831
3868
|
|
|
3832
3869
|
// src/commands/BatchEvaluateGeofencesCommand.ts
|
|
3833
3870
|
|
|
3834
3871
|
|
|
3835
3872
|
|
|
3836
|
-
var
|
|
3873
|
+
var BatchEvaluateGeofencesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3837
3874
|
return [
|
|
3838
3875
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3839
3876
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3840
3877
|
];
|
|
3841
3878
|
}).s("LocationService", "BatchEvaluateGeofences", {}).n("LocationClient", "BatchEvaluateGeofencesCommand").f(BatchEvaluateGeofencesRequestFilterSensitiveLog, void 0).ser(se_BatchEvaluateGeofencesCommand).de(de_BatchEvaluateGeofencesCommand).build() {
|
|
3879
|
+
static {
|
|
3880
|
+
__name(this, "BatchEvaluateGeofencesCommand");
|
|
3881
|
+
}
|
|
3842
3882
|
};
|
|
3843
|
-
__name(_BatchEvaluateGeofencesCommand, "BatchEvaluateGeofencesCommand");
|
|
3844
|
-
var BatchEvaluateGeofencesCommand = _BatchEvaluateGeofencesCommand;
|
|
3845
3883
|
|
|
3846
3884
|
// src/commands/BatchGetDevicePositionCommand.ts
|
|
3847
3885
|
|
|
3848
3886
|
|
|
3849
3887
|
|
|
3850
|
-
var
|
|
3888
|
+
var BatchGetDevicePositionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3851
3889
|
return [
|
|
3852
3890
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3853
3891
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3854
3892
|
];
|
|
3855
3893
|
}).s("LocationService", "BatchGetDevicePosition", {}).n("LocationClient", "BatchGetDevicePositionCommand").f(void 0, BatchGetDevicePositionResponseFilterSensitiveLog).ser(se_BatchGetDevicePositionCommand).de(de_BatchGetDevicePositionCommand).build() {
|
|
3894
|
+
static {
|
|
3895
|
+
__name(this, "BatchGetDevicePositionCommand");
|
|
3896
|
+
}
|
|
3856
3897
|
};
|
|
3857
|
-
__name(_BatchGetDevicePositionCommand, "BatchGetDevicePositionCommand");
|
|
3858
|
-
var BatchGetDevicePositionCommand = _BatchGetDevicePositionCommand;
|
|
3859
3898
|
|
|
3860
3899
|
// src/commands/BatchPutGeofenceCommand.ts
|
|
3861
3900
|
|
|
3862
3901
|
|
|
3863
3902
|
|
|
3864
|
-
var
|
|
3903
|
+
var BatchPutGeofenceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3865
3904
|
return [
|
|
3866
3905
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3867
3906
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3868
3907
|
];
|
|
3869
3908
|
}).s("LocationService", "BatchPutGeofence", {}).n("LocationClient", "BatchPutGeofenceCommand").f(BatchPutGeofenceRequestFilterSensitiveLog, void 0).ser(se_BatchPutGeofenceCommand).de(de_BatchPutGeofenceCommand).build() {
|
|
3909
|
+
static {
|
|
3910
|
+
__name(this, "BatchPutGeofenceCommand");
|
|
3911
|
+
}
|
|
3870
3912
|
};
|
|
3871
|
-
__name(_BatchPutGeofenceCommand, "BatchPutGeofenceCommand");
|
|
3872
|
-
var BatchPutGeofenceCommand = _BatchPutGeofenceCommand;
|
|
3873
3913
|
|
|
3874
3914
|
// src/commands/BatchUpdateDevicePositionCommand.ts
|
|
3875
3915
|
|
|
3876
3916
|
|
|
3877
3917
|
|
|
3878
|
-
var
|
|
3918
|
+
var BatchUpdateDevicePositionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3879
3919
|
return [
|
|
3880
3920
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3881
3921
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3882
3922
|
];
|
|
3883
3923
|
}).s("LocationService", "BatchUpdateDevicePosition", {}).n("LocationClient", "BatchUpdateDevicePositionCommand").f(BatchUpdateDevicePositionRequestFilterSensitiveLog, void 0).ser(se_BatchUpdateDevicePositionCommand).de(de_BatchUpdateDevicePositionCommand).build() {
|
|
3924
|
+
static {
|
|
3925
|
+
__name(this, "BatchUpdateDevicePositionCommand");
|
|
3926
|
+
}
|
|
3884
3927
|
};
|
|
3885
|
-
__name(_BatchUpdateDevicePositionCommand, "BatchUpdateDevicePositionCommand");
|
|
3886
|
-
var BatchUpdateDevicePositionCommand = _BatchUpdateDevicePositionCommand;
|
|
3887
3928
|
|
|
3888
3929
|
// src/commands/CalculateRouteCommand.ts
|
|
3889
3930
|
|
|
3890
3931
|
|
|
3891
3932
|
|
|
3892
|
-
var
|
|
3933
|
+
var CalculateRouteCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3893
3934
|
return [
|
|
3894
3935
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3895
3936
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3896
3937
|
];
|
|
3897
3938
|
}).s("LocationService", "CalculateRoute", {}).n("LocationClient", "CalculateRouteCommand").f(CalculateRouteRequestFilterSensitiveLog, CalculateRouteResponseFilterSensitiveLog).ser(se_CalculateRouteCommand).de(de_CalculateRouteCommand).build() {
|
|
3939
|
+
static {
|
|
3940
|
+
__name(this, "CalculateRouteCommand");
|
|
3941
|
+
}
|
|
3898
3942
|
};
|
|
3899
|
-
__name(_CalculateRouteCommand, "CalculateRouteCommand");
|
|
3900
|
-
var CalculateRouteCommand = _CalculateRouteCommand;
|
|
3901
3943
|
|
|
3902
3944
|
// src/commands/CalculateRouteMatrixCommand.ts
|
|
3903
3945
|
|
|
3904
3946
|
|
|
3905
3947
|
|
|
3906
|
-
var
|
|
3948
|
+
var CalculateRouteMatrixCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3907
3949
|
return [
|
|
3908
3950
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3909
3951
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3910
3952
|
];
|
|
3911
3953
|
}).s("LocationService", "CalculateRouteMatrix", {}).n("LocationClient", "CalculateRouteMatrixCommand").f(CalculateRouteMatrixRequestFilterSensitiveLog, CalculateRouteMatrixResponseFilterSensitiveLog).ser(se_CalculateRouteMatrixCommand).de(de_CalculateRouteMatrixCommand).build() {
|
|
3954
|
+
static {
|
|
3955
|
+
__name(this, "CalculateRouteMatrixCommand");
|
|
3956
|
+
}
|
|
3912
3957
|
};
|
|
3913
|
-
__name(_CalculateRouteMatrixCommand, "CalculateRouteMatrixCommand");
|
|
3914
|
-
var CalculateRouteMatrixCommand = _CalculateRouteMatrixCommand;
|
|
3915
3958
|
|
|
3916
3959
|
// src/commands/CreateGeofenceCollectionCommand.ts
|
|
3917
3960
|
|
|
3918
3961
|
|
|
3919
3962
|
|
|
3920
|
-
var
|
|
3963
|
+
var CreateGeofenceCollectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3921
3964
|
return [
|
|
3922
3965
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3923
3966
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3924
3967
|
];
|
|
3925
3968
|
}).s("LocationService", "CreateGeofenceCollection", {}).n("LocationClient", "CreateGeofenceCollectionCommand").f(void 0, void 0).ser(se_CreateGeofenceCollectionCommand).de(de_CreateGeofenceCollectionCommand).build() {
|
|
3969
|
+
static {
|
|
3970
|
+
__name(this, "CreateGeofenceCollectionCommand");
|
|
3971
|
+
}
|
|
3926
3972
|
};
|
|
3927
|
-
__name(_CreateGeofenceCollectionCommand, "CreateGeofenceCollectionCommand");
|
|
3928
|
-
var CreateGeofenceCollectionCommand = _CreateGeofenceCollectionCommand;
|
|
3929
3973
|
|
|
3930
3974
|
// src/commands/CreateKeyCommand.ts
|
|
3931
3975
|
|
|
3932
3976
|
|
|
3933
3977
|
|
|
3934
|
-
var
|
|
3978
|
+
var CreateKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3935
3979
|
return [
|
|
3936
3980
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3937
3981
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3938
3982
|
];
|
|
3939
3983
|
}).s("LocationService", "CreateKey", {}).n("LocationClient", "CreateKeyCommand").f(void 0, CreateKeyResponseFilterSensitiveLog).ser(se_CreateKeyCommand).de(de_CreateKeyCommand).build() {
|
|
3984
|
+
static {
|
|
3985
|
+
__name(this, "CreateKeyCommand");
|
|
3986
|
+
}
|
|
3940
3987
|
};
|
|
3941
|
-
__name(_CreateKeyCommand, "CreateKeyCommand");
|
|
3942
|
-
var CreateKeyCommand = _CreateKeyCommand;
|
|
3943
3988
|
|
|
3944
3989
|
// src/commands/CreateMapCommand.ts
|
|
3945
3990
|
|
|
3946
3991
|
|
|
3947
3992
|
|
|
3948
|
-
var
|
|
3993
|
+
var CreateMapCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3949
3994
|
return [
|
|
3950
3995
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3951
3996
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3952
3997
|
];
|
|
3953
3998
|
}).s("LocationService", "CreateMap", {}).n("LocationClient", "CreateMapCommand").f(void 0, void 0).ser(se_CreateMapCommand).de(de_CreateMapCommand).build() {
|
|
3999
|
+
static {
|
|
4000
|
+
__name(this, "CreateMapCommand");
|
|
4001
|
+
}
|
|
3954
4002
|
};
|
|
3955
|
-
__name(_CreateMapCommand, "CreateMapCommand");
|
|
3956
|
-
var CreateMapCommand = _CreateMapCommand;
|
|
3957
4003
|
|
|
3958
4004
|
// src/commands/CreatePlaceIndexCommand.ts
|
|
3959
4005
|
|
|
3960
4006
|
|
|
3961
4007
|
|
|
3962
|
-
var
|
|
4008
|
+
var CreatePlaceIndexCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3963
4009
|
return [
|
|
3964
4010
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3965
4011
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3966
4012
|
];
|
|
3967
4013
|
}).s("LocationService", "CreatePlaceIndex", {}).n("LocationClient", "CreatePlaceIndexCommand").f(void 0, void 0).ser(se_CreatePlaceIndexCommand).de(de_CreatePlaceIndexCommand).build() {
|
|
4014
|
+
static {
|
|
4015
|
+
__name(this, "CreatePlaceIndexCommand");
|
|
4016
|
+
}
|
|
3968
4017
|
};
|
|
3969
|
-
__name(_CreatePlaceIndexCommand, "CreatePlaceIndexCommand");
|
|
3970
|
-
var CreatePlaceIndexCommand = _CreatePlaceIndexCommand;
|
|
3971
4018
|
|
|
3972
4019
|
// src/commands/CreateRouteCalculatorCommand.ts
|
|
3973
4020
|
|
|
3974
4021
|
|
|
3975
4022
|
|
|
3976
|
-
var
|
|
4023
|
+
var CreateRouteCalculatorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3977
4024
|
return [
|
|
3978
4025
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3979
4026
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3980
4027
|
];
|
|
3981
4028
|
}).s("LocationService", "CreateRouteCalculator", {}).n("LocationClient", "CreateRouteCalculatorCommand").f(void 0, void 0).ser(se_CreateRouteCalculatorCommand).de(de_CreateRouteCalculatorCommand).build() {
|
|
4029
|
+
static {
|
|
4030
|
+
__name(this, "CreateRouteCalculatorCommand");
|
|
4031
|
+
}
|
|
3982
4032
|
};
|
|
3983
|
-
__name(_CreateRouteCalculatorCommand, "CreateRouteCalculatorCommand");
|
|
3984
|
-
var CreateRouteCalculatorCommand = _CreateRouteCalculatorCommand;
|
|
3985
4033
|
|
|
3986
4034
|
// src/commands/CreateTrackerCommand.ts
|
|
3987
4035
|
|
|
3988
4036
|
|
|
3989
4037
|
|
|
3990
|
-
var
|
|
4038
|
+
var CreateTrackerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3991
4039
|
return [
|
|
3992
4040
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3993
4041
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3994
4042
|
];
|
|
3995
4043
|
}).s("LocationService", "CreateTracker", {}).n("LocationClient", "CreateTrackerCommand").f(void 0, void 0).ser(se_CreateTrackerCommand).de(de_CreateTrackerCommand).build() {
|
|
4044
|
+
static {
|
|
4045
|
+
__name(this, "CreateTrackerCommand");
|
|
4046
|
+
}
|
|
3996
4047
|
};
|
|
3997
|
-
__name(_CreateTrackerCommand, "CreateTrackerCommand");
|
|
3998
|
-
var CreateTrackerCommand = _CreateTrackerCommand;
|
|
3999
4048
|
|
|
4000
4049
|
// src/commands/DeleteGeofenceCollectionCommand.ts
|
|
4001
4050
|
|
|
4002
4051
|
|
|
4003
4052
|
|
|
4004
|
-
var
|
|
4053
|
+
var DeleteGeofenceCollectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4005
4054
|
return [
|
|
4006
4055
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4007
4056
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4008
4057
|
];
|
|
4009
4058
|
}).s("LocationService", "DeleteGeofenceCollection", {}).n("LocationClient", "DeleteGeofenceCollectionCommand").f(void 0, void 0).ser(se_DeleteGeofenceCollectionCommand).de(de_DeleteGeofenceCollectionCommand).build() {
|
|
4059
|
+
static {
|
|
4060
|
+
__name(this, "DeleteGeofenceCollectionCommand");
|
|
4061
|
+
}
|
|
4010
4062
|
};
|
|
4011
|
-
__name(_DeleteGeofenceCollectionCommand, "DeleteGeofenceCollectionCommand");
|
|
4012
|
-
var DeleteGeofenceCollectionCommand = _DeleteGeofenceCollectionCommand;
|
|
4013
4063
|
|
|
4014
4064
|
// src/commands/DeleteKeyCommand.ts
|
|
4015
4065
|
|
|
4016
4066
|
|
|
4017
4067
|
|
|
4018
|
-
var
|
|
4068
|
+
var DeleteKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4019
4069
|
return [
|
|
4020
4070
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4021
4071
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4022
4072
|
];
|
|
4023
4073
|
}).s("LocationService", "DeleteKey", {}).n("LocationClient", "DeleteKeyCommand").f(void 0, void 0).ser(se_DeleteKeyCommand).de(de_DeleteKeyCommand).build() {
|
|
4074
|
+
static {
|
|
4075
|
+
__name(this, "DeleteKeyCommand");
|
|
4076
|
+
}
|
|
4024
4077
|
};
|
|
4025
|
-
__name(_DeleteKeyCommand, "DeleteKeyCommand");
|
|
4026
|
-
var DeleteKeyCommand = _DeleteKeyCommand;
|
|
4027
4078
|
|
|
4028
4079
|
// src/commands/DeleteMapCommand.ts
|
|
4029
4080
|
|
|
4030
4081
|
|
|
4031
4082
|
|
|
4032
|
-
var
|
|
4083
|
+
var DeleteMapCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4033
4084
|
return [
|
|
4034
4085
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4035
4086
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4036
4087
|
];
|
|
4037
4088
|
}).s("LocationService", "DeleteMap", {}).n("LocationClient", "DeleteMapCommand").f(void 0, void 0).ser(se_DeleteMapCommand).de(de_DeleteMapCommand).build() {
|
|
4089
|
+
static {
|
|
4090
|
+
__name(this, "DeleteMapCommand");
|
|
4091
|
+
}
|
|
4038
4092
|
};
|
|
4039
|
-
__name(_DeleteMapCommand, "DeleteMapCommand");
|
|
4040
|
-
var DeleteMapCommand = _DeleteMapCommand;
|
|
4041
4093
|
|
|
4042
4094
|
// src/commands/DeletePlaceIndexCommand.ts
|
|
4043
4095
|
|
|
4044
4096
|
|
|
4045
4097
|
|
|
4046
|
-
var
|
|
4098
|
+
var DeletePlaceIndexCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4047
4099
|
return [
|
|
4048
4100
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4049
4101
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4050
4102
|
];
|
|
4051
4103
|
}).s("LocationService", "DeletePlaceIndex", {}).n("LocationClient", "DeletePlaceIndexCommand").f(void 0, void 0).ser(se_DeletePlaceIndexCommand).de(de_DeletePlaceIndexCommand).build() {
|
|
4104
|
+
static {
|
|
4105
|
+
__name(this, "DeletePlaceIndexCommand");
|
|
4106
|
+
}
|
|
4052
4107
|
};
|
|
4053
|
-
__name(_DeletePlaceIndexCommand, "DeletePlaceIndexCommand");
|
|
4054
|
-
var DeletePlaceIndexCommand = _DeletePlaceIndexCommand;
|
|
4055
4108
|
|
|
4056
4109
|
// src/commands/DeleteRouteCalculatorCommand.ts
|
|
4057
4110
|
|
|
4058
4111
|
|
|
4059
4112
|
|
|
4060
|
-
var
|
|
4113
|
+
var DeleteRouteCalculatorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4061
4114
|
return [
|
|
4062
4115
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4063
4116
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4064
4117
|
];
|
|
4065
4118
|
}).s("LocationService", "DeleteRouteCalculator", {}).n("LocationClient", "DeleteRouteCalculatorCommand").f(void 0, void 0).ser(se_DeleteRouteCalculatorCommand).de(de_DeleteRouteCalculatorCommand).build() {
|
|
4119
|
+
static {
|
|
4120
|
+
__name(this, "DeleteRouteCalculatorCommand");
|
|
4121
|
+
}
|
|
4066
4122
|
};
|
|
4067
|
-
__name(_DeleteRouteCalculatorCommand, "DeleteRouteCalculatorCommand");
|
|
4068
|
-
var DeleteRouteCalculatorCommand = _DeleteRouteCalculatorCommand;
|
|
4069
4123
|
|
|
4070
4124
|
// src/commands/DeleteTrackerCommand.ts
|
|
4071
4125
|
|
|
4072
4126
|
|
|
4073
4127
|
|
|
4074
|
-
var
|
|
4128
|
+
var DeleteTrackerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4075
4129
|
return [
|
|
4076
4130
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4077
4131
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4078
4132
|
];
|
|
4079
4133
|
}).s("LocationService", "DeleteTracker", {}).n("LocationClient", "DeleteTrackerCommand").f(void 0, void 0).ser(se_DeleteTrackerCommand).de(de_DeleteTrackerCommand).build() {
|
|
4134
|
+
static {
|
|
4135
|
+
__name(this, "DeleteTrackerCommand");
|
|
4136
|
+
}
|
|
4080
4137
|
};
|
|
4081
|
-
__name(_DeleteTrackerCommand, "DeleteTrackerCommand");
|
|
4082
|
-
var DeleteTrackerCommand = _DeleteTrackerCommand;
|
|
4083
4138
|
|
|
4084
4139
|
// src/commands/DescribeGeofenceCollectionCommand.ts
|
|
4085
4140
|
|
|
4086
4141
|
|
|
4087
4142
|
|
|
4088
|
-
var
|
|
4143
|
+
var DescribeGeofenceCollectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4089
4144
|
return [
|
|
4090
4145
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4091
4146
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4092
4147
|
];
|
|
4093
4148
|
}).s("LocationService", "DescribeGeofenceCollection", {}).n("LocationClient", "DescribeGeofenceCollectionCommand").f(void 0, void 0).ser(se_DescribeGeofenceCollectionCommand).de(de_DescribeGeofenceCollectionCommand).build() {
|
|
4149
|
+
static {
|
|
4150
|
+
__name(this, "DescribeGeofenceCollectionCommand");
|
|
4151
|
+
}
|
|
4094
4152
|
};
|
|
4095
|
-
__name(_DescribeGeofenceCollectionCommand, "DescribeGeofenceCollectionCommand");
|
|
4096
|
-
var DescribeGeofenceCollectionCommand = _DescribeGeofenceCollectionCommand;
|
|
4097
4153
|
|
|
4098
4154
|
// src/commands/DescribeKeyCommand.ts
|
|
4099
4155
|
|
|
4100
4156
|
|
|
4101
4157
|
|
|
4102
|
-
var
|
|
4158
|
+
var DescribeKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4103
4159
|
return [
|
|
4104
4160
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4105
4161
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4106
4162
|
];
|
|
4107
4163
|
}).s("LocationService", "DescribeKey", {}).n("LocationClient", "DescribeKeyCommand").f(void 0, DescribeKeyResponseFilterSensitiveLog).ser(se_DescribeKeyCommand).de(de_DescribeKeyCommand).build() {
|
|
4164
|
+
static {
|
|
4165
|
+
__name(this, "DescribeKeyCommand");
|
|
4166
|
+
}
|
|
4108
4167
|
};
|
|
4109
|
-
__name(_DescribeKeyCommand, "DescribeKeyCommand");
|
|
4110
|
-
var DescribeKeyCommand = _DescribeKeyCommand;
|
|
4111
4168
|
|
|
4112
4169
|
// src/commands/DescribeMapCommand.ts
|
|
4113
4170
|
|
|
4114
4171
|
|
|
4115
4172
|
|
|
4116
|
-
var
|
|
4173
|
+
var DescribeMapCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4117
4174
|
return [
|
|
4118
4175
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4119
4176
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4120
4177
|
];
|
|
4121
4178
|
}).s("LocationService", "DescribeMap", {}).n("LocationClient", "DescribeMapCommand").f(void 0, void 0).ser(se_DescribeMapCommand).de(de_DescribeMapCommand).build() {
|
|
4179
|
+
static {
|
|
4180
|
+
__name(this, "DescribeMapCommand");
|
|
4181
|
+
}
|
|
4122
4182
|
};
|
|
4123
|
-
__name(_DescribeMapCommand, "DescribeMapCommand");
|
|
4124
|
-
var DescribeMapCommand = _DescribeMapCommand;
|
|
4125
4183
|
|
|
4126
4184
|
// src/commands/DescribePlaceIndexCommand.ts
|
|
4127
4185
|
|
|
4128
4186
|
|
|
4129
4187
|
|
|
4130
|
-
var
|
|
4188
|
+
var DescribePlaceIndexCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4131
4189
|
return [
|
|
4132
4190
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4133
4191
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4134
4192
|
];
|
|
4135
4193
|
}).s("LocationService", "DescribePlaceIndex", {}).n("LocationClient", "DescribePlaceIndexCommand").f(void 0, void 0).ser(se_DescribePlaceIndexCommand).de(de_DescribePlaceIndexCommand).build() {
|
|
4194
|
+
static {
|
|
4195
|
+
__name(this, "DescribePlaceIndexCommand");
|
|
4196
|
+
}
|
|
4136
4197
|
};
|
|
4137
|
-
__name(_DescribePlaceIndexCommand, "DescribePlaceIndexCommand");
|
|
4138
|
-
var DescribePlaceIndexCommand = _DescribePlaceIndexCommand;
|
|
4139
4198
|
|
|
4140
4199
|
// src/commands/DescribeRouteCalculatorCommand.ts
|
|
4141
4200
|
|
|
4142
4201
|
|
|
4143
4202
|
|
|
4144
|
-
var
|
|
4203
|
+
var DescribeRouteCalculatorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4145
4204
|
return [
|
|
4146
4205
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4147
4206
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4148
4207
|
];
|
|
4149
4208
|
}).s("LocationService", "DescribeRouteCalculator", {}).n("LocationClient", "DescribeRouteCalculatorCommand").f(void 0, void 0).ser(se_DescribeRouteCalculatorCommand).de(de_DescribeRouteCalculatorCommand).build() {
|
|
4209
|
+
static {
|
|
4210
|
+
__name(this, "DescribeRouteCalculatorCommand");
|
|
4211
|
+
}
|
|
4150
4212
|
};
|
|
4151
|
-
__name(_DescribeRouteCalculatorCommand, "DescribeRouteCalculatorCommand");
|
|
4152
|
-
var DescribeRouteCalculatorCommand = _DescribeRouteCalculatorCommand;
|
|
4153
4213
|
|
|
4154
4214
|
// src/commands/DescribeTrackerCommand.ts
|
|
4155
4215
|
|
|
4156
4216
|
|
|
4157
4217
|
|
|
4158
|
-
var
|
|
4218
|
+
var DescribeTrackerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4159
4219
|
return [
|
|
4160
4220
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4161
4221
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4162
4222
|
];
|
|
4163
4223
|
}).s("LocationService", "DescribeTracker", {}).n("LocationClient", "DescribeTrackerCommand").f(void 0, void 0).ser(se_DescribeTrackerCommand).de(de_DescribeTrackerCommand).build() {
|
|
4224
|
+
static {
|
|
4225
|
+
__name(this, "DescribeTrackerCommand");
|
|
4226
|
+
}
|
|
4164
4227
|
};
|
|
4165
|
-
__name(_DescribeTrackerCommand, "DescribeTrackerCommand");
|
|
4166
|
-
var DescribeTrackerCommand = _DescribeTrackerCommand;
|
|
4167
4228
|
|
|
4168
4229
|
// src/commands/DisassociateTrackerConsumerCommand.ts
|
|
4169
4230
|
|
|
4170
4231
|
|
|
4171
4232
|
|
|
4172
|
-
var
|
|
4233
|
+
var DisassociateTrackerConsumerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4173
4234
|
return [
|
|
4174
4235
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4175
4236
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4176
4237
|
];
|
|
4177
4238
|
}).s("LocationService", "DisassociateTrackerConsumer", {}).n("LocationClient", "DisassociateTrackerConsumerCommand").f(void 0, void 0).ser(se_DisassociateTrackerConsumerCommand).de(de_DisassociateTrackerConsumerCommand).build() {
|
|
4239
|
+
static {
|
|
4240
|
+
__name(this, "DisassociateTrackerConsumerCommand");
|
|
4241
|
+
}
|
|
4178
4242
|
};
|
|
4179
|
-
__name(_DisassociateTrackerConsumerCommand, "DisassociateTrackerConsumerCommand");
|
|
4180
|
-
var DisassociateTrackerConsumerCommand = _DisassociateTrackerConsumerCommand;
|
|
4181
4243
|
|
|
4182
4244
|
// src/commands/ForecastGeofenceEventsCommand.ts
|
|
4183
4245
|
|
|
4184
4246
|
|
|
4185
4247
|
|
|
4186
|
-
var
|
|
4248
|
+
var ForecastGeofenceEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4187
4249
|
return [
|
|
4188
4250
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4189
4251
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4190
4252
|
];
|
|
4191
4253
|
}).s("LocationService", "ForecastGeofenceEvents", {}).n("LocationClient", "ForecastGeofenceEventsCommand").f(ForecastGeofenceEventsRequestFilterSensitiveLog, ForecastGeofenceEventsResponseFilterSensitiveLog).ser(se_ForecastGeofenceEventsCommand).de(de_ForecastGeofenceEventsCommand).build() {
|
|
4254
|
+
static {
|
|
4255
|
+
__name(this, "ForecastGeofenceEventsCommand");
|
|
4256
|
+
}
|
|
4192
4257
|
};
|
|
4193
|
-
__name(_ForecastGeofenceEventsCommand, "ForecastGeofenceEventsCommand");
|
|
4194
|
-
var ForecastGeofenceEventsCommand = _ForecastGeofenceEventsCommand;
|
|
4195
4258
|
|
|
4196
4259
|
// src/commands/GetDevicePositionCommand.ts
|
|
4197
4260
|
|
|
4198
4261
|
|
|
4199
4262
|
|
|
4200
|
-
var
|
|
4263
|
+
var GetDevicePositionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4201
4264
|
return [
|
|
4202
4265
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4203
4266
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4204
4267
|
];
|
|
4205
4268
|
}).s("LocationService", "GetDevicePosition", {}).n("LocationClient", "GetDevicePositionCommand").f(void 0, GetDevicePositionResponseFilterSensitiveLog).ser(se_GetDevicePositionCommand).de(de_GetDevicePositionCommand).build() {
|
|
4269
|
+
static {
|
|
4270
|
+
__name(this, "GetDevicePositionCommand");
|
|
4271
|
+
}
|
|
4206
4272
|
};
|
|
4207
|
-
__name(_GetDevicePositionCommand, "GetDevicePositionCommand");
|
|
4208
|
-
var GetDevicePositionCommand = _GetDevicePositionCommand;
|
|
4209
4273
|
|
|
4210
4274
|
// src/commands/GetDevicePositionHistoryCommand.ts
|
|
4211
4275
|
|
|
4212
4276
|
|
|
4213
4277
|
|
|
4214
|
-
var
|
|
4278
|
+
var GetDevicePositionHistoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4215
4279
|
return [
|
|
4216
4280
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4217
4281
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4218
4282
|
];
|
|
4219
4283
|
}).s("LocationService", "GetDevicePositionHistory", {}).n("LocationClient", "GetDevicePositionHistoryCommand").f(void 0, GetDevicePositionHistoryResponseFilterSensitiveLog).ser(se_GetDevicePositionHistoryCommand).de(de_GetDevicePositionHistoryCommand).build() {
|
|
4284
|
+
static {
|
|
4285
|
+
__name(this, "GetDevicePositionHistoryCommand");
|
|
4286
|
+
}
|
|
4220
4287
|
};
|
|
4221
|
-
__name(_GetDevicePositionHistoryCommand, "GetDevicePositionHistoryCommand");
|
|
4222
|
-
var GetDevicePositionHistoryCommand = _GetDevicePositionHistoryCommand;
|
|
4223
4288
|
|
|
4224
4289
|
// src/commands/GetGeofenceCommand.ts
|
|
4225
4290
|
|
|
4226
4291
|
|
|
4227
4292
|
|
|
4228
|
-
var
|
|
4293
|
+
var GetGeofenceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4229
4294
|
return [
|
|
4230
4295
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4231
4296
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4232
4297
|
];
|
|
4233
4298
|
}).s("LocationService", "GetGeofence", {}).n("LocationClient", "GetGeofenceCommand").f(void 0, GetGeofenceResponseFilterSensitiveLog).ser(se_GetGeofenceCommand).de(de_GetGeofenceCommand).build() {
|
|
4299
|
+
static {
|
|
4300
|
+
__name(this, "GetGeofenceCommand");
|
|
4301
|
+
}
|
|
4234
4302
|
};
|
|
4235
|
-
__name(_GetGeofenceCommand, "GetGeofenceCommand");
|
|
4236
|
-
var GetGeofenceCommand = _GetGeofenceCommand;
|
|
4237
4303
|
|
|
4238
4304
|
// src/commands/GetMapGlyphsCommand.ts
|
|
4239
4305
|
|
|
4240
4306
|
|
|
4241
4307
|
|
|
4242
|
-
var
|
|
4308
|
+
var GetMapGlyphsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4243
4309
|
return [
|
|
4244
4310
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4245
4311
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4246
4312
|
];
|
|
4247
4313
|
}).s("LocationService", "GetMapGlyphs", {}).n("LocationClient", "GetMapGlyphsCommand").f(GetMapGlyphsRequestFilterSensitiveLog, void 0).ser(se_GetMapGlyphsCommand).de(de_GetMapGlyphsCommand).build() {
|
|
4314
|
+
static {
|
|
4315
|
+
__name(this, "GetMapGlyphsCommand");
|
|
4316
|
+
}
|
|
4248
4317
|
};
|
|
4249
|
-
__name(_GetMapGlyphsCommand, "GetMapGlyphsCommand");
|
|
4250
|
-
var GetMapGlyphsCommand = _GetMapGlyphsCommand;
|
|
4251
4318
|
|
|
4252
4319
|
// src/commands/GetMapSpritesCommand.ts
|
|
4253
4320
|
|
|
4254
4321
|
|
|
4255
4322
|
|
|
4256
|
-
var
|
|
4323
|
+
var GetMapSpritesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4257
4324
|
return [
|
|
4258
4325
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4259
4326
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4260
4327
|
];
|
|
4261
4328
|
}).s("LocationService", "GetMapSprites", {}).n("LocationClient", "GetMapSpritesCommand").f(GetMapSpritesRequestFilterSensitiveLog, void 0).ser(se_GetMapSpritesCommand).de(de_GetMapSpritesCommand).build() {
|
|
4329
|
+
static {
|
|
4330
|
+
__name(this, "GetMapSpritesCommand");
|
|
4331
|
+
}
|
|
4262
4332
|
};
|
|
4263
|
-
__name(_GetMapSpritesCommand, "GetMapSpritesCommand");
|
|
4264
|
-
var GetMapSpritesCommand = _GetMapSpritesCommand;
|
|
4265
4333
|
|
|
4266
4334
|
// src/commands/GetMapStyleDescriptorCommand.ts
|
|
4267
4335
|
|
|
4268
4336
|
|
|
4269
4337
|
|
|
4270
|
-
var
|
|
4338
|
+
var GetMapStyleDescriptorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4271
4339
|
return [
|
|
4272
4340
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4273
4341
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4274
4342
|
];
|
|
4275
4343
|
}).s("LocationService", "GetMapStyleDescriptor", {}).n("LocationClient", "GetMapStyleDescriptorCommand").f(GetMapStyleDescriptorRequestFilterSensitiveLog, void 0).ser(se_GetMapStyleDescriptorCommand).de(de_GetMapStyleDescriptorCommand).build() {
|
|
4344
|
+
static {
|
|
4345
|
+
__name(this, "GetMapStyleDescriptorCommand");
|
|
4346
|
+
}
|
|
4276
4347
|
};
|
|
4277
|
-
__name(_GetMapStyleDescriptorCommand, "GetMapStyleDescriptorCommand");
|
|
4278
|
-
var GetMapStyleDescriptorCommand = _GetMapStyleDescriptorCommand;
|
|
4279
4348
|
|
|
4280
4349
|
// src/commands/GetMapTileCommand.ts
|
|
4281
4350
|
|
|
4282
4351
|
|
|
4283
4352
|
|
|
4284
|
-
var
|
|
4353
|
+
var GetMapTileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4285
4354
|
return [
|
|
4286
4355
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4287
4356
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4288
4357
|
];
|
|
4289
4358
|
}).s("LocationService", "GetMapTile", {}).n("LocationClient", "GetMapTileCommand").f(GetMapTileRequestFilterSensitiveLog, void 0).ser(se_GetMapTileCommand).de(de_GetMapTileCommand).build() {
|
|
4359
|
+
static {
|
|
4360
|
+
__name(this, "GetMapTileCommand");
|
|
4361
|
+
}
|
|
4290
4362
|
};
|
|
4291
|
-
__name(_GetMapTileCommand, "GetMapTileCommand");
|
|
4292
|
-
var GetMapTileCommand = _GetMapTileCommand;
|
|
4293
4363
|
|
|
4294
4364
|
// src/commands/GetPlaceCommand.ts
|
|
4295
4365
|
|
|
4296
4366
|
|
|
4297
4367
|
|
|
4298
|
-
var
|
|
4368
|
+
var GetPlaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4299
4369
|
return [
|
|
4300
4370
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4301
4371
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4302
4372
|
];
|
|
4303
4373
|
}).s("LocationService", "GetPlace", {}).n("LocationClient", "GetPlaceCommand").f(GetPlaceRequestFilterSensitiveLog, GetPlaceResponseFilterSensitiveLog).ser(se_GetPlaceCommand).de(de_GetPlaceCommand).build() {
|
|
4374
|
+
static {
|
|
4375
|
+
__name(this, "GetPlaceCommand");
|
|
4376
|
+
}
|
|
4304
4377
|
};
|
|
4305
|
-
__name(_GetPlaceCommand, "GetPlaceCommand");
|
|
4306
|
-
var GetPlaceCommand = _GetPlaceCommand;
|
|
4307
4378
|
|
|
4308
4379
|
// src/commands/ListDevicePositionsCommand.ts
|
|
4309
4380
|
|
|
4310
4381
|
|
|
4311
4382
|
|
|
4312
|
-
var
|
|
4383
|
+
var ListDevicePositionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4313
4384
|
return [
|
|
4314
4385
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4315
4386
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4316
4387
|
];
|
|
4317
4388
|
}).s("LocationService", "ListDevicePositions", {}).n("LocationClient", "ListDevicePositionsCommand").f(ListDevicePositionsRequestFilterSensitiveLog, ListDevicePositionsResponseFilterSensitiveLog).ser(se_ListDevicePositionsCommand).de(de_ListDevicePositionsCommand).build() {
|
|
4389
|
+
static {
|
|
4390
|
+
__name(this, "ListDevicePositionsCommand");
|
|
4391
|
+
}
|
|
4318
4392
|
};
|
|
4319
|
-
__name(_ListDevicePositionsCommand, "ListDevicePositionsCommand");
|
|
4320
|
-
var ListDevicePositionsCommand = _ListDevicePositionsCommand;
|
|
4321
4393
|
|
|
4322
4394
|
// src/commands/ListGeofenceCollectionsCommand.ts
|
|
4323
4395
|
|
|
4324
4396
|
|
|
4325
4397
|
|
|
4326
|
-
var
|
|
4398
|
+
var ListGeofenceCollectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4327
4399
|
return [
|
|
4328
4400
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4329
4401
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4330
4402
|
];
|
|
4331
4403
|
}).s("LocationService", "ListGeofenceCollections", {}).n("LocationClient", "ListGeofenceCollectionsCommand").f(void 0, void 0).ser(se_ListGeofenceCollectionsCommand).de(de_ListGeofenceCollectionsCommand).build() {
|
|
4404
|
+
static {
|
|
4405
|
+
__name(this, "ListGeofenceCollectionsCommand");
|
|
4406
|
+
}
|
|
4332
4407
|
};
|
|
4333
|
-
__name(_ListGeofenceCollectionsCommand, "ListGeofenceCollectionsCommand");
|
|
4334
|
-
var ListGeofenceCollectionsCommand = _ListGeofenceCollectionsCommand;
|
|
4335
4408
|
|
|
4336
4409
|
// src/commands/ListGeofencesCommand.ts
|
|
4337
4410
|
|
|
4338
4411
|
|
|
4339
4412
|
|
|
4340
|
-
var
|
|
4413
|
+
var ListGeofencesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4341
4414
|
return [
|
|
4342
4415
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4343
4416
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4344
4417
|
];
|
|
4345
4418
|
}).s("LocationService", "ListGeofences", {}).n("LocationClient", "ListGeofencesCommand").f(void 0, ListGeofencesResponseFilterSensitiveLog).ser(se_ListGeofencesCommand).de(de_ListGeofencesCommand).build() {
|
|
4419
|
+
static {
|
|
4420
|
+
__name(this, "ListGeofencesCommand");
|
|
4421
|
+
}
|
|
4346
4422
|
};
|
|
4347
|
-
__name(_ListGeofencesCommand, "ListGeofencesCommand");
|
|
4348
|
-
var ListGeofencesCommand = _ListGeofencesCommand;
|
|
4349
4423
|
|
|
4350
4424
|
// src/commands/ListKeysCommand.ts
|
|
4351
4425
|
|
|
4352
4426
|
|
|
4353
4427
|
|
|
4354
|
-
var
|
|
4428
|
+
var ListKeysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4355
4429
|
return [
|
|
4356
4430
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4357
4431
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4358
4432
|
];
|
|
4359
4433
|
}).s("LocationService", "ListKeys", {}).n("LocationClient", "ListKeysCommand").f(void 0, void 0).ser(se_ListKeysCommand).de(de_ListKeysCommand).build() {
|
|
4434
|
+
static {
|
|
4435
|
+
__name(this, "ListKeysCommand");
|
|
4436
|
+
}
|
|
4360
4437
|
};
|
|
4361
|
-
__name(_ListKeysCommand, "ListKeysCommand");
|
|
4362
|
-
var ListKeysCommand = _ListKeysCommand;
|
|
4363
4438
|
|
|
4364
4439
|
// src/commands/ListMapsCommand.ts
|
|
4365
4440
|
|
|
4366
4441
|
|
|
4367
4442
|
|
|
4368
|
-
var
|
|
4443
|
+
var ListMapsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4369
4444
|
return [
|
|
4370
4445
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4371
4446
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4372
4447
|
];
|
|
4373
4448
|
}).s("LocationService", "ListMaps", {}).n("LocationClient", "ListMapsCommand").f(void 0, void 0).ser(se_ListMapsCommand).de(de_ListMapsCommand).build() {
|
|
4449
|
+
static {
|
|
4450
|
+
__name(this, "ListMapsCommand");
|
|
4451
|
+
}
|
|
4374
4452
|
};
|
|
4375
|
-
__name(_ListMapsCommand, "ListMapsCommand");
|
|
4376
|
-
var ListMapsCommand = _ListMapsCommand;
|
|
4377
4453
|
|
|
4378
4454
|
// src/commands/ListPlaceIndexesCommand.ts
|
|
4379
4455
|
|
|
4380
4456
|
|
|
4381
4457
|
|
|
4382
|
-
var
|
|
4458
|
+
var ListPlaceIndexesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4383
4459
|
return [
|
|
4384
4460
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4385
4461
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4386
4462
|
];
|
|
4387
4463
|
}).s("LocationService", "ListPlaceIndexes", {}).n("LocationClient", "ListPlaceIndexesCommand").f(void 0, void 0).ser(se_ListPlaceIndexesCommand).de(de_ListPlaceIndexesCommand).build() {
|
|
4464
|
+
static {
|
|
4465
|
+
__name(this, "ListPlaceIndexesCommand");
|
|
4466
|
+
}
|
|
4388
4467
|
};
|
|
4389
|
-
__name(_ListPlaceIndexesCommand, "ListPlaceIndexesCommand");
|
|
4390
|
-
var ListPlaceIndexesCommand = _ListPlaceIndexesCommand;
|
|
4391
4468
|
|
|
4392
4469
|
// src/commands/ListRouteCalculatorsCommand.ts
|
|
4393
4470
|
|
|
4394
4471
|
|
|
4395
4472
|
|
|
4396
|
-
var
|
|
4473
|
+
var ListRouteCalculatorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4397
4474
|
return [
|
|
4398
4475
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4399
4476
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4400
4477
|
];
|
|
4401
4478
|
}).s("LocationService", "ListRouteCalculators", {}).n("LocationClient", "ListRouteCalculatorsCommand").f(void 0, void 0).ser(se_ListRouteCalculatorsCommand).de(de_ListRouteCalculatorsCommand).build() {
|
|
4479
|
+
static {
|
|
4480
|
+
__name(this, "ListRouteCalculatorsCommand");
|
|
4481
|
+
}
|
|
4402
4482
|
};
|
|
4403
|
-
__name(_ListRouteCalculatorsCommand, "ListRouteCalculatorsCommand");
|
|
4404
|
-
var ListRouteCalculatorsCommand = _ListRouteCalculatorsCommand;
|
|
4405
4483
|
|
|
4406
4484
|
// src/commands/ListTagsForResourceCommand.ts
|
|
4407
4485
|
|
|
4408
4486
|
|
|
4409
4487
|
|
|
4410
|
-
var
|
|
4488
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4411
4489
|
return [
|
|
4412
4490
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4413
4491
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4414
4492
|
];
|
|
4415
4493
|
}).s("LocationService", "ListTagsForResource", {}).n("LocationClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
4494
|
+
static {
|
|
4495
|
+
__name(this, "ListTagsForResourceCommand");
|
|
4496
|
+
}
|
|
4416
4497
|
};
|
|
4417
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
4418
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
4419
4498
|
|
|
4420
4499
|
// src/commands/ListTrackerConsumersCommand.ts
|
|
4421
4500
|
|
|
4422
4501
|
|
|
4423
4502
|
|
|
4424
|
-
var
|
|
4503
|
+
var ListTrackerConsumersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4425
4504
|
return [
|
|
4426
4505
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4427
4506
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4428
4507
|
];
|
|
4429
4508
|
}).s("LocationService", "ListTrackerConsumers", {}).n("LocationClient", "ListTrackerConsumersCommand").f(void 0, void 0).ser(se_ListTrackerConsumersCommand).de(de_ListTrackerConsumersCommand).build() {
|
|
4509
|
+
static {
|
|
4510
|
+
__name(this, "ListTrackerConsumersCommand");
|
|
4511
|
+
}
|
|
4430
4512
|
};
|
|
4431
|
-
__name(_ListTrackerConsumersCommand, "ListTrackerConsumersCommand");
|
|
4432
|
-
var ListTrackerConsumersCommand = _ListTrackerConsumersCommand;
|
|
4433
4513
|
|
|
4434
4514
|
// src/commands/ListTrackersCommand.ts
|
|
4435
4515
|
|
|
4436
4516
|
|
|
4437
4517
|
|
|
4438
|
-
var
|
|
4518
|
+
var ListTrackersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4439
4519
|
return [
|
|
4440
4520
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4441
4521
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4442
4522
|
];
|
|
4443
4523
|
}).s("LocationService", "ListTrackers", {}).n("LocationClient", "ListTrackersCommand").f(void 0, void 0).ser(se_ListTrackersCommand).de(de_ListTrackersCommand).build() {
|
|
4524
|
+
static {
|
|
4525
|
+
__name(this, "ListTrackersCommand");
|
|
4526
|
+
}
|
|
4444
4527
|
};
|
|
4445
|
-
__name(_ListTrackersCommand, "ListTrackersCommand");
|
|
4446
|
-
var ListTrackersCommand = _ListTrackersCommand;
|
|
4447
4528
|
|
|
4448
4529
|
// src/commands/PutGeofenceCommand.ts
|
|
4449
4530
|
|
|
4450
4531
|
|
|
4451
4532
|
|
|
4452
|
-
var
|
|
4533
|
+
var PutGeofenceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4453
4534
|
return [
|
|
4454
4535
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4455
4536
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4456
4537
|
];
|
|
4457
4538
|
}).s("LocationService", "PutGeofence", {}).n("LocationClient", "PutGeofenceCommand").f(PutGeofenceRequestFilterSensitiveLog, void 0).ser(se_PutGeofenceCommand).de(de_PutGeofenceCommand).build() {
|
|
4539
|
+
static {
|
|
4540
|
+
__name(this, "PutGeofenceCommand");
|
|
4541
|
+
}
|
|
4458
4542
|
};
|
|
4459
|
-
__name(_PutGeofenceCommand, "PutGeofenceCommand");
|
|
4460
|
-
var PutGeofenceCommand = _PutGeofenceCommand;
|
|
4461
4543
|
|
|
4462
4544
|
// src/commands/SearchPlaceIndexForPositionCommand.ts
|
|
4463
4545
|
|
|
4464
4546
|
|
|
4465
4547
|
|
|
4466
|
-
var
|
|
4548
|
+
var SearchPlaceIndexForPositionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4467
4549
|
return [
|
|
4468
4550
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4469
4551
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4470
4552
|
];
|
|
4471
4553
|
}).s("LocationService", "SearchPlaceIndexForPosition", {}).n("LocationClient", "SearchPlaceIndexForPositionCommand").f(SearchPlaceIndexForPositionRequestFilterSensitiveLog, SearchPlaceIndexForPositionResponseFilterSensitiveLog).ser(se_SearchPlaceIndexForPositionCommand).de(de_SearchPlaceIndexForPositionCommand).build() {
|
|
4554
|
+
static {
|
|
4555
|
+
__name(this, "SearchPlaceIndexForPositionCommand");
|
|
4556
|
+
}
|
|
4472
4557
|
};
|
|
4473
|
-
__name(_SearchPlaceIndexForPositionCommand, "SearchPlaceIndexForPositionCommand");
|
|
4474
|
-
var SearchPlaceIndexForPositionCommand = _SearchPlaceIndexForPositionCommand;
|
|
4475
4558
|
|
|
4476
4559
|
// src/commands/SearchPlaceIndexForSuggestionsCommand.ts
|
|
4477
4560
|
|
|
4478
4561
|
|
|
4479
4562
|
|
|
4480
|
-
var
|
|
4563
|
+
var SearchPlaceIndexForSuggestionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4481
4564
|
return [
|
|
4482
4565
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4483
4566
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4484
4567
|
];
|
|
4485
4568
|
}).s("LocationService", "SearchPlaceIndexForSuggestions", {}).n("LocationClient", "SearchPlaceIndexForSuggestionsCommand").f(SearchPlaceIndexForSuggestionsRequestFilterSensitiveLog, SearchPlaceIndexForSuggestionsResponseFilterSensitiveLog).ser(se_SearchPlaceIndexForSuggestionsCommand).de(de_SearchPlaceIndexForSuggestionsCommand).build() {
|
|
4569
|
+
static {
|
|
4570
|
+
__name(this, "SearchPlaceIndexForSuggestionsCommand");
|
|
4571
|
+
}
|
|
4486
4572
|
};
|
|
4487
|
-
__name(_SearchPlaceIndexForSuggestionsCommand, "SearchPlaceIndexForSuggestionsCommand");
|
|
4488
|
-
var SearchPlaceIndexForSuggestionsCommand = _SearchPlaceIndexForSuggestionsCommand;
|
|
4489
4573
|
|
|
4490
4574
|
// src/commands/SearchPlaceIndexForTextCommand.ts
|
|
4491
4575
|
|
|
4492
4576
|
|
|
4493
4577
|
|
|
4494
|
-
var
|
|
4578
|
+
var SearchPlaceIndexForTextCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4495
4579
|
return [
|
|
4496
4580
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4497
4581
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4498
4582
|
];
|
|
4499
4583
|
}).s("LocationService", "SearchPlaceIndexForText", {}).n("LocationClient", "SearchPlaceIndexForTextCommand").f(SearchPlaceIndexForTextRequestFilterSensitiveLog, SearchPlaceIndexForTextResponseFilterSensitiveLog).ser(se_SearchPlaceIndexForTextCommand).de(de_SearchPlaceIndexForTextCommand).build() {
|
|
4584
|
+
static {
|
|
4585
|
+
__name(this, "SearchPlaceIndexForTextCommand");
|
|
4586
|
+
}
|
|
4500
4587
|
};
|
|
4501
|
-
__name(_SearchPlaceIndexForTextCommand, "SearchPlaceIndexForTextCommand");
|
|
4502
|
-
var SearchPlaceIndexForTextCommand = _SearchPlaceIndexForTextCommand;
|
|
4503
4588
|
|
|
4504
4589
|
// src/commands/TagResourceCommand.ts
|
|
4505
4590
|
|
|
4506
4591
|
|
|
4507
4592
|
|
|
4508
|
-
var
|
|
4593
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4509
4594
|
return [
|
|
4510
4595
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4511
4596
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4512
4597
|
];
|
|
4513
4598
|
}).s("LocationService", "TagResource", {}).n("LocationClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
4599
|
+
static {
|
|
4600
|
+
__name(this, "TagResourceCommand");
|
|
4601
|
+
}
|
|
4514
4602
|
};
|
|
4515
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
4516
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
4517
4603
|
|
|
4518
4604
|
// src/commands/UntagResourceCommand.ts
|
|
4519
4605
|
|
|
4520
4606
|
|
|
4521
4607
|
|
|
4522
|
-
var
|
|
4608
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4523
4609
|
return [
|
|
4524
4610
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4525
4611
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4526
4612
|
];
|
|
4527
4613
|
}).s("LocationService", "UntagResource", {}).n("LocationClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
4614
|
+
static {
|
|
4615
|
+
__name(this, "UntagResourceCommand");
|
|
4616
|
+
}
|
|
4528
4617
|
};
|
|
4529
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
4530
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
4531
4618
|
|
|
4532
4619
|
// src/commands/UpdateGeofenceCollectionCommand.ts
|
|
4533
4620
|
|
|
4534
4621
|
|
|
4535
4622
|
|
|
4536
|
-
var
|
|
4623
|
+
var UpdateGeofenceCollectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4537
4624
|
return [
|
|
4538
4625
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4539
4626
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4540
4627
|
];
|
|
4541
4628
|
}).s("LocationService", "UpdateGeofenceCollection", {}).n("LocationClient", "UpdateGeofenceCollectionCommand").f(void 0, void 0).ser(se_UpdateGeofenceCollectionCommand).de(de_UpdateGeofenceCollectionCommand).build() {
|
|
4629
|
+
static {
|
|
4630
|
+
__name(this, "UpdateGeofenceCollectionCommand");
|
|
4631
|
+
}
|
|
4542
4632
|
};
|
|
4543
|
-
__name(_UpdateGeofenceCollectionCommand, "UpdateGeofenceCollectionCommand");
|
|
4544
|
-
var UpdateGeofenceCollectionCommand = _UpdateGeofenceCollectionCommand;
|
|
4545
4633
|
|
|
4546
4634
|
// src/commands/UpdateKeyCommand.ts
|
|
4547
4635
|
|
|
4548
4636
|
|
|
4549
4637
|
|
|
4550
|
-
var
|
|
4638
|
+
var UpdateKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4551
4639
|
return [
|
|
4552
4640
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4553
4641
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4554
4642
|
];
|
|
4555
4643
|
}).s("LocationService", "UpdateKey", {}).n("LocationClient", "UpdateKeyCommand").f(void 0, void 0).ser(se_UpdateKeyCommand).de(de_UpdateKeyCommand).build() {
|
|
4644
|
+
static {
|
|
4645
|
+
__name(this, "UpdateKeyCommand");
|
|
4646
|
+
}
|
|
4556
4647
|
};
|
|
4557
|
-
__name(_UpdateKeyCommand, "UpdateKeyCommand");
|
|
4558
|
-
var UpdateKeyCommand = _UpdateKeyCommand;
|
|
4559
4648
|
|
|
4560
4649
|
// src/commands/UpdateMapCommand.ts
|
|
4561
4650
|
|
|
4562
4651
|
|
|
4563
4652
|
|
|
4564
|
-
var
|
|
4653
|
+
var UpdateMapCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4565
4654
|
return [
|
|
4566
4655
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4567
4656
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4568
4657
|
];
|
|
4569
4658
|
}).s("LocationService", "UpdateMap", {}).n("LocationClient", "UpdateMapCommand").f(void 0, void 0).ser(se_UpdateMapCommand).de(de_UpdateMapCommand).build() {
|
|
4659
|
+
static {
|
|
4660
|
+
__name(this, "UpdateMapCommand");
|
|
4661
|
+
}
|
|
4570
4662
|
};
|
|
4571
|
-
__name(_UpdateMapCommand, "UpdateMapCommand");
|
|
4572
|
-
var UpdateMapCommand = _UpdateMapCommand;
|
|
4573
4663
|
|
|
4574
4664
|
// src/commands/UpdatePlaceIndexCommand.ts
|
|
4575
4665
|
|
|
4576
4666
|
|
|
4577
4667
|
|
|
4578
|
-
var
|
|
4668
|
+
var UpdatePlaceIndexCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4579
4669
|
return [
|
|
4580
4670
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4581
4671
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4582
4672
|
];
|
|
4583
4673
|
}).s("LocationService", "UpdatePlaceIndex", {}).n("LocationClient", "UpdatePlaceIndexCommand").f(void 0, void 0).ser(se_UpdatePlaceIndexCommand).de(de_UpdatePlaceIndexCommand).build() {
|
|
4674
|
+
static {
|
|
4675
|
+
__name(this, "UpdatePlaceIndexCommand");
|
|
4676
|
+
}
|
|
4584
4677
|
};
|
|
4585
|
-
__name(_UpdatePlaceIndexCommand, "UpdatePlaceIndexCommand");
|
|
4586
|
-
var UpdatePlaceIndexCommand = _UpdatePlaceIndexCommand;
|
|
4587
4678
|
|
|
4588
4679
|
// src/commands/UpdateRouteCalculatorCommand.ts
|
|
4589
4680
|
|
|
4590
4681
|
|
|
4591
4682
|
|
|
4592
|
-
var
|
|
4683
|
+
var UpdateRouteCalculatorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4593
4684
|
return [
|
|
4594
4685
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4595
4686
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4596
4687
|
];
|
|
4597
4688
|
}).s("LocationService", "UpdateRouteCalculator", {}).n("LocationClient", "UpdateRouteCalculatorCommand").f(void 0, void 0).ser(se_UpdateRouteCalculatorCommand).de(de_UpdateRouteCalculatorCommand).build() {
|
|
4689
|
+
static {
|
|
4690
|
+
__name(this, "UpdateRouteCalculatorCommand");
|
|
4691
|
+
}
|
|
4598
4692
|
};
|
|
4599
|
-
__name(_UpdateRouteCalculatorCommand, "UpdateRouteCalculatorCommand");
|
|
4600
|
-
var UpdateRouteCalculatorCommand = _UpdateRouteCalculatorCommand;
|
|
4601
4693
|
|
|
4602
4694
|
// src/commands/UpdateTrackerCommand.ts
|
|
4603
4695
|
|
|
4604
4696
|
|
|
4605
4697
|
|
|
4606
|
-
var
|
|
4698
|
+
var UpdateTrackerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4607
4699
|
return [
|
|
4608
4700
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4609
4701
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4610
4702
|
];
|
|
4611
4703
|
}).s("LocationService", "UpdateTracker", {}).n("LocationClient", "UpdateTrackerCommand").f(void 0, void 0).ser(se_UpdateTrackerCommand).de(de_UpdateTrackerCommand).build() {
|
|
4704
|
+
static {
|
|
4705
|
+
__name(this, "UpdateTrackerCommand");
|
|
4706
|
+
}
|
|
4612
4707
|
};
|
|
4613
|
-
__name(_UpdateTrackerCommand, "UpdateTrackerCommand");
|
|
4614
|
-
var UpdateTrackerCommand = _UpdateTrackerCommand;
|
|
4615
4708
|
|
|
4616
4709
|
// src/commands/VerifyDevicePositionCommand.ts
|
|
4617
4710
|
|
|
4618
4711
|
|
|
4619
4712
|
|
|
4620
|
-
var
|
|
4713
|
+
var VerifyDevicePositionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4621
4714
|
return [
|
|
4622
4715
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4623
4716
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4624
4717
|
];
|
|
4625
4718
|
}).s("LocationService", "VerifyDevicePosition", {}).n("LocationClient", "VerifyDevicePositionCommand").f(VerifyDevicePositionRequestFilterSensitiveLog, VerifyDevicePositionResponseFilterSensitiveLog).ser(se_VerifyDevicePositionCommand).de(de_VerifyDevicePositionCommand).build() {
|
|
4719
|
+
static {
|
|
4720
|
+
__name(this, "VerifyDevicePositionCommand");
|
|
4721
|
+
}
|
|
4626
4722
|
};
|
|
4627
|
-
__name(_VerifyDevicePositionCommand, "VerifyDevicePositionCommand");
|
|
4628
|
-
var VerifyDevicePositionCommand = _VerifyDevicePositionCommand;
|
|
4629
4723
|
|
|
4630
4724
|
// src/Location.ts
|
|
4631
4725
|
var commands = {
|
|
@@ -4690,10 +4784,11 @@ var commands = {
|
|
|
4690
4784
|
UpdateTrackerCommand,
|
|
4691
4785
|
VerifyDevicePositionCommand
|
|
4692
4786
|
};
|
|
4693
|
-
var
|
|
4787
|
+
var Location = class extends LocationClient {
|
|
4788
|
+
static {
|
|
4789
|
+
__name(this, "Location");
|
|
4790
|
+
}
|
|
4694
4791
|
};
|
|
4695
|
-
__name(_Location, "Location");
|
|
4696
|
-
var Location = _Location;
|
|
4697
4792
|
(0, import_smithy_client.createAggregatedClient)(commands, Location);
|
|
4698
4793
|
|
|
4699
4794
|
// src/pagination/ForecastGeofenceEventsPaginator.ts
|