@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,220 @@
|
|
|
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 { UpdateAssetModelCompositeModelRequest, UpdateAssetModelCompositeModelResponse } from "../models/models_1";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateAssetModelCompositeModelCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateAssetModelCompositeModelCommandInput extends UpdateAssetModelCompositeModelRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateAssetModelCompositeModelCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateAssetModelCompositeModelCommandOutput extends UpdateAssetModelCompositeModelResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Updates a composite model and all of the assets that were created from the model. Each asset
|
|
27
|
+
* created from the model inherits the updated asset model's property and hierarchy definitions.
|
|
28
|
+
* For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/update-assets-and-models.html">Updating assets and models</a> in the
|
|
29
|
+
* <i>IoT SiteWise User Guide</i>.</p>
|
|
30
|
+
* <important>
|
|
31
|
+
* <p>If you remove a property from a composite asset model, IoT SiteWise deletes all previous data for that property. You can’t change the type or data type of an existing property.</p>
|
|
32
|
+
* <p>To replace an existing composite asset model property with a new one with the same <code>name</code>, do the following:</p>
|
|
33
|
+
* <ol>
|
|
34
|
+
* <li>
|
|
35
|
+
* <p>Submit an <code>UpdateAssetModelCompositeModel</code> request with the entire existing property removed.</p>
|
|
36
|
+
* </li>
|
|
37
|
+
* <li>
|
|
38
|
+
* <p>Submit a second <code>UpdateAssetModelCompositeModel</code> request that includes the new property. The new asset property will have the same
|
|
39
|
+
* <code>name</code> as the previous one and IoT SiteWise will generate a new unique <code>id</code>.</p>
|
|
40
|
+
* </li>
|
|
41
|
+
* </ol>
|
|
42
|
+
* </important>
|
|
43
|
+
* @example
|
|
44
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
45
|
+
* ```javascript
|
|
46
|
+
* import { IoTSiteWiseClient, UpdateAssetModelCompositeModelCommand } from "@aws-sdk/client-iotsitewise"; // ES Modules import
|
|
47
|
+
* // const { IoTSiteWiseClient, UpdateAssetModelCompositeModelCommand } = require("@aws-sdk/client-iotsitewise"); // CommonJS import
|
|
48
|
+
* const client = new IoTSiteWiseClient(config);
|
|
49
|
+
* const input = { // UpdateAssetModelCompositeModelRequest
|
|
50
|
+
* assetModelId: "STRING_VALUE", // required
|
|
51
|
+
* assetModelCompositeModelId: "STRING_VALUE", // required
|
|
52
|
+
* assetModelCompositeModelExternalId: "STRING_VALUE",
|
|
53
|
+
* assetModelCompositeModelDescription: "STRING_VALUE",
|
|
54
|
+
* assetModelCompositeModelName: "STRING_VALUE", // required
|
|
55
|
+
* clientToken: "STRING_VALUE",
|
|
56
|
+
* assetModelCompositeModelProperties: [ // AssetModelProperties
|
|
57
|
+
* { // AssetModelProperty
|
|
58
|
+
* id: "STRING_VALUE",
|
|
59
|
+
* name: "STRING_VALUE", // required
|
|
60
|
+
* dataType: "STRING" || "INTEGER" || "DOUBLE" || "BOOLEAN" || "STRUCT", // required
|
|
61
|
+
* dataTypeSpec: "STRING_VALUE",
|
|
62
|
+
* unit: "STRING_VALUE",
|
|
63
|
+
* type: { // PropertyType
|
|
64
|
+
* attribute: { // Attribute
|
|
65
|
+
* defaultValue: "STRING_VALUE",
|
|
66
|
+
* },
|
|
67
|
+
* measurement: { // Measurement
|
|
68
|
+
* processingConfig: { // MeasurementProcessingConfig
|
|
69
|
+
* forwardingConfig: { // ForwardingConfig
|
|
70
|
+
* state: "DISABLED" || "ENABLED", // required
|
|
71
|
+
* },
|
|
72
|
+
* },
|
|
73
|
+
* },
|
|
74
|
+
* transform: { // Transform
|
|
75
|
+
* expression: "STRING_VALUE", // required
|
|
76
|
+
* variables: [ // ExpressionVariables // required
|
|
77
|
+
* { // ExpressionVariable
|
|
78
|
+
* name: "STRING_VALUE", // required
|
|
79
|
+
* value: { // VariableValue
|
|
80
|
+
* propertyId: "STRING_VALUE",
|
|
81
|
+
* hierarchyId: "STRING_VALUE",
|
|
82
|
+
* propertyPath: [ // AssetModelPropertyPath
|
|
83
|
+
* { // AssetModelPropertyPathSegment
|
|
84
|
+
* id: "STRING_VALUE",
|
|
85
|
+
* name: "STRING_VALUE",
|
|
86
|
+
* },
|
|
87
|
+
* ],
|
|
88
|
+
* },
|
|
89
|
+
* },
|
|
90
|
+
* ],
|
|
91
|
+
* processingConfig: { // TransformProcessingConfig
|
|
92
|
+
* computeLocation: "EDGE" || "CLOUD", // required
|
|
93
|
+
* forwardingConfig: {
|
|
94
|
+
* state: "DISABLED" || "ENABLED", // required
|
|
95
|
+
* },
|
|
96
|
+
* },
|
|
97
|
+
* },
|
|
98
|
+
* metric: { // Metric
|
|
99
|
+
* expression: "STRING_VALUE", // required
|
|
100
|
+
* variables: [ // required
|
|
101
|
+
* {
|
|
102
|
+
* name: "STRING_VALUE", // required
|
|
103
|
+
* value: {
|
|
104
|
+
* propertyId: "STRING_VALUE",
|
|
105
|
+
* hierarchyId: "STRING_VALUE",
|
|
106
|
+
* propertyPath: [
|
|
107
|
+
* {
|
|
108
|
+
* id: "STRING_VALUE",
|
|
109
|
+
* name: "STRING_VALUE",
|
|
110
|
+
* },
|
|
111
|
+
* ],
|
|
112
|
+
* },
|
|
113
|
+
* },
|
|
114
|
+
* ],
|
|
115
|
+
* window: { // MetricWindow
|
|
116
|
+
* tumbling: { // TumblingWindow
|
|
117
|
+
* interval: "STRING_VALUE", // required
|
|
118
|
+
* offset: "STRING_VALUE",
|
|
119
|
+
* },
|
|
120
|
+
* },
|
|
121
|
+
* processingConfig: { // MetricProcessingConfig
|
|
122
|
+
* computeLocation: "EDGE" || "CLOUD", // required
|
|
123
|
+
* },
|
|
124
|
+
* },
|
|
125
|
+
* },
|
|
126
|
+
* path: [
|
|
127
|
+
* {
|
|
128
|
+
* id: "STRING_VALUE",
|
|
129
|
+
* name: "STRING_VALUE",
|
|
130
|
+
* },
|
|
131
|
+
* ],
|
|
132
|
+
* externalId: "STRING_VALUE",
|
|
133
|
+
* },
|
|
134
|
+
* ],
|
|
135
|
+
* };
|
|
136
|
+
* const command = new UpdateAssetModelCompositeModelCommand(input);
|
|
137
|
+
* const response = await client.send(command);
|
|
138
|
+
* // { // UpdateAssetModelCompositeModelResponse
|
|
139
|
+
* // assetModelCompositeModelPath: [ // AssetModelCompositeModelPath // required
|
|
140
|
+
* // { // AssetModelCompositeModelPathSegment
|
|
141
|
+
* // id: "STRING_VALUE",
|
|
142
|
+
* // name: "STRING_VALUE",
|
|
143
|
+
* // },
|
|
144
|
+
* // ],
|
|
145
|
+
* // assetModelStatus: { // AssetModelStatus
|
|
146
|
+
* // state: "CREATING" || "ACTIVE" || "UPDATING" || "PROPAGATING" || "DELETING" || "FAILED", // required
|
|
147
|
+
* // error: { // ErrorDetails
|
|
148
|
+
* // code: "VALIDATION_ERROR" || "INTERNAL_FAILURE", // required
|
|
149
|
+
* // message: "STRING_VALUE", // required
|
|
150
|
+
* // details: [ // DetailedErrors
|
|
151
|
+
* // { // DetailedError
|
|
152
|
+
* // code: "INCOMPATIBLE_COMPUTE_LOCATION" || "INCOMPATIBLE_FORWARDING_CONFIGURATION", // required
|
|
153
|
+
* // message: "STRING_VALUE", // required
|
|
154
|
+
* // },
|
|
155
|
+
* // ],
|
|
156
|
+
* // },
|
|
157
|
+
* // },
|
|
158
|
+
* // };
|
|
159
|
+
*
|
|
160
|
+
* ```
|
|
161
|
+
*
|
|
162
|
+
* @param UpdateAssetModelCompositeModelCommandInput - {@link UpdateAssetModelCompositeModelCommandInput}
|
|
163
|
+
* @returns {@link UpdateAssetModelCompositeModelCommandOutput}
|
|
164
|
+
* @see {@link UpdateAssetModelCompositeModelCommandInput} for command's `input` shape.
|
|
165
|
+
* @see {@link UpdateAssetModelCompositeModelCommandOutput} for command's `response` shape.
|
|
166
|
+
* @see {@link IoTSiteWiseClientResolvedConfig | config} for IoTSiteWiseClient's `config` shape.
|
|
167
|
+
*
|
|
168
|
+
* @throws {@link ConflictingOperationException} (client fault)
|
|
169
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
170
|
+
* than one operation on the same resource at the same time.</p>
|
|
171
|
+
*
|
|
172
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
173
|
+
* <p>IoT SiteWise can't process your request right now. Try again later.</p>
|
|
174
|
+
*
|
|
175
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
176
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or
|
|
177
|
+
* unsupported characters. Check your request and try again.</p>
|
|
178
|
+
*
|
|
179
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
180
|
+
* <p>You've reached the limit for a resource. For example, this can occur if you're trying to
|
|
181
|
+
* associate more than the allowed number of child assets or attempting to create more than the
|
|
182
|
+
* allowed number of properties for an asset model.</p>
|
|
183
|
+
* <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>
|
|
184
|
+
*
|
|
185
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
186
|
+
* <p>The resource already exists.</p>
|
|
187
|
+
*
|
|
188
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
189
|
+
* <p>The requested resource can't be found.</p>
|
|
190
|
+
*
|
|
191
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
192
|
+
* <p>Your request exceeded a rate limit. For example, you might have exceeded the number of
|
|
193
|
+
* IoT SiteWise assets that can be created per second, the allowed number of messages per second, and so
|
|
194
|
+
* on.</p>
|
|
195
|
+
* <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>
|
|
196
|
+
*
|
|
197
|
+
* @throws {@link IoTSiteWiseServiceException}
|
|
198
|
+
* <p>Base exception class for all service exceptions from IoTSiteWise service.</p>
|
|
199
|
+
*
|
|
200
|
+
*/
|
|
201
|
+
export declare class UpdateAssetModelCompositeModelCommand extends $Command<UpdateAssetModelCompositeModelCommandInput, UpdateAssetModelCompositeModelCommandOutput, IoTSiteWiseClientResolvedConfig> {
|
|
202
|
+
readonly input: UpdateAssetModelCompositeModelCommandInput;
|
|
203
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
204
|
+
/**
|
|
205
|
+
* @public
|
|
206
|
+
*/
|
|
207
|
+
constructor(input: UpdateAssetModelCompositeModelCommandInput);
|
|
208
|
+
/**
|
|
209
|
+
* @internal
|
|
210
|
+
*/
|
|
211
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTSiteWiseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAssetModelCompositeModelCommandInput, UpdateAssetModelCompositeModelCommandOutput>;
|
|
212
|
+
/**
|
|
213
|
+
* @internal
|
|
214
|
+
*/
|
|
215
|
+
private serialize;
|
|
216
|
+
/**
|
|
217
|
+
* @internal
|
|
218
|
+
*/
|
|
219
|
+
private deserialize;
|
|
220
|
+
}
|
|
@@ -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 { UpdateAssetPropertyRequest } from "../models/
|
|
5
|
+
import { UpdateAssetPropertyRequest } 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 { UpdateDashboardRequest, UpdateDashboardResponse } from "../models/
|
|
5
|
+
import { UpdateDashboardRequest, UpdateDashboardResponse } 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 { UpdateGatewayCapabilityConfigurationRequest, UpdateGatewayCapabilityConfigurationResponse } from "../models/
|
|
5
|
+
import { UpdateGatewayCapabilityConfigurationRequest, UpdateGatewayCapabilityConfigurationResponse } 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 { UpdateGatewayRequest } from "../models/
|
|
5
|
+
import { UpdateGatewayRequest } 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 { UpdatePortalRequest, UpdatePortalResponse } from "../models/
|
|
5
|
+
import { UpdatePortalRequest, UpdatePortalResponse } 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 { UpdateProjectRequest, UpdateProjectResponse } from "../models/
|
|
5
|
+
import { UpdateProjectRequest, UpdateProjectResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -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";
|