@aws-sdk/client-iottwinmaker 3.454.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.
Files changed (76) hide show
  1. package/README.md +49 -2
  2. package/dist-cjs/IoTTwinMaker.js +12 -0
  3. package/dist-cjs/commands/CancelMetadataTransferJobCommand.js +51 -0
  4. package/dist-cjs/commands/CreateMetadataTransferJobCommand.js +51 -0
  5. package/dist-cjs/commands/GetMetadataTransferJobCommand.js +51 -0
  6. package/dist-cjs/commands/ListComponentsCommand.js +51 -0
  7. package/dist-cjs/commands/ListMetadataTransferJobsCommand.js +51 -0
  8. package/dist-cjs/commands/ListPropertiesCommand.js +51 -0
  9. package/dist-cjs/commands/index.js +6 -0
  10. package/dist-cjs/models/models_0.js +60 -8
  11. package/dist-cjs/pagination/ListComponentsPaginator.js +29 -0
  12. package/dist-cjs/pagination/ListMetadataTransferJobsPaginator.js +29 -0
  13. package/dist-cjs/pagination/ListPropertiesPaginator.js +29 -0
  14. package/dist-cjs/pagination/index.js +3 -0
  15. package/dist-cjs/protocols/Aws_restJson1.js +570 -3
  16. package/dist-es/IoTTwinMaker.js +12 -0
  17. package/dist-es/commands/CancelMetadataTransferJobCommand.js +47 -0
  18. package/dist-es/commands/CreateMetadataTransferJobCommand.js +47 -0
  19. package/dist-es/commands/GetMetadataTransferJobCommand.js +47 -0
  20. package/dist-es/commands/ListComponentsCommand.js +47 -0
  21. package/dist-es/commands/ListMetadataTransferJobsCommand.js +47 -0
  22. package/dist-es/commands/ListPropertiesCommand.js +47 -0
  23. package/dist-es/commands/index.js +6 -0
  24. package/dist-es/models/models_0.js +59 -7
  25. package/dist-es/pagination/ListComponentsPaginator.js +25 -0
  26. package/dist-es/pagination/ListMetadataTransferJobsPaginator.js +25 -0
  27. package/dist-es/pagination/ListPropertiesPaginator.js +25 -0
  28. package/dist-es/pagination/index.js +3 -0
  29. package/dist-es/protocols/Aws_restJson1.js +556 -1
  30. package/dist-types/IoTTwinMaker.d.ts +43 -2
  31. package/dist-types/IoTTwinMakerClient.d.ts +9 -4
  32. package/dist-types/commands/BatchPutPropertyValuesCommand.d.ts +2 -0
  33. package/dist-types/commands/CancelMetadataTransferJobCommand.d.ts +107 -0
  34. package/dist-types/commands/CreateComponentTypeCommand.d.ts +5 -0
  35. package/dist-types/commands/CreateEntityCommand.d.ts +32 -0
  36. package/dist-types/commands/CreateMetadataTransferJobCommand.d.ts +153 -0
  37. package/dist-types/commands/CreateWorkspaceCommand.d.ts +2 -2
  38. package/dist-types/commands/DeleteWorkspaceCommand.d.ts +3 -1
  39. package/dist-types/commands/ExecuteQueryCommand.d.ts +4 -0
  40. package/dist-types/commands/GetComponentTypeCommand.d.ts +6 -0
  41. package/dist-types/commands/GetEntityCommand.d.ts +24 -0
  42. package/dist-types/commands/GetMetadataTransferJobCommand.d.ts +156 -0
  43. package/dist-types/commands/GetPropertyValueCommand.d.ts +2 -0
  44. package/dist-types/commands/GetPropertyValueHistoryCommand.d.ts +2 -0
  45. package/dist-types/commands/GetWorkspaceCommand.d.ts +5 -2
  46. package/dist-types/commands/ListComponentsCommand.d.ts +118 -0
  47. package/dist-types/commands/ListMetadataTransferJobsCommand.d.ts +116 -0
  48. package/dist-types/commands/ListPropertiesCommand.d.ts +167 -0
  49. package/dist-types/commands/ListWorkspacesCommand.d.ts +3 -0
  50. package/dist-types/commands/UpdateComponentTypeCommand.d.ts +5 -0
  51. package/dist-types/commands/UpdateEntityCommand.d.ts +33 -0
  52. package/dist-types/commands/UpdateWorkspaceCommand.d.ts +1 -0
  53. package/dist-types/commands/index.d.ts +6 -0
  54. package/dist-types/index.d.ts +1 -2
  55. package/dist-types/models/models_0.d.ts +1118 -143
  56. package/dist-types/pagination/ListComponentsPaginator.d.ts +7 -0
  57. package/dist-types/pagination/ListMetadataTransferJobsPaginator.d.ts +7 -0
  58. package/dist-types/pagination/ListPropertiesPaginator.d.ts +7 -0
  59. package/dist-types/pagination/index.d.ts +3 -0
  60. package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
  61. package/dist-types/ts3.4/IoTTwinMaker.d.ts +102 -0
  62. package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +36 -0
  63. package/dist-types/ts3.4/commands/CancelMetadataTransferJobCommand.d.ts +42 -0
  64. package/dist-types/ts3.4/commands/CreateMetadataTransferJobCommand.d.ts +42 -0
  65. package/dist-types/ts3.4/commands/GetMetadataTransferJobCommand.d.ts +42 -0
  66. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +38 -0
  67. package/dist-types/ts3.4/commands/ListMetadataTransferJobsCommand.d.ts +42 -0
  68. package/dist-types/ts3.4/commands/ListPropertiesCommand.d.ts +38 -0
  69. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  70. package/dist-types/ts3.4/models/models_0.d.ts +329 -24
  71. package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -0
  72. package/dist-types/ts3.4/pagination/ListMetadataTransferJobsPaginator.d.ts +11 -0
  73. package/dist-types/ts3.4/pagination/ListPropertiesPaginator.d.ts +11 -0
  74. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  75. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
  76. package/package.json +1 -1
@@ -1,7 +1,9 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
2
  import { BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput } from "./commands/BatchPutPropertyValuesCommand";
3
+ import { CancelMetadataTransferJobCommandInput, CancelMetadataTransferJobCommandOutput } from "./commands/CancelMetadataTransferJobCommand";
3
4
  import { CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput } from "./commands/CreateComponentTypeCommand";
4
5
  import { CreateEntityCommandInput, CreateEntityCommandOutput } from "./commands/CreateEntityCommand";
6
+ import { CreateMetadataTransferJobCommandInput, CreateMetadataTransferJobCommandOutput } from "./commands/CreateMetadataTransferJobCommand";
5
7
  import { CreateSceneCommandInput, CreateSceneCommandOutput } from "./commands/CreateSceneCommand";
6
8
  import { CreateSyncJobCommandInput, CreateSyncJobCommandOutput } from "./commands/CreateSyncJobCommand";
7
9
  import { CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput } from "./commands/CreateWorkspaceCommand";
@@ -13,14 +15,18 @@ import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "./com
13
15
  import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "./commands/ExecuteQueryCommand";
14
16
  import { GetComponentTypeCommandInput, GetComponentTypeCommandOutput } from "./commands/GetComponentTypeCommand";
15
17
  import { GetEntityCommandInput, GetEntityCommandOutput } from "./commands/GetEntityCommand";
18
+ import { GetMetadataTransferJobCommandInput, GetMetadataTransferJobCommandOutput } from "./commands/GetMetadataTransferJobCommand";
16
19
  import { GetPricingPlanCommandInput, GetPricingPlanCommandOutput } from "./commands/GetPricingPlanCommand";
17
20
  import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "./commands/GetPropertyValueCommand";
18
21
  import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "./commands/GetPropertyValueHistoryCommand";
19
22
  import { GetSceneCommandInput, GetSceneCommandOutput } from "./commands/GetSceneCommand";
20
23
  import { GetSyncJobCommandInput, GetSyncJobCommandOutput } from "./commands/GetSyncJobCommand";
21
24
  import { GetWorkspaceCommandInput, GetWorkspaceCommandOutput } from "./commands/GetWorkspaceCommand";
25
+ import { ListComponentsCommandInput, ListComponentsCommandOutput } from "./commands/ListComponentsCommand";
22
26
  import { ListComponentTypesCommandInput, ListComponentTypesCommandOutput } from "./commands/ListComponentTypesCommand";
23
27
  import { ListEntitiesCommandInput, ListEntitiesCommandOutput } from "./commands/ListEntitiesCommand";
28
+ import { ListMetadataTransferJobsCommandInput, ListMetadataTransferJobsCommandOutput } from "./commands/ListMetadataTransferJobsCommand";
29
+ import { ListPropertiesCommandInput, ListPropertiesCommandOutput } from "./commands/ListPropertiesCommand";
24
30
  import { ListScenesCommandInput, ListScenesCommandOutput } from "./commands/ListScenesCommand";
25
31
  import { ListSyncJobsCommandInput, ListSyncJobsCommandOutput } from "./commands/ListSyncJobsCommand";
26
32
  import { ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput } from "./commands/ListSyncResourcesCommand";
@@ -41,6 +47,12 @@ export interface IoTTwinMaker {
41
47
  batchPutPropertyValues(args: BatchPutPropertyValuesCommandInput, options?: __HttpHandlerOptions): Promise<BatchPutPropertyValuesCommandOutput>;
42
48
  batchPutPropertyValues(args: BatchPutPropertyValuesCommandInput, cb: (err: any, data?: BatchPutPropertyValuesCommandOutput) => void): void;
43
49
  batchPutPropertyValues(args: BatchPutPropertyValuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchPutPropertyValuesCommandOutput) => void): void;
50
+ /**
51
+ * @see {@link CancelMetadataTransferJobCommand}
52
+ */
53
+ cancelMetadataTransferJob(args: CancelMetadataTransferJobCommandInput, options?: __HttpHandlerOptions): Promise<CancelMetadataTransferJobCommandOutput>;
54
+ cancelMetadataTransferJob(args: CancelMetadataTransferJobCommandInput, cb: (err: any, data?: CancelMetadataTransferJobCommandOutput) => void): void;
55
+ cancelMetadataTransferJob(args: CancelMetadataTransferJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelMetadataTransferJobCommandOutput) => void): void;
44
56
  /**
45
57
  * @see {@link CreateComponentTypeCommand}
46
58
  */
@@ -53,6 +65,12 @@ export interface IoTTwinMaker {
53
65
  createEntity(args: CreateEntityCommandInput, options?: __HttpHandlerOptions): Promise<CreateEntityCommandOutput>;
54
66
  createEntity(args: CreateEntityCommandInput, cb: (err: any, data?: CreateEntityCommandOutput) => void): void;
55
67
  createEntity(args: CreateEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEntityCommandOutput) => void): void;
68
+ /**
69
+ * @see {@link CreateMetadataTransferJobCommand}
70
+ */
71
+ createMetadataTransferJob(args: CreateMetadataTransferJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateMetadataTransferJobCommandOutput>;
72
+ createMetadataTransferJob(args: CreateMetadataTransferJobCommandInput, cb: (err: any, data?: CreateMetadataTransferJobCommandOutput) => void): void;
73
+ createMetadataTransferJob(args: CreateMetadataTransferJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMetadataTransferJobCommandOutput) => void): void;
56
74
  /**
57
75
  * @see {@link CreateSceneCommand}
58
76
  */
@@ -119,6 +137,12 @@ export interface IoTTwinMaker {
119
137
  getEntity(args: GetEntityCommandInput, options?: __HttpHandlerOptions): Promise<GetEntityCommandOutput>;
120
138
  getEntity(args: GetEntityCommandInput, cb: (err: any, data?: GetEntityCommandOutput) => void): void;
121
139
  getEntity(args: GetEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEntityCommandOutput) => void): void;
140
+ /**
141
+ * @see {@link GetMetadataTransferJobCommand}
142
+ */
143
+ getMetadataTransferJob(args: GetMetadataTransferJobCommandInput, options?: __HttpHandlerOptions): Promise<GetMetadataTransferJobCommandOutput>;
144
+ getMetadataTransferJob(args: GetMetadataTransferJobCommandInput, cb: (err: any, data?: GetMetadataTransferJobCommandOutput) => void): void;
145
+ getMetadataTransferJob(args: GetMetadataTransferJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMetadataTransferJobCommandOutput) => void): void;
122
146
  /**
123
147
  * @see {@link GetPricingPlanCommand}
124
148
  */
@@ -155,6 +179,12 @@ export interface IoTTwinMaker {
155
179
  getWorkspace(args: GetWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkspaceCommandOutput>;
156
180
  getWorkspace(args: GetWorkspaceCommandInput, cb: (err: any, data?: GetWorkspaceCommandOutput) => void): void;
157
181
  getWorkspace(args: GetWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkspaceCommandOutput) => void): void;
182
+ /**
183
+ * @see {@link ListComponentsCommand}
184
+ */
185
+ listComponents(args: ListComponentsCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentsCommandOutput>;
186
+ listComponents(args: ListComponentsCommandInput, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
187
+ listComponents(args: ListComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
158
188
  /**
159
189
  * @see {@link ListComponentTypesCommand}
160
190
  */
@@ -167,6 +197,18 @@ export interface IoTTwinMaker {
167
197
  listEntities(args: ListEntitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListEntitiesCommandOutput>;
168
198
  listEntities(args: ListEntitiesCommandInput, cb: (err: any, data?: ListEntitiesCommandOutput) => void): void;
169
199
  listEntities(args: ListEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEntitiesCommandOutput) => void): void;
200
+ /**
201
+ * @see {@link ListMetadataTransferJobsCommand}
202
+ */
203
+ listMetadataTransferJobs(args: ListMetadataTransferJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListMetadataTransferJobsCommandOutput>;
204
+ listMetadataTransferJobs(args: ListMetadataTransferJobsCommandInput, cb: (err: any, data?: ListMetadataTransferJobsCommandOutput) => void): void;
205
+ listMetadataTransferJobs(args: ListMetadataTransferJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMetadataTransferJobsCommandOutput) => void): void;
206
+ /**
207
+ * @see {@link ListPropertiesCommand}
208
+ */
209
+ listProperties(args: ListPropertiesCommandInput, options?: __HttpHandlerOptions): Promise<ListPropertiesCommandOutput>;
210
+ listProperties(args: ListPropertiesCommandInput, cb: (err: any, data?: ListPropertiesCommandOutput) => void): void;
211
+ listProperties(args: ListPropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPropertiesCommandOutput) => void): void;
170
212
  /**
171
213
  * @see {@link ListScenesCommand}
172
214
  */
@@ -242,8 +284,7 @@ export interface IoTTwinMaker {
242
284
  }
243
285
  /**
244
286
  * @public
245
- * <p>IoT TwinMaker is a service with which you
246
- * can
287
+ * <p>IoT TwinMaker is a service with which you can
247
288
  * build operational digital twins of physical systems. IoT TwinMaker overlays measurements
248
289
  * and analysis from real-world sensors, cameras, and enterprise applications so you can
249
290
  * create data visualizations to monitor your physical factory, building, or industrial plant.
@@ -9,8 +9,10 @@ import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
9
9
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
10
10
  import { BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
11
11
  import { BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput } from "./commands/BatchPutPropertyValuesCommand";
12
+ import { CancelMetadataTransferJobCommandInput, CancelMetadataTransferJobCommandOutput } from "./commands/CancelMetadataTransferJobCommand";
12
13
  import { CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput } from "./commands/CreateComponentTypeCommand";
13
14
  import { CreateEntityCommandInput, CreateEntityCommandOutput } from "./commands/CreateEntityCommand";
15
+ import { CreateMetadataTransferJobCommandInput, CreateMetadataTransferJobCommandOutput } from "./commands/CreateMetadataTransferJobCommand";
14
16
  import { CreateSceneCommandInput, CreateSceneCommandOutput } from "./commands/CreateSceneCommand";
15
17
  import { CreateSyncJobCommandInput, CreateSyncJobCommandOutput } from "./commands/CreateSyncJobCommand";
16
18
  import { CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput } from "./commands/CreateWorkspaceCommand";
@@ -22,14 +24,18 @@ import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "./com
22
24
  import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "./commands/ExecuteQueryCommand";
23
25
  import { GetComponentTypeCommandInput, GetComponentTypeCommandOutput } from "./commands/GetComponentTypeCommand";
24
26
  import { GetEntityCommandInput, GetEntityCommandOutput } from "./commands/GetEntityCommand";
27
+ import { GetMetadataTransferJobCommandInput, GetMetadataTransferJobCommandOutput } from "./commands/GetMetadataTransferJobCommand";
25
28
  import { GetPricingPlanCommandInput, GetPricingPlanCommandOutput } from "./commands/GetPricingPlanCommand";
26
29
  import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "./commands/GetPropertyValueCommand";
27
30
  import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "./commands/GetPropertyValueHistoryCommand";
28
31
  import { GetSceneCommandInput, GetSceneCommandOutput } from "./commands/GetSceneCommand";
29
32
  import { GetSyncJobCommandInput, GetSyncJobCommandOutput } from "./commands/GetSyncJobCommand";
30
33
  import { GetWorkspaceCommandInput, GetWorkspaceCommandOutput } from "./commands/GetWorkspaceCommand";
34
+ import { ListComponentsCommandInput, ListComponentsCommandOutput } from "./commands/ListComponentsCommand";
31
35
  import { ListComponentTypesCommandInput, ListComponentTypesCommandOutput } from "./commands/ListComponentTypesCommand";
32
36
  import { ListEntitiesCommandInput, ListEntitiesCommandOutput } from "./commands/ListEntitiesCommand";
37
+ import { ListMetadataTransferJobsCommandInput, ListMetadataTransferJobsCommandOutput } from "./commands/ListMetadataTransferJobsCommand";
38
+ import { ListPropertiesCommandInput, ListPropertiesCommandOutput } from "./commands/ListPropertiesCommand";
33
39
  import { ListScenesCommandInput, ListScenesCommandOutput } from "./commands/ListScenesCommand";
34
40
  import { ListSyncJobsCommandInput, ListSyncJobsCommandOutput } from "./commands/ListSyncJobsCommand";
35
41
  import { ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput } from "./commands/ListSyncResourcesCommand";
@@ -48,11 +54,11 @@ export { __Client };
48
54
  /**
49
55
  * @public
50
56
  */
51
- export type ServiceInputTypes = BatchPutPropertyValuesCommandInput | CreateComponentTypeCommandInput | CreateEntityCommandInput | CreateSceneCommandInput | CreateSyncJobCommandInput | CreateWorkspaceCommandInput | DeleteComponentTypeCommandInput | DeleteEntityCommandInput | DeleteSceneCommandInput | DeleteSyncJobCommandInput | DeleteWorkspaceCommandInput | ExecuteQueryCommandInput | GetComponentTypeCommandInput | GetEntityCommandInput | GetPricingPlanCommandInput | GetPropertyValueCommandInput | GetPropertyValueHistoryCommandInput | GetSceneCommandInput | GetSyncJobCommandInput | GetWorkspaceCommandInput | ListComponentTypesCommandInput | ListEntitiesCommandInput | ListScenesCommandInput | ListSyncJobsCommandInput | ListSyncResourcesCommandInput | ListTagsForResourceCommandInput | ListWorkspacesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateComponentTypeCommandInput | UpdateEntityCommandInput | UpdatePricingPlanCommandInput | UpdateSceneCommandInput | UpdateWorkspaceCommandInput;
57
+ export type ServiceInputTypes = BatchPutPropertyValuesCommandInput | CancelMetadataTransferJobCommandInput | CreateComponentTypeCommandInput | CreateEntityCommandInput | CreateMetadataTransferJobCommandInput | CreateSceneCommandInput | CreateSyncJobCommandInput | CreateWorkspaceCommandInput | DeleteComponentTypeCommandInput | DeleteEntityCommandInput | DeleteSceneCommandInput | DeleteSyncJobCommandInput | DeleteWorkspaceCommandInput | ExecuteQueryCommandInput | GetComponentTypeCommandInput | GetEntityCommandInput | GetMetadataTransferJobCommandInput | GetPricingPlanCommandInput | GetPropertyValueCommandInput | GetPropertyValueHistoryCommandInput | GetSceneCommandInput | GetSyncJobCommandInput | GetWorkspaceCommandInput | ListComponentTypesCommandInput | ListComponentsCommandInput | ListEntitiesCommandInput | ListMetadataTransferJobsCommandInput | ListPropertiesCommandInput | ListScenesCommandInput | ListSyncJobsCommandInput | ListSyncResourcesCommandInput | ListTagsForResourceCommandInput | ListWorkspacesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateComponentTypeCommandInput | UpdateEntityCommandInput | UpdatePricingPlanCommandInput | UpdateSceneCommandInput | UpdateWorkspaceCommandInput;
52
58
  /**
53
59
  * @public
54
60
  */
55
- export type ServiceOutputTypes = BatchPutPropertyValuesCommandOutput | CreateComponentTypeCommandOutput | CreateEntityCommandOutput | CreateSceneCommandOutput | CreateSyncJobCommandOutput | CreateWorkspaceCommandOutput | DeleteComponentTypeCommandOutput | DeleteEntityCommandOutput | DeleteSceneCommandOutput | DeleteSyncJobCommandOutput | DeleteWorkspaceCommandOutput | ExecuteQueryCommandOutput | GetComponentTypeCommandOutput | GetEntityCommandOutput | GetPricingPlanCommandOutput | GetPropertyValueCommandOutput | GetPropertyValueHistoryCommandOutput | GetSceneCommandOutput | GetSyncJobCommandOutput | GetWorkspaceCommandOutput | ListComponentTypesCommandOutput | ListEntitiesCommandOutput | ListScenesCommandOutput | ListSyncJobsCommandOutput | ListSyncResourcesCommandOutput | ListTagsForResourceCommandOutput | ListWorkspacesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateComponentTypeCommandOutput | UpdateEntityCommandOutput | UpdatePricingPlanCommandOutput | UpdateSceneCommandOutput | UpdateWorkspaceCommandOutput;
61
+ export type ServiceOutputTypes = BatchPutPropertyValuesCommandOutput | CancelMetadataTransferJobCommandOutput | CreateComponentTypeCommandOutput | CreateEntityCommandOutput | CreateMetadataTransferJobCommandOutput | CreateSceneCommandOutput | CreateSyncJobCommandOutput | CreateWorkspaceCommandOutput | DeleteComponentTypeCommandOutput | DeleteEntityCommandOutput | DeleteSceneCommandOutput | DeleteSyncJobCommandOutput | DeleteWorkspaceCommandOutput | ExecuteQueryCommandOutput | GetComponentTypeCommandOutput | GetEntityCommandOutput | GetMetadataTransferJobCommandOutput | GetPricingPlanCommandOutput | GetPropertyValueCommandOutput | GetPropertyValueHistoryCommandOutput | GetSceneCommandOutput | GetSyncJobCommandOutput | GetWorkspaceCommandOutput | ListComponentTypesCommandOutput | ListComponentsCommandOutput | ListEntitiesCommandOutput | ListMetadataTransferJobsCommandOutput | ListPropertiesCommandOutput | ListScenesCommandOutput | ListSyncJobsCommandOutput | ListSyncResourcesCommandOutput | ListTagsForResourceCommandOutput | ListWorkspacesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateComponentTypeCommandOutput | UpdateEntityCommandOutput | UpdatePricingPlanCommandOutput | UpdateSceneCommandOutput | UpdateWorkspaceCommandOutput;
56
62
  /**
57
63
  * @public
58
64
  */
@@ -186,8 +192,7 @@ export interface IoTTwinMakerClientResolvedConfig extends IoTTwinMakerClientReso
186
192
  }
187
193
  /**
188
194
  * @public
189
- * <p>IoT TwinMaker is a service with which you
190
- * can
195
+ * <p>IoT TwinMaker is a service with which you can
191
196
  * build operational digital twins of physical systems. IoT TwinMaker overlays measurements
192
197
  * and analysis from real-world sensors, cameras, and enterprise applications so you can
193
198
  * create data visualizations to monitor your physical factory, building, or industrial plant.
@@ -36,6 +36,7 @@ export interface BatchPutPropertyValuesCommandOutput extends BatchPutPropertyVal
36
36
  * { // PropertyValueEntry
37
37
  * entityPropertyReference: { // EntityPropertyReference
38
38
  * componentName: "STRING_VALUE",
39
+ * componentPath: "STRING_VALUE",
39
40
  * externalIdProperty: { // ExternalIdProperty
40
41
  * "<keys>": "STRING_VALUE",
41
42
  * },
@@ -98,6 +99,7 @@ export interface BatchPutPropertyValuesCommandOutput extends BatchPutPropertyVal
98
99
  * // entry: { // PropertyValueEntry
99
100
  * // entityPropertyReference: { // EntityPropertyReference
100
101
  * // componentName: "STRING_VALUE",
102
+ * // componentPath: "STRING_VALUE",
101
103
  * // externalIdProperty: { // ExternalIdProperty
102
104
  * // "<keys>": "STRING_VALUE",
103
105
  * // },
@@ -0,0 +1,107 @@
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 { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
+ import { CancelMetadataTransferJobRequest, CancelMetadataTransferJobResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CancelMetadataTransferJobCommand}.
14
+ */
15
+ export interface CancelMetadataTransferJobCommandInput extends CancelMetadataTransferJobRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CancelMetadataTransferJobCommand}.
21
+ */
22
+ export interface CancelMetadataTransferJobCommandOutput extends CancelMetadataTransferJobResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Cancels the metadata transfer job.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { IoTTwinMakerClient, CancelMetadataTransferJobCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
31
+ * // const { IoTTwinMakerClient, CancelMetadataTransferJobCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
32
+ * const client = new IoTTwinMakerClient(config);
33
+ * const input = { // CancelMetadataTransferJobRequest
34
+ * metadataTransferJobId: "STRING_VALUE", // required
35
+ * };
36
+ * const command = new CancelMetadataTransferJobCommand(input);
37
+ * const response = await client.send(command);
38
+ * // { // CancelMetadataTransferJobResponse
39
+ * // metadataTransferJobId: "STRING_VALUE", // required
40
+ * // arn: "STRING_VALUE", // required
41
+ * // updateDateTime: new Date("TIMESTAMP"), // required
42
+ * // status: { // MetadataTransferJobStatus
43
+ * // state: "STRING_VALUE",
44
+ * // error: { // ErrorDetails
45
+ * // code: "STRING_VALUE",
46
+ * // message: "STRING_VALUE",
47
+ * // },
48
+ * // queuedPosition: Number("int"),
49
+ * // },
50
+ * // progress: { // MetadataTransferJobProgress
51
+ * // totalCount: Number("int"),
52
+ * // succeededCount: Number("int"),
53
+ * // skippedCount: Number("int"),
54
+ * // failedCount: Number("int"),
55
+ * // },
56
+ * // };
57
+ *
58
+ * ```
59
+ *
60
+ * @param CancelMetadataTransferJobCommandInput - {@link CancelMetadataTransferJobCommandInput}
61
+ * @returns {@link CancelMetadataTransferJobCommandOutput}
62
+ * @see {@link CancelMetadataTransferJobCommandInput} for command's `input` shape.
63
+ * @see {@link CancelMetadataTransferJobCommandOutput} for command's `response` shape.
64
+ * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
65
+ *
66
+ * @throws {@link AccessDeniedException} (client fault)
67
+ * <p>Access is denied.</p>
68
+ *
69
+ * @throws {@link ConflictException} (client fault)
70
+ * <p>A conflict occurred.</p>
71
+ *
72
+ * @throws {@link InternalServerException} (server fault)
73
+ * <p>An unexpected error has occurred.</p>
74
+ *
75
+ * @throws {@link ResourceNotFoundException} (client fault)
76
+ * <p>The resource wasn't found.</p>
77
+ *
78
+ * @throws {@link ThrottlingException} (client fault)
79
+ * <p>The rate exceeds the limit.</p>
80
+ *
81
+ * @throws {@link ValidationException} (client fault)
82
+ * <p>Failed</p>
83
+ *
84
+ * @throws {@link IoTTwinMakerServiceException}
85
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
86
+ *
87
+ */
88
+ export declare class CancelMetadataTransferJobCommand extends $Command<CancelMetadataTransferJobCommandInput, CancelMetadataTransferJobCommandOutput, IoTTwinMakerClientResolvedConfig> {
89
+ readonly input: CancelMetadataTransferJobCommandInput;
90
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
91
+ /**
92
+ * @public
93
+ */
94
+ constructor(input: CancelMetadataTransferJobCommandInput);
95
+ /**
96
+ * @internal
97
+ */
98
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelMetadataTransferJobCommandInput, CancelMetadataTransferJobCommandOutput>;
99
+ /**
100
+ * @internal
101
+ */
102
+ private serialize;
103
+ /**
104
+ * @internal
105
+ */
106
+ private deserialize;
107
+ }
@@ -130,6 +130,11 @@ export interface CreateComponentTypeCommandOutput extends CreateComponentTypeRes
130
130
  * },
131
131
  * },
132
132
  * componentTypeName: "STRING_VALUE",
133
+ * compositeComponentTypes: { // CompositeComponentTypesRequest
134
+ * "<keys>": { // CompositeComponentTypeRequest
135
+ * componentTypeId: "STRING_VALUE",
136
+ * },
137
+ * },
133
138
  * };
134
139
  * const command = new CreateComponentTypeCommand(input);
135
140
  * const response = await client.send(command);
@@ -120,6 +120,38 @@ export interface CreateEntityCommandOutput extends CreateEntityResponse, __Metad
120
120
  * },
121
121
  * },
122
122
  * },
123
+ * compositeComponents: { // CompositeComponentsMapRequest
124
+ * "<keys>": { // CompositeComponentRequest
125
+ * description: "STRING_VALUE",
126
+ * properties: {
127
+ * "<keys>": {
128
+ * definition: {
129
+ * dataType: "<DataType>",
130
+ * isRequiredInEntity: true || false,
131
+ * isExternalId: true || false,
132
+ * isStoredExternally: true || false,
133
+ * isTimeSeries: true || false,
134
+ * defaultValue: "<DataValue>",
135
+ * configuration: {
136
+ * "<keys>": "STRING_VALUE",
137
+ * },
138
+ * displayName: "STRING_VALUE",
139
+ * },
140
+ * value: "<DataValue>",
141
+ * updateType: "STRING_VALUE",
142
+ * },
143
+ * },
144
+ * propertyGroups: {
145
+ * "<keys>": {
146
+ * groupType: "STRING_VALUE",
147
+ * propertyNames: [
148
+ * "STRING_VALUE",
149
+ * ],
150
+ * updateType: "STRING_VALUE",
151
+ * },
152
+ * },
153
+ * },
154
+ * },
123
155
  * parentEntityId: "STRING_VALUE",
124
156
  * tags: { // TagMap
125
157
  * "<keys>": "STRING_VALUE",
@@ -0,0 +1,153 @@
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 { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
+ import { CreateMetadataTransferJobRequest, CreateMetadataTransferJobResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateMetadataTransferJobCommand}.
14
+ */
15
+ export interface CreateMetadataTransferJobCommandInput extends CreateMetadataTransferJobRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateMetadataTransferJobCommand}.
21
+ */
22
+ export interface CreateMetadataTransferJobCommandOutput extends CreateMetadataTransferJobResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Creates a new metadata transfer job.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { IoTTwinMakerClient, CreateMetadataTransferJobCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
31
+ * // const { IoTTwinMakerClient, CreateMetadataTransferJobCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
32
+ * const client = new IoTTwinMakerClient(config);
33
+ * const input = { // CreateMetadataTransferJobRequest
34
+ * metadataTransferJobId: "STRING_VALUE",
35
+ * description: "STRING_VALUE",
36
+ * sources: [ // SourceConfigurations // required
37
+ * { // SourceConfiguration
38
+ * type: "STRING_VALUE", // required
39
+ * s3Configuration: { // S3SourceConfiguration
40
+ * location: "STRING_VALUE", // required
41
+ * },
42
+ * iotSiteWiseConfiguration: { // IotSiteWiseSourceConfiguration
43
+ * filters: [ // IotSiteWiseSourceConfigurationFilters
44
+ * { // IotSiteWiseSourceConfigurationFilter Union: only one key present
45
+ * filterByAssetModel: { // FilterByAssetModel
46
+ * assetModelId: "STRING_VALUE",
47
+ * assetModelExternalId: "STRING_VALUE",
48
+ * includeOffspring: true || false,
49
+ * includeAssets: true || false,
50
+ * },
51
+ * filterByAsset: { // FilterByAsset
52
+ * assetId: "STRING_VALUE",
53
+ * assetExternalId: "STRING_VALUE",
54
+ * includeOffspring: true || false,
55
+ * includeAssetModel: true || false,
56
+ * },
57
+ * },
58
+ * ],
59
+ * },
60
+ * iotTwinMakerConfiguration: { // IotTwinMakerSourceConfiguration
61
+ * workspace: "STRING_VALUE", // required
62
+ * filters: [ // IotTwinMakerSourceConfigurationFilters
63
+ * { // IotTwinMakerSourceConfigurationFilter Union: only one key present
64
+ * filterByComponentType: { // FilterByComponentType
65
+ * componentTypeId: "STRING_VALUE", // required
66
+ * },
67
+ * filterByEntity: { // FilterByEntity
68
+ * entityId: "STRING_VALUE", // required
69
+ * },
70
+ * },
71
+ * ],
72
+ * },
73
+ * },
74
+ * ],
75
+ * destination: { // DestinationConfiguration
76
+ * type: "STRING_VALUE", // required
77
+ * s3Configuration: { // S3DestinationConfiguration
78
+ * location: "STRING_VALUE", // required
79
+ * },
80
+ * iotTwinMakerConfiguration: { // IotTwinMakerDestinationConfiguration
81
+ * workspace: "STRING_VALUE", // required
82
+ * },
83
+ * },
84
+ * };
85
+ * const command = new CreateMetadataTransferJobCommand(input);
86
+ * const response = await client.send(command);
87
+ * // { // CreateMetadataTransferJobResponse
88
+ * // metadataTransferJobId: "STRING_VALUE", // required
89
+ * // arn: "STRING_VALUE", // required
90
+ * // creationDateTime: new Date("TIMESTAMP"), // required
91
+ * // status: { // MetadataTransferJobStatus
92
+ * // state: "STRING_VALUE",
93
+ * // error: { // ErrorDetails
94
+ * // code: "STRING_VALUE",
95
+ * // message: "STRING_VALUE",
96
+ * // },
97
+ * // queuedPosition: Number("int"),
98
+ * // },
99
+ * // };
100
+ *
101
+ * ```
102
+ *
103
+ * @param CreateMetadataTransferJobCommandInput - {@link CreateMetadataTransferJobCommandInput}
104
+ * @returns {@link CreateMetadataTransferJobCommandOutput}
105
+ * @see {@link CreateMetadataTransferJobCommandInput} for command's `input` shape.
106
+ * @see {@link CreateMetadataTransferJobCommandOutput} for command's `response` shape.
107
+ * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
108
+ *
109
+ * @throws {@link AccessDeniedException} (client fault)
110
+ * <p>Access is denied.</p>
111
+ *
112
+ * @throws {@link ConflictException} (client fault)
113
+ * <p>A conflict occurred.</p>
114
+ *
115
+ * @throws {@link InternalServerException} (server fault)
116
+ * <p>An unexpected error has occurred.</p>
117
+ *
118
+ * @throws {@link ResourceNotFoundException} (client fault)
119
+ * <p>The resource wasn't found.</p>
120
+ *
121
+ * @throws {@link ServiceQuotaExceededException} (client fault)
122
+ * <p>The service quota was exceeded.</p>
123
+ *
124
+ * @throws {@link ThrottlingException} (client fault)
125
+ * <p>The rate exceeds the limit.</p>
126
+ *
127
+ * @throws {@link ValidationException} (client fault)
128
+ * <p>Failed</p>
129
+ *
130
+ * @throws {@link IoTTwinMakerServiceException}
131
+ * <p>Base exception class for all service exceptions from IoTTwinMaker service.</p>
132
+ *
133
+ */
134
+ export declare class CreateMetadataTransferJobCommand extends $Command<CreateMetadataTransferJobCommandInput, CreateMetadataTransferJobCommandOutput, IoTTwinMakerClientResolvedConfig> {
135
+ readonly input: CreateMetadataTransferJobCommandInput;
136
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
137
+ /**
138
+ * @public
139
+ */
140
+ constructor(input: CreateMetadataTransferJobCommandInput);
141
+ /**
142
+ * @internal
143
+ */
144
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMetadataTransferJobCommandInput, CreateMetadataTransferJobCommandOutput>;
145
+ /**
146
+ * @internal
147
+ */
148
+ private serialize;
149
+ /**
150
+ * @internal
151
+ */
152
+ private deserialize;
153
+ }
@@ -33,8 +33,8 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _
33
33
  * const input = { // CreateWorkspaceRequest
34
34
  * workspaceId: "STRING_VALUE", // required
35
35
  * description: "STRING_VALUE",
36
- * s3Location: "STRING_VALUE", // required
37
- * role: "STRING_VALUE", // required
36
+ * s3Location: "STRING_VALUE",
37
+ * role: "STRING_VALUE",
38
38
  * tags: { // TagMap
39
39
  * "<keys>": "STRING_VALUE",
40
40
  * },
@@ -35,7 +35,9 @@ export interface DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, _
35
35
  * };
36
36
  * const command = new DeleteWorkspaceCommand(input);
37
37
  * const response = await client.send(command);
38
- * // {};
38
+ * // { // DeleteWorkspaceResponse
39
+ * // message: "STRING_VALUE",
40
+ * // };
39
41
  *
40
42
  * ```
41
43
  *
@@ -25,6 +25,10 @@ export interface ExecuteQueryCommandOutput extends ExecuteQueryResponse, __Metad
25
25
  * @public
26
26
  * <p>Run queries to access information from your knowledge graph of entities within
27
27
  * individual workspaces.</p>
28
+ * <note>
29
+ * <p>The ExecuteQuery action only works with <a href="https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/home.html">Amazon Web Services Java SDK2</a>.
30
+ * ExecuteQuery will not work with any Amazon Web Services Java SDK version &lt; 2.x.</p>
31
+ * </note>
28
32
  * @example
29
33
  * Use a bare-bones client and the command you need to make an API call.
30
34
  * ```javascript
@@ -151,6 +151,12 @@ export interface GetComponentTypeCommandOutput extends GetComponentTypeResponse,
151
151
  * // },
152
152
  * // syncSource: "STRING_VALUE",
153
153
  * // componentTypeName: "STRING_VALUE",
154
+ * // compositeComponentTypes: { // CompositeComponentTypesResponse
155
+ * // "<keys>": { // CompositeComponentTypeResponse
156
+ * // componentTypeId: "STRING_VALUE",
157
+ * // isInherited: true || false,
158
+ * // },
159
+ * // },
154
160
  * // };
155
161
  *
156
162
  * ```
@@ -132,6 +132,7 @@ export interface GetEntityCommandOutput extends GetEntityResponse, __MetadataBea
132
132
  * // displayName: "STRING_VALUE",
133
133
  * // },
134
134
  * // value: "<DataValue>",
135
+ * // areAllPropertyValuesReturned: true || false,
135
136
  * // },
136
137
  * // },
137
138
  * // propertyGroups: { // ComponentPropertyGroupResponses
@@ -144,6 +145,28 @@ export interface GetEntityCommandOutput extends GetEntityResponse, __MetadataBea
144
145
  * // },
145
146
  * // },
146
147
  * // syncSource: "STRING_VALUE",
148
+ * // areAllPropertiesReturned: true || false,
149
+ * // compositeComponents: { // CompositeComponentResponse
150
+ * // "<keys>": { // ComponentSummary
151
+ * // componentName: "STRING_VALUE", // required
152
+ * // componentTypeId: "STRING_VALUE", // required
153
+ * // definedIn: "STRING_VALUE",
154
+ * // description: "STRING_VALUE",
155
+ * // propertyGroups: {
156
+ * // "<keys>": {
157
+ * // groupType: "STRING_VALUE", // required
158
+ * // propertyNames: [ // required
159
+ * // "STRING_VALUE",
160
+ * // ],
161
+ * // isInherited: true || false, // required
162
+ * // },
163
+ * // },
164
+ * // status: "<Status>", // required
165
+ * // syncSource: "STRING_VALUE",
166
+ * // componentPath: "STRING_VALUE",
167
+ * // },
168
+ * // },
169
+ * // areAllCompositeComponentsReturned: true || false,
147
170
  * // },
148
171
  * // },
149
172
  * // parentEntityId: "STRING_VALUE", // required
@@ -151,6 +174,7 @@ export interface GetEntityCommandOutput extends GetEntityResponse, __MetadataBea
151
174
  * // creationDateTime: new Date("TIMESTAMP"), // required
152
175
  * // updateDateTime: new Date("TIMESTAMP"), // required
153
176
  * // syncSource: "STRING_VALUE",
177
+ * // areAllComponentsReturned: true || false,
154
178
  * // };
155
179
  *
156
180
  * ```