@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
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../IoTSiteWiseClient";
|
|
14
|
-
import { UpdateAssetRequest, UpdateAssetResponse } from "../models/
|
|
14
|
+
import { UpdateAssetRequest, UpdateAssetResponse } from "../models/models_1";
|
|
15
15
|
export { __MetadataBearer, $Command };
|
|
16
16
|
export interface UpdateAssetCommandInput extends UpdateAssetRequest {}
|
|
17
17
|
export interface UpdateAssetCommandOutput
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
UpdateAssetModelRequest,
|
|
16
16
|
UpdateAssetModelResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_1";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface UpdateAssetModelCommandInput extends UpdateAssetModelRequest {}
|
|
20
20
|
export interface UpdateAssetModelCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTSiteWiseClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTSiteWiseClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdateAssetModelCompositeModelRequest,
|
|
16
|
+
UpdateAssetModelCompositeModelResponse,
|
|
17
|
+
} from "../models/models_1";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateAssetModelCompositeModelCommandInput
|
|
20
|
+
extends UpdateAssetModelCompositeModelRequest {}
|
|
21
|
+
export interface UpdateAssetModelCompositeModelCommandOutput
|
|
22
|
+
extends UpdateAssetModelCompositeModelResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateAssetModelCompositeModelCommand extends $Command<
|
|
25
|
+
UpdateAssetModelCompositeModelCommandInput,
|
|
26
|
+
UpdateAssetModelCompositeModelCommandOutput,
|
|
27
|
+
IoTSiteWiseClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateAssetModelCompositeModelCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: UpdateAssetModelCompositeModelCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IoTSiteWiseClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
UpdateAssetModelCompositeModelCommandInput,
|
|
38
|
+
UpdateAssetModelCompositeModelCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../IoTSiteWiseClient";
|
|
14
|
-
import { UpdateAssetPropertyRequest } from "../models/
|
|
14
|
+
import { UpdateAssetPropertyRequest } from "../models/models_1";
|
|
15
15
|
export { __MetadataBearer, $Command };
|
|
16
16
|
export interface UpdateAssetPropertyCommandInput
|
|
17
17
|
extends UpdateAssetPropertyRequest {}
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
UpdateDashboardRequest,
|
|
16
16
|
UpdateDashboardResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_1";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface UpdateDashboardCommandInput extends UpdateDashboardRequest {}
|
|
20
20
|
export interface UpdateDashboardCommandOutput
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
UpdateGatewayCapabilityConfigurationRequest,
|
|
16
16
|
UpdateGatewayCapabilityConfigurationResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_1";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface UpdateGatewayCapabilityConfigurationCommandInput
|
|
20
20
|
extends UpdateGatewayCapabilityConfigurationRequest {}
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../IoTSiteWiseClient";
|
|
14
|
-
import { UpdateGatewayRequest } from "../models/
|
|
14
|
+
import { UpdateGatewayRequest } from "../models/models_1";
|
|
15
15
|
export { __MetadataBearer, $Command };
|
|
16
16
|
export interface UpdateGatewayCommandInput extends UpdateGatewayRequest {}
|
|
17
17
|
export interface UpdateGatewayCommandOutput extends __MetadataBearer {}
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../IoTSiteWiseClient";
|
|
14
|
-
import { UpdatePortalRequest, UpdatePortalResponse } from "../models/
|
|
14
|
+
import { UpdatePortalRequest, UpdatePortalResponse } from "../models/models_1";
|
|
15
15
|
export { __MetadataBearer, $Command };
|
|
16
16
|
export interface UpdatePortalCommandInput extends UpdatePortalRequest {}
|
|
17
17
|
export interface UpdatePortalCommandOutput
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
UpdateProjectRequest,
|
|
16
16
|
UpdateProjectResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_1";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface UpdateProjectCommandInput extends UpdateProjectRequest {}
|
|
20
20
|
export interface UpdateProjectCommandOutput
|
|
@@ -9,6 +9,7 @@ export * from "./BatchPutAssetPropertyValueCommand";
|
|
|
9
9
|
export * from "./CreateAccessPolicyCommand";
|
|
10
10
|
export * from "./CreateAssetCommand";
|
|
11
11
|
export * from "./CreateAssetModelCommand";
|
|
12
|
+
export * from "./CreateAssetModelCompositeModelCommand";
|
|
12
13
|
export * from "./CreateBulkImportJobCommand";
|
|
13
14
|
export * from "./CreateDashboardCommand";
|
|
14
15
|
export * from "./CreateGatewayCommand";
|
|
@@ -17,14 +18,18 @@ export * from "./CreateProjectCommand";
|
|
|
17
18
|
export * from "./DeleteAccessPolicyCommand";
|
|
18
19
|
export * from "./DeleteAssetCommand";
|
|
19
20
|
export * from "./DeleteAssetModelCommand";
|
|
21
|
+
export * from "./DeleteAssetModelCompositeModelCommand";
|
|
20
22
|
export * from "./DeleteDashboardCommand";
|
|
21
23
|
export * from "./DeleteGatewayCommand";
|
|
22
24
|
export * from "./DeletePortalCommand";
|
|
23
25
|
export * from "./DeleteProjectCommand";
|
|
24
26
|
export * from "./DeleteTimeSeriesCommand";
|
|
25
27
|
export * from "./DescribeAccessPolicyCommand";
|
|
28
|
+
export * from "./DescribeActionCommand";
|
|
26
29
|
export * from "./DescribeAssetCommand";
|
|
30
|
+
export * from "./DescribeAssetCompositeModelCommand";
|
|
27
31
|
export * from "./DescribeAssetModelCommand";
|
|
32
|
+
export * from "./DescribeAssetModelCompositeModelCommand";
|
|
28
33
|
export * from "./DescribeAssetPropertyCommand";
|
|
29
34
|
export * from "./DescribeBulkImportJobCommand";
|
|
30
35
|
export * from "./DescribeDashboardCommand";
|
|
@@ -38,11 +43,15 @@ export * from "./DescribeStorageConfigurationCommand";
|
|
|
38
43
|
export * from "./DescribeTimeSeriesCommand";
|
|
39
44
|
export * from "./DisassociateAssetsCommand";
|
|
40
45
|
export * from "./DisassociateTimeSeriesFromAssetPropertyCommand";
|
|
46
|
+
export * from "./ExecuteActionCommand";
|
|
47
|
+
export * from "./ExecuteQueryCommand";
|
|
41
48
|
export * from "./GetAssetPropertyAggregatesCommand";
|
|
42
49
|
export * from "./GetAssetPropertyValueCommand";
|
|
43
50
|
export * from "./GetAssetPropertyValueHistoryCommand";
|
|
44
51
|
export * from "./GetInterpolatedAssetPropertyValuesCommand";
|
|
45
52
|
export * from "./ListAccessPoliciesCommand";
|
|
53
|
+
export * from "./ListActionsCommand";
|
|
54
|
+
export * from "./ListAssetModelCompositeModelsCommand";
|
|
46
55
|
export * from "./ListAssetModelPropertiesCommand";
|
|
47
56
|
export * from "./ListAssetModelsCommand";
|
|
48
57
|
export * from "./ListAssetPropertiesCommand";
|
|
@@ -50,6 +59,7 @@ export * from "./ListAssetRelationshipsCommand";
|
|
|
50
59
|
export * from "./ListAssetsCommand";
|
|
51
60
|
export * from "./ListAssociatedAssetsCommand";
|
|
52
61
|
export * from "./ListBulkImportJobsCommand";
|
|
62
|
+
export * from "./ListCompositionRelationshipsCommand";
|
|
53
63
|
export * from "./ListDashboardsCommand";
|
|
54
64
|
export * from "./ListGatewaysCommand";
|
|
55
65
|
export * from "./ListPortalsCommand";
|
|
@@ -65,6 +75,7 @@ export * from "./UntagResourceCommand";
|
|
|
65
75
|
export * from "./UpdateAccessPolicyCommand";
|
|
66
76
|
export * from "./UpdateAssetCommand";
|
|
67
77
|
export * from "./UpdateAssetModelCommand";
|
|
78
|
+
export * from "./UpdateAssetModelCompositeModelCommand";
|
|
68
79
|
export * from "./UpdateAssetPropertyCommand";
|
|
69
80
|
export * from "./UpdateDashboardCommand";
|
|
70
81
|
export * from "./UpdateGatewayCapabilityConfigurationCommand";
|