@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
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "../commands/ExecuteQueryCommand";
|
|
3
|
+
import { IoTSiteWisePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateExecuteQuery(config: IoTSiteWisePaginationConfiguration, input: ExecuteQueryCommandInput, ...additionalArguments: any): Paginator<ExecuteQueryCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAssetModelCompositeModelsCommandInput, ListAssetModelCompositeModelsCommandOutput } from "../commands/ListAssetModelCompositeModelsCommand";
|
|
3
|
+
import { IoTSiteWisePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListAssetModelCompositeModels(config: IoTSiteWisePaginationConfiguration, input: ListAssetModelCompositeModelsCommandInput, ...additionalArguments: any): Paginator<ListAssetModelCompositeModelsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListCompositionRelationshipsCommandInput, ListCompositionRelationshipsCommandOutput } from "../commands/ListCompositionRelationshipsCommand";
|
|
3
|
+
import { IoTSiteWisePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListCompositionRelationships(config: IoTSiteWisePaginationConfiguration, input: ListCompositionRelationshipsCommandInput, ...additionalArguments: any): Paginator<ListCompositionRelationshipsCommandOutput>;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
export * from "./BatchGetAssetPropertyAggregatesPaginator";
|
|
2
2
|
export * from "./BatchGetAssetPropertyValueHistoryPaginator";
|
|
3
3
|
export * from "./BatchGetAssetPropertyValuePaginator";
|
|
4
|
+
export * from "./ExecuteQueryPaginator";
|
|
4
5
|
export * from "./GetAssetPropertyAggregatesPaginator";
|
|
5
6
|
export * from "./GetAssetPropertyValueHistoryPaginator";
|
|
6
7
|
export * from "./GetInterpolatedAssetPropertyValuesPaginator";
|
|
7
8
|
export * from "./Interfaces";
|
|
8
9
|
export * from "./ListAccessPoliciesPaginator";
|
|
10
|
+
export * from "./ListAssetModelCompositeModelsPaginator";
|
|
9
11
|
export * from "./ListAssetModelPropertiesPaginator";
|
|
10
12
|
export * from "./ListAssetModelsPaginator";
|
|
11
13
|
export * from "./ListAssetPropertiesPaginator";
|
|
@@ -13,6 +15,7 @@ export * from "./ListAssetRelationshipsPaginator";
|
|
|
13
15
|
export * from "./ListAssetsPaginator";
|
|
14
16
|
export * from "./ListAssociatedAssetsPaginator";
|
|
15
17
|
export * from "./ListBulkImportJobsPaginator";
|
|
18
|
+
export * from "./ListCompositionRelationshipsPaginator";
|
|
16
19
|
export * from "./ListDashboardsPaginator";
|
|
17
20
|
export * from "./ListGatewaysPaginator";
|
|
18
21
|
export * from "./ListPortalsPaginator";
|
|
@@ -11,6 +11,7 @@ import { BatchPutAssetPropertyValueCommandInput, BatchPutAssetPropertyValueComma
|
|
|
11
11
|
import { CreateAccessPolicyCommandInput, CreateAccessPolicyCommandOutput } from "../commands/CreateAccessPolicyCommand";
|
|
12
12
|
import { CreateAssetCommandInput, CreateAssetCommandOutput } from "../commands/CreateAssetCommand";
|
|
13
13
|
import { CreateAssetModelCommandInput, CreateAssetModelCommandOutput } from "../commands/CreateAssetModelCommand";
|
|
14
|
+
import { CreateAssetModelCompositeModelCommandInput, CreateAssetModelCompositeModelCommandOutput } from "../commands/CreateAssetModelCompositeModelCommand";
|
|
14
15
|
import { CreateBulkImportJobCommandInput, CreateBulkImportJobCommandOutput } from "../commands/CreateBulkImportJobCommand";
|
|
15
16
|
import { CreateDashboardCommandInput, CreateDashboardCommandOutput } from "../commands/CreateDashboardCommand";
|
|
16
17
|
import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "../commands/CreateGatewayCommand";
|
|
@@ -19,14 +20,18 @@ import { CreateProjectCommandInput, CreateProjectCommandOutput } from "../comman
|
|
|
19
20
|
import { DeleteAccessPolicyCommandInput, DeleteAccessPolicyCommandOutput } from "../commands/DeleteAccessPolicyCommand";
|
|
20
21
|
import { DeleteAssetCommandInput, DeleteAssetCommandOutput } from "../commands/DeleteAssetCommand";
|
|
21
22
|
import { DeleteAssetModelCommandInput, DeleteAssetModelCommandOutput } from "../commands/DeleteAssetModelCommand";
|
|
23
|
+
import { DeleteAssetModelCompositeModelCommandInput, DeleteAssetModelCompositeModelCommandOutput } from "../commands/DeleteAssetModelCompositeModelCommand";
|
|
22
24
|
import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "../commands/DeleteDashboardCommand";
|
|
23
25
|
import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "../commands/DeleteGatewayCommand";
|
|
24
26
|
import { DeletePortalCommandInput, DeletePortalCommandOutput } from "../commands/DeletePortalCommand";
|
|
25
27
|
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "../commands/DeleteProjectCommand";
|
|
26
28
|
import { DeleteTimeSeriesCommandInput, DeleteTimeSeriesCommandOutput } from "../commands/DeleteTimeSeriesCommand";
|
|
27
29
|
import { DescribeAccessPolicyCommandInput, DescribeAccessPolicyCommandOutput } from "../commands/DescribeAccessPolicyCommand";
|
|
30
|
+
import { DescribeActionCommandInput, DescribeActionCommandOutput } from "../commands/DescribeActionCommand";
|
|
28
31
|
import { DescribeAssetCommandInput, DescribeAssetCommandOutput } from "../commands/DescribeAssetCommand";
|
|
32
|
+
import { DescribeAssetCompositeModelCommandInput, DescribeAssetCompositeModelCommandOutput } from "../commands/DescribeAssetCompositeModelCommand";
|
|
29
33
|
import { DescribeAssetModelCommandInput, DescribeAssetModelCommandOutput } from "../commands/DescribeAssetModelCommand";
|
|
34
|
+
import { DescribeAssetModelCompositeModelCommandInput, DescribeAssetModelCompositeModelCommandOutput } from "../commands/DescribeAssetModelCompositeModelCommand";
|
|
30
35
|
import { DescribeAssetPropertyCommandInput, DescribeAssetPropertyCommandOutput } from "../commands/DescribeAssetPropertyCommand";
|
|
31
36
|
import { DescribeBulkImportJobCommandInput, DescribeBulkImportJobCommandOutput } from "../commands/DescribeBulkImportJobCommand";
|
|
32
37
|
import { DescribeDashboardCommandInput, DescribeDashboardCommandOutput } from "../commands/DescribeDashboardCommand";
|
|
@@ -40,11 +45,15 @@ import { DescribeStorageConfigurationCommandInput, DescribeStorageConfigurationC
|
|
|
40
45
|
import { DescribeTimeSeriesCommandInput, DescribeTimeSeriesCommandOutput } from "../commands/DescribeTimeSeriesCommand";
|
|
41
46
|
import { DisassociateAssetsCommandInput, DisassociateAssetsCommandOutput } from "../commands/DisassociateAssetsCommand";
|
|
42
47
|
import { DisassociateTimeSeriesFromAssetPropertyCommandInput, DisassociateTimeSeriesFromAssetPropertyCommandOutput } from "../commands/DisassociateTimeSeriesFromAssetPropertyCommand";
|
|
48
|
+
import { ExecuteActionCommandInput, ExecuteActionCommandOutput } from "../commands/ExecuteActionCommand";
|
|
49
|
+
import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "../commands/ExecuteQueryCommand";
|
|
43
50
|
import { GetAssetPropertyAggregatesCommandInput, GetAssetPropertyAggregatesCommandOutput } from "../commands/GetAssetPropertyAggregatesCommand";
|
|
44
51
|
import { GetAssetPropertyValueCommandInput, GetAssetPropertyValueCommandOutput } from "../commands/GetAssetPropertyValueCommand";
|
|
45
52
|
import { GetAssetPropertyValueHistoryCommandInput, GetAssetPropertyValueHistoryCommandOutput } from "../commands/GetAssetPropertyValueHistoryCommand";
|
|
46
53
|
import { GetInterpolatedAssetPropertyValuesCommandInput, GetInterpolatedAssetPropertyValuesCommandOutput } from "../commands/GetInterpolatedAssetPropertyValuesCommand";
|
|
47
54
|
import { ListAccessPoliciesCommandInput, ListAccessPoliciesCommandOutput } from "../commands/ListAccessPoliciesCommand";
|
|
55
|
+
import { ListActionsCommandInput, ListActionsCommandOutput } from "../commands/ListActionsCommand";
|
|
56
|
+
import { ListAssetModelCompositeModelsCommandInput, ListAssetModelCompositeModelsCommandOutput } from "../commands/ListAssetModelCompositeModelsCommand";
|
|
48
57
|
import { ListAssetModelPropertiesCommandInput, ListAssetModelPropertiesCommandOutput } from "../commands/ListAssetModelPropertiesCommand";
|
|
49
58
|
import { ListAssetModelsCommandInput, ListAssetModelsCommandOutput } from "../commands/ListAssetModelsCommand";
|
|
50
59
|
import { ListAssetPropertiesCommandInput, ListAssetPropertiesCommandOutput } from "../commands/ListAssetPropertiesCommand";
|
|
@@ -52,6 +61,7 @@ import { ListAssetRelationshipsCommandInput, ListAssetRelationshipsCommandOutput
|
|
|
52
61
|
import { ListAssetsCommandInput, ListAssetsCommandOutput } from "../commands/ListAssetsCommand";
|
|
53
62
|
import { ListAssociatedAssetsCommandInput, ListAssociatedAssetsCommandOutput } from "../commands/ListAssociatedAssetsCommand";
|
|
54
63
|
import { ListBulkImportJobsCommandInput, ListBulkImportJobsCommandOutput } from "../commands/ListBulkImportJobsCommand";
|
|
64
|
+
import { ListCompositionRelationshipsCommandInput, ListCompositionRelationshipsCommandOutput } from "../commands/ListCompositionRelationshipsCommand";
|
|
55
65
|
import { ListDashboardsCommandInput, ListDashboardsCommandOutput } from "../commands/ListDashboardsCommand";
|
|
56
66
|
import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "../commands/ListGatewaysCommand";
|
|
57
67
|
import { ListPortalsCommandInput, ListPortalsCommandOutput } from "../commands/ListPortalsCommand";
|
|
@@ -67,6 +77,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../comman
|
|
|
67
77
|
import { UpdateAccessPolicyCommandInput, UpdateAccessPolicyCommandOutput } from "../commands/UpdateAccessPolicyCommand";
|
|
68
78
|
import { UpdateAssetCommandInput, UpdateAssetCommandOutput } from "../commands/UpdateAssetCommand";
|
|
69
79
|
import { UpdateAssetModelCommandInput, UpdateAssetModelCommandOutput } from "../commands/UpdateAssetModelCommand";
|
|
80
|
+
import { UpdateAssetModelCompositeModelCommandInput, UpdateAssetModelCompositeModelCommandOutput } from "../commands/UpdateAssetModelCompositeModelCommand";
|
|
70
81
|
import { UpdateAssetPropertyCommandInput, UpdateAssetPropertyCommandOutput } from "../commands/UpdateAssetPropertyCommand";
|
|
71
82
|
import { UpdateDashboardCommandInput, UpdateDashboardCommandOutput } from "../commands/UpdateDashboardCommand";
|
|
72
83
|
import { UpdateGatewayCapabilityConfigurationCommandInput, UpdateGatewayCapabilityConfigurationCommandOutput } from "../commands/UpdateGatewayCapabilityConfigurationCommand";
|
|
@@ -117,6 +128,10 @@ export declare const se_CreateAssetCommand: (input: CreateAssetCommandInput, con
|
|
|
117
128
|
* serializeAws_restJson1CreateAssetModelCommand
|
|
118
129
|
*/
|
|
119
130
|
export declare const se_CreateAssetModelCommand: (input: CreateAssetModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
131
|
+
/**
|
|
132
|
+
* serializeAws_restJson1CreateAssetModelCompositeModelCommand
|
|
133
|
+
*/
|
|
134
|
+
export declare const se_CreateAssetModelCompositeModelCommand: (input: CreateAssetModelCompositeModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
135
|
/**
|
|
121
136
|
* serializeAws_restJson1CreateBulkImportJobCommand
|
|
122
137
|
*/
|
|
@@ -149,6 +164,10 @@ export declare const se_DeleteAssetCommand: (input: DeleteAssetCommandInput, con
|
|
|
149
164
|
* serializeAws_restJson1DeleteAssetModelCommand
|
|
150
165
|
*/
|
|
151
166
|
export declare const se_DeleteAssetModelCommand: (input: DeleteAssetModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
167
|
+
/**
|
|
168
|
+
* serializeAws_restJson1DeleteAssetModelCompositeModelCommand
|
|
169
|
+
*/
|
|
170
|
+
export declare const se_DeleteAssetModelCompositeModelCommand: (input: DeleteAssetModelCompositeModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
152
171
|
/**
|
|
153
172
|
* serializeAws_restJson1DeleteDashboardCommand
|
|
154
173
|
*/
|
|
@@ -173,14 +192,26 @@ export declare const se_DeleteTimeSeriesCommand: (input: DeleteTimeSeriesCommand
|
|
|
173
192
|
* serializeAws_restJson1DescribeAccessPolicyCommand
|
|
174
193
|
*/
|
|
175
194
|
export declare const se_DescribeAccessPolicyCommand: (input: DescribeAccessPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
195
|
+
/**
|
|
196
|
+
* serializeAws_restJson1DescribeActionCommand
|
|
197
|
+
*/
|
|
198
|
+
export declare const se_DescribeActionCommand: (input: DescribeActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
176
199
|
/**
|
|
177
200
|
* serializeAws_restJson1DescribeAssetCommand
|
|
178
201
|
*/
|
|
179
202
|
export declare const se_DescribeAssetCommand: (input: DescribeAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
203
|
+
/**
|
|
204
|
+
* serializeAws_restJson1DescribeAssetCompositeModelCommand
|
|
205
|
+
*/
|
|
206
|
+
export declare const se_DescribeAssetCompositeModelCommand: (input: DescribeAssetCompositeModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
180
207
|
/**
|
|
181
208
|
* serializeAws_restJson1DescribeAssetModelCommand
|
|
182
209
|
*/
|
|
183
210
|
export declare const se_DescribeAssetModelCommand: (input: DescribeAssetModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
211
|
+
/**
|
|
212
|
+
* serializeAws_restJson1DescribeAssetModelCompositeModelCommand
|
|
213
|
+
*/
|
|
214
|
+
export declare const se_DescribeAssetModelCompositeModelCommand: (input: DescribeAssetModelCompositeModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
184
215
|
/**
|
|
185
216
|
* serializeAws_restJson1DescribeAssetPropertyCommand
|
|
186
217
|
*/
|
|
@@ -233,6 +264,14 @@ export declare const se_DisassociateAssetsCommand: (input: DisassociateAssetsCom
|
|
|
233
264
|
* serializeAws_restJson1DisassociateTimeSeriesFromAssetPropertyCommand
|
|
234
265
|
*/
|
|
235
266
|
export declare const se_DisassociateTimeSeriesFromAssetPropertyCommand: (input: DisassociateTimeSeriesFromAssetPropertyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
267
|
+
/**
|
|
268
|
+
* serializeAws_restJson1ExecuteActionCommand
|
|
269
|
+
*/
|
|
270
|
+
export declare const se_ExecuteActionCommand: (input: ExecuteActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
271
|
+
/**
|
|
272
|
+
* serializeAws_restJson1ExecuteQueryCommand
|
|
273
|
+
*/
|
|
274
|
+
export declare const se_ExecuteQueryCommand: (input: ExecuteQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
236
275
|
/**
|
|
237
276
|
* serializeAws_restJson1GetAssetPropertyAggregatesCommand
|
|
238
277
|
*/
|
|
@@ -253,6 +292,14 @@ export declare const se_GetInterpolatedAssetPropertyValuesCommand: (input: GetIn
|
|
|
253
292
|
* serializeAws_restJson1ListAccessPoliciesCommand
|
|
254
293
|
*/
|
|
255
294
|
export declare const se_ListAccessPoliciesCommand: (input: ListAccessPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
295
|
+
/**
|
|
296
|
+
* serializeAws_restJson1ListActionsCommand
|
|
297
|
+
*/
|
|
298
|
+
export declare const se_ListActionsCommand: (input: ListActionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
299
|
+
/**
|
|
300
|
+
* serializeAws_restJson1ListAssetModelCompositeModelsCommand
|
|
301
|
+
*/
|
|
302
|
+
export declare const se_ListAssetModelCompositeModelsCommand: (input: ListAssetModelCompositeModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
256
303
|
/**
|
|
257
304
|
* serializeAws_restJson1ListAssetModelPropertiesCommand
|
|
258
305
|
*/
|
|
@@ -281,6 +328,10 @@ export declare const se_ListAssociatedAssetsCommand: (input: ListAssociatedAsset
|
|
|
281
328
|
* serializeAws_restJson1ListBulkImportJobsCommand
|
|
282
329
|
*/
|
|
283
330
|
export declare const se_ListBulkImportJobsCommand: (input: ListBulkImportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
331
|
+
/**
|
|
332
|
+
* serializeAws_restJson1ListCompositionRelationshipsCommand
|
|
333
|
+
*/
|
|
334
|
+
export declare const se_ListCompositionRelationshipsCommand: (input: ListCompositionRelationshipsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
284
335
|
/**
|
|
285
336
|
* serializeAws_restJson1ListDashboardsCommand
|
|
286
337
|
*/
|
|
@@ -341,6 +392,10 @@ export declare const se_UpdateAssetCommand: (input: UpdateAssetCommandInput, con
|
|
|
341
392
|
* serializeAws_restJson1UpdateAssetModelCommand
|
|
342
393
|
*/
|
|
343
394
|
export declare const se_UpdateAssetModelCommand: (input: UpdateAssetModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
395
|
+
/**
|
|
396
|
+
* serializeAws_restJson1UpdateAssetModelCompositeModelCommand
|
|
397
|
+
*/
|
|
398
|
+
export declare const se_UpdateAssetModelCompositeModelCommand: (input: UpdateAssetModelCompositeModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
344
399
|
/**
|
|
345
400
|
* serializeAws_restJson1UpdateAssetPropertyCommand
|
|
346
401
|
*/
|
|
@@ -409,6 +464,10 @@ export declare const de_CreateAssetCommand: (output: __HttpResponse, context: __
|
|
|
409
464
|
* deserializeAws_restJson1CreateAssetModelCommand
|
|
410
465
|
*/
|
|
411
466
|
export declare const de_CreateAssetModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAssetModelCommandOutput>;
|
|
467
|
+
/**
|
|
468
|
+
* deserializeAws_restJson1CreateAssetModelCompositeModelCommand
|
|
469
|
+
*/
|
|
470
|
+
export declare const de_CreateAssetModelCompositeModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAssetModelCompositeModelCommandOutput>;
|
|
412
471
|
/**
|
|
413
472
|
* deserializeAws_restJson1CreateBulkImportJobCommand
|
|
414
473
|
*/
|
|
@@ -441,6 +500,10 @@ export declare const de_DeleteAssetCommand: (output: __HttpResponse, context: __
|
|
|
441
500
|
* deserializeAws_restJson1DeleteAssetModelCommand
|
|
442
501
|
*/
|
|
443
502
|
export declare const de_DeleteAssetModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAssetModelCommandOutput>;
|
|
503
|
+
/**
|
|
504
|
+
* deserializeAws_restJson1DeleteAssetModelCompositeModelCommand
|
|
505
|
+
*/
|
|
506
|
+
export declare const de_DeleteAssetModelCompositeModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAssetModelCompositeModelCommandOutput>;
|
|
444
507
|
/**
|
|
445
508
|
* deserializeAws_restJson1DeleteDashboardCommand
|
|
446
509
|
*/
|
|
@@ -465,14 +528,26 @@ export declare const de_DeleteTimeSeriesCommand: (output: __HttpResponse, contex
|
|
|
465
528
|
* deserializeAws_restJson1DescribeAccessPolicyCommand
|
|
466
529
|
*/
|
|
467
530
|
export declare const de_DescribeAccessPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccessPolicyCommandOutput>;
|
|
531
|
+
/**
|
|
532
|
+
* deserializeAws_restJson1DescribeActionCommand
|
|
533
|
+
*/
|
|
534
|
+
export declare const de_DescribeActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeActionCommandOutput>;
|
|
468
535
|
/**
|
|
469
536
|
* deserializeAws_restJson1DescribeAssetCommand
|
|
470
537
|
*/
|
|
471
538
|
export declare const de_DescribeAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAssetCommandOutput>;
|
|
539
|
+
/**
|
|
540
|
+
* deserializeAws_restJson1DescribeAssetCompositeModelCommand
|
|
541
|
+
*/
|
|
542
|
+
export declare const de_DescribeAssetCompositeModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAssetCompositeModelCommandOutput>;
|
|
472
543
|
/**
|
|
473
544
|
* deserializeAws_restJson1DescribeAssetModelCommand
|
|
474
545
|
*/
|
|
475
546
|
export declare const de_DescribeAssetModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAssetModelCommandOutput>;
|
|
547
|
+
/**
|
|
548
|
+
* deserializeAws_restJson1DescribeAssetModelCompositeModelCommand
|
|
549
|
+
*/
|
|
550
|
+
export declare const de_DescribeAssetModelCompositeModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAssetModelCompositeModelCommandOutput>;
|
|
476
551
|
/**
|
|
477
552
|
* deserializeAws_restJson1DescribeAssetPropertyCommand
|
|
478
553
|
*/
|
|
@@ -525,6 +600,14 @@ export declare const de_DisassociateAssetsCommand: (output: __HttpResponse, cont
|
|
|
525
600
|
* deserializeAws_restJson1DisassociateTimeSeriesFromAssetPropertyCommand
|
|
526
601
|
*/
|
|
527
602
|
export declare const de_DisassociateTimeSeriesFromAssetPropertyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateTimeSeriesFromAssetPropertyCommandOutput>;
|
|
603
|
+
/**
|
|
604
|
+
* deserializeAws_restJson1ExecuteActionCommand
|
|
605
|
+
*/
|
|
606
|
+
export declare const de_ExecuteActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteActionCommandOutput>;
|
|
607
|
+
/**
|
|
608
|
+
* deserializeAws_restJson1ExecuteQueryCommand
|
|
609
|
+
*/
|
|
610
|
+
export declare const de_ExecuteQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteQueryCommandOutput>;
|
|
528
611
|
/**
|
|
529
612
|
* deserializeAws_restJson1GetAssetPropertyAggregatesCommand
|
|
530
613
|
*/
|
|
@@ -545,6 +628,14 @@ export declare const de_GetInterpolatedAssetPropertyValuesCommand: (output: __Ht
|
|
|
545
628
|
* deserializeAws_restJson1ListAccessPoliciesCommand
|
|
546
629
|
*/
|
|
547
630
|
export declare const de_ListAccessPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccessPoliciesCommandOutput>;
|
|
631
|
+
/**
|
|
632
|
+
* deserializeAws_restJson1ListActionsCommand
|
|
633
|
+
*/
|
|
634
|
+
export declare const de_ListActionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListActionsCommandOutput>;
|
|
635
|
+
/**
|
|
636
|
+
* deserializeAws_restJson1ListAssetModelCompositeModelsCommand
|
|
637
|
+
*/
|
|
638
|
+
export declare const de_ListAssetModelCompositeModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssetModelCompositeModelsCommandOutput>;
|
|
548
639
|
/**
|
|
549
640
|
* deserializeAws_restJson1ListAssetModelPropertiesCommand
|
|
550
641
|
*/
|
|
@@ -573,6 +664,10 @@ export declare const de_ListAssociatedAssetsCommand: (output: __HttpResponse, co
|
|
|
573
664
|
* deserializeAws_restJson1ListBulkImportJobsCommand
|
|
574
665
|
*/
|
|
575
666
|
export declare const de_ListBulkImportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBulkImportJobsCommandOutput>;
|
|
667
|
+
/**
|
|
668
|
+
* deserializeAws_restJson1ListCompositionRelationshipsCommand
|
|
669
|
+
*/
|
|
670
|
+
export declare const de_ListCompositionRelationshipsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCompositionRelationshipsCommandOutput>;
|
|
576
671
|
/**
|
|
577
672
|
* deserializeAws_restJson1ListDashboardsCommand
|
|
578
673
|
*/
|
|
@@ -633,6 +728,10 @@ export declare const de_UpdateAssetCommand: (output: __HttpResponse, context: __
|
|
|
633
728
|
* deserializeAws_restJson1UpdateAssetModelCommand
|
|
634
729
|
*/
|
|
635
730
|
export declare const de_UpdateAssetModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAssetModelCommandOutput>;
|
|
731
|
+
/**
|
|
732
|
+
* deserializeAws_restJson1UpdateAssetModelCompositeModelCommand
|
|
733
|
+
*/
|
|
734
|
+
export declare const de_UpdateAssetModelCompositeModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAssetModelCompositeModelCommandOutput>;
|
|
636
735
|
/**
|
|
637
736
|
* deserializeAws_restJson1UpdateAssetPropertyCommand
|
|
638
737
|
*/
|
|
@@ -43,6 +43,10 @@ import {
|
|
|
43
43
|
CreateAssetModelCommandInput,
|
|
44
44
|
CreateAssetModelCommandOutput,
|
|
45
45
|
} from "./commands/CreateAssetModelCommand";
|
|
46
|
+
import {
|
|
47
|
+
CreateAssetModelCompositeModelCommandInput,
|
|
48
|
+
CreateAssetModelCompositeModelCommandOutput,
|
|
49
|
+
} from "./commands/CreateAssetModelCompositeModelCommand";
|
|
46
50
|
import {
|
|
47
51
|
CreateBulkImportJobCommandInput,
|
|
48
52
|
CreateBulkImportJobCommandOutput,
|
|
@@ -75,6 +79,10 @@ import {
|
|
|
75
79
|
DeleteAssetModelCommandInput,
|
|
76
80
|
DeleteAssetModelCommandOutput,
|
|
77
81
|
} from "./commands/DeleteAssetModelCommand";
|
|
82
|
+
import {
|
|
83
|
+
DeleteAssetModelCompositeModelCommandInput,
|
|
84
|
+
DeleteAssetModelCompositeModelCommandOutput,
|
|
85
|
+
} from "./commands/DeleteAssetModelCompositeModelCommand";
|
|
78
86
|
import {
|
|
79
87
|
DeleteDashboardCommandInput,
|
|
80
88
|
DeleteDashboardCommandOutput,
|
|
@@ -99,14 +107,26 @@ import {
|
|
|
99
107
|
DescribeAccessPolicyCommandInput,
|
|
100
108
|
DescribeAccessPolicyCommandOutput,
|
|
101
109
|
} from "./commands/DescribeAccessPolicyCommand";
|
|
110
|
+
import {
|
|
111
|
+
DescribeActionCommandInput,
|
|
112
|
+
DescribeActionCommandOutput,
|
|
113
|
+
} from "./commands/DescribeActionCommand";
|
|
102
114
|
import {
|
|
103
115
|
DescribeAssetCommandInput,
|
|
104
116
|
DescribeAssetCommandOutput,
|
|
105
117
|
} from "./commands/DescribeAssetCommand";
|
|
118
|
+
import {
|
|
119
|
+
DescribeAssetCompositeModelCommandInput,
|
|
120
|
+
DescribeAssetCompositeModelCommandOutput,
|
|
121
|
+
} from "./commands/DescribeAssetCompositeModelCommand";
|
|
106
122
|
import {
|
|
107
123
|
DescribeAssetModelCommandInput,
|
|
108
124
|
DescribeAssetModelCommandOutput,
|
|
109
125
|
} from "./commands/DescribeAssetModelCommand";
|
|
126
|
+
import {
|
|
127
|
+
DescribeAssetModelCompositeModelCommandInput,
|
|
128
|
+
DescribeAssetModelCompositeModelCommandOutput,
|
|
129
|
+
} from "./commands/DescribeAssetModelCompositeModelCommand";
|
|
110
130
|
import {
|
|
111
131
|
DescribeAssetPropertyCommandInput,
|
|
112
132
|
DescribeAssetPropertyCommandOutput,
|
|
@@ -159,6 +179,14 @@ import {
|
|
|
159
179
|
DisassociateTimeSeriesFromAssetPropertyCommandInput,
|
|
160
180
|
DisassociateTimeSeriesFromAssetPropertyCommandOutput,
|
|
161
181
|
} from "./commands/DisassociateTimeSeriesFromAssetPropertyCommand";
|
|
182
|
+
import {
|
|
183
|
+
ExecuteActionCommandInput,
|
|
184
|
+
ExecuteActionCommandOutput,
|
|
185
|
+
} from "./commands/ExecuteActionCommand";
|
|
186
|
+
import {
|
|
187
|
+
ExecuteQueryCommandInput,
|
|
188
|
+
ExecuteQueryCommandOutput,
|
|
189
|
+
} from "./commands/ExecuteQueryCommand";
|
|
162
190
|
import {
|
|
163
191
|
GetAssetPropertyAggregatesCommandInput,
|
|
164
192
|
GetAssetPropertyAggregatesCommandOutput,
|
|
@@ -179,6 +207,14 @@ import {
|
|
|
179
207
|
ListAccessPoliciesCommandInput,
|
|
180
208
|
ListAccessPoliciesCommandOutput,
|
|
181
209
|
} from "./commands/ListAccessPoliciesCommand";
|
|
210
|
+
import {
|
|
211
|
+
ListActionsCommandInput,
|
|
212
|
+
ListActionsCommandOutput,
|
|
213
|
+
} from "./commands/ListActionsCommand";
|
|
214
|
+
import {
|
|
215
|
+
ListAssetModelCompositeModelsCommandInput,
|
|
216
|
+
ListAssetModelCompositeModelsCommandOutput,
|
|
217
|
+
} from "./commands/ListAssetModelCompositeModelsCommand";
|
|
182
218
|
import {
|
|
183
219
|
ListAssetModelPropertiesCommandInput,
|
|
184
220
|
ListAssetModelPropertiesCommandOutput,
|
|
@@ -207,6 +243,10 @@ import {
|
|
|
207
243
|
ListBulkImportJobsCommandInput,
|
|
208
244
|
ListBulkImportJobsCommandOutput,
|
|
209
245
|
} from "./commands/ListBulkImportJobsCommand";
|
|
246
|
+
import {
|
|
247
|
+
ListCompositionRelationshipsCommandInput,
|
|
248
|
+
ListCompositionRelationshipsCommandOutput,
|
|
249
|
+
} from "./commands/ListCompositionRelationshipsCommand";
|
|
210
250
|
import {
|
|
211
251
|
ListDashboardsCommandInput,
|
|
212
252
|
ListDashboardsCommandOutput,
|
|
@@ -267,6 +307,10 @@ import {
|
|
|
267
307
|
UpdateAssetModelCommandInput,
|
|
268
308
|
UpdateAssetModelCommandOutput,
|
|
269
309
|
} from "./commands/UpdateAssetModelCommand";
|
|
310
|
+
import {
|
|
311
|
+
UpdateAssetModelCompositeModelCommandInput,
|
|
312
|
+
UpdateAssetModelCompositeModelCommandOutput,
|
|
313
|
+
} from "./commands/UpdateAssetModelCompositeModelCommand";
|
|
270
314
|
import {
|
|
271
315
|
UpdateAssetPropertyCommandInput,
|
|
272
316
|
UpdateAssetPropertyCommandOutput,
|
|
@@ -448,6 +492,19 @@ export interface IoTSiteWise {
|
|
|
448
492
|
options: __HttpHandlerOptions,
|
|
449
493
|
cb: (err: any, data?: CreateAssetModelCommandOutput) => void
|
|
450
494
|
): void;
|
|
495
|
+
createAssetModelCompositeModel(
|
|
496
|
+
args: CreateAssetModelCompositeModelCommandInput,
|
|
497
|
+
options?: __HttpHandlerOptions
|
|
498
|
+
): Promise<CreateAssetModelCompositeModelCommandOutput>;
|
|
499
|
+
createAssetModelCompositeModel(
|
|
500
|
+
args: CreateAssetModelCompositeModelCommandInput,
|
|
501
|
+
cb: (err: any, data?: CreateAssetModelCompositeModelCommandOutput) => void
|
|
502
|
+
): void;
|
|
503
|
+
createAssetModelCompositeModel(
|
|
504
|
+
args: CreateAssetModelCompositeModelCommandInput,
|
|
505
|
+
options: __HttpHandlerOptions,
|
|
506
|
+
cb: (err: any, data?: CreateAssetModelCompositeModelCommandOutput) => void
|
|
507
|
+
): void;
|
|
451
508
|
createBulkImportJob(
|
|
452
509
|
args: CreateBulkImportJobCommandInput,
|
|
453
510
|
options?: __HttpHandlerOptions
|
|
@@ -552,6 +609,19 @@ export interface IoTSiteWise {
|
|
|
552
609
|
options: __HttpHandlerOptions,
|
|
553
610
|
cb: (err: any, data?: DeleteAssetModelCommandOutput) => void
|
|
554
611
|
): void;
|
|
612
|
+
deleteAssetModelCompositeModel(
|
|
613
|
+
args: DeleteAssetModelCompositeModelCommandInput,
|
|
614
|
+
options?: __HttpHandlerOptions
|
|
615
|
+
): Promise<DeleteAssetModelCompositeModelCommandOutput>;
|
|
616
|
+
deleteAssetModelCompositeModel(
|
|
617
|
+
args: DeleteAssetModelCompositeModelCommandInput,
|
|
618
|
+
cb: (err: any, data?: DeleteAssetModelCompositeModelCommandOutput) => void
|
|
619
|
+
): void;
|
|
620
|
+
deleteAssetModelCompositeModel(
|
|
621
|
+
args: DeleteAssetModelCompositeModelCommandInput,
|
|
622
|
+
options: __HttpHandlerOptions,
|
|
623
|
+
cb: (err: any, data?: DeleteAssetModelCompositeModelCommandOutput) => void
|
|
624
|
+
): void;
|
|
555
625
|
deleteDashboard(
|
|
556
626
|
args: DeleteDashboardCommandInput,
|
|
557
627
|
options?: __HttpHandlerOptions
|
|
@@ -630,6 +700,19 @@ export interface IoTSiteWise {
|
|
|
630
700
|
options: __HttpHandlerOptions,
|
|
631
701
|
cb: (err: any, data?: DescribeAccessPolicyCommandOutput) => void
|
|
632
702
|
): void;
|
|
703
|
+
describeAction(
|
|
704
|
+
args: DescribeActionCommandInput,
|
|
705
|
+
options?: __HttpHandlerOptions
|
|
706
|
+
): Promise<DescribeActionCommandOutput>;
|
|
707
|
+
describeAction(
|
|
708
|
+
args: DescribeActionCommandInput,
|
|
709
|
+
cb: (err: any, data?: DescribeActionCommandOutput) => void
|
|
710
|
+
): void;
|
|
711
|
+
describeAction(
|
|
712
|
+
args: DescribeActionCommandInput,
|
|
713
|
+
options: __HttpHandlerOptions,
|
|
714
|
+
cb: (err: any, data?: DescribeActionCommandOutput) => void
|
|
715
|
+
): void;
|
|
633
716
|
describeAsset(
|
|
634
717
|
args: DescribeAssetCommandInput,
|
|
635
718
|
options?: __HttpHandlerOptions
|
|
@@ -643,6 +726,19 @@ export interface IoTSiteWise {
|
|
|
643
726
|
options: __HttpHandlerOptions,
|
|
644
727
|
cb: (err: any, data?: DescribeAssetCommandOutput) => void
|
|
645
728
|
): void;
|
|
729
|
+
describeAssetCompositeModel(
|
|
730
|
+
args: DescribeAssetCompositeModelCommandInput,
|
|
731
|
+
options?: __HttpHandlerOptions
|
|
732
|
+
): Promise<DescribeAssetCompositeModelCommandOutput>;
|
|
733
|
+
describeAssetCompositeModel(
|
|
734
|
+
args: DescribeAssetCompositeModelCommandInput,
|
|
735
|
+
cb: (err: any, data?: DescribeAssetCompositeModelCommandOutput) => void
|
|
736
|
+
): void;
|
|
737
|
+
describeAssetCompositeModel(
|
|
738
|
+
args: DescribeAssetCompositeModelCommandInput,
|
|
739
|
+
options: __HttpHandlerOptions,
|
|
740
|
+
cb: (err: any, data?: DescribeAssetCompositeModelCommandOutput) => void
|
|
741
|
+
): void;
|
|
646
742
|
describeAssetModel(
|
|
647
743
|
args: DescribeAssetModelCommandInput,
|
|
648
744
|
options?: __HttpHandlerOptions
|
|
@@ -656,6 +752,19 @@ export interface IoTSiteWise {
|
|
|
656
752
|
options: __HttpHandlerOptions,
|
|
657
753
|
cb: (err: any, data?: DescribeAssetModelCommandOutput) => void
|
|
658
754
|
): void;
|
|
755
|
+
describeAssetModelCompositeModel(
|
|
756
|
+
args: DescribeAssetModelCompositeModelCommandInput,
|
|
757
|
+
options?: __HttpHandlerOptions
|
|
758
|
+
): Promise<DescribeAssetModelCompositeModelCommandOutput>;
|
|
759
|
+
describeAssetModelCompositeModel(
|
|
760
|
+
args: DescribeAssetModelCompositeModelCommandInput,
|
|
761
|
+
cb: (err: any, data?: DescribeAssetModelCompositeModelCommandOutput) => void
|
|
762
|
+
): void;
|
|
763
|
+
describeAssetModelCompositeModel(
|
|
764
|
+
args: DescribeAssetModelCompositeModelCommandInput,
|
|
765
|
+
options: __HttpHandlerOptions,
|
|
766
|
+
cb: (err: any, data?: DescribeAssetModelCompositeModelCommandOutput) => void
|
|
767
|
+
): void;
|
|
659
768
|
describeAssetProperty(
|
|
660
769
|
args: DescribeAssetPropertyCommandInput,
|
|
661
770
|
options?: __HttpHandlerOptions
|
|
@@ -843,6 +952,32 @@ export interface IoTSiteWise {
|
|
|
843
952
|
data?: DisassociateTimeSeriesFromAssetPropertyCommandOutput
|
|
844
953
|
) => void
|
|
845
954
|
): void;
|
|
955
|
+
executeAction(
|
|
956
|
+
args: ExecuteActionCommandInput,
|
|
957
|
+
options?: __HttpHandlerOptions
|
|
958
|
+
): Promise<ExecuteActionCommandOutput>;
|
|
959
|
+
executeAction(
|
|
960
|
+
args: ExecuteActionCommandInput,
|
|
961
|
+
cb: (err: any, data?: ExecuteActionCommandOutput) => void
|
|
962
|
+
): void;
|
|
963
|
+
executeAction(
|
|
964
|
+
args: ExecuteActionCommandInput,
|
|
965
|
+
options: __HttpHandlerOptions,
|
|
966
|
+
cb: (err: any, data?: ExecuteActionCommandOutput) => void
|
|
967
|
+
): void;
|
|
968
|
+
executeQuery(
|
|
969
|
+
args: ExecuteQueryCommandInput,
|
|
970
|
+
options?: __HttpHandlerOptions
|
|
971
|
+
): Promise<ExecuteQueryCommandOutput>;
|
|
972
|
+
executeQuery(
|
|
973
|
+
args: ExecuteQueryCommandInput,
|
|
974
|
+
cb: (err: any, data?: ExecuteQueryCommandOutput) => void
|
|
975
|
+
): void;
|
|
976
|
+
executeQuery(
|
|
977
|
+
args: ExecuteQueryCommandInput,
|
|
978
|
+
options: __HttpHandlerOptions,
|
|
979
|
+
cb: (err: any, data?: ExecuteQueryCommandOutput) => void
|
|
980
|
+
): void;
|
|
846
981
|
getAssetPropertyAggregates(
|
|
847
982
|
args: GetAssetPropertyAggregatesCommandInput,
|
|
848
983
|
options?: __HttpHandlerOptions
|
|
@@ -914,6 +1049,32 @@ export interface IoTSiteWise {
|
|
|
914
1049
|
options: __HttpHandlerOptions,
|
|
915
1050
|
cb: (err: any, data?: ListAccessPoliciesCommandOutput) => void
|
|
916
1051
|
): void;
|
|
1052
|
+
listActions(
|
|
1053
|
+
args: ListActionsCommandInput,
|
|
1054
|
+
options?: __HttpHandlerOptions
|
|
1055
|
+
): Promise<ListActionsCommandOutput>;
|
|
1056
|
+
listActions(
|
|
1057
|
+
args: ListActionsCommandInput,
|
|
1058
|
+
cb: (err: any, data?: ListActionsCommandOutput) => void
|
|
1059
|
+
): void;
|
|
1060
|
+
listActions(
|
|
1061
|
+
args: ListActionsCommandInput,
|
|
1062
|
+
options: __HttpHandlerOptions,
|
|
1063
|
+
cb: (err: any, data?: ListActionsCommandOutput) => void
|
|
1064
|
+
): void;
|
|
1065
|
+
listAssetModelCompositeModels(
|
|
1066
|
+
args: ListAssetModelCompositeModelsCommandInput,
|
|
1067
|
+
options?: __HttpHandlerOptions
|
|
1068
|
+
): Promise<ListAssetModelCompositeModelsCommandOutput>;
|
|
1069
|
+
listAssetModelCompositeModels(
|
|
1070
|
+
args: ListAssetModelCompositeModelsCommandInput,
|
|
1071
|
+
cb: (err: any, data?: ListAssetModelCompositeModelsCommandOutput) => void
|
|
1072
|
+
): void;
|
|
1073
|
+
listAssetModelCompositeModels(
|
|
1074
|
+
args: ListAssetModelCompositeModelsCommandInput,
|
|
1075
|
+
options: __HttpHandlerOptions,
|
|
1076
|
+
cb: (err: any, data?: ListAssetModelCompositeModelsCommandOutput) => void
|
|
1077
|
+
): void;
|
|
917
1078
|
listAssetModelProperties(
|
|
918
1079
|
args: ListAssetModelPropertiesCommandInput,
|
|
919
1080
|
options?: __HttpHandlerOptions
|
|
@@ -1005,6 +1166,19 @@ export interface IoTSiteWise {
|
|
|
1005
1166
|
options: __HttpHandlerOptions,
|
|
1006
1167
|
cb: (err: any, data?: ListBulkImportJobsCommandOutput) => void
|
|
1007
1168
|
): void;
|
|
1169
|
+
listCompositionRelationships(
|
|
1170
|
+
args: ListCompositionRelationshipsCommandInput,
|
|
1171
|
+
options?: __HttpHandlerOptions
|
|
1172
|
+
): Promise<ListCompositionRelationshipsCommandOutput>;
|
|
1173
|
+
listCompositionRelationships(
|
|
1174
|
+
args: ListCompositionRelationshipsCommandInput,
|
|
1175
|
+
cb: (err: any, data?: ListCompositionRelationshipsCommandOutput) => void
|
|
1176
|
+
): void;
|
|
1177
|
+
listCompositionRelationships(
|
|
1178
|
+
args: ListCompositionRelationshipsCommandInput,
|
|
1179
|
+
options: __HttpHandlerOptions,
|
|
1180
|
+
cb: (err: any, data?: ListCompositionRelationshipsCommandOutput) => void
|
|
1181
|
+
): void;
|
|
1008
1182
|
listDashboards(
|
|
1009
1183
|
args: ListDashboardsCommandInput,
|
|
1010
1184
|
options?: __HttpHandlerOptions
|
|
@@ -1206,6 +1380,19 @@ export interface IoTSiteWise {
|
|
|
1206
1380
|
options: __HttpHandlerOptions,
|
|
1207
1381
|
cb: (err: any, data?: UpdateAssetModelCommandOutput) => void
|
|
1208
1382
|
): void;
|
|
1383
|
+
updateAssetModelCompositeModel(
|
|
1384
|
+
args: UpdateAssetModelCompositeModelCommandInput,
|
|
1385
|
+
options?: __HttpHandlerOptions
|
|
1386
|
+
): Promise<UpdateAssetModelCompositeModelCommandOutput>;
|
|
1387
|
+
updateAssetModelCompositeModel(
|
|
1388
|
+
args: UpdateAssetModelCompositeModelCommandInput,
|
|
1389
|
+
cb: (err: any, data?: UpdateAssetModelCompositeModelCommandOutput) => void
|
|
1390
|
+
): void;
|
|
1391
|
+
updateAssetModelCompositeModel(
|
|
1392
|
+
args: UpdateAssetModelCompositeModelCommandInput,
|
|
1393
|
+
options: __HttpHandlerOptions,
|
|
1394
|
+
cb: (err: any, data?: UpdateAssetModelCompositeModelCommandOutput) => void
|
|
1395
|
+
): void;
|
|
1209
1396
|
updateAssetProperty(
|
|
1210
1397
|
args: UpdateAssetPropertyCommandInput,
|
|
1211
1398
|
options?: __HttpHandlerOptions
|