@aws-sdk/client-iottwinmaker 3.721.0 → 3.726.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 +244 -186
- package/dist-es/IoTTwinMakerClient.js +1 -0
- package/dist-es/models/models_0.js +23 -23
- 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 +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -216,7 +216,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
216
216
|
}, "resolveRuntimeExtensions");
|
|
217
217
|
|
|
218
218
|
// src/IoTTwinMakerClient.ts
|
|
219
|
-
var
|
|
219
|
+
var IoTTwinMakerClient = class extends import_smithy_client.Client {
|
|
220
|
+
static {
|
|
221
|
+
__name(this, "IoTTwinMakerClient");
|
|
222
|
+
}
|
|
223
|
+
/**
|
|
224
|
+
* The resolved configuration of IoTTwinMakerClient class. This is resolved and normalized from the {@link IoTTwinMakerClientConfig | constructor configuration interface}.
|
|
225
|
+
*/
|
|
226
|
+
config;
|
|
220
227
|
constructor(...[configuration]) {
|
|
221
228
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
222
229
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -226,7 +233,7 @@ var _IoTTwinMakerClient = class _IoTTwinMakerClient extends import_smithy_client
|
|
|
226
233
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
227
234
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
228
235
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
229
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
236
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
230
237
|
super(_config_8);
|
|
231
238
|
this.config = _config_8;
|
|
232
239
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -254,8 +261,6 @@ var _IoTTwinMakerClient = class _IoTTwinMakerClient extends import_smithy_client
|
|
|
254
261
|
super.destroy();
|
|
255
262
|
}
|
|
256
263
|
};
|
|
257
|
-
__name(_IoTTwinMakerClient, "IoTTwinMakerClient");
|
|
258
|
-
var IoTTwinMakerClient = _IoTTwinMakerClient;
|
|
259
264
|
|
|
260
265
|
// src/IoTTwinMaker.ts
|
|
261
266
|
|
|
@@ -273,7 +278,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
273
278
|
|
|
274
279
|
// src/models/IoTTwinMakerServiceException.ts
|
|
275
280
|
|
|
276
|
-
var
|
|
281
|
+
var IoTTwinMakerServiceException = class _IoTTwinMakerServiceException extends import_smithy_client.ServiceException {
|
|
282
|
+
static {
|
|
283
|
+
__name(this, "IoTTwinMakerServiceException");
|
|
284
|
+
}
|
|
277
285
|
/**
|
|
278
286
|
* @internal
|
|
279
287
|
*/
|
|
@@ -282,11 +290,14 @@ var _IoTTwinMakerServiceException = class _IoTTwinMakerServiceException extends
|
|
|
282
290
|
Object.setPrototypeOf(this, _IoTTwinMakerServiceException.prototype);
|
|
283
291
|
}
|
|
284
292
|
};
|
|
285
|
-
__name(_IoTTwinMakerServiceException, "IoTTwinMakerServiceException");
|
|
286
|
-
var IoTTwinMakerServiceException = _IoTTwinMakerServiceException;
|
|
287
293
|
|
|
288
294
|
// src/models/models_0.ts
|
|
289
|
-
var
|
|
295
|
+
var AccessDeniedException = class _AccessDeniedException extends IoTTwinMakerServiceException {
|
|
296
|
+
static {
|
|
297
|
+
__name(this, "AccessDeniedException");
|
|
298
|
+
}
|
|
299
|
+
name = "AccessDeniedException";
|
|
300
|
+
$fault = "client";
|
|
290
301
|
/**
|
|
291
302
|
* @internal
|
|
292
303
|
*/
|
|
@@ -296,14 +307,15 @@ var _AccessDeniedException = class _AccessDeniedException extends IoTTwinMakerSe
|
|
|
296
307
|
$fault: "client",
|
|
297
308
|
...opts
|
|
298
309
|
});
|
|
299
|
-
this.name = "AccessDeniedException";
|
|
300
|
-
this.$fault = "client";
|
|
301
310
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
302
311
|
}
|
|
303
312
|
};
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
313
|
+
var InternalServerException = class _InternalServerException extends IoTTwinMakerServiceException {
|
|
314
|
+
static {
|
|
315
|
+
__name(this, "InternalServerException");
|
|
316
|
+
}
|
|
317
|
+
name = "InternalServerException";
|
|
318
|
+
$fault = "server";
|
|
307
319
|
/**
|
|
308
320
|
* @internal
|
|
309
321
|
*/
|
|
@@ -313,14 +325,15 @@ var _InternalServerException = class _InternalServerException extends IoTTwinMak
|
|
|
313
325
|
$fault: "server",
|
|
314
326
|
...opts
|
|
315
327
|
});
|
|
316
|
-
this.name = "InternalServerException";
|
|
317
|
-
this.$fault = "server";
|
|
318
328
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
319
329
|
}
|
|
320
330
|
};
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
331
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends IoTTwinMakerServiceException {
|
|
332
|
+
static {
|
|
333
|
+
__name(this, "ResourceNotFoundException");
|
|
334
|
+
}
|
|
335
|
+
name = "ResourceNotFoundException";
|
|
336
|
+
$fault = "client";
|
|
324
337
|
/**
|
|
325
338
|
* @internal
|
|
326
339
|
*/
|
|
@@ -330,14 +343,15 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends IoTTwi
|
|
|
330
343
|
$fault: "client",
|
|
331
344
|
...opts
|
|
332
345
|
});
|
|
333
|
-
this.name = "ResourceNotFoundException";
|
|
334
|
-
this.$fault = "client";
|
|
335
346
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
336
347
|
}
|
|
337
348
|
};
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
349
|
+
var ThrottlingException = class _ThrottlingException extends IoTTwinMakerServiceException {
|
|
350
|
+
static {
|
|
351
|
+
__name(this, "ThrottlingException");
|
|
352
|
+
}
|
|
353
|
+
name = "ThrottlingException";
|
|
354
|
+
$fault = "client";
|
|
341
355
|
/**
|
|
342
356
|
* @internal
|
|
343
357
|
*/
|
|
@@ -347,14 +361,15 @@ var _ThrottlingException = class _ThrottlingException extends IoTTwinMakerServic
|
|
|
347
361
|
$fault: "client",
|
|
348
362
|
...opts
|
|
349
363
|
});
|
|
350
|
-
this.name = "ThrottlingException";
|
|
351
|
-
this.$fault = "client";
|
|
352
364
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
353
365
|
}
|
|
354
366
|
};
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
367
|
+
var ValidationException = class _ValidationException extends IoTTwinMakerServiceException {
|
|
368
|
+
static {
|
|
369
|
+
__name(this, "ValidationException");
|
|
370
|
+
}
|
|
371
|
+
name = "ValidationException";
|
|
372
|
+
$fault = "client";
|
|
358
373
|
/**
|
|
359
374
|
* @internal
|
|
360
375
|
*/
|
|
@@ -364,13 +379,9 @@ var _ValidationException = class _ValidationException extends IoTTwinMakerServic
|
|
|
364
379
|
$fault: "client",
|
|
365
380
|
...opts
|
|
366
381
|
});
|
|
367
|
-
this.name = "ValidationException";
|
|
368
|
-
this.$fault = "client";
|
|
369
382
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
370
383
|
}
|
|
371
384
|
};
|
|
372
|
-
__name(_ValidationException, "ValidationException");
|
|
373
|
-
var ValidationException = _ValidationException;
|
|
374
385
|
var ErrorCode = {
|
|
375
386
|
COMPOSITE_COMPONENT_FAILURE: "COMPOSITE_COMPONENT_FAILURE",
|
|
376
387
|
INTERNAL_FAILURE: "INTERNAL_FAILURE",
|
|
@@ -390,7 +401,12 @@ var MetadataTransferJobState = {
|
|
|
390
401
|
RUNNING: "RUNNING",
|
|
391
402
|
VALIDATING: "VALIDATING"
|
|
392
403
|
};
|
|
393
|
-
var
|
|
404
|
+
var ConflictException = class _ConflictException extends IoTTwinMakerServiceException {
|
|
405
|
+
static {
|
|
406
|
+
__name(this, "ConflictException");
|
|
407
|
+
}
|
|
408
|
+
name = "ConflictException";
|
|
409
|
+
$fault = "client";
|
|
394
410
|
/**
|
|
395
411
|
* @internal
|
|
396
412
|
*/
|
|
@@ -400,13 +416,9 @@ var _ConflictException = class _ConflictException extends IoTTwinMakerServiceExc
|
|
|
400
416
|
$fault: "client",
|
|
401
417
|
...opts
|
|
402
418
|
});
|
|
403
|
-
this.name = "ConflictException";
|
|
404
|
-
this.$fault = "client";
|
|
405
419
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
406
420
|
}
|
|
407
421
|
};
|
|
408
|
-
__name(_ConflictException, "ConflictException");
|
|
409
|
-
var ConflictException = _ConflictException;
|
|
410
422
|
var Scope = {
|
|
411
423
|
ENTITY: "ENTITY",
|
|
412
424
|
WORKSPACE: "WORKSPACE"
|
|
@@ -431,7 +443,12 @@ var State = {
|
|
|
431
443
|
ERROR: "ERROR",
|
|
432
444
|
UPDATING: "UPDATING"
|
|
433
445
|
};
|
|
434
|
-
var
|
|
446
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends IoTTwinMakerServiceException {
|
|
447
|
+
static {
|
|
448
|
+
__name(this, "ServiceQuotaExceededException");
|
|
449
|
+
}
|
|
450
|
+
name = "ServiceQuotaExceededException";
|
|
451
|
+
$fault = "client";
|
|
435
452
|
/**
|
|
436
453
|
* @internal
|
|
437
454
|
*/
|
|
@@ -441,13 +458,9 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
441
458
|
$fault: "client",
|
|
442
459
|
...opts
|
|
443
460
|
});
|
|
444
|
-
this.name = "ServiceQuotaExceededException";
|
|
445
|
-
this.$fault = "client";
|
|
446
461
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
447
462
|
}
|
|
448
463
|
};
|
|
449
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
450
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
451
464
|
var PropertyUpdateType = {
|
|
452
465
|
CREATE: "CREATE",
|
|
453
466
|
DELETE: "DELETE",
|
|
@@ -501,7 +514,13 @@ var ColumnType = {
|
|
|
501
514
|
NODE: "NODE",
|
|
502
515
|
VALUE: "VALUE"
|
|
503
516
|
};
|
|
504
|
-
var
|
|
517
|
+
var QueryTimeoutException = class _QueryTimeoutException extends IoTTwinMakerServiceException {
|
|
518
|
+
static {
|
|
519
|
+
__name(this, "QueryTimeoutException");
|
|
520
|
+
}
|
|
521
|
+
name = "QueryTimeoutException";
|
|
522
|
+
$fault = "client";
|
|
523
|
+
$retryable = {};
|
|
505
524
|
/**
|
|
506
525
|
* @internal
|
|
507
526
|
*/
|
|
@@ -511,14 +530,9 @@ var _QueryTimeoutException = class _QueryTimeoutException extends IoTTwinMakerSe
|
|
|
511
530
|
$fault: "client",
|
|
512
531
|
...opts
|
|
513
532
|
});
|
|
514
|
-
this.name = "QueryTimeoutException";
|
|
515
|
-
this.$fault = "client";
|
|
516
|
-
this.$retryable = {};
|
|
517
533
|
Object.setPrototypeOf(this, _QueryTimeoutException.prototype);
|
|
518
534
|
}
|
|
519
535
|
};
|
|
520
|
-
__name(_QueryTimeoutException, "QueryTimeoutException");
|
|
521
|
-
var QueryTimeoutException = _QueryTimeoutException;
|
|
522
536
|
var PricingTier = {
|
|
523
537
|
TIER_1: "TIER_1",
|
|
524
538
|
TIER_2: "TIER_2",
|
|
@@ -537,7 +551,12 @@ var UpdateReason = {
|
|
|
537
551
|
PRICING_MODE_UPDATE: "PRICING_MODE_UPDATE",
|
|
538
552
|
PRICING_TIER_UPDATE: "PRICING_TIER_UPDATE"
|
|
539
553
|
};
|
|
540
|
-
var
|
|
554
|
+
var ConnectorFailureException = class _ConnectorFailureException extends IoTTwinMakerServiceException {
|
|
555
|
+
static {
|
|
556
|
+
__name(this, "ConnectorFailureException");
|
|
557
|
+
}
|
|
558
|
+
name = "ConnectorFailureException";
|
|
559
|
+
$fault = "client";
|
|
541
560
|
/**
|
|
542
561
|
* @internal
|
|
543
562
|
*/
|
|
@@ -547,14 +566,15 @@ var _ConnectorFailureException = class _ConnectorFailureException extends IoTTwi
|
|
|
547
566
|
$fault: "client",
|
|
548
567
|
...opts
|
|
549
568
|
});
|
|
550
|
-
this.name = "ConnectorFailureException";
|
|
551
|
-
this.$fault = "client";
|
|
552
569
|
Object.setPrototypeOf(this, _ConnectorFailureException.prototype);
|
|
553
570
|
}
|
|
554
571
|
};
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
572
|
+
var ConnectorTimeoutException = class _ConnectorTimeoutException extends IoTTwinMakerServiceException {
|
|
573
|
+
static {
|
|
574
|
+
__name(this, "ConnectorTimeoutException");
|
|
575
|
+
}
|
|
576
|
+
name = "ConnectorTimeoutException";
|
|
577
|
+
$fault = "client";
|
|
558
578
|
/**
|
|
559
579
|
* @internal
|
|
560
580
|
*/
|
|
@@ -564,13 +584,9 @@ var _ConnectorTimeoutException = class _ConnectorTimeoutException extends IoTTwi
|
|
|
564
584
|
$fault: "client",
|
|
565
585
|
...opts
|
|
566
586
|
});
|
|
567
|
-
this.name = "ConnectorTimeoutException";
|
|
568
|
-
this.$fault = "client";
|
|
569
587
|
Object.setPrototypeOf(this, _ConnectorTimeoutException.prototype);
|
|
570
588
|
}
|
|
571
589
|
};
|
|
572
|
-
__name(_ConnectorTimeoutException, "ConnectorTimeoutException");
|
|
573
|
-
var ConnectorTimeoutException = _ConnectorTimeoutException;
|
|
574
590
|
var Order = {
|
|
575
591
|
ASCENDING: "ASCENDING",
|
|
576
592
|
DESCENDING: "DESCENDING"
|
|
@@ -644,7 +660,12 @@ var SyncResourceFilter;
|
|
|
644
660
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
645
661
|
}, "visit");
|
|
646
662
|
})(SyncResourceFilter || (SyncResourceFilter = {}));
|
|
647
|
-
var
|
|
663
|
+
var TooManyTagsException = class _TooManyTagsException extends IoTTwinMakerServiceException {
|
|
664
|
+
static {
|
|
665
|
+
__name(this, "TooManyTagsException");
|
|
666
|
+
}
|
|
667
|
+
name = "TooManyTagsException";
|
|
668
|
+
$fault = "client";
|
|
648
669
|
/**
|
|
649
670
|
* @internal
|
|
650
671
|
*/
|
|
@@ -654,13 +675,9 @@ var _TooManyTagsException = class _TooManyTagsException extends IoTTwinMakerServ
|
|
|
654
675
|
$fault: "client",
|
|
655
676
|
...opts
|
|
656
677
|
});
|
|
657
|
-
this.name = "TooManyTagsException";
|
|
658
|
-
this.$fault = "client";
|
|
659
678
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
660
679
|
}
|
|
661
680
|
};
|
|
662
|
-
__name(_TooManyTagsException, "TooManyTagsException");
|
|
663
|
-
var TooManyTagsException = _TooManyTagsException;
|
|
664
681
|
var ComponentUpdateType = {
|
|
665
682
|
CREATE: "CREATE",
|
|
666
683
|
DELETE: "DELETE",
|
|
@@ -3034,561 +3051,601 @@ var _w = "workspace";
|
|
|
3034
3051
|
var _wI = "workspaceId";
|
|
3035
3052
|
|
|
3036
3053
|
// src/commands/BatchPutPropertyValuesCommand.ts
|
|
3037
|
-
var
|
|
3054
|
+
var BatchPutPropertyValuesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3038
3055
|
return [
|
|
3039
3056
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3040
3057
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3041
3058
|
];
|
|
3042
3059
|
}).s("AWSIoTTwinMaker", "BatchPutPropertyValues", {}).n("IoTTwinMakerClient", "BatchPutPropertyValuesCommand").f(void 0, void 0).ser(se_BatchPutPropertyValuesCommand).de(de_BatchPutPropertyValuesCommand).build() {
|
|
3060
|
+
static {
|
|
3061
|
+
__name(this, "BatchPutPropertyValuesCommand");
|
|
3062
|
+
}
|
|
3043
3063
|
};
|
|
3044
|
-
__name(_BatchPutPropertyValuesCommand, "BatchPutPropertyValuesCommand");
|
|
3045
|
-
var BatchPutPropertyValuesCommand = _BatchPutPropertyValuesCommand;
|
|
3046
3064
|
|
|
3047
3065
|
// src/commands/CancelMetadataTransferJobCommand.ts
|
|
3048
3066
|
|
|
3049
3067
|
|
|
3050
3068
|
|
|
3051
|
-
var
|
|
3069
|
+
var CancelMetadataTransferJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3052
3070
|
return [
|
|
3053
3071
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3054
3072
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3055
3073
|
];
|
|
3056
3074
|
}).s("AWSIoTTwinMaker", "CancelMetadataTransferJob", {}).n("IoTTwinMakerClient", "CancelMetadataTransferJobCommand").f(void 0, void 0).ser(se_CancelMetadataTransferJobCommand).de(de_CancelMetadataTransferJobCommand).build() {
|
|
3075
|
+
static {
|
|
3076
|
+
__name(this, "CancelMetadataTransferJobCommand");
|
|
3077
|
+
}
|
|
3057
3078
|
};
|
|
3058
|
-
__name(_CancelMetadataTransferJobCommand, "CancelMetadataTransferJobCommand");
|
|
3059
|
-
var CancelMetadataTransferJobCommand = _CancelMetadataTransferJobCommand;
|
|
3060
3079
|
|
|
3061
3080
|
// src/commands/CreateComponentTypeCommand.ts
|
|
3062
3081
|
|
|
3063
3082
|
|
|
3064
3083
|
|
|
3065
|
-
var
|
|
3084
|
+
var CreateComponentTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3066
3085
|
return [
|
|
3067
3086
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3068
3087
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3069
3088
|
];
|
|
3070
3089
|
}).s("AWSIoTTwinMaker", "CreateComponentType", {}).n("IoTTwinMakerClient", "CreateComponentTypeCommand").f(void 0, void 0).ser(se_CreateComponentTypeCommand).de(de_CreateComponentTypeCommand).build() {
|
|
3090
|
+
static {
|
|
3091
|
+
__name(this, "CreateComponentTypeCommand");
|
|
3092
|
+
}
|
|
3071
3093
|
};
|
|
3072
|
-
__name(_CreateComponentTypeCommand, "CreateComponentTypeCommand");
|
|
3073
|
-
var CreateComponentTypeCommand = _CreateComponentTypeCommand;
|
|
3074
3094
|
|
|
3075
3095
|
// src/commands/CreateEntityCommand.ts
|
|
3076
3096
|
|
|
3077
3097
|
|
|
3078
3098
|
|
|
3079
|
-
var
|
|
3099
|
+
var CreateEntityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3080
3100
|
return [
|
|
3081
3101
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3082
3102
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3083
3103
|
];
|
|
3084
3104
|
}).s("AWSIoTTwinMaker", "CreateEntity", {}).n("IoTTwinMakerClient", "CreateEntityCommand").f(void 0, void 0).ser(se_CreateEntityCommand).de(de_CreateEntityCommand).build() {
|
|
3105
|
+
static {
|
|
3106
|
+
__name(this, "CreateEntityCommand");
|
|
3107
|
+
}
|
|
3085
3108
|
};
|
|
3086
|
-
__name(_CreateEntityCommand, "CreateEntityCommand");
|
|
3087
|
-
var CreateEntityCommand = _CreateEntityCommand;
|
|
3088
3109
|
|
|
3089
3110
|
// src/commands/CreateMetadataTransferJobCommand.ts
|
|
3090
3111
|
|
|
3091
3112
|
|
|
3092
3113
|
|
|
3093
|
-
var
|
|
3114
|
+
var CreateMetadataTransferJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3094
3115
|
return [
|
|
3095
3116
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3096
3117
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3097
3118
|
];
|
|
3098
3119
|
}).s("AWSIoTTwinMaker", "CreateMetadataTransferJob", {}).n("IoTTwinMakerClient", "CreateMetadataTransferJobCommand").f(void 0, void 0).ser(se_CreateMetadataTransferJobCommand).de(de_CreateMetadataTransferJobCommand).build() {
|
|
3120
|
+
static {
|
|
3121
|
+
__name(this, "CreateMetadataTransferJobCommand");
|
|
3122
|
+
}
|
|
3099
3123
|
};
|
|
3100
|
-
__name(_CreateMetadataTransferJobCommand, "CreateMetadataTransferJobCommand");
|
|
3101
|
-
var CreateMetadataTransferJobCommand = _CreateMetadataTransferJobCommand;
|
|
3102
3124
|
|
|
3103
3125
|
// src/commands/CreateSceneCommand.ts
|
|
3104
3126
|
|
|
3105
3127
|
|
|
3106
3128
|
|
|
3107
|
-
var
|
|
3129
|
+
var CreateSceneCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3108
3130
|
return [
|
|
3109
3131
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3110
3132
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3111
3133
|
];
|
|
3112
3134
|
}).s("AWSIoTTwinMaker", "CreateScene", {}).n("IoTTwinMakerClient", "CreateSceneCommand").f(void 0, void 0).ser(se_CreateSceneCommand).de(de_CreateSceneCommand).build() {
|
|
3135
|
+
static {
|
|
3136
|
+
__name(this, "CreateSceneCommand");
|
|
3137
|
+
}
|
|
3113
3138
|
};
|
|
3114
|
-
__name(_CreateSceneCommand, "CreateSceneCommand");
|
|
3115
|
-
var CreateSceneCommand = _CreateSceneCommand;
|
|
3116
3139
|
|
|
3117
3140
|
// src/commands/CreateSyncJobCommand.ts
|
|
3118
3141
|
|
|
3119
3142
|
|
|
3120
3143
|
|
|
3121
|
-
var
|
|
3144
|
+
var CreateSyncJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3122
3145
|
return [
|
|
3123
3146
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3124
3147
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3125
3148
|
];
|
|
3126
3149
|
}).s("AWSIoTTwinMaker", "CreateSyncJob", {}).n("IoTTwinMakerClient", "CreateSyncJobCommand").f(void 0, void 0).ser(se_CreateSyncJobCommand).de(de_CreateSyncJobCommand).build() {
|
|
3150
|
+
static {
|
|
3151
|
+
__name(this, "CreateSyncJobCommand");
|
|
3152
|
+
}
|
|
3127
3153
|
};
|
|
3128
|
-
__name(_CreateSyncJobCommand, "CreateSyncJobCommand");
|
|
3129
|
-
var CreateSyncJobCommand = _CreateSyncJobCommand;
|
|
3130
3154
|
|
|
3131
3155
|
// src/commands/CreateWorkspaceCommand.ts
|
|
3132
3156
|
|
|
3133
3157
|
|
|
3134
3158
|
|
|
3135
|
-
var
|
|
3159
|
+
var CreateWorkspaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3136
3160
|
return [
|
|
3137
3161
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3138
3162
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3139
3163
|
];
|
|
3140
3164
|
}).s("AWSIoTTwinMaker", "CreateWorkspace", {}).n("IoTTwinMakerClient", "CreateWorkspaceCommand").f(void 0, void 0).ser(se_CreateWorkspaceCommand).de(de_CreateWorkspaceCommand).build() {
|
|
3165
|
+
static {
|
|
3166
|
+
__name(this, "CreateWorkspaceCommand");
|
|
3167
|
+
}
|
|
3141
3168
|
};
|
|
3142
|
-
__name(_CreateWorkspaceCommand, "CreateWorkspaceCommand");
|
|
3143
|
-
var CreateWorkspaceCommand = _CreateWorkspaceCommand;
|
|
3144
3169
|
|
|
3145
3170
|
// src/commands/DeleteComponentTypeCommand.ts
|
|
3146
3171
|
|
|
3147
3172
|
|
|
3148
3173
|
|
|
3149
|
-
var
|
|
3174
|
+
var DeleteComponentTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3150
3175
|
return [
|
|
3151
3176
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3152
3177
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3153
3178
|
];
|
|
3154
3179
|
}).s("AWSIoTTwinMaker", "DeleteComponentType", {}).n("IoTTwinMakerClient", "DeleteComponentTypeCommand").f(void 0, void 0).ser(se_DeleteComponentTypeCommand).de(de_DeleteComponentTypeCommand).build() {
|
|
3180
|
+
static {
|
|
3181
|
+
__name(this, "DeleteComponentTypeCommand");
|
|
3182
|
+
}
|
|
3155
3183
|
};
|
|
3156
|
-
__name(_DeleteComponentTypeCommand, "DeleteComponentTypeCommand");
|
|
3157
|
-
var DeleteComponentTypeCommand = _DeleteComponentTypeCommand;
|
|
3158
3184
|
|
|
3159
3185
|
// src/commands/DeleteEntityCommand.ts
|
|
3160
3186
|
|
|
3161
3187
|
|
|
3162
3188
|
|
|
3163
|
-
var
|
|
3189
|
+
var DeleteEntityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3164
3190
|
return [
|
|
3165
3191
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3166
3192
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3167
3193
|
];
|
|
3168
3194
|
}).s("AWSIoTTwinMaker", "DeleteEntity", {}).n("IoTTwinMakerClient", "DeleteEntityCommand").f(void 0, void 0).ser(se_DeleteEntityCommand).de(de_DeleteEntityCommand).build() {
|
|
3195
|
+
static {
|
|
3196
|
+
__name(this, "DeleteEntityCommand");
|
|
3197
|
+
}
|
|
3169
3198
|
};
|
|
3170
|
-
__name(_DeleteEntityCommand, "DeleteEntityCommand");
|
|
3171
|
-
var DeleteEntityCommand = _DeleteEntityCommand;
|
|
3172
3199
|
|
|
3173
3200
|
// src/commands/DeleteSceneCommand.ts
|
|
3174
3201
|
|
|
3175
3202
|
|
|
3176
3203
|
|
|
3177
|
-
var
|
|
3204
|
+
var DeleteSceneCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3178
3205
|
return [
|
|
3179
3206
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3180
3207
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3181
3208
|
];
|
|
3182
3209
|
}).s("AWSIoTTwinMaker", "DeleteScene", {}).n("IoTTwinMakerClient", "DeleteSceneCommand").f(void 0, void 0).ser(se_DeleteSceneCommand).de(de_DeleteSceneCommand).build() {
|
|
3210
|
+
static {
|
|
3211
|
+
__name(this, "DeleteSceneCommand");
|
|
3212
|
+
}
|
|
3183
3213
|
};
|
|
3184
|
-
__name(_DeleteSceneCommand, "DeleteSceneCommand");
|
|
3185
|
-
var DeleteSceneCommand = _DeleteSceneCommand;
|
|
3186
3214
|
|
|
3187
3215
|
// src/commands/DeleteSyncJobCommand.ts
|
|
3188
3216
|
|
|
3189
3217
|
|
|
3190
3218
|
|
|
3191
|
-
var
|
|
3219
|
+
var DeleteSyncJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3192
3220
|
return [
|
|
3193
3221
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3194
3222
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3195
3223
|
];
|
|
3196
3224
|
}).s("AWSIoTTwinMaker", "DeleteSyncJob", {}).n("IoTTwinMakerClient", "DeleteSyncJobCommand").f(void 0, void 0).ser(se_DeleteSyncJobCommand).de(de_DeleteSyncJobCommand).build() {
|
|
3225
|
+
static {
|
|
3226
|
+
__name(this, "DeleteSyncJobCommand");
|
|
3227
|
+
}
|
|
3197
3228
|
};
|
|
3198
|
-
__name(_DeleteSyncJobCommand, "DeleteSyncJobCommand");
|
|
3199
|
-
var DeleteSyncJobCommand = _DeleteSyncJobCommand;
|
|
3200
3229
|
|
|
3201
3230
|
// src/commands/DeleteWorkspaceCommand.ts
|
|
3202
3231
|
|
|
3203
3232
|
|
|
3204
3233
|
|
|
3205
|
-
var
|
|
3234
|
+
var DeleteWorkspaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3206
3235
|
return [
|
|
3207
3236
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3208
3237
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3209
3238
|
];
|
|
3210
3239
|
}).s("AWSIoTTwinMaker", "DeleteWorkspace", {}).n("IoTTwinMakerClient", "DeleteWorkspaceCommand").f(void 0, void 0).ser(se_DeleteWorkspaceCommand).de(de_DeleteWorkspaceCommand).build() {
|
|
3240
|
+
static {
|
|
3241
|
+
__name(this, "DeleteWorkspaceCommand");
|
|
3242
|
+
}
|
|
3211
3243
|
};
|
|
3212
|
-
__name(_DeleteWorkspaceCommand, "DeleteWorkspaceCommand");
|
|
3213
|
-
var DeleteWorkspaceCommand = _DeleteWorkspaceCommand;
|
|
3214
3244
|
|
|
3215
3245
|
// src/commands/ExecuteQueryCommand.ts
|
|
3216
3246
|
|
|
3217
3247
|
|
|
3218
3248
|
|
|
3219
|
-
var
|
|
3249
|
+
var ExecuteQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3220
3250
|
return [
|
|
3221
3251
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3222
3252
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3223
3253
|
];
|
|
3224
3254
|
}).s("AWSIoTTwinMaker", "ExecuteQuery", {}).n("IoTTwinMakerClient", "ExecuteQueryCommand").f(void 0, void 0).ser(se_ExecuteQueryCommand).de(de_ExecuteQueryCommand).build() {
|
|
3255
|
+
static {
|
|
3256
|
+
__name(this, "ExecuteQueryCommand");
|
|
3257
|
+
}
|
|
3225
3258
|
};
|
|
3226
|
-
__name(_ExecuteQueryCommand, "ExecuteQueryCommand");
|
|
3227
|
-
var ExecuteQueryCommand = _ExecuteQueryCommand;
|
|
3228
3259
|
|
|
3229
3260
|
// src/commands/GetComponentTypeCommand.ts
|
|
3230
3261
|
|
|
3231
3262
|
|
|
3232
3263
|
|
|
3233
|
-
var
|
|
3264
|
+
var GetComponentTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3234
3265
|
return [
|
|
3235
3266
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3236
3267
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3237
3268
|
];
|
|
3238
3269
|
}).s("AWSIoTTwinMaker", "GetComponentType", {}).n("IoTTwinMakerClient", "GetComponentTypeCommand").f(void 0, void 0).ser(se_GetComponentTypeCommand).de(de_GetComponentTypeCommand).build() {
|
|
3270
|
+
static {
|
|
3271
|
+
__name(this, "GetComponentTypeCommand");
|
|
3272
|
+
}
|
|
3239
3273
|
};
|
|
3240
|
-
__name(_GetComponentTypeCommand, "GetComponentTypeCommand");
|
|
3241
|
-
var GetComponentTypeCommand = _GetComponentTypeCommand;
|
|
3242
3274
|
|
|
3243
3275
|
// src/commands/GetEntityCommand.ts
|
|
3244
3276
|
|
|
3245
3277
|
|
|
3246
3278
|
|
|
3247
|
-
var
|
|
3279
|
+
var GetEntityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3248
3280
|
return [
|
|
3249
3281
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3250
3282
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3251
3283
|
];
|
|
3252
3284
|
}).s("AWSIoTTwinMaker", "GetEntity", {}).n("IoTTwinMakerClient", "GetEntityCommand").f(void 0, void 0).ser(se_GetEntityCommand).de(de_GetEntityCommand).build() {
|
|
3285
|
+
static {
|
|
3286
|
+
__name(this, "GetEntityCommand");
|
|
3287
|
+
}
|
|
3253
3288
|
};
|
|
3254
|
-
__name(_GetEntityCommand, "GetEntityCommand");
|
|
3255
|
-
var GetEntityCommand = _GetEntityCommand;
|
|
3256
3289
|
|
|
3257
3290
|
// src/commands/GetMetadataTransferJobCommand.ts
|
|
3258
3291
|
|
|
3259
3292
|
|
|
3260
3293
|
|
|
3261
|
-
var
|
|
3294
|
+
var GetMetadataTransferJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3262
3295
|
return [
|
|
3263
3296
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3264
3297
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3265
3298
|
];
|
|
3266
3299
|
}).s("AWSIoTTwinMaker", "GetMetadataTransferJob", {}).n("IoTTwinMakerClient", "GetMetadataTransferJobCommand").f(void 0, void 0).ser(se_GetMetadataTransferJobCommand).de(de_GetMetadataTransferJobCommand).build() {
|
|
3300
|
+
static {
|
|
3301
|
+
__name(this, "GetMetadataTransferJobCommand");
|
|
3302
|
+
}
|
|
3267
3303
|
};
|
|
3268
|
-
__name(_GetMetadataTransferJobCommand, "GetMetadataTransferJobCommand");
|
|
3269
|
-
var GetMetadataTransferJobCommand = _GetMetadataTransferJobCommand;
|
|
3270
3304
|
|
|
3271
3305
|
// src/commands/GetPricingPlanCommand.ts
|
|
3272
3306
|
|
|
3273
3307
|
|
|
3274
3308
|
|
|
3275
|
-
var
|
|
3309
|
+
var GetPricingPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3276
3310
|
return [
|
|
3277
3311
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3278
3312
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3279
3313
|
];
|
|
3280
3314
|
}).s("AWSIoTTwinMaker", "GetPricingPlan", {}).n("IoTTwinMakerClient", "GetPricingPlanCommand").f(void 0, void 0).ser(se_GetPricingPlanCommand).de(de_GetPricingPlanCommand).build() {
|
|
3315
|
+
static {
|
|
3316
|
+
__name(this, "GetPricingPlanCommand");
|
|
3317
|
+
}
|
|
3281
3318
|
};
|
|
3282
|
-
__name(_GetPricingPlanCommand, "GetPricingPlanCommand");
|
|
3283
|
-
var GetPricingPlanCommand = _GetPricingPlanCommand;
|
|
3284
3319
|
|
|
3285
3320
|
// src/commands/GetPropertyValueCommand.ts
|
|
3286
3321
|
|
|
3287
3322
|
|
|
3288
3323
|
|
|
3289
|
-
var
|
|
3324
|
+
var GetPropertyValueCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3290
3325
|
return [
|
|
3291
3326
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3292
3327
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3293
3328
|
];
|
|
3294
3329
|
}).s("AWSIoTTwinMaker", "GetPropertyValue", {}).n("IoTTwinMakerClient", "GetPropertyValueCommand").f(void 0, void 0).ser(se_GetPropertyValueCommand).de(de_GetPropertyValueCommand).build() {
|
|
3330
|
+
static {
|
|
3331
|
+
__name(this, "GetPropertyValueCommand");
|
|
3332
|
+
}
|
|
3295
3333
|
};
|
|
3296
|
-
__name(_GetPropertyValueCommand, "GetPropertyValueCommand");
|
|
3297
|
-
var GetPropertyValueCommand = _GetPropertyValueCommand;
|
|
3298
3334
|
|
|
3299
3335
|
// src/commands/GetPropertyValueHistoryCommand.ts
|
|
3300
3336
|
|
|
3301
3337
|
|
|
3302
3338
|
|
|
3303
|
-
var
|
|
3339
|
+
var GetPropertyValueHistoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3304
3340
|
return [
|
|
3305
3341
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3306
3342
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3307
3343
|
];
|
|
3308
3344
|
}).s("AWSIoTTwinMaker", "GetPropertyValueHistory", {}).n("IoTTwinMakerClient", "GetPropertyValueHistoryCommand").f(void 0, void 0).ser(se_GetPropertyValueHistoryCommand).de(de_GetPropertyValueHistoryCommand).build() {
|
|
3345
|
+
static {
|
|
3346
|
+
__name(this, "GetPropertyValueHistoryCommand");
|
|
3347
|
+
}
|
|
3309
3348
|
};
|
|
3310
|
-
__name(_GetPropertyValueHistoryCommand, "GetPropertyValueHistoryCommand");
|
|
3311
|
-
var GetPropertyValueHistoryCommand = _GetPropertyValueHistoryCommand;
|
|
3312
3349
|
|
|
3313
3350
|
// src/commands/GetSceneCommand.ts
|
|
3314
3351
|
|
|
3315
3352
|
|
|
3316
3353
|
|
|
3317
|
-
var
|
|
3354
|
+
var GetSceneCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3318
3355
|
return [
|
|
3319
3356
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3320
3357
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3321
3358
|
];
|
|
3322
3359
|
}).s("AWSIoTTwinMaker", "GetScene", {}).n("IoTTwinMakerClient", "GetSceneCommand").f(void 0, void 0).ser(se_GetSceneCommand).de(de_GetSceneCommand).build() {
|
|
3360
|
+
static {
|
|
3361
|
+
__name(this, "GetSceneCommand");
|
|
3362
|
+
}
|
|
3323
3363
|
};
|
|
3324
|
-
__name(_GetSceneCommand, "GetSceneCommand");
|
|
3325
|
-
var GetSceneCommand = _GetSceneCommand;
|
|
3326
3364
|
|
|
3327
3365
|
// src/commands/GetSyncJobCommand.ts
|
|
3328
3366
|
|
|
3329
3367
|
|
|
3330
3368
|
|
|
3331
|
-
var
|
|
3369
|
+
var GetSyncJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3332
3370
|
return [
|
|
3333
3371
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3334
3372
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3335
3373
|
];
|
|
3336
3374
|
}).s("AWSIoTTwinMaker", "GetSyncJob", {}).n("IoTTwinMakerClient", "GetSyncJobCommand").f(void 0, void 0).ser(se_GetSyncJobCommand).de(de_GetSyncJobCommand).build() {
|
|
3375
|
+
static {
|
|
3376
|
+
__name(this, "GetSyncJobCommand");
|
|
3377
|
+
}
|
|
3337
3378
|
};
|
|
3338
|
-
__name(_GetSyncJobCommand, "GetSyncJobCommand");
|
|
3339
|
-
var GetSyncJobCommand = _GetSyncJobCommand;
|
|
3340
3379
|
|
|
3341
3380
|
// src/commands/GetWorkspaceCommand.ts
|
|
3342
3381
|
|
|
3343
3382
|
|
|
3344
3383
|
|
|
3345
|
-
var
|
|
3384
|
+
var GetWorkspaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3346
3385
|
return [
|
|
3347
3386
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3348
3387
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3349
3388
|
];
|
|
3350
3389
|
}).s("AWSIoTTwinMaker", "GetWorkspace", {}).n("IoTTwinMakerClient", "GetWorkspaceCommand").f(void 0, void 0).ser(se_GetWorkspaceCommand).de(de_GetWorkspaceCommand).build() {
|
|
3390
|
+
static {
|
|
3391
|
+
__name(this, "GetWorkspaceCommand");
|
|
3392
|
+
}
|
|
3351
3393
|
};
|
|
3352
|
-
__name(_GetWorkspaceCommand, "GetWorkspaceCommand");
|
|
3353
|
-
var GetWorkspaceCommand = _GetWorkspaceCommand;
|
|
3354
3394
|
|
|
3355
3395
|
// src/commands/ListComponentsCommand.ts
|
|
3356
3396
|
|
|
3357
3397
|
|
|
3358
3398
|
|
|
3359
|
-
var
|
|
3399
|
+
var ListComponentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3360
3400
|
return [
|
|
3361
3401
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3362
3402
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3363
3403
|
];
|
|
3364
3404
|
}).s("AWSIoTTwinMaker", "ListComponents", {}).n("IoTTwinMakerClient", "ListComponentsCommand").f(void 0, void 0).ser(se_ListComponentsCommand).de(de_ListComponentsCommand).build() {
|
|
3405
|
+
static {
|
|
3406
|
+
__name(this, "ListComponentsCommand");
|
|
3407
|
+
}
|
|
3365
3408
|
};
|
|
3366
|
-
__name(_ListComponentsCommand, "ListComponentsCommand");
|
|
3367
|
-
var ListComponentsCommand = _ListComponentsCommand;
|
|
3368
3409
|
|
|
3369
3410
|
// src/commands/ListComponentTypesCommand.ts
|
|
3370
3411
|
|
|
3371
3412
|
|
|
3372
3413
|
|
|
3373
|
-
var
|
|
3414
|
+
var ListComponentTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3374
3415
|
return [
|
|
3375
3416
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3376
3417
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3377
3418
|
];
|
|
3378
3419
|
}).s("AWSIoTTwinMaker", "ListComponentTypes", {}).n("IoTTwinMakerClient", "ListComponentTypesCommand").f(void 0, void 0).ser(se_ListComponentTypesCommand).de(de_ListComponentTypesCommand).build() {
|
|
3420
|
+
static {
|
|
3421
|
+
__name(this, "ListComponentTypesCommand");
|
|
3422
|
+
}
|
|
3379
3423
|
};
|
|
3380
|
-
__name(_ListComponentTypesCommand, "ListComponentTypesCommand");
|
|
3381
|
-
var ListComponentTypesCommand = _ListComponentTypesCommand;
|
|
3382
3424
|
|
|
3383
3425
|
// src/commands/ListEntitiesCommand.ts
|
|
3384
3426
|
|
|
3385
3427
|
|
|
3386
3428
|
|
|
3387
|
-
var
|
|
3429
|
+
var ListEntitiesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3388
3430
|
return [
|
|
3389
3431
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3390
3432
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3391
3433
|
];
|
|
3392
3434
|
}).s("AWSIoTTwinMaker", "ListEntities", {}).n("IoTTwinMakerClient", "ListEntitiesCommand").f(void 0, void 0).ser(se_ListEntitiesCommand).de(de_ListEntitiesCommand).build() {
|
|
3435
|
+
static {
|
|
3436
|
+
__name(this, "ListEntitiesCommand");
|
|
3437
|
+
}
|
|
3393
3438
|
};
|
|
3394
|
-
__name(_ListEntitiesCommand, "ListEntitiesCommand");
|
|
3395
|
-
var ListEntitiesCommand = _ListEntitiesCommand;
|
|
3396
3439
|
|
|
3397
3440
|
// src/commands/ListMetadataTransferJobsCommand.ts
|
|
3398
3441
|
|
|
3399
3442
|
|
|
3400
3443
|
|
|
3401
|
-
var
|
|
3444
|
+
var ListMetadataTransferJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3402
3445
|
return [
|
|
3403
3446
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3404
3447
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3405
3448
|
];
|
|
3406
3449
|
}).s("AWSIoTTwinMaker", "ListMetadataTransferJobs", {}).n("IoTTwinMakerClient", "ListMetadataTransferJobsCommand").f(void 0, void 0).ser(se_ListMetadataTransferJobsCommand).de(de_ListMetadataTransferJobsCommand).build() {
|
|
3450
|
+
static {
|
|
3451
|
+
__name(this, "ListMetadataTransferJobsCommand");
|
|
3452
|
+
}
|
|
3407
3453
|
};
|
|
3408
|
-
__name(_ListMetadataTransferJobsCommand, "ListMetadataTransferJobsCommand");
|
|
3409
|
-
var ListMetadataTransferJobsCommand = _ListMetadataTransferJobsCommand;
|
|
3410
3454
|
|
|
3411
3455
|
// src/commands/ListPropertiesCommand.ts
|
|
3412
3456
|
|
|
3413
3457
|
|
|
3414
3458
|
|
|
3415
|
-
var
|
|
3459
|
+
var ListPropertiesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3416
3460
|
return [
|
|
3417
3461
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3418
3462
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3419
3463
|
];
|
|
3420
3464
|
}).s("AWSIoTTwinMaker", "ListProperties", {}).n("IoTTwinMakerClient", "ListPropertiesCommand").f(void 0, void 0).ser(se_ListPropertiesCommand).de(de_ListPropertiesCommand).build() {
|
|
3465
|
+
static {
|
|
3466
|
+
__name(this, "ListPropertiesCommand");
|
|
3467
|
+
}
|
|
3421
3468
|
};
|
|
3422
|
-
__name(_ListPropertiesCommand, "ListPropertiesCommand");
|
|
3423
|
-
var ListPropertiesCommand = _ListPropertiesCommand;
|
|
3424
3469
|
|
|
3425
3470
|
// src/commands/ListScenesCommand.ts
|
|
3426
3471
|
|
|
3427
3472
|
|
|
3428
3473
|
|
|
3429
|
-
var
|
|
3474
|
+
var ListScenesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3430
3475
|
return [
|
|
3431
3476
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3432
3477
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3433
3478
|
];
|
|
3434
3479
|
}).s("AWSIoTTwinMaker", "ListScenes", {}).n("IoTTwinMakerClient", "ListScenesCommand").f(void 0, void 0).ser(se_ListScenesCommand).de(de_ListScenesCommand).build() {
|
|
3480
|
+
static {
|
|
3481
|
+
__name(this, "ListScenesCommand");
|
|
3482
|
+
}
|
|
3435
3483
|
};
|
|
3436
|
-
__name(_ListScenesCommand, "ListScenesCommand");
|
|
3437
|
-
var ListScenesCommand = _ListScenesCommand;
|
|
3438
3484
|
|
|
3439
3485
|
// src/commands/ListSyncJobsCommand.ts
|
|
3440
3486
|
|
|
3441
3487
|
|
|
3442
3488
|
|
|
3443
|
-
var
|
|
3489
|
+
var ListSyncJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3444
3490
|
return [
|
|
3445
3491
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3446
3492
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3447
3493
|
];
|
|
3448
3494
|
}).s("AWSIoTTwinMaker", "ListSyncJobs", {}).n("IoTTwinMakerClient", "ListSyncJobsCommand").f(void 0, void 0).ser(se_ListSyncJobsCommand).de(de_ListSyncJobsCommand).build() {
|
|
3495
|
+
static {
|
|
3496
|
+
__name(this, "ListSyncJobsCommand");
|
|
3497
|
+
}
|
|
3449
3498
|
};
|
|
3450
|
-
__name(_ListSyncJobsCommand, "ListSyncJobsCommand");
|
|
3451
|
-
var ListSyncJobsCommand = _ListSyncJobsCommand;
|
|
3452
3499
|
|
|
3453
3500
|
// src/commands/ListSyncResourcesCommand.ts
|
|
3454
3501
|
|
|
3455
3502
|
|
|
3456
3503
|
|
|
3457
|
-
var
|
|
3504
|
+
var ListSyncResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3458
3505
|
return [
|
|
3459
3506
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3460
3507
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3461
3508
|
];
|
|
3462
3509
|
}).s("AWSIoTTwinMaker", "ListSyncResources", {}).n("IoTTwinMakerClient", "ListSyncResourcesCommand").f(void 0, void 0).ser(se_ListSyncResourcesCommand).de(de_ListSyncResourcesCommand).build() {
|
|
3510
|
+
static {
|
|
3511
|
+
__name(this, "ListSyncResourcesCommand");
|
|
3512
|
+
}
|
|
3463
3513
|
};
|
|
3464
|
-
__name(_ListSyncResourcesCommand, "ListSyncResourcesCommand");
|
|
3465
|
-
var ListSyncResourcesCommand = _ListSyncResourcesCommand;
|
|
3466
3514
|
|
|
3467
3515
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3468
3516
|
|
|
3469
3517
|
|
|
3470
3518
|
|
|
3471
|
-
var
|
|
3519
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3472
3520
|
return [
|
|
3473
3521
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3474
3522
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3475
3523
|
];
|
|
3476
3524
|
}).s("AWSIoTTwinMaker", "ListTagsForResource", {}).n("IoTTwinMakerClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3525
|
+
static {
|
|
3526
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3527
|
+
}
|
|
3477
3528
|
};
|
|
3478
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3479
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3480
3529
|
|
|
3481
3530
|
// src/commands/ListWorkspacesCommand.ts
|
|
3482
3531
|
|
|
3483
3532
|
|
|
3484
3533
|
|
|
3485
|
-
var
|
|
3534
|
+
var ListWorkspacesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3486
3535
|
return [
|
|
3487
3536
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3488
3537
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3489
3538
|
];
|
|
3490
3539
|
}).s("AWSIoTTwinMaker", "ListWorkspaces", {}).n("IoTTwinMakerClient", "ListWorkspacesCommand").f(void 0, void 0).ser(se_ListWorkspacesCommand).de(de_ListWorkspacesCommand).build() {
|
|
3540
|
+
static {
|
|
3541
|
+
__name(this, "ListWorkspacesCommand");
|
|
3542
|
+
}
|
|
3491
3543
|
};
|
|
3492
|
-
__name(_ListWorkspacesCommand, "ListWorkspacesCommand");
|
|
3493
|
-
var ListWorkspacesCommand = _ListWorkspacesCommand;
|
|
3494
3544
|
|
|
3495
3545
|
// src/commands/TagResourceCommand.ts
|
|
3496
3546
|
|
|
3497
3547
|
|
|
3498
3548
|
|
|
3499
|
-
var
|
|
3549
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3500
3550
|
return [
|
|
3501
3551
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3502
3552
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3503
3553
|
];
|
|
3504
3554
|
}).s("AWSIoTTwinMaker", "TagResource", {}).n("IoTTwinMakerClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3555
|
+
static {
|
|
3556
|
+
__name(this, "TagResourceCommand");
|
|
3557
|
+
}
|
|
3505
3558
|
};
|
|
3506
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
3507
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
3508
3559
|
|
|
3509
3560
|
// src/commands/UntagResourceCommand.ts
|
|
3510
3561
|
|
|
3511
3562
|
|
|
3512
3563
|
|
|
3513
|
-
var
|
|
3564
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3514
3565
|
return [
|
|
3515
3566
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3516
3567
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3517
3568
|
];
|
|
3518
3569
|
}).s("AWSIoTTwinMaker", "UntagResource", {}).n("IoTTwinMakerClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3570
|
+
static {
|
|
3571
|
+
__name(this, "UntagResourceCommand");
|
|
3572
|
+
}
|
|
3519
3573
|
};
|
|
3520
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
3521
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
3522
3574
|
|
|
3523
3575
|
// src/commands/UpdateComponentTypeCommand.ts
|
|
3524
3576
|
|
|
3525
3577
|
|
|
3526
3578
|
|
|
3527
|
-
var
|
|
3579
|
+
var UpdateComponentTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3528
3580
|
return [
|
|
3529
3581
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3530
3582
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3531
3583
|
];
|
|
3532
3584
|
}).s("AWSIoTTwinMaker", "UpdateComponentType", {}).n("IoTTwinMakerClient", "UpdateComponentTypeCommand").f(void 0, void 0).ser(se_UpdateComponentTypeCommand).de(de_UpdateComponentTypeCommand).build() {
|
|
3585
|
+
static {
|
|
3586
|
+
__name(this, "UpdateComponentTypeCommand");
|
|
3587
|
+
}
|
|
3533
3588
|
};
|
|
3534
|
-
__name(_UpdateComponentTypeCommand, "UpdateComponentTypeCommand");
|
|
3535
|
-
var UpdateComponentTypeCommand = _UpdateComponentTypeCommand;
|
|
3536
3589
|
|
|
3537
3590
|
// src/commands/UpdateEntityCommand.ts
|
|
3538
3591
|
|
|
3539
3592
|
|
|
3540
3593
|
|
|
3541
|
-
var
|
|
3594
|
+
var UpdateEntityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3542
3595
|
return [
|
|
3543
3596
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3544
3597
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3545
3598
|
];
|
|
3546
3599
|
}).s("AWSIoTTwinMaker", "UpdateEntity", {}).n("IoTTwinMakerClient", "UpdateEntityCommand").f(void 0, void 0).ser(se_UpdateEntityCommand).de(de_UpdateEntityCommand).build() {
|
|
3600
|
+
static {
|
|
3601
|
+
__name(this, "UpdateEntityCommand");
|
|
3602
|
+
}
|
|
3547
3603
|
};
|
|
3548
|
-
__name(_UpdateEntityCommand, "UpdateEntityCommand");
|
|
3549
|
-
var UpdateEntityCommand = _UpdateEntityCommand;
|
|
3550
3604
|
|
|
3551
3605
|
// src/commands/UpdatePricingPlanCommand.ts
|
|
3552
3606
|
|
|
3553
3607
|
|
|
3554
3608
|
|
|
3555
|
-
var
|
|
3609
|
+
var UpdatePricingPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3556
3610
|
return [
|
|
3557
3611
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3558
3612
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3559
3613
|
];
|
|
3560
3614
|
}).s("AWSIoTTwinMaker", "UpdatePricingPlan", {}).n("IoTTwinMakerClient", "UpdatePricingPlanCommand").f(void 0, void 0).ser(se_UpdatePricingPlanCommand).de(de_UpdatePricingPlanCommand).build() {
|
|
3615
|
+
static {
|
|
3616
|
+
__name(this, "UpdatePricingPlanCommand");
|
|
3617
|
+
}
|
|
3561
3618
|
};
|
|
3562
|
-
__name(_UpdatePricingPlanCommand, "UpdatePricingPlanCommand");
|
|
3563
|
-
var UpdatePricingPlanCommand = _UpdatePricingPlanCommand;
|
|
3564
3619
|
|
|
3565
3620
|
// src/commands/UpdateSceneCommand.ts
|
|
3566
3621
|
|
|
3567
3622
|
|
|
3568
3623
|
|
|
3569
|
-
var
|
|
3624
|
+
var UpdateSceneCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3570
3625
|
return [
|
|
3571
3626
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3572
3627
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3573
3628
|
];
|
|
3574
3629
|
}).s("AWSIoTTwinMaker", "UpdateScene", {}).n("IoTTwinMakerClient", "UpdateSceneCommand").f(void 0, void 0).ser(se_UpdateSceneCommand).de(de_UpdateSceneCommand).build() {
|
|
3630
|
+
static {
|
|
3631
|
+
__name(this, "UpdateSceneCommand");
|
|
3632
|
+
}
|
|
3575
3633
|
};
|
|
3576
|
-
__name(_UpdateSceneCommand, "UpdateSceneCommand");
|
|
3577
|
-
var UpdateSceneCommand = _UpdateSceneCommand;
|
|
3578
3634
|
|
|
3579
3635
|
// src/commands/UpdateWorkspaceCommand.ts
|
|
3580
3636
|
|
|
3581
3637
|
|
|
3582
3638
|
|
|
3583
|
-
var
|
|
3639
|
+
var UpdateWorkspaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3584
3640
|
return [
|
|
3585
3641
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3586
3642
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3587
3643
|
];
|
|
3588
3644
|
}).s("AWSIoTTwinMaker", "UpdateWorkspace", {}).n("IoTTwinMakerClient", "UpdateWorkspaceCommand").f(void 0, void 0).ser(se_UpdateWorkspaceCommand).de(de_UpdateWorkspaceCommand).build() {
|
|
3645
|
+
static {
|
|
3646
|
+
__name(this, "UpdateWorkspaceCommand");
|
|
3647
|
+
}
|
|
3589
3648
|
};
|
|
3590
|
-
__name(_UpdateWorkspaceCommand, "UpdateWorkspaceCommand");
|
|
3591
|
-
var UpdateWorkspaceCommand = _UpdateWorkspaceCommand;
|
|
3592
3649
|
|
|
3593
3650
|
// src/IoTTwinMaker.ts
|
|
3594
3651
|
var commands = {
|
|
@@ -3633,10 +3690,11 @@ var commands = {
|
|
|
3633
3690
|
UpdateSceneCommand,
|
|
3634
3691
|
UpdateWorkspaceCommand
|
|
3635
3692
|
};
|
|
3636
|
-
var
|
|
3693
|
+
var IoTTwinMaker = class extends IoTTwinMakerClient {
|
|
3694
|
+
static {
|
|
3695
|
+
__name(this, "IoTTwinMaker");
|
|
3696
|
+
}
|
|
3637
3697
|
};
|
|
3638
|
-
__name(_IoTTwinMaker, "IoTTwinMaker");
|
|
3639
|
-
var IoTTwinMaker = _IoTTwinMaker;
|
|
3640
3698
|
(0, import_smithy_client.createAggregatedClient)(commands, IoTTwinMaker);
|
|
3641
3699
|
|
|
3642
3700
|
// src/pagination/ExecuteQueryPaginator.ts
|