@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,101 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
5
|
+
import { ListActionsRequest, ListActionsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListActionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListActionsCommandInput extends ListActionsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListActionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListActionsCommandOutput extends ListActionsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Retrieves a paginated list of actions for a specific target resource.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { IoTSiteWiseClient, ListActionsCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
31
|
+
* // const { IoTSiteWiseClient, ListActionsCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
32
|
+
* const client = new IoTSiteWiseClient(config);
|
|
33
|
+
* const input = { // ListActionsRequest
|
|
34
|
+
* targetResourceType: "ASSET", // required
|
|
35
|
+
* targetResourceId: "STRING_VALUE", // required
|
|
36
|
+
* nextToken: "STRING_VALUE",
|
|
37
|
+
* maxResults: Number("int"),
|
|
38
|
+
* };
|
|
39
|
+
* const command = new ListActionsCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // ListActionsResponse
|
|
42
|
+
* // actionSummaries: [ // ActionSummaries // required
|
|
43
|
+
* // { // ActionSummary
|
|
44
|
+
* // actionId: "STRING_VALUE",
|
|
45
|
+
* // actionDefinitionId: "STRING_VALUE",
|
|
46
|
+
* // targetResource: { // TargetResource
|
|
47
|
+
* // assetId: "STRING_VALUE", // required
|
|
48
|
+
* // },
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // nextToken: "STRING_VALUE", // required
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* @param ListActionsCommandInput - {@link ListActionsCommandInput}
|
|
57
|
+
* @returns {@link ListActionsCommandOutput}
|
|
58
|
+
* @see {@link ListActionsCommandInput} for command's `input` shape.
|
|
59
|
+
* @see {@link ListActionsCommandOutput} for command's `response` shape.
|
|
60
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
63
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
66
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
67
|
+
* unsupported characters. Check your request and try again.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
|
+
* <p>The requested resource can't be found.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
73
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
74
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
75
|
+
* on.</p>
|
|
76
|
+
* <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>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
80
|
+
*
|
|
81
|
+
*/
|
|
82
|
+
export declare class ListActionsCommand extends $Command<ListActionsCommandInput, ListActionsCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
83
|
+
readonly input: ListActionsCommandInput;
|
|
84
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
constructor(input: ListActionsCommandInput);
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListActionsCommandInput, ListActionsCommandOutput>;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
96
|
+
private serialize;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
100
|
+
private deserialize;
|
|
101
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
5
|
+
import { ListAssetModelCompositeModelsRequest, ListAssetModelCompositeModelsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListAssetModelCompositeModelsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListAssetModelCompositeModelsCommandInput extends ListAssetModelCompositeModelsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListAssetModelCompositeModelsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListAssetModelCompositeModelsCommandOutput extends ListAssetModelCompositeModelsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Retrieves a paginated list of composite models associated with the asset model</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { IoTSiteWiseClient, ListAssetModelCompositeModelsCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
31
|
+
* // const { IoTSiteWiseClient, ListAssetModelCompositeModelsCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
32
|
+
* const client = new IoTSiteWiseClient(config);
|
|
33
|
+
* const input = { // ListAssetModelCompositeModelsRequest
|
|
34
|
+
* assetModelId: "STRING_VALUE", // required
|
|
35
|
+
* nextToken: "STRING_VALUE",
|
|
36
|
+
* maxResults: Number("int"),
|
|
37
|
+
* };
|
|
38
|
+
* const command = new ListAssetModelCompositeModelsCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // ListAssetModelCompositeModelsResponse
|
|
41
|
+
* // assetModelCompositeModelSummaries: [ // AssetModelCompositeModelSummaries // required
|
|
42
|
+
* // { // AssetModelCompositeModelSummary
|
|
43
|
+
* // id: "STRING_VALUE", // required
|
|
44
|
+
* // externalId: "STRING_VALUE",
|
|
45
|
+
* // name: "STRING_VALUE", // required
|
|
46
|
+
* // type: "STRING_VALUE", // required
|
|
47
|
+
* // description: "STRING_VALUE",
|
|
48
|
+
* // path: [ // AssetModelCompositeModelPath
|
|
49
|
+
* // { // AssetModelCompositeModelPathSegment
|
|
50
|
+
* // id: "STRING_VALUE",
|
|
51
|
+
* // name: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // nextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @param ListAssetModelCompositeModelsCommandInput - {@link ListAssetModelCompositeModelsCommandInput}
|
|
62
|
+
* @returns {@link ListAssetModelCompositeModelsCommandOutput}
|
|
63
|
+
* @see {@link ListAssetModelCompositeModelsCommandInput} for command's `input` shape.
|
|
64
|
+
* @see {@link ListAssetModelCompositeModelsCommandOutput} for command's `response` shape.
|
|
65
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
68
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
71
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
72
|
+
* unsupported characters. Check your request and try again.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
75
|
+
* <p>The requested resource can't be found.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
78
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
79
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
80
|
+
* on.</p>
|
|
81
|
+
* <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>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
85
|
+
*
|
|
86
|
+
*/
|
|
87
|
+
export declare class ListAssetModelCompositeModelsCommand extends $Command<ListAssetModelCompositeModelsCommandInput, ListAssetModelCompositeModelsCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
88
|
+
readonly input: ListAssetModelCompositeModelsCommandInput;
|
|
89
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
constructor(input: ListAssetModelCompositeModelsCommandInput);
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssetModelCompositeModelsCommandInput, ListAssetModelCompositeModelsCommandOutput>;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
private serialize;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
private deserialize;
|
|
106
|
+
}
|
|
@@ -65,8 +65,14 @@ export interface ListAssetModelPropertiesCommandOutput extends ListAssetModelPro
|
|
|
65
65
|
* // { // ExpressionVariable
|
|
66
66
|
* // name: "STRING_VALUE", // required
|
|
67
67
|
* // value: { // VariableValue
|
|
68
|
-
* // propertyId: "STRING_VALUE",
|
|
68
|
+
* // propertyId: "STRING_VALUE",
|
|
69
69
|
* // hierarchyId: "STRING_VALUE",
|
|
70
|
+
* // propertyPath: [ // AssetModelPropertyPath
|
|
71
|
+
* // { // AssetModelPropertyPathSegment
|
|
72
|
+
* // id: "STRING_VALUE",
|
|
73
|
+
* // name: "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // ],
|
|
70
76
|
* // },
|
|
71
77
|
* // },
|
|
72
78
|
* // ],
|
|
@@ -83,8 +89,14 @@ export interface ListAssetModelPropertiesCommandOutput extends ListAssetModelPro
|
|
|
83
89
|
* // {
|
|
84
90
|
* // name: "STRING_VALUE", // required
|
|
85
91
|
* // value: {
|
|
86
|
-
* // propertyId: "STRING_VALUE",
|
|
92
|
+
* // propertyId: "STRING_VALUE",
|
|
87
93
|
* // hierarchyId: "STRING_VALUE",
|
|
94
|
+
* // propertyPath: [
|
|
95
|
+
* // {
|
|
96
|
+
* // id: "STRING_VALUE",
|
|
97
|
+
* // name: "STRING_VALUE",
|
|
98
|
+
* // },
|
|
99
|
+
* // ],
|
|
88
100
|
* // },
|
|
89
101
|
* // },
|
|
90
102
|
* // ],
|
|
@@ -100,6 +112,13 @@ export interface ListAssetModelPropertiesCommandOutput extends ListAssetModelPro
|
|
|
100
112
|
* // },
|
|
101
113
|
* // },
|
|
102
114
|
* // assetModelCompositeModelId: "STRING_VALUE",
|
|
115
|
+
* // path: [
|
|
116
|
+
* // {
|
|
117
|
+
* // id: "STRING_VALUE",
|
|
118
|
+
* // name: "STRING_VALUE",
|
|
119
|
+
* // },
|
|
120
|
+
* // ],
|
|
121
|
+
* // externalId: "STRING_VALUE",
|
|
103
122
|
* // },
|
|
104
123
|
* // ],
|
|
105
124
|
* // nextToken: "STRING_VALUE",
|
|
@@ -33,6 +33,9 @@ export interface ListAssetModelsCommandOutput extends ListAssetModelsResponse, _
|
|
|
33
33
|
* const input = { // ListAssetModelsRequest
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
35
35
|
* maxResults: Number("int"),
|
|
36
|
+
* assetModelTypes: [ // ListAssetModelsTypeFilter
|
|
37
|
+
* "ASSET_MODEL" || "COMPONENT_MODEL",
|
|
38
|
+
* ],
|
|
36
39
|
* };
|
|
37
40
|
* const command = new ListAssetModelsCommand(input);
|
|
38
41
|
* const response = await client.send(command);
|
|
@@ -58,6 +61,8 @@ export interface ListAssetModelsCommandOutput extends ListAssetModelsResponse, _
|
|
|
58
61
|
* // ],
|
|
59
62
|
* // },
|
|
60
63
|
* // },
|
|
64
|
+
* // assetModelType: "ASSET_MODEL" || "COMPONENT_MODEL",
|
|
65
|
+
* // externalId: "STRING_VALUE",
|
|
61
66
|
* // },
|
|
62
67
|
* // ],
|
|
63
68
|
* // nextToken: "STRING_VALUE",
|
|
@@ -43,7 +43,7 @@ export interface ListAssetPropertiesCommandOutput extends ListAssetPropertiesRes
|
|
|
43
43
|
* // { // ListAssetPropertiesResponse
|
|
44
44
|
* // assetPropertySummaries: [ // AssetPropertySummaries // required
|
|
45
45
|
* // { // AssetPropertySummary
|
|
46
|
-
* // id: "STRING_VALUE",
|
|
46
|
+
* // id: "STRING_VALUE", // required
|
|
47
47
|
* // alias: "STRING_VALUE",
|
|
48
48
|
* // unit: "STRING_VALUE",
|
|
49
49
|
* // notification: { // PropertyNotification
|
|
@@ -51,6 +51,13 @@ export interface ListAssetPropertiesCommandOutput extends ListAssetPropertiesRes
|
|
|
51
51
|
* // state: "ENABLED" || "DISABLED", // required
|
|
52
52
|
* // },
|
|
53
53
|
* // assetCompositeModelId: "STRING_VALUE",
|
|
54
|
+
* // path: [ // AssetPropertyPath
|
|
55
|
+
* // { // AssetPropertyPathSegment
|
|
56
|
+
* // id: "STRING_VALUE",
|
|
57
|
+
* // name: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // externalId: "STRING_VALUE",
|
|
54
61
|
* // },
|
|
55
62
|
* // ],
|
|
56
63
|
* // nextToken: "STRING_VALUE",
|
|
@@ -76,9 +76,11 @@ export interface ListAssetsCommandOutput extends ListAssetsResponse, __MetadataB
|
|
|
76
76
|
* // { // AssetHierarchy
|
|
77
77
|
* // id: "STRING_VALUE",
|
|
78
78
|
* // name: "STRING_VALUE", // required
|
|
79
|
+
* // externalId: "STRING_VALUE",
|
|
79
80
|
* // },
|
|
80
81
|
* // ],
|
|
81
82
|
* // description: "STRING_VALUE",
|
|
83
|
+
* // externalId: "STRING_VALUE",
|
|
82
84
|
* // },
|
|
83
85
|
* // ],
|
|
84
86
|
* // nextToken: "STRING_VALUE",
|
|
@@ -74,9 +74,11 @@ export interface ListAssociatedAssetsCommandOutput extends ListAssociatedAssetsR
|
|
|
74
74
|
* // { // AssetHierarchy
|
|
75
75
|
* // id: "STRING_VALUE",
|
|
76
76
|
* // name: "STRING_VALUE", // required
|
|
77
|
+
* // externalId: "STRING_VALUE",
|
|
77
78
|
* // },
|
|
78
79
|
* // ],
|
|
79
80
|
* // description: "STRING_VALUE",
|
|
81
|
+
* // externalId: "STRING_VALUE",
|
|
80
82
|
* // },
|
|
81
83
|
* // ],
|
|
82
84
|
* // nextToken: "STRING_VALUE",
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
5
|
+
import { ListCompositionRelationshipsRequest, ListCompositionRelationshipsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListCompositionRelationshipsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListCompositionRelationshipsCommandInput extends ListCompositionRelationshipsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListCompositionRelationshipsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListCompositionRelationshipsCommandOutput extends ListCompositionRelationshipsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Retrieves a paginated list of composition relationships for an asset model of type <code>COMPONENT_MODEL</code>.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { IoTSiteWiseClient, ListCompositionRelationshipsCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
31
|
+
* // const { IoTSiteWiseClient, ListCompositionRelationshipsCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
32
|
+
* const client = new IoTSiteWiseClient(config);
|
|
33
|
+
* const input = { // ListCompositionRelationshipsRequest
|
|
34
|
+
* assetModelId: "STRING_VALUE", // required
|
|
35
|
+
* nextToken: "STRING_VALUE",
|
|
36
|
+
* maxResults: Number("int"),
|
|
37
|
+
* };
|
|
38
|
+
* const command = new ListCompositionRelationshipsCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // ListCompositionRelationshipsResponse
|
|
41
|
+
* // compositionRelationshipSummaries: [ // CompositionRelationshipSummaries // required
|
|
42
|
+
* // { // CompositionRelationshipSummary
|
|
43
|
+
* // assetModelId: "STRING_VALUE", // required
|
|
44
|
+
* // assetModelCompositeModelId: "STRING_VALUE", // required
|
|
45
|
+
* // assetModelCompositeModelType: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* @param ListCompositionRelationshipsCommandInput - {@link ListCompositionRelationshipsCommandInput}
|
|
54
|
+
* @returns {@link ListCompositionRelationshipsCommandOutput}
|
|
55
|
+
* @see {@link ListCompositionRelationshipsCommandInput} for command's `input` shape.
|
|
56
|
+
* @see {@link ListCompositionRelationshipsCommandOutput} for command's `response` shape.
|
|
57
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
60
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
63
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
64
|
+
* unsupported characters. Check your request and try again.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
67
|
+
* <p>The requested resource can't be found.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
70
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
71
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
72
|
+
* on.</p>
|
|
73
|
+
* <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>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
77
|
+
*
|
|
78
|
+
*/
|
|
79
|
+
export declare class ListCompositionRelationshipsCommand extends $Command<ListCompositionRelationshipsCommandInput, ListCompositionRelationshipsCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
80
|
+
readonly input: ListCompositionRelationshipsCommandInput;
|
|
81
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
constructor(input: ListCompositionRelationshipsCommandInput);
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCompositionRelationshipsCommandInput, ListCompositionRelationshipsCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
private deserialize;
|
|
98
|
+
}
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
5
|
-
import { PutDefaultEncryptionConfigurationRequest, PutDefaultEncryptionConfigurationResponse } from "../models/
|
|
5
|
+
import { PutDefaultEncryptionConfigurationRequest, PutDefaultEncryptionConfigurationResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
5
|
-
import { PutLoggingOptionsRequest, PutLoggingOptionsResponse } from "../models/
|
|
5
|
+
import { PutLoggingOptionsRequest, PutLoggingOptionsResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
5
|
-
import { PutStorageConfigurationRequest, PutStorageConfigurationResponse } from "../models/
|
|
5
|
+
import { PutStorageConfigurationRequest, PutStorageConfigurationResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -43,6 +43,11 @@ export interface PutStorageConfigurationCommandOutput extends PutStorageConfigur
|
|
|
43
43
|
* numberOfDays: Number("int"),
|
|
44
44
|
* unlimited: true || false,
|
|
45
45
|
* },
|
|
46
|
+
* warmTier: "ENABLED" || "DISABLED",
|
|
47
|
+
* warmTierRetentionPeriod: { // WarmTierRetentionPeriod
|
|
48
|
+
* numberOfDays: Number("int"),
|
|
49
|
+
* unlimited: true || false,
|
|
50
|
+
* },
|
|
46
51
|
* };
|
|
47
52
|
* const command = new PutStorageConfigurationCommand(input);
|
|
48
53
|
* const response = await client.send(command);
|
|
@@ -66,6 +71,11 @@ export interface PutStorageConfigurationCommandOutput extends PutStorageConfigur
|
|
|
66
71
|
* // message: "STRING_VALUE", // required
|
|
67
72
|
* // },
|
|
68
73
|
* // },
|
|
74
|
+
* // warmTier: "ENABLED" || "DISABLED",
|
|
75
|
+
* // warmTierRetentionPeriod: { // WarmTierRetentionPeriod
|
|
76
|
+
* // numberOfDays: Number("int"),
|
|
77
|
+
* // unlimited: true || false,
|
|
78
|
+
* // },
|
|
69
79
|
* // };
|
|
70
80
|
*
|
|
71
81
|
* ```
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
5
|
-
import { TagResourceRequest, TagResourceResponse } from "../models/
|
|
5
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
5
|
-
import { UntagResourceRequest, UntagResourceResponse } from "../models/
|
|
5
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
5
|
-
import { UpdateAccessPolicyRequest, UpdateAccessPolicyResponse } from "../models/
|
|
5
|
+
import { UpdateAccessPolicyRequest, UpdateAccessPolicyResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
5
|
-
import { UpdateAssetRequest, UpdateAssetResponse } from "../models/
|
|
5
|
+
import { UpdateAssetRequest, UpdateAssetResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -36,6 +36,7 @@ export interface UpdateAssetCommandOutput extends UpdateAssetResponse, __Metadat
|
|
|
36
36
|
* assetName: "STRING_VALUE", // required
|
|
37
37
|
* clientToken: "STRING_VALUE",
|
|
38
38
|
* assetDescription: "STRING_VALUE",
|
|
39
|
+
* assetExternalId: "STRING_VALUE",
|
|
39
40
|
* };
|
|
40
41
|
* const command = new UpdateAssetCommand(input);
|
|
41
42
|
* const response = await client.send(command);
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient";
|
|
5
|
-
import { UpdateAssetModelRequest, UpdateAssetModelResponse } from "../models/
|
|
5
|
+
import { UpdateAssetModelRequest, UpdateAssetModelResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -70,8 +70,14 @@ export interface UpdateAssetModelCommandOutput extends UpdateAssetModelResponse,
|
|
|
70
70
|
* { // ExpressionVariable
|
|
71
71
|
* name: "STRING_VALUE", // required
|
|
72
72
|
* value: { // VariableValue
|
|
73
|
-
* propertyId: "STRING_VALUE",
|
|
73
|
+
* propertyId: "STRING_VALUE",
|
|
74
74
|
* hierarchyId: "STRING_VALUE",
|
|
75
|
+
* propertyPath: [ // AssetModelPropertyPath
|
|
76
|
+
* { // AssetModelPropertyPathSegment
|
|
77
|
+
* id: "STRING_VALUE",
|
|
78
|
+
* name: "STRING_VALUE",
|
|
79
|
+
* },
|
|
80
|
+
* ],
|
|
75
81
|
* },
|
|
76
82
|
* },
|
|
77
83
|
* ],
|
|
@@ -88,8 +94,14 @@ export interface UpdateAssetModelCommandOutput extends UpdateAssetModelResponse,
|
|
|
88
94
|
* {
|
|
89
95
|
* name: "STRING_VALUE", // required
|
|
90
96
|
* value: {
|
|
91
|
-
* propertyId: "STRING_VALUE",
|
|
97
|
+
* propertyId: "STRING_VALUE",
|
|
92
98
|
* hierarchyId: "STRING_VALUE",
|
|
99
|
+
* propertyPath: [
|
|
100
|
+
* {
|
|
101
|
+
* id: "STRING_VALUE",
|
|
102
|
+
* name: "STRING_VALUE",
|
|
103
|
+
* },
|
|
104
|
+
* ],
|
|
93
105
|
* },
|
|
94
106
|
* },
|
|
95
107
|
* ],
|
|
@@ -104,6 +116,13 @@ export interface UpdateAssetModelCommandOutput extends UpdateAssetModelResponse,
|
|
|
104
116
|
* },
|
|
105
117
|
* },
|
|
106
118
|
* },
|
|
119
|
+
* path: [
|
|
120
|
+
* {
|
|
121
|
+
* id: "STRING_VALUE",
|
|
122
|
+
* name: "STRING_VALUE",
|
|
123
|
+
* },
|
|
124
|
+
* ],
|
|
125
|
+
* externalId: "STRING_VALUE",
|
|
107
126
|
* },
|
|
108
127
|
* ],
|
|
109
128
|
* assetModelHierarchies: [ // AssetModelHierarchies
|
|
@@ -111,6 +130,7 @@ export interface UpdateAssetModelCommandOutput extends UpdateAssetModelResponse,
|
|
|
111
130
|
* id: "STRING_VALUE",
|
|
112
131
|
* name: "STRING_VALUE", // required
|
|
113
132
|
* childAssetModelId: "STRING_VALUE", // required
|
|
133
|
+
* externalId: "STRING_VALUE",
|
|
114
134
|
* },
|
|
115
135
|
* ],
|
|
116
136
|
* assetModelCompositeModels: [ // AssetModelCompositeModels
|
|
@@ -142,8 +162,9 @@ export interface UpdateAssetModelCommandOutput extends UpdateAssetModelResponse,
|
|
|
142
162
|
* {
|
|
143
163
|
* name: "STRING_VALUE", // required
|
|
144
164
|
* value: {
|
|
145
|
-
* propertyId: "STRING_VALUE",
|
|
165
|
+
* propertyId: "STRING_VALUE",
|
|
146
166
|
* hierarchyId: "STRING_VALUE",
|
|
167
|
+
* propertyPath: "<AssetModelPropertyPath>",
|
|
147
168
|
* },
|
|
148
169
|
* },
|
|
149
170
|
* ],
|
|
@@ -160,8 +181,9 @@ export interface UpdateAssetModelCommandOutput extends UpdateAssetModelResponse,
|
|
|
160
181
|
* {
|
|
161
182
|
* name: "STRING_VALUE", // required
|
|
162
183
|
* value: {
|
|
163
|
-
* propertyId: "STRING_VALUE",
|
|
184
|
+
* propertyId: "STRING_VALUE",
|
|
164
185
|
* hierarchyId: "STRING_VALUE",
|
|
186
|
+
* propertyPath: "<AssetModelPropertyPath>",
|
|
165
187
|
* },
|
|
166
188
|
* },
|
|
167
189
|
* ],
|
|
@@ -176,12 +198,16 @@ export interface UpdateAssetModelCommandOutput extends UpdateAssetModelResponse,
|
|
|
176
198
|
* },
|
|
177
199
|
* },
|
|
178
200
|
* },
|
|
201
|
+
* path: "<AssetModelPropertyPath>",
|
|
202
|
+
* externalId: "STRING_VALUE",
|
|
179
203
|
* },
|
|
180
204
|
* ],
|
|
181
205
|
* id: "STRING_VALUE",
|
|
206
|
+
* externalId: "STRING_VALUE",
|
|
182
207
|
* },
|
|
183
208
|
* ],
|
|
184
209
|
* clientToken: "STRING_VALUE",
|
|
210
|
+
* assetModelExternalId: "STRING_VALUE",
|
|
185
211
|
* };
|
|
186
212
|
* const command = new UpdateAssetModelCommand(input);
|
|
187
213
|
* const response = await client.send(command);
|