@aws-sdk/client-iotsitewise 3.451.0 → 3.456.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/README.md +88 -0
- package/dist-cjs/IoTSiteWise.js +22 -0
- package/dist-cjs/commands/CreateAssetModelCompositeModelCommand.js +51 -0
- package/dist-cjs/commands/DeleteAssetModelCompositeModelCommand.js +51 -0
- package/dist-cjs/commands/DescribeActionCommand.js +51 -0
- package/dist-cjs/commands/DescribeAssetCompositeModelCommand.js +51 -0
- package/dist-cjs/commands/DescribeAssetModelCompositeModelCommand.js +51 -0
- package/dist-cjs/commands/ExecuteActionCommand.js +51 -0
- package/dist-cjs/commands/ExecuteQueryCommand.js +51 -0
- package/dist-cjs/commands/ListActionsCommand.js +51 -0
- package/dist-cjs/commands/ListAssetModelCompositeModelsCommand.js +51 -0
- package/dist-cjs/commands/ListCompositionRelationshipsCommand.js +51 -0
- package/dist-cjs/commands/UpdateAssetModelCompositeModelCommand.js +51 -0
- package/dist-cjs/commands/index.js +11 -0
- package/dist-cjs/models/index.js +1 -0
- package/dist-cjs/models/models_0.js +59 -15
- package/dist-cjs/models/models_1.js +18 -0
- package/dist-cjs/pagination/ExecuteQueryPaginator.js +29 -0
- package/dist-cjs/pagination/ListAssetModelCompositeModelsPaginator.js +29 -0
- package/dist-cjs/pagination/ListCompositionRelationshipsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1018 -25
- package/dist-es/IoTSiteWise.js +22 -0
- package/dist-es/commands/CreateAssetModelCompositeModelCommand.js +47 -0
- package/dist-es/commands/DeleteAssetModelCompositeModelCommand.js +47 -0
- package/dist-es/commands/DescribeActionCommand.js +47 -0
- package/dist-es/commands/DescribeAssetCompositeModelCommand.js +47 -0
- package/dist-es/commands/DescribeAssetModelCompositeModelCommand.js +47 -0
- package/dist-es/commands/ExecuteActionCommand.js +47 -0
- package/dist-es/commands/ExecuteQueryCommand.js +47 -0
- package/dist-es/commands/ListActionsCommand.js +47 -0
- package/dist-es/commands/ListAssetModelCompositeModelsCommand.js +47 -0
- package/dist-es/commands/ListCompositionRelationshipsCommand.js +47 -0
- package/dist-es/commands/UpdateAssetModelCompositeModelCommand.js +47 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +54 -13
- package/dist-es/models/models_1.js +14 -0
- package/dist-es/pagination/ExecuteQueryPaginator.js +25 -0
- package/dist-es/pagination/ListAssetModelCompositeModelsPaginator.js +25 -0
- package/dist-es/pagination/ListCompositionRelationshipsPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1038 -68
- package/dist-types/IoTSiteWise.d.ts +77 -0
- package/dist-types/IoTSiteWiseClient.d.ts +13 -2
- package/dist-types/commands/CreateAssetCommand.d.ts +2 -0
- package/dist-types/commands/CreateAssetModelCommand.d.ts +52 -4
- package/dist-types/commands/CreateAssetModelCompositeModelCommand.d.ts +212 -0
- package/dist-types/commands/CreateBulkImportJobCommand.d.ts +8 -3
- package/dist-types/commands/DeleteAssetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssetModelCompositeModelCommand.d.ts +111 -0
- package/dist-types/commands/DescribeActionCommand.d.ts +97 -0
- package/dist-types/commands/DescribeAssetCommand.d.ts +32 -0
- package/dist-types/commands/DescribeAssetCompositeModelCommand.d.ts +145 -0
- package/dist-types/commands/DescribeAssetModelCommand.d.ts +46 -4
- package/dist-types/commands/DescribeAssetModelCompositeModelCommand.d.ts +209 -0
- package/dist-types/commands/DescribeAssetPropertyCommand.d.ts +44 -4
- package/dist-types/commands/DescribeBulkImportJobCommand.d.ts +4 -1
- package/dist-types/commands/DescribeStorageConfigurationCommand.d.ts +5 -0
- package/dist-types/commands/ExecuteActionCommand.d.ts +106 -0
- package/dist-types/commands/ExecuteQueryCommand.d.ts +130 -0
- package/dist-types/commands/ListActionsCommand.d.ts +101 -0
- package/dist-types/commands/ListAssetModelCompositeModelsCommand.d.ts +106 -0
- package/dist-types/commands/ListAssetModelPropertiesCommand.d.ts +21 -2
- package/dist-types/commands/ListAssetModelsCommand.d.ts +5 -0
- package/dist-types/commands/ListAssetPropertiesCommand.d.ts +8 -1
- package/dist-types/commands/ListAssetsCommand.d.ts +2 -0
- package/dist-types/commands/ListAssociatedAssetsCommand.d.ts +2 -0
- package/dist-types/commands/ListCompositionRelationshipsCommand.d.ts +98 -0
- package/dist-types/commands/PutDefaultEncryptionConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +1 -1
- package/dist-types/commands/PutStorageConfigurationCommand.d.ts +11 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAssetCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAssetModelCommand.d.ts +31 -5
- package/dist-types/commands/UpdateAssetModelCompositeModelCommand.d.ts +220 -0
- package/dist-types/commands/UpdateAssetPropertyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDashboardCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGatewayCapabilityConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGatewayCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePortalCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProjectCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1377 -773
- package/dist-types/models/models_1.d.ts +796 -0
- package/dist-types/pagination/ExecuteQueryPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssetModelCompositeModelsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCompositionRelationshipsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +99 -0
- package/dist-types/ts3.4/IoTSiteWise.d.ts +187 -0
- package/dist-types/ts3.4/IoTSiteWiseClient.d.ts +66 -0
- package/dist-types/ts3.4/commands/CreateAssetModelCompositeModelCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteAssetModelCompositeModelCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeActionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeAssetCompositeModelCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeAssetModelCompositeModelCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ExecuteActionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListAssetModelCompositeModelsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCompositionRelationshipsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/PutDefaultEncryptionConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutLoggingOptionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutStorageConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAssetModelCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAssetModelCompositeModelCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateAssetPropertyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDashboardCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateGatewayCapabilityConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateGatewayCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePortalCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +284 -130
- package/dist-types/ts3.4/models/models_1.d.ts +190 -0
- package/dist-types/ts3.4/pagination/ExecuteQueryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssetModelCompositeModelsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCompositionRelationshipsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +132 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -291,6 +291,14 @@ CreateAssetModel
|
|
|
291
291
|
|
|
292
292
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/createassetmodelcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/createassetmodelcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/createassetmodelcommandoutput.html)
|
|
293
293
|
|
|
294
|
+
</details>
|
|
295
|
+
<details>
|
|
296
|
+
<summary>
|
|
297
|
+
CreateAssetModelCompositeModel
|
|
298
|
+
</summary>
|
|
299
|
+
|
|
300
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/createassetmodelcompositemodelcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/createassetmodelcompositemodelcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/createassetmodelcompositemodelcommandoutput.html)
|
|
301
|
+
|
|
294
302
|
</details>
|
|
295
303
|
<details>
|
|
296
304
|
<summary>
|
|
@@ -355,6 +363,14 @@ DeleteAssetModel
|
|
|
355
363
|
|
|
356
364
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/deleteassetmodelcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/deleteassetmodelcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/deleteassetmodelcommandoutput.html)
|
|
357
365
|
|
|
366
|
+
</details>
|
|
367
|
+
<details>
|
|
368
|
+
<summary>
|
|
369
|
+
DeleteAssetModelCompositeModel
|
|
370
|
+
</summary>
|
|
371
|
+
|
|
372
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/deleteassetmodelcompositemodelcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/deleteassetmodelcompositemodelcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/deleteassetmodelcompositemodelcommandoutput.html)
|
|
373
|
+
|
|
358
374
|
</details>
|
|
359
375
|
<details>
|
|
360
376
|
<summary>
|
|
@@ -403,6 +419,14 @@ DescribeAccessPolicy
|
|
|
403
419
|
|
|
404
420
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/describeaccesspolicycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/describeaccesspolicycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/describeaccesspolicycommandoutput.html)
|
|
405
421
|
|
|
422
|
+
</details>
|
|
423
|
+
<details>
|
|
424
|
+
<summary>
|
|
425
|
+
DescribeAction
|
|
426
|
+
</summary>
|
|
427
|
+
|
|
428
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/describeactioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/describeactioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/describeactioncommandoutput.html)
|
|
429
|
+
|
|
406
430
|
</details>
|
|
407
431
|
<details>
|
|
408
432
|
<summary>
|
|
@@ -411,6 +435,14 @@ DescribeAsset
|
|
|
411
435
|
|
|
412
436
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/describeassetcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/describeassetcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/describeassetcommandoutput.html)
|
|
413
437
|
|
|
438
|
+
</details>
|
|
439
|
+
<details>
|
|
440
|
+
<summary>
|
|
441
|
+
DescribeAssetCompositeModel
|
|
442
|
+
</summary>
|
|
443
|
+
|
|
444
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/describeassetcompositemodelcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/describeassetcompositemodelcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/describeassetcompositemodelcommandoutput.html)
|
|
445
|
+
|
|
414
446
|
</details>
|
|
415
447
|
<details>
|
|
416
448
|
<summary>
|
|
@@ -419,6 +451,14 @@ DescribeAssetModel
|
|
|
419
451
|
|
|
420
452
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/describeassetmodelcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/describeassetmodelcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/describeassetmodelcommandoutput.html)
|
|
421
453
|
|
|
454
|
+
</details>
|
|
455
|
+
<details>
|
|
456
|
+
<summary>
|
|
457
|
+
DescribeAssetModelCompositeModel
|
|
458
|
+
</summary>
|
|
459
|
+
|
|
460
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/describeassetmodelcompositemodelcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/describeassetmodelcompositemodelcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/describeassetmodelcompositemodelcommandoutput.html)
|
|
461
|
+
|
|
422
462
|
</details>
|
|
423
463
|
<details>
|
|
424
464
|
<summary>
|
|
@@ -523,6 +563,22 @@ DisassociateTimeSeriesFromAssetProperty
|
|
|
523
563
|
|
|
524
564
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/disassociatetimeseriesfromassetpropertycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/disassociatetimeseriesfromassetpropertycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/disassociatetimeseriesfromassetpropertycommandoutput.html)
|
|
525
565
|
|
|
566
|
+
</details>
|
|
567
|
+
<details>
|
|
568
|
+
<summary>
|
|
569
|
+
ExecuteAction
|
|
570
|
+
</summary>
|
|
571
|
+
|
|
572
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/executeactioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/executeactioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/executeactioncommandoutput.html)
|
|
573
|
+
|
|
574
|
+
</details>
|
|
575
|
+
<details>
|
|
576
|
+
<summary>
|
|
577
|
+
ExecuteQuery
|
|
578
|
+
</summary>
|
|
579
|
+
|
|
580
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/executequerycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/executequerycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/executequerycommandoutput.html)
|
|
581
|
+
|
|
526
582
|
</details>
|
|
527
583
|
<details>
|
|
528
584
|
<summary>
|
|
@@ -563,6 +619,22 @@ ListAccessPolicies
|
|
|
563
619
|
|
|
564
620
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/listaccesspoliciescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/listaccesspoliciescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/listaccesspoliciescommandoutput.html)
|
|
565
621
|
|
|
622
|
+
</details>
|
|
623
|
+
<details>
|
|
624
|
+
<summary>
|
|
625
|
+
ListActions
|
|
626
|
+
</summary>
|
|
627
|
+
|
|
628
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/listactionscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/listactionscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/listactionscommandoutput.html)
|
|
629
|
+
|
|
630
|
+
</details>
|
|
631
|
+
<details>
|
|
632
|
+
<summary>
|
|
633
|
+
ListAssetModelCompositeModels
|
|
634
|
+
</summary>
|
|
635
|
+
|
|
636
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/listassetmodelcompositemodelscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/listassetmodelcompositemodelscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/listassetmodelcompositemodelscommandoutput.html)
|
|
637
|
+
|
|
566
638
|
</details>
|
|
567
639
|
<details>
|
|
568
640
|
<summary>
|
|
@@ -619,6 +691,14 @@ ListBulkImportJobs
|
|
|
619
691
|
|
|
620
692
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/listbulkimportjobscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/listbulkimportjobscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/listbulkimportjobscommandoutput.html)
|
|
621
693
|
|
|
694
|
+
</details>
|
|
695
|
+
<details>
|
|
696
|
+
<summary>
|
|
697
|
+
ListCompositionRelationships
|
|
698
|
+
</summary>
|
|
699
|
+
|
|
700
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/listcompositionrelationshipscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/listcompositionrelationshipscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/listcompositionrelationshipscommandoutput.html)
|
|
701
|
+
|
|
622
702
|
</details>
|
|
623
703
|
<details>
|
|
624
704
|
<summary>
|
|
@@ -739,6 +819,14 @@ UpdateAssetModel
|
|
|
739
819
|
|
|
740
820
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/updateassetmodelcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/updateassetmodelcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/updateassetmodelcommandoutput.html)
|
|
741
821
|
|
|
822
|
+
</details>
|
|
823
|
+
<details>
|
|
824
|
+
<summary>
|
|
825
|
+
UpdateAssetModelCompositeModel
|
|
826
|
+
</summary>
|
|
827
|
+
|
|
828
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/classes/updateassetmodelcompositemodelcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/updateassetmodelcompositemodelcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-iotsitewise/interfaces/updateassetmodelcompositemodelcommandoutput.html)
|
|
829
|
+
|
|
742
830
|
</details>
|
|
743
831
|
<details>
|
|
744
832
|
<summary>
|
package/dist-cjs/IoTSiteWise.js
CHANGED
|
@@ -13,6 +13,7 @@ const BatchPutAssetPropertyValueCommand_1 = require("./commands/BatchPutAssetPro
|
|
|
13
13
|
const CreateAccessPolicyCommand_1 = require("./commands/CreateAccessPolicyCommand");
|
|
14
14
|
const CreateAssetCommand_1 = require("./commands/CreateAssetCommand");
|
|
15
15
|
const CreateAssetModelCommand_1 = require("./commands/CreateAssetModelCommand");
|
|
16
|
+
const CreateAssetModelCompositeModelCommand_1 = require("./commands/CreateAssetModelCompositeModelCommand");
|
|
16
17
|
const CreateBulkImportJobCommand_1 = require("./commands/CreateBulkImportJobCommand");
|
|
17
18
|
const CreateDashboardCommand_1 = require("./commands/CreateDashboardCommand");
|
|
18
19
|
const CreateGatewayCommand_1 = require("./commands/CreateGatewayCommand");
|
|
@@ -21,14 +22,18 @@ const CreateProjectCommand_1 = require("./commands/CreateProjectCommand");
|
|
|
21
22
|
const DeleteAccessPolicyCommand_1 = require("./commands/DeleteAccessPolicyCommand");
|
|
22
23
|
const DeleteAssetCommand_1 = require("./commands/DeleteAssetCommand");
|
|
23
24
|
const DeleteAssetModelCommand_1 = require("./commands/DeleteAssetModelCommand");
|
|
25
|
+
const DeleteAssetModelCompositeModelCommand_1 = require("./commands/DeleteAssetModelCompositeModelCommand");
|
|
24
26
|
const DeleteDashboardCommand_1 = require("./commands/DeleteDashboardCommand");
|
|
25
27
|
const DeleteGatewayCommand_1 = require("./commands/DeleteGatewayCommand");
|
|
26
28
|
const DeletePortalCommand_1 = require("./commands/DeletePortalCommand");
|
|
27
29
|
const DeleteProjectCommand_1 = require("./commands/DeleteProjectCommand");
|
|
28
30
|
const DeleteTimeSeriesCommand_1 = require("./commands/DeleteTimeSeriesCommand");
|
|
29
31
|
const DescribeAccessPolicyCommand_1 = require("./commands/DescribeAccessPolicyCommand");
|
|
32
|
+
const DescribeActionCommand_1 = require("./commands/DescribeActionCommand");
|
|
30
33
|
const DescribeAssetCommand_1 = require("./commands/DescribeAssetCommand");
|
|
34
|
+
const DescribeAssetCompositeModelCommand_1 = require("./commands/DescribeAssetCompositeModelCommand");
|
|
31
35
|
const DescribeAssetModelCommand_1 = require("./commands/DescribeAssetModelCommand");
|
|
36
|
+
const DescribeAssetModelCompositeModelCommand_1 = require("./commands/DescribeAssetModelCompositeModelCommand");
|
|
32
37
|
const DescribeAssetPropertyCommand_1 = require("./commands/DescribeAssetPropertyCommand");
|
|
33
38
|
const DescribeBulkImportJobCommand_1 = require("./commands/DescribeBulkImportJobCommand");
|
|
34
39
|
const DescribeDashboardCommand_1 = require("./commands/DescribeDashboardCommand");
|
|
@@ -42,11 +47,15 @@ const DescribeStorageConfigurationCommand_1 = require("./commands/DescribeStorag
|
|
|
42
47
|
const DescribeTimeSeriesCommand_1 = require("./commands/DescribeTimeSeriesCommand");
|
|
43
48
|
const DisassociateAssetsCommand_1 = require("./commands/DisassociateAssetsCommand");
|
|
44
49
|
const DisassociateTimeSeriesFromAssetPropertyCommand_1 = require("./commands/DisassociateTimeSeriesFromAssetPropertyCommand");
|
|
50
|
+
const ExecuteActionCommand_1 = require("./commands/ExecuteActionCommand");
|
|
51
|
+
const ExecuteQueryCommand_1 = require("./commands/ExecuteQueryCommand");
|
|
45
52
|
const GetAssetPropertyAggregatesCommand_1 = require("./commands/GetAssetPropertyAggregatesCommand");
|
|
46
53
|
const GetAssetPropertyValueCommand_1 = require("./commands/GetAssetPropertyValueCommand");
|
|
47
54
|
const GetAssetPropertyValueHistoryCommand_1 = require("./commands/GetAssetPropertyValueHistoryCommand");
|
|
48
55
|
const GetInterpolatedAssetPropertyValuesCommand_1 = require("./commands/GetInterpolatedAssetPropertyValuesCommand");
|
|
49
56
|
const ListAccessPoliciesCommand_1 = require("./commands/ListAccessPoliciesCommand");
|
|
57
|
+
const ListActionsCommand_1 = require("./commands/ListActionsCommand");
|
|
58
|
+
const ListAssetModelCompositeModelsCommand_1 = require("./commands/ListAssetModelCompositeModelsCommand");
|
|
50
59
|
const ListAssetModelPropertiesCommand_1 = require("./commands/ListAssetModelPropertiesCommand");
|
|
51
60
|
const ListAssetModelsCommand_1 = require("./commands/ListAssetModelsCommand");
|
|
52
61
|
const ListAssetPropertiesCommand_1 = require("./commands/ListAssetPropertiesCommand");
|
|
@@ -54,6 +63,7 @@ const ListAssetRelationshipsCommand_1 = require("./commands/ListAssetRelationshi
|
|
|
54
63
|
const ListAssetsCommand_1 = require("./commands/ListAssetsCommand");
|
|
55
64
|
const ListAssociatedAssetsCommand_1 = require("./commands/ListAssociatedAssetsCommand");
|
|
56
65
|
const ListBulkImportJobsCommand_1 = require("./commands/ListBulkImportJobsCommand");
|
|
66
|
+
const ListCompositionRelationshipsCommand_1 = require("./commands/ListCompositionRelationshipsCommand");
|
|
57
67
|
const ListDashboardsCommand_1 = require("./commands/ListDashboardsCommand");
|
|
58
68
|
const ListGatewaysCommand_1 = require("./commands/ListGatewaysCommand");
|
|
59
69
|
const ListPortalsCommand_1 = require("./commands/ListPortalsCommand");
|
|
@@ -69,6 +79,7 @@ const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
|
69
79
|
const UpdateAccessPolicyCommand_1 = require("./commands/UpdateAccessPolicyCommand");
|
|
70
80
|
const UpdateAssetCommand_1 = require("./commands/UpdateAssetCommand");
|
|
71
81
|
const UpdateAssetModelCommand_1 = require("./commands/UpdateAssetModelCommand");
|
|
82
|
+
const UpdateAssetModelCompositeModelCommand_1 = require("./commands/UpdateAssetModelCompositeModelCommand");
|
|
72
83
|
const UpdateAssetPropertyCommand_1 = require("./commands/UpdateAssetPropertyCommand");
|
|
73
84
|
const UpdateDashboardCommand_1 = require("./commands/UpdateDashboardCommand");
|
|
74
85
|
const UpdateGatewayCapabilityConfigurationCommand_1 = require("./commands/UpdateGatewayCapabilityConfigurationCommand");
|
|
@@ -88,6 +99,7 @@ const commands = {
|
|
|
88
99
|
CreateAccessPolicyCommand: CreateAccessPolicyCommand_1.CreateAccessPolicyCommand,
|
|
89
100
|
CreateAssetCommand: CreateAssetCommand_1.CreateAssetCommand,
|
|
90
101
|
CreateAssetModelCommand: CreateAssetModelCommand_1.CreateAssetModelCommand,
|
|
102
|
+
CreateAssetModelCompositeModelCommand: CreateAssetModelCompositeModelCommand_1.CreateAssetModelCompositeModelCommand,
|
|
91
103
|
CreateBulkImportJobCommand: CreateBulkImportJobCommand_1.CreateBulkImportJobCommand,
|
|
92
104
|
CreateDashboardCommand: CreateDashboardCommand_1.CreateDashboardCommand,
|
|
93
105
|
CreateGatewayCommand: CreateGatewayCommand_1.CreateGatewayCommand,
|
|
@@ -96,14 +108,18 @@ const commands = {
|
|
|
96
108
|
DeleteAccessPolicyCommand: DeleteAccessPolicyCommand_1.DeleteAccessPolicyCommand,
|
|
97
109
|
DeleteAssetCommand: DeleteAssetCommand_1.DeleteAssetCommand,
|
|
98
110
|
DeleteAssetModelCommand: DeleteAssetModelCommand_1.DeleteAssetModelCommand,
|
|
111
|
+
DeleteAssetModelCompositeModelCommand: DeleteAssetModelCompositeModelCommand_1.DeleteAssetModelCompositeModelCommand,
|
|
99
112
|
DeleteDashboardCommand: DeleteDashboardCommand_1.DeleteDashboardCommand,
|
|
100
113
|
DeleteGatewayCommand: DeleteGatewayCommand_1.DeleteGatewayCommand,
|
|
101
114
|
DeletePortalCommand: DeletePortalCommand_1.DeletePortalCommand,
|
|
102
115
|
DeleteProjectCommand: DeleteProjectCommand_1.DeleteProjectCommand,
|
|
103
116
|
DeleteTimeSeriesCommand: DeleteTimeSeriesCommand_1.DeleteTimeSeriesCommand,
|
|
104
117
|
DescribeAccessPolicyCommand: DescribeAccessPolicyCommand_1.DescribeAccessPolicyCommand,
|
|
118
|
+
DescribeActionCommand: DescribeActionCommand_1.DescribeActionCommand,
|
|
105
119
|
DescribeAssetCommand: DescribeAssetCommand_1.DescribeAssetCommand,
|
|
120
|
+
DescribeAssetCompositeModelCommand: DescribeAssetCompositeModelCommand_1.DescribeAssetCompositeModelCommand,
|
|
106
121
|
DescribeAssetModelCommand: DescribeAssetModelCommand_1.DescribeAssetModelCommand,
|
|
122
|
+
DescribeAssetModelCompositeModelCommand: DescribeAssetModelCompositeModelCommand_1.DescribeAssetModelCompositeModelCommand,
|
|
107
123
|
DescribeAssetPropertyCommand: DescribeAssetPropertyCommand_1.DescribeAssetPropertyCommand,
|
|
108
124
|
DescribeBulkImportJobCommand: DescribeBulkImportJobCommand_1.DescribeBulkImportJobCommand,
|
|
109
125
|
DescribeDashboardCommand: DescribeDashboardCommand_1.DescribeDashboardCommand,
|
|
@@ -117,11 +133,15 @@ const commands = {
|
|
|
117
133
|
DescribeTimeSeriesCommand: DescribeTimeSeriesCommand_1.DescribeTimeSeriesCommand,
|
|
118
134
|
DisassociateAssetsCommand: DisassociateAssetsCommand_1.DisassociateAssetsCommand,
|
|
119
135
|
DisassociateTimeSeriesFromAssetPropertyCommand: DisassociateTimeSeriesFromAssetPropertyCommand_1.DisassociateTimeSeriesFromAssetPropertyCommand,
|
|
136
|
+
ExecuteActionCommand: ExecuteActionCommand_1.ExecuteActionCommand,
|
|
137
|
+
ExecuteQueryCommand: ExecuteQueryCommand_1.ExecuteQueryCommand,
|
|
120
138
|
GetAssetPropertyAggregatesCommand: GetAssetPropertyAggregatesCommand_1.GetAssetPropertyAggregatesCommand,
|
|
121
139
|
GetAssetPropertyValueCommand: GetAssetPropertyValueCommand_1.GetAssetPropertyValueCommand,
|
|
122
140
|
GetAssetPropertyValueHistoryCommand: GetAssetPropertyValueHistoryCommand_1.GetAssetPropertyValueHistoryCommand,
|
|
123
141
|
GetInterpolatedAssetPropertyValuesCommand: GetInterpolatedAssetPropertyValuesCommand_1.GetInterpolatedAssetPropertyValuesCommand,
|
|
124
142
|
ListAccessPoliciesCommand: ListAccessPoliciesCommand_1.ListAccessPoliciesCommand,
|
|
143
|
+
ListActionsCommand: ListActionsCommand_1.ListActionsCommand,
|
|
144
|
+
ListAssetModelCompositeModelsCommand: ListAssetModelCompositeModelsCommand_1.ListAssetModelCompositeModelsCommand,
|
|
125
145
|
ListAssetModelPropertiesCommand: ListAssetModelPropertiesCommand_1.ListAssetModelPropertiesCommand,
|
|
126
146
|
ListAssetModelsCommand: ListAssetModelsCommand_1.ListAssetModelsCommand,
|
|
127
147
|
ListAssetPropertiesCommand: ListAssetPropertiesCommand_1.ListAssetPropertiesCommand,
|
|
@@ -129,6 +149,7 @@ const commands = {
|
|
|
129
149
|
ListAssetsCommand: ListAssetsCommand_1.ListAssetsCommand,
|
|
130
150
|
ListAssociatedAssetsCommand: ListAssociatedAssetsCommand_1.ListAssociatedAssetsCommand,
|
|
131
151
|
ListBulkImportJobsCommand: ListBulkImportJobsCommand_1.ListBulkImportJobsCommand,
|
|
152
|
+
ListCompositionRelationshipsCommand: ListCompositionRelationshipsCommand_1.ListCompositionRelationshipsCommand,
|
|
132
153
|
ListDashboardsCommand: ListDashboardsCommand_1.ListDashboardsCommand,
|
|
133
154
|
ListGatewaysCommand: ListGatewaysCommand_1.ListGatewaysCommand,
|
|
134
155
|
ListPortalsCommand: ListPortalsCommand_1.ListPortalsCommand,
|
|
@@ -144,6 +165,7 @@ const commands = {
|
|
|
144
165
|
UpdateAccessPolicyCommand: UpdateAccessPolicyCommand_1.UpdateAccessPolicyCommand,
|
|
145
166
|
UpdateAssetCommand: UpdateAssetCommand_1.UpdateAssetCommand,
|
|
146
167
|
UpdateAssetModelCommand: UpdateAssetModelCommand_1.UpdateAssetModelCommand,
|
|
168
|
+
UpdateAssetModelCompositeModelCommand: UpdateAssetModelCompositeModelCommand_1.UpdateAssetModelCompositeModelCommand,
|
|
147
169
|
UpdateAssetPropertyCommand: UpdateAssetPropertyCommand_1.UpdateAssetPropertyCommand,
|
|
148
170
|
UpdateDashboardCommand: UpdateDashboardCommand_1.UpdateDashboardCommand,
|
|
149
171
|
UpdateGatewayCommand: UpdateGatewayCommand_1.UpdateGatewayCommand,
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateAssetModelCompositeModelCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class CreateAssetModelCompositeModelCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateAssetModelCompositeModelCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IoTSiteWiseClient";
|
|
29
|
+
const commandName = "CreateAssetModelCompositeModelCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSIoTSiteWise",
|
|
38
|
+
operation: "CreateAssetModelCompositeModel",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_CreateAssetModelCompositeModelCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_CreateAssetModelCompositeModelCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.CreateAssetModelCompositeModelCommand = CreateAssetModelCompositeModelCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteAssetModelCompositeModelCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class DeleteAssetModelCompositeModelCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteAssetModelCompositeModelCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IoTSiteWiseClient";
|
|
29
|
+
const commandName = "DeleteAssetModelCompositeModelCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSIoTSiteWise",
|
|
38
|
+
operation: "DeleteAssetModelCompositeModel",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_DeleteAssetModelCompositeModelCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_DeleteAssetModelCompositeModelCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DeleteAssetModelCompositeModelCommand = DeleteAssetModelCompositeModelCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeActionCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class DescribeActionCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DescribeActionCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IoTSiteWiseClient";
|
|
29
|
+
const commandName = "DescribeActionCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSIoTSiteWise",
|
|
38
|
+
operation: "DescribeAction",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_DescribeActionCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_DescribeActionCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DescribeActionCommand = DescribeActionCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeAssetCompositeModelCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class DescribeAssetCompositeModelCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DescribeAssetCompositeModelCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IoTSiteWiseClient";
|
|
29
|
+
const commandName = "DescribeAssetCompositeModelCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSIoTSiteWise",
|
|
38
|
+
operation: "DescribeAssetCompositeModel",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_DescribeAssetCompositeModelCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_DescribeAssetCompositeModelCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DescribeAssetCompositeModelCommand = DescribeAssetCompositeModelCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeAssetModelCompositeModelCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class DescribeAssetModelCompositeModelCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DescribeAssetModelCompositeModelCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IoTSiteWiseClient";
|
|
29
|
+
const commandName = "DescribeAssetModelCompositeModelCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSIoTSiteWise",
|
|
38
|
+
operation: "DescribeAssetModelCompositeModel",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_DescribeAssetModelCompositeModelCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_DescribeAssetModelCompositeModelCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DescribeAssetModelCompositeModelCommand = DescribeAssetModelCompositeModelCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ExecuteActionCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class ExecuteActionCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ExecuteActionCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IoTSiteWiseClient";
|
|
29
|
+
const commandName = "ExecuteActionCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSIoTSiteWise",
|
|
38
|
+
operation: "ExecuteAction",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_ExecuteActionCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_ExecuteActionCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.ExecuteActionCommand = ExecuteActionCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ExecuteQueryCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class ExecuteQueryCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ExecuteQueryCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "IoTSiteWiseClient";
|
|
29
|
+
const commandName = "ExecuteQueryCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSIoTSiteWise",
|
|
38
|
+
operation: "ExecuteQuery",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_ExecuteQueryCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_ExecuteQueryCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.ExecuteQueryCommand = ExecuteQueryCommand;
|