@aws-sdk/client-iotsitewise 3.321.1 → 3.326.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AssociateAssetsCommand.d.ts +4 -0
- package/dist-types/commands/AssociateTimeSeriesToAssetPropertyCommand.d.ts +4 -0
- package/dist-types/commands/BatchAssociateProjectAssetsCommand.d.ts +12 -0
- package/dist-types/commands/BatchDisassociateProjectAssetsCommand.d.ts +12 -0
- package/dist-types/commands/BatchGetAssetPropertyAggregatesCommand.d.ts +42 -0
- package/dist-types/commands/BatchGetAssetPropertyValueCommand.d.ts +41 -0
- package/dist-types/commands/BatchGetAssetPropertyValueHistoryCommand.d.ts +43 -0
- package/dist-types/commands/BatchPutAssetPropertyValueCommand.d.ts +22 -0
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +7 -0
- package/dist-types/commands/CreateAssetCommand.d.ts +20 -0
- package/dist-types/commands/CreateAssetModelCommand.d.ts +20 -0
- package/dist-types/commands/CreateBulkImportJobCommand.d.ts +8 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +7 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +7 -0
- package/dist-types/commands/CreatePortalCommand.d.ts +16 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +7 -0
- package/dist-types/commands/DeleteAccessPolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +18 -0
- package/dist-types/commands/DeleteAssetModelCommand.d.ts +18 -0
- package/dist-types/commands/DeleteDashboardCommand.d.ts +4 -0
- package/dist-types/commands/DeleteGatewayCommand.d.ts +4 -0
- package/dist-types/commands/DeletePortalCommand.d.ts +12 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +4 -0
- package/dist-types/commands/DeleteTimeSeriesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAccessPolicyCommand.d.ts +32 -0
- package/dist-types/commands/DescribeAssetCommand.d.ts +67 -0
- package/dist-types/commands/DescribeAssetModelCommand.d.ts +159 -0
- package/dist-types/commands/DescribeAssetPropertyCommand.d.ts +137 -0
- package/dist-types/commands/DescribeBulkImportJobCommand.d.ts +31 -0
- package/dist-types/commands/DescribeDashboardCommand.d.ts +13 -0
- package/dist-types/commands/DescribeDefaultEncryptionConfigurationCommand.d.ts +14 -0
- package/dist-types/commands/DescribeGatewayCapabilityConfigurationCommand.d.ts +9 -0
- package/dist-types/commands/DescribeGatewayCommand.d.ts +24 -0
- package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +8 -0
- package/dist-types/commands/DescribePortalCommand.d.ts +32 -0
- package/dist-types/commands/DescribeProjectCommand.d.ts +12 -0
- package/dist-types/commands/DescribeStorageConfigurationCommand.d.ts +25 -0
- package/dist-types/commands/DescribeTimeSeriesCommand.d.ts +14 -0
- package/dist-types/commands/DisassociateAssetsCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateTimeSeriesFromAssetPropertyCommand.d.ts +4 -0
- package/dist-types/commands/GetAssetPropertyAggregatesCommand.d.ts +20 -0
- package/dist-types/commands/GetAssetPropertyValueCommand.d.ts +18 -0
- package/dist-types/commands/GetAssetPropertyValueHistoryCommand.d.ts +21 -0
- package/dist-types/commands/GetInterpolatedAssetPropertyValuesCommand.d.ts +20 -0
- package/dist-types/commands/ListAccessPoliciesCommand.d.ts +36 -0
- package/dist-types/commands/ListAssetModelPropertiesCommand.d.ts +67 -0
- package/dist-types/commands/ListAssetModelsCommand.d.ts +29 -0
- package/dist-types/commands/ListAssetPropertiesCommand.d.ts +18 -0
- package/dist-types/commands/ListAssetRelationshipsCommand.d.ts +15 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +36 -0
- package/dist-types/commands/ListAssociatedAssetsCommand.d.ts +36 -0
- package/dist-types/commands/ListBulkImportJobsCommand.d.ts +13 -0
- package/dist-types/commands/ListDashboardsCommand.d.ts +15 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +28 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +24 -0
- package/dist-types/commands/ListProjectAssetsCommand.d.ts +9 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +15 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListTimeSeriesCommand.d.ts +19 -0
- package/dist-types/commands/PutDefaultEncryptionConfigurationCommand.d.ts +14 -0
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +4 -0
- package/dist-types/commands/PutStorageConfigurationCommand.d.ts +24 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAssetCommand.d.ts +18 -0
- package/dist-types/commands/UpdateAssetModelCommand.d.ts +18 -0
- package/dist-types/commands/UpdateAssetPropertyCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +4 -0
- package/dist-types/commands/UpdateGatewayCapabilityConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +4 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +12 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +4 -0
- package/package.json +16 -16
|
@@ -48,6 +48,16 @@ export interface UpdatePortalCommandOutput extends UpdatePortalResponse, __Metad
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new UpdatePortalCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // UpdatePortalResponse
|
|
52
|
+
* // portalStatus: { // PortalStatus
|
|
53
|
+
* // state: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "FAILED", // required
|
|
54
|
+
* // error: { // MonitorErrorDetails
|
|
55
|
+
* // code: "INTERNAL_FAILURE" || "VALIDATION_ERROR" || "LIMIT_EXCEEDED",
|
|
56
|
+
* // message: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
51
61
|
* ```
|
|
52
62
|
*
|
|
53
63
|
* @param UpdatePortalCommandInput - {@link UpdatePortalCommandInput}
|
|
@@ -76,6 +86,8 @@ export interface UpdatePortalCommandOutput extends UpdatePortalResponse, __Metad
|
|
|
76
86
|
* on.</p>
|
|
77
87
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
78
88
|
*
|
|
89
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
79
91
|
*
|
|
80
92
|
*/
|
|
81
93
|
export declare class UpdatePortalCommand extends $Command<UpdatePortalCommandInput, UpdatePortalCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdateProjectCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UpdateProjectCommandInput - {@link UpdateProjectCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __Met
|
|
|
58
60
|
* on.</p>
|
|
59
61
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class UpdateProjectCommand extends $Command<UpdateProjectCommandInput, UpdateProjectCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotsitewise",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotsitewise Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|