@aws-sdk/client-iottwinmaker 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 +49 -2
- package/dist-cjs/IoTTwinMaker.js +12 -0
- package/dist-cjs/commands/CancelMetadataTransferJobCommand.js +51 -0
- package/dist-cjs/commands/CreateMetadataTransferJobCommand.js +51 -0
- package/dist-cjs/commands/GetMetadataTransferJobCommand.js +51 -0
- package/dist-cjs/commands/ListComponentsCommand.js +51 -0
- package/dist-cjs/commands/ListMetadataTransferJobsCommand.js +51 -0
- package/dist-cjs/commands/ListPropertiesCommand.js +51 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +60 -8
- package/dist-cjs/pagination/ListComponentsPaginator.js +29 -0
- package/dist-cjs/pagination/ListMetadataTransferJobsPaginator.js +29 -0
- package/dist-cjs/pagination/ListPropertiesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +570 -3
- package/dist-es/IoTTwinMaker.js +12 -0
- package/dist-es/commands/CancelMetadataTransferJobCommand.js +47 -0
- package/dist-es/commands/CreateMetadataTransferJobCommand.js +47 -0
- package/dist-es/commands/GetMetadataTransferJobCommand.js +47 -0
- package/dist-es/commands/ListComponentsCommand.js +47 -0
- package/dist-es/commands/ListMetadataTransferJobsCommand.js +47 -0
- package/dist-es/commands/ListPropertiesCommand.js +47 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +59 -7
- package/dist-es/pagination/ListComponentsPaginator.js +25 -0
- package/dist-es/pagination/ListMetadataTransferJobsPaginator.js +25 -0
- package/dist-es/pagination/ListPropertiesPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +556 -1
- package/dist-types/IoTTwinMaker.d.ts +43 -2
- package/dist-types/IoTTwinMakerClient.d.ts +9 -4
- package/dist-types/commands/BatchPutPropertyValuesCommand.d.ts +2 -0
- package/dist-types/commands/CancelMetadataTransferJobCommand.d.ts +107 -0
- package/dist-types/commands/CreateComponentTypeCommand.d.ts +5 -0
- package/dist-types/commands/CreateEntityCommand.d.ts +32 -0
- package/dist-types/commands/CreateMetadataTransferJobCommand.d.ts +153 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +2 -2
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +3 -1
- package/dist-types/commands/ExecuteQueryCommand.d.ts +4 -0
- package/dist-types/commands/GetComponentTypeCommand.d.ts +6 -0
- package/dist-types/commands/GetEntityCommand.d.ts +24 -0
- package/dist-types/commands/GetMetadataTransferJobCommand.d.ts +156 -0
- package/dist-types/commands/GetPropertyValueCommand.d.ts +2 -0
- package/dist-types/commands/GetPropertyValueHistoryCommand.d.ts +2 -0
- package/dist-types/commands/GetWorkspaceCommand.d.ts +5 -2
- package/dist-types/commands/ListComponentsCommand.d.ts +118 -0
- package/dist-types/commands/ListMetadataTransferJobsCommand.d.ts +116 -0
- package/dist-types/commands/ListPropertiesCommand.d.ts +167 -0
- package/dist-types/commands/ListWorkspacesCommand.d.ts +3 -0
- package/dist-types/commands/UpdateComponentTypeCommand.d.ts +5 -0
- package/dist-types/commands/UpdateEntityCommand.d.ts +33 -0
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/index.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +1118 -143
- package/dist-types/pagination/ListComponentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListMetadataTransferJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPropertiesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/IoTTwinMaker.d.ts +102 -0
- package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CancelMetadataTransferJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateMetadataTransferJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetMetadataTransferJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListMetadataTransferJobsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListPropertiesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +329 -24
- package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListMetadataTransferJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPropertiesPaginator.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 +72 -0
- package/package.json +2 -2
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
BatchPutPropertyValuesCommandInput,
|
|
8
8
|
BatchPutPropertyValuesCommandOutput,
|
|
9
9
|
} from "../commands/BatchPutPropertyValuesCommand";
|
|
10
|
+
import {
|
|
11
|
+
CancelMetadataTransferJobCommandInput,
|
|
12
|
+
CancelMetadataTransferJobCommandOutput,
|
|
13
|
+
} from "../commands/CancelMetadataTransferJobCommand";
|
|
10
14
|
import {
|
|
11
15
|
CreateComponentTypeCommandInput,
|
|
12
16
|
CreateComponentTypeCommandOutput,
|
|
@@ -15,6 +19,10 @@ import {
|
|
|
15
19
|
CreateEntityCommandInput,
|
|
16
20
|
CreateEntityCommandOutput,
|
|
17
21
|
} from "../commands/CreateEntityCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateMetadataTransferJobCommandInput,
|
|
24
|
+
CreateMetadataTransferJobCommandOutput,
|
|
25
|
+
} from "../commands/CreateMetadataTransferJobCommand";
|
|
18
26
|
import {
|
|
19
27
|
CreateSceneCommandInput,
|
|
20
28
|
CreateSceneCommandOutput,
|
|
@@ -59,6 +67,10 @@ import {
|
|
|
59
67
|
GetEntityCommandInput,
|
|
60
68
|
GetEntityCommandOutput,
|
|
61
69
|
} from "../commands/GetEntityCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetMetadataTransferJobCommandInput,
|
|
72
|
+
GetMetadataTransferJobCommandOutput,
|
|
73
|
+
} from "../commands/GetMetadataTransferJobCommand";
|
|
62
74
|
import {
|
|
63
75
|
GetPricingPlanCommandInput,
|
|
64
76
|
GetPricingPlanCommandOutput,
|
|
@@ -83,6 +95,10 @@ import {
|
|
|
83
95
|
GetWorkspaceCommandInput,
|
|
84
96
|
GetWorkspaceCommandOutput,
|
|
85
97
|
} from "../commands/GetWorkspaceCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListComponentsCommandInput,
|
|
100
|
+
ListComponentsCommandOutput,
|
|
101
|
+
} from "../commands/ListComponentsCommand";
|
|
86
102
|
import {
|
|
87
103
|
ListComponentTypesCommandInput,
|
|
88
104
|
ListComponentTypesCommandOutput,
|
|
@@ -91,6 +107,14 @@ import {
|
|
|
91
107
|
ListEntitiesCommandInput,
|
|
92
108
|
ListEntitiesCommandOutput,
|
|
93
109
|
} from "../commands/ListEntitiesCommand";
|
|
110
|
+
import {
|
|
111
|
+
ListMetadataTransferJobsCommandInput,
|
|
112
|
+
ListMetadataTransferJobsCommandOutput,
|
|
113
|
+
} from "../commands/ListMetadataTransferJobsCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListPropertiesCommandInput,
|
|
116
|
+
ListPropertiesCommandOutput,
|
|
117
|
+
} from "../commands/ListPropertiesCommand";
|
|
94
118
|
import {
|
|
95
119
|
ListScenesCommandInput,
|
|
96
120
|
ListScenesCommandOutput,
|
|
@@ -143,6 +167,10 @@ export declare const se_BatchPutPropertyValuesCommand: (
|
|
|
143
167
|
input: BatchPutPropertyValuesCommandInput,
|
|
144
168
|
context: __SerdeContext
|
|
145
169
|
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const se_CancelMetadataTransferJobCommand: (
|
|
171
|
+
input: CancelMetadataTransferJobCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
146
174
|
export declare const se_CreateComponentTypeCommand: (
|
|
147
175
|
input: CreateComponentTypeCommandInput,
|
|
148
176
|
context: __SerdeContext
|
|
@@ -151,6 +179,10 @@ export declare const se_CreateEntityCommand: (
|
|
|
151
179
|
input: CreateEntityCommandInput,
|
|
152
180
|
context: __SerdeContext
|
|
153
181
|
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const se_CreateMetadataTransferJobCommand: (
|
|
183
|
+
input: CreateMetadataTransferJobCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
154
186
|
export declare const se_CreateSceneCommand: (
|
|
155
187
|
input: CreateSceneCommandInput,
|
|
156
188
|
context: __SerdeContext
|
|
@@ -195,6 +227,10 @@ export declare const se_GetEntityCommand: (
|
|
|
195
227
|
input: GetEntityCommandInput,
|
|
196
228
|
context: __SerdeContext
|
|
197
229
|
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const se_GetMetadataTransferJobCommand: (
|
|
231
|
+
input: GetMetadataTransferJobCommandInput,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<__HttpRequest>;
|
|
198
234
|
export declare const se_GetPricingPlanCommand: (
|
|
199
235
|
input: GetPricingPlanCommandInput,
|
|
200
236
|
context: __SerdeContext
|
|
@@ -219,6 +255,10 @@ export declare const se_GetWorkspaceCommand: (
|
|
|
219
255
|
input: GetWorkspaceCommandInput,
|
|
220
256
|
context: __SerdeContext
|
|
221
257
|
) => Promise<__HttpRequest>;
|
|
258
|
+
export declare const se_ListComponentsCommand: (
|
|
259
|
+
input: ListComponentsCommandInput,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<__HttpRequest>;
|
|
222
262
|
export declare const se_ListComponentTypesCommand: (
|
|
223
263
|
input: ListComponentTypesCommandInput,
|
|
224
264
|
context: __SerdeContext
|
|
@@ -227,6 +267,14 @@ export declare const se_ListEntitiesCommand: (
|
|
|
227
267
|
input: ListEntitiesCommandInput,
|
|
228
268
|
context: __SerdeContext
|
|
229
269
|
) => Promise<__HttpRequest>;
|
|
270
|
+
export declare const se_ListMetadataTransferJobsCommand: (
|
|
271
|
+
input: ListMetadataTransferJobsCommandInput,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<__HttpRequest>;
|
|
274
|
+
export declare const se_ListPropertiesCommand: (
|
|
275
|
+
input: ListPropertiesCommandInput,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<__HttpRequest>;
|
|
230
278
|
export declare const se_ListScenesCommand: (
|
|
231
279
|
input: ListScenesCommandInput,
|
|
232
280
|
context: __SerdeContext
|
|
@@ -279,6 +327,10 @@ export declare const de_BatchPutPropertyValuesCommand: (
|
|
|
279
327
|
output: __HttpResponse,
|
|
280
328
|
context: __SerdeContext
|
|
281
329
|
) => Promise<BatchPutPropertyValuesCommandOutput>;
|
|
330
|
+
export declare const de_CancelMetadataTransferJobCommand: (
|
|
331
|
+
output: __HttpResponse,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<CancelMetadataTransferJobCommandOutput>;
|
|
282
334
|
export declare const de_CreateComponentTypeCommand: (
|
|
283
335
|
output: __HttpResponse,
|
|
284
336
|
context: __SerdeContext
|
|
@@ -287,6 +339,10 @@ export declare const de_CreateEntityCommand: (
|
|
|
287
339
|
output: __HttpResponse,
|
|
288
340
|
context: __SerdeContext
|
|
289
341
|
) => Promise<CreateEntityCommandOutput>;
|
|
342
|
+
export declare const de_CreateMetadataTransferJobCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<CreateMetadataTransferJobCommandOutput>;
|
|
290
346
|
export declare const de_CreateSceneCommand: (
|
|
291
347
|
output: __HttpResponse,
|
|
292
348
|
context: __SerdeContext
|
|
@@ -331,6 +387,10 @@ export declare const de_GetEntityCommand: (
|
|
|
331
387
|
output: __HttpResponse,
|
|
332
388
|
context: __SerdeContext
|
|
333
389
|
) => Promise<GetEntityCommandOutput>;
|
|
390
|
+
export declare const de_GetMetadataTransferJobCommand: (
|
|
391
|
+
output: __HttpResponse,
|
|
392
|
+
context: __SerdeContext
|
|
393
|
+
) => Promise<GetMetadataTransferJobCommandOutput>;
|
|
334
394
|
export declare const de_GetPricingPlanCommand: (
|
|
335
395
|
output: __HttpResponse,
|
|
336
396
|
context: __SerdeContext
|
|
@@ -355,6 +415,10 @@ export declare const de_GetWorkspaceCommand: (
|
|
|
355
415
|
output: __HttpResponse,
|
|
356
416
|
context: __SerdeContext
|
|
357
417
|
) => Promise<GetWorkspaceCommandOutput>;
|
|
418
|
+
export declare const de_ListComponentsCommand: (
|
|
419
|
+
output: __HttpResponse,
|
|
420
|
+
context: __SerdeContext
|
|
421
|
+
) => Promise<ListComponentsCommandOutput>;
|
|
358
422
|
export declare const de_ListComponentTypesCommand: (
|
|
359
423
|
output: __HttpResponse,
|
|
360
424
|
context: __SerdeContext
|
|
@@ -363,6 +427,14 @@ export declare const de_ListEntitiesCommand: (
|
|
|
363
427
|
output: __HttpResponse,
|
|
364
428
|
context: __SerdeContext
|
|
365
429
|
) => Promise<ListEntitiesCommandOutput>;
|
|
430
|
+
export declare const de_ListMetadataTransferJobsCommand: (
|
|
431
|
+
output: __HttpResponse,
|
|
432
|
+
context: __SerdeContext
|
|
433
|
+
) => Promise<ListMetadataTransferJobsCommandOutput>;
|
|
434
|
+
export declare const de_ListPropertiesCommand: (
|
|
435
|
+
output: __HttpResponse,
|
|
436
|
+
context: __SerdeContext
|
|
437
|
+
) => Promise<ListPropertiesCommandOutput>;
|
|
366
438
|
export declare const de_ListScenesCommand: (
|
|
367
439
|
output: __HttpResponse,
|
|
368
440
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iottwinmaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iottwinmaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.456.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,7 +21,7 @@
|
|
|
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.454.0",
|
|
25
25
|
"@aws-sdk/core": "3.451.0",
|
|
26
26
|
"@aws-sdk/credential-provider-node": "3.451.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.451.0",
|