@aws-sdk/client-iottwinmaker 3.312.0 → 3.316.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/IoTTwinMaker.js +38 -476
- package/dist-cjs/protocols/Aws_restJson1.js +652 -1355
- package/dist-es/IoTTwinMaker.js +38 -476
- package/dist-es/protocols/Aws_restJson1.js +606 -1309
- package/dist-types/IoTTwinMaker.d.ts +47 -86
- package/dist-types/ts3.4/IoTTwinMaker.d.ts +4 -1
- package/package.json +6 -6
|
@@ -34,260 +34,221 @@ import { UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput } from ".
|
|
|
34
34
|
import { UpdateSceneCommandInput, UpdateSceneCommandOutput } from "./commands/UpdateSceneCommand";
|
|
35
35
|
import { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput } from "./commands/UpdateWorkspaceCommand";
|
|
36
36
|
import { IoTTwinMakerClient } from "./IoTTwinMakerClient";
|
|
37
|
-
|
|
38
|
-
* @public
|
|
39
|
-
* <p>IoT TwinMaker is a service with which you
|
|
40
|
-
* can
|
|
41
|
-
* build operational digital twins of physical systems. IoT TwinMaker overlays measurements
|
|
42
|
-
* and analysis from real-world sensors, cameras, and enterprise applications so you can
|
|
43
|
-
* create data visualizations to monitor your physical factory, building, or industrial plant.
|
|
44
|
-
* You can use this real-world data to monitor operations and diagnose and repair
|
|
45
|
-
* errors.</p>
|
|
46
|
-
*/
|
|
47
|
-
export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
37
|
+
export interface IoTTwinMaker {
|
|
48
38
|
/**
|
|
49
|
-
* @
|
|
50
|
-
* <p>Sets values for multiple time series properties.</p>
|
|
39
|
+
* @see {@link BatchPutPropertyValuesCommand}
|
|
51
40
|
*/
|
|
52
41
|
batchPutPropertyValues(args: BatchPutPropertyValuesCommandInput, options?: __HttpHandlerOptions): Promise<BatchPutPropertyValuesCommandOutput>;
|
|
53
42
|
batchPutPropertyValues(args: BatchPutPropertyValuesCommandInput, cb: (err: any, data?: BatchPutPropertyValuesCommandOutput) => void): void;
|
|
54
43
|
batchPutPropertyValues(args: BatchPutPropertyValuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchPutPropertyValuesCommandOutput) => void): void;
|
|
55
44
|
/**
|
|
56
|
-
* @
|
|
57
|
-
* <p>Creates a component type.</p>
|
|
45
|
+
* @see {@link CreateComponentTypeCommand}
|
|
58
46
|
*/
|
|
59
47
|
createComponentType(args: CreateComponentTypeCommandInput, options?: __HttpHandlerOptions): Promise<CreateComponentTypeCommandOutput>;
|
|
60
48
|
createComponentType(args: CreateComponentTypeCommandInput, cb: (err: any, data?: CreateComponentTypeCommandOutput) => void): void;
|
|
61
49
|
createComponentType(args: CreateComponentTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateComponentTypeCommandOutput) => void): void;
|
|
62
50
|
/**
|
|
63
|
-
* @
|
|
64
|
-
* <p>Creates an entity.</p>
|
|
51
|
+
* @see {@link CreateEntityCommand}
|
|
65
52
|
*/
|
|
66
53
|
createEntity(args: CreateEntityCommandInput, options?: __HttpHandlerOptions): Promise<CreateEntityCommandOutput>;
|
|
67
54
|
createEntity(args: CreateEntityCommandInput, cb: (err: any, data?: CreateEntityCommandOutput) => void): void;
|
|
68
55
|
createEntity(args: CreateEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEntityCommandOutput) => void): void;
|
|
69
56
|
/**
|
|
70
|
-
* @
|
|
71
|
-
* <p>Creates a scene.</p>
|
|
57
|
+
* @see {@link CreateSceneCommand}
|
|
72
58
|
*/
|
|
73
59
|
createScene(args: CreateSceneCommandInput, options?: __HttpHandlerOptions): Promise<CreateSceneCommandOutput>;
|
|
74
60
|
createScene(args: CreateSceneCommandInput, cb: (err: any, data?: CreateSceneCommandOutput) => void): void;
|
|
75
61
|
createScene(args: CreateSceneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSceneCommandOutput) => void): void;
|
|
76
62
|
/**
|
|
77
|
-
* @
|
|
78
|
-
* <p>This action creates a SyncJob.</p>
|
|
63
|
+
* @see {@link CreateSyncJobCommand}
|
|
79
64
|
*/
|
|
80
65
|
createSyncJob(args: CreateSyncJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateSyncJobCommandOutput>;
|
|
81
66
|
createSyncJob(args: CreateSyncJobCommandInput, cb: (err: any, data?: CreateSyncJobCommandOutput) => void): void;
|
|
82
67
|
createSyncJob(args: CreateSyncJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSyncJobCommandOutput) => void): void;
|
|
83
68
|
/**
|
|
84
|
-
* @
|
|
85
|
-
* <p>Creates a workplace.</p>
|
|
69
|
+
* @see {@link CreateWorkspaceCommand}
|
|
86
70
|
*/
|
|
87
71
|
createWorkspace(args: CreateWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkspaceCommandOutput>;
|
|
88
72
|
createWorkspace(args: CreateWorkspaceCommandInput, cb: (err: any, data?: CreateWorkspaceCommandOutput) => void): void;
|
|
89
73
|
createWorkspace(args: CreateWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkspaceCommandOutput) => void): void;
|
|
90
74
|
/**
|
|
91
|
-
* @
|
|
92
|
-
* <p>Deletes a component type.</p>
|
|
75
|
+
* @see {@link DeleteComponentTypeCommand}
|
|
93
76
|
*/
|
|
94
77
|
deleteComponentType(args: DeleteComponentTypeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteComponentTypeCommandOutput>;
|
|
95
78
|
deleteComponentType(args: DeleteComponentTypeCommandInput, cb: (err: any, data?: DeleteComponentTypeCommandOutput) => void): void;
|
|
96
79
|
deleteComponentType(args: DeleteComponentTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteComponentTypeCommandOutput) => void): void;
|
|
97
80
|
/**
|
|
98
|
-
* @
|
|
99
|
-
* <p>Deletes an entity.</p>
|
|
81
|
+
* @see {@link DeleteEntityCommand}
|
|
100
82
|
*/
|
|
101
83
|
deleteEntity(args: DeleteEntityCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEntityCommandOutput>;
|
|
102
84
|
deleteEntity(args: DeleteEntityCommandInput, cb: (err: any, data?: DeleteEntityCommandOutput) => void): void;
|
|
103
85
|
deleteEntity(args: DeleteEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEntityCommandOutput) => void): void;
|
|
104
86
|
/**
|
|
105
|
-
* @
|
|
106
|
-
* <p>Deletes a scene.</p>
|
|
87
|
+
* @see {@link DeleteSceneCommand}
|
|
107
88
|
*/
|
|
108
89
|
deleteScene(args: DeleteSceneCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSceneCommandOutput>;
|
|
109
90
|
deleteScene(args: DeleteSceneCommandInput, cb: (err: any, data?: DeleteSceneCommandOutput) => void): void;
|
|
110
91
|
deleteScene(args: DeleteSceneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSceneCommandOutput) => void): void;
|
|
111
92
|
/**
|
|
112
|
-
* @
|
|
113
|
-
* <p>Delete the SyncJob.</p>
|
|
93
|
+
* @see {@link DeleteSyncJobCommand}
|
|
114
94
|
*/
|
|
115
95
|
deleteSyncJob(args: DeleteSyncJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSyncJobCommandOutput>;
|
|
116
96
|
deleteSyncJob(args: DeleteSyncJobCommandInput, cb: (err: any, data?: DeleteSyncJobCommandOutput) => void): void;
|
|
117
97
|
deleteSyncJob(args: DeleteSyncJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSyncJobCommandOutput) => void): void;
|
|
118
98
|
/**
|
|
119
|
-
* @
|
|
120
|
-
* <p>Deletes a workspace.</p>
|
|
99
|
+
* @see {@link DeleteWorkspaceCommand}
|
|
121
100
|
*/
|
|
122
101
|
deleteWorkspace(args: DeleteWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkspaceCommandOutput>;
|
|
123
102
|
deleteWorkspace(args: DeleteWorkspaceCommandInput, cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void): void;
|
|
124
103
|
deleteWorkspace(args: DeleteWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void): void;
|
|
125
104
|
/**
|
|
126
|
-
* @
|
|
127
|
-
* <p>Run queries to access information from your knowledge graph of entities within
|
|
128
|
-
* individual workspaces.</p>
|
|
105
|
+
* @see {@link ExecuteQueryCommand}
|
|
129
106
|
*/
|
|
130
107
|
executeQuery(args: ExecuteQueryCommandInput, options?: __HttpHandlerOptions): Promise<ExecuteQueryCommandOutput>;
|
|
131
108
|
executeQuery(args: ExecuteQueryCommandInput, cb: (err: any, data?: ExecuteQueryCommandOutput) => void): void;
|
|
132
109
|
executeQuery(args: ExecuteQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExecuteQueryCommandOutput) => void): void;
|
|
133
110
|
/**
|
|
134
|
-
* @
|
|
135
|
-
* <p>Retrieves information about a component type.</p>
|
|
111
|
+
* @see {@link GetComponentTypeCommand}
|
|
136
112
|
*/
|
|
137
113
|
getComponentType(args: GetComponentTypeCommandInput, options?: __HttpHandlerOptions): Promise<GetComponentTypeCommandOutput>;
|
|
138
114
|
getComponentType(args: GetComponentTypeCommandInput, cb: (err: any, data?: GetComponentTypeCommandOutput) => void): void;
|
|
139
115
|
getComponentType(args: GetComponentTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComponentTypeCommandOutput) => void): void;
|
|
140
116
|
/**
|
|
141
|
-
* @
|
|
142
|
-
* <p>Retrieves information about an entity.</p>
|
|
117
|
+
* @see {@link GetEntityCommand}
|
|
143
118
|
*/
|
|
144
119
|
getEntity(args: GetEntityCommandInput, options?: __HttpHandlerOptions): Promise<GetEntityCommandOutput>;
|
|
145
120
|
getEntity(args: GetEntityCommandInput, cb: (err: any, data?: GetEntityCommandOutput) => void): void;
|
|
146
121
|
getEntity(args: GetEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEntityCommandOutput) => void): void;
|
|
147
122
|
/**
|
|
148
|
-
* @
|
|
149
|
-
* <p>Gets the pricing plan.</p>
|
|
123
|
+
* @see {@link GetPricingPlanCommand}
|
|
150
124
|
*/
|
|
151
125
|
getPricingPlan(args: GetPricingPlanCommandInput, options?: __HttpHandlerOptions): Promise<GetPricingPlanCommandOutput>;
|
|
152
126
|
getPricingPlan(args: GetPricingPlanCommandInput, cb: (err: any, data?: GetPricingPlanCommandOutput) => void): void;
|
|
153
127
|
getPricingPlan(args: GetPricingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPricingPlanCommandOutput) => void): void;
|
|
154
128
|
/**
|
|
155
|
-
* @
|
|
156
|
-
* <p>Gets the property values for a component, component type, entity, or workspace.</p>
|
|
157
|
-
* <p>You must specify a value for either <code>componentName</code>,
|
|
158
|
-
* <code>componentTypeId</code>, <code>entityId</code>, or <code>workspaceId</code>.</p>
|
|
129
|
+
* @see {@link GetPropertyValueCommand}
|
|
159
130
|
*/
|
|
160
131
|
getPropertyValue(args: GetPropertyValueCommandInput, options?: __HttpHandlerOptions): Promise<GetPropertyValueCommandOutput>;
|
|
161
132
|
getPropertyValue(args: GetPropertyValueCommandInput, cb: (err: any, data?: GetPropertyValueCommandOutput) => void): void;
|
|
162
133
|
getPropertyValue(args: GetPropertyValueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPropertyValueCommandOutput) => void): void;
|
|
163
134
|
/**
|
|
164
|
-
* @
|
|
165
|
-
* <p>Retrieves information about the history of a time series property value for a component,
|
|
166
|
-
* component type, entity, or workspace.</p>
|
|
167
|
-
* <p>You must specify a value for <code>workspaceId</code>. For entity-specific queries,
|
|
168
|
-
* specify values for <code>componentName</code> and <code>entityId</code>. For cross-entity
|
|
169
|
-
* quries, specify a value for <code>componentTypeId</code>.</p>
|
|
135
|
+
* @see {@link GetPropertyValueHistoryCommand}
|
|
170
136
|
*/
|
|
171
137
|
getPropertyValueHistory(args: GetPropertyValueHistoryCommandInput, options?: __HttpHandlerOptions): Promise<GetPropertyValueHistoryCommandOutput>;
|
|
172
138
|
getPropertyValueHistory(args: GetPropertyValueHistoryCommandInput, cb: (err: any, data?: GetPropertyValueHistoryCommandOutput) => void): void;
|
|
173
139
|
getPropertyValueHistory(args: GetPropertyValueHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPropertyValueHistoryCommandOutput) => void): void;
|
|
174
140
|
/**
|
|
175
|
-
* @
|
|
176
|
-
* <p>Retrieves information about a scene.</p>
|
|
141
|
+
* @see {@link GetSceneCommand}
|
|
177
142
|
*/
|
|
178
143
|
getScene(args: GetSceneCommandInput, options?: __HttpHandlerOptions): Promise<GetSceneCommandOutput>;
|
|
179
144
|
getScene(args: GetSceneCommandInput, cb: (err: any, data?: GetSceneCommandOutput) => void): void;
|
|
180
145
|
getScene(args: GetSceneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSceneCommandOutput) => void): void;
|
|
181
146
|
/**
|
|
182
|
-
* @
|
|
183
|
-
* <p>Gets the SyncJob.</p>
|
|
147
|
+
* @see {@link GetSyncJobCommand}
|
|
184
148
|
*/
|
|
185
149
|
getSyncJob(args: GetSyncJobCommandInput, options?: __HttpHandlerOptions): Promise<GetSyncJobCommandOutput>;
|
|
186
150
|
getSyncJob(args: GetSyncJobCommandInput, cb: (err: any, data?: GetSyncJobCommandOutput) => void): void;
|
|
187
151
|
getSyncJob(args: GetSyncJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSyncJobCommandOutput) => void): void;
|
|
188
152
|
/**
|
|
189
|
-
* @
|
|
190
|
-
* <p>Retrieves information about a workspace.</p>
|
|
153
|
+
* @see {@link GetWorkspaceCommand}
|
|
191
154
|
*/
|
|
192
155
|
getWorkspace(args: GetWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkspaceCommandOutput>;
|
|
193
156
|
getWorkspace(args: GetWorkspaceCommandInput, cb: (err: any, data?: GetWorkspaceCommandOutput) => void): void;
|
|
194
157
|
getWorkspace(args: GetWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkspaceCommandOutput) => void): void;
|
|
195
158
|
/**
|
|
196
|
-
* @
|
|
197
|
-
* <p>Lists all component types in a workspace.</p>
|
|
159
|
+
* @see {@link ListComponentTypesCommand}
|
|
198
160
|
*/
|
|
199
161
|
listComponentTypes(args: ListComponentTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentTypesCommandOutput>;
|
|
200
162
|
listComponentTypes(args: ListComponentTypesCommandInput, cb: (err: any, data?: ListComponentTypesCommandOutput) => void): void;
|
|
201
163
|
listComponentTypes(args: ListComponentTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentTypesCommandOutput) => void): void;
|
|
202
164
|
/**
|
|
203
|
-
* @
|
|
204
|
-
* <p>Lists all entities in a workspace.</p>
|
|
165
|
+
* @see {@link ListEntitiesCommand}
|
|
205
166
|
*/
|
|
206
167
|
listEntities(args: ListEntitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListEntitiesCommandOutput>;
|
|
207
168
|
listEntities(args: ListEntitiesCommandInput, cb: (err: any, data?: ListEntitiesCommandOutput) => void): void;
|
|
208
169
|
listEntities(args: ListEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEntitiesCommandOutput) => void): void;
|
|
209
170
|
/**
|
|
210
|
-
* @
|
|
211
|
-
* <p>Lists all scenes in a workspace.</p>
|
|
171
|
+
* @see {@link ListScenesCommand}
|
|
212
172
|
*/
|
|
213
173
|
listScenes(args: ListScenesCommandInput, options?: __HttpHandlerOptions): Promise<ListScenesCommandOutput>;
|
|
214
174
|
listScenes(args: ListScenesCommandInput, cb: (err: any, data?: ListScenesCommandOutput) => void): void;
|
|
215
175
|
listScenes(args: ListScenesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListScenesCommandOutput) => void): void;
|
|
216
176
|
/**
|
|
217
|
-
* @
|
|
218
|
-
* <p>List all SyncJobs.</p>
|
|
177
|
+
* @see {@link ListSyncJobsCommand}
|
|
219
178
|
*/
|
|
220
179
|
listSyncJobs(args: ListSyncJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListSyncJobsCommandOutput>;
|
|
221
180
|
listSyncJobs(args: ListSyncJobsCommandInput, cb: (err: any, data?: ListSyncJobsCommandOutput) => void): void;
|
|
222
181
|
listSyncJobs(args: ListSyncJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSyncJobsCommandOutput) => void): void;
|
|
223
182
|
/**
|
|
224
|
-
* @
|
|
225
|
-
* <p>Lists the sync resources.</p>
|
|
183
|
+
* @see {@link ListSyncResourcesCommand}
|
|
226
184
|
*/
|
|
227
185
|
listSyncResources(args: ListSyncResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListSyncResourcesCommandOutput>;
|
|
228
186
|
listSyncResources(args: ListSyncResourcesCommandInput, cb: (err: any, data?: ListSyncResourcesCommandOutput) => void): void;
|
|
229
187
|
listSyncResources(args: ListSyncResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSyncResourcesCommandOutput) => void): void;
|
|
230
188
|
/**
|
|
231
|
-
* @
|
|
232
|
-
* <p>Lists all tags associated with a resource.</p>
|
|
189
|
+
* @see {@link ListTagsForResourceCommand}
|
|
233
190
|
*/
|
|
234
191
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
235
192
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
236
193
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
237
194
|
/**
|
|
238
|
-
* @
|
|
239
|
-
* <p>Retrieves information about workspaces in the current account.</p>
|
|
195
|
+
* @see {@link ListWorkspacesCommand}
|
|
240
196
|
*/
|
|
241
197
|
listWorkspaces(args: ListWorkspacesCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkspacesCommandOutput>;
|
|
242
198
|
listWorkspaces(args: ListWorkspacesCommandInput, cb: (err: any, data?: ListWorkspacesCommandOutput) => void): void;
|
|
243
199
|
listWorkspaces(args: ListWorkspacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkspacesCommandOutput) => void): void;
|
|
244
200
|
/**
|
|
245
|
-
* @
|
|
246
|
-
* <p>Adds tags to a resource.</p>
|
|
201
|
+
* @see {@link TagResourceCommand}
|
|
247
202
|
*/
|
|
248
203
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
249
204
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
250
205
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
251
206
|
/**
|
|
252
|
-
* @
|
|
253
|
-
* <p>Removes tags from a resource.</p>
|
|
207
|
+
* @see {@link UntagResourceCommand}
|
|
254
208
|
*/
|
|
255
209
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
256
210
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
257
211
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
258
212
|
/**
|
|
259
|
-
* @
|
|
260
|
-
* <p>Updates information in a component type.</p>
|
|
213
|
+
* @see {@link UpdateComponentTypeCommand}
|
|
261
214
|
*/
|
|
262
215
|
updateComponentType(args: UpdateComponentTypeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateComponentTypeCommandOutput>;
|
|
263
216
|
updateComponentType(args: UpdateComponentTypeCommandInput, cb: (err: any, data?: UpdateComponentTypeCommandOutput) => void): void;
|
|
264
217
|
updateComponentType(args: UpdateComponentTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateComponentTypeCommandOutput) => void): void;
|
|
265
218
|
/**
|
|
266
|
-
* @
|
|
267
|
-
* <p>Updates an entity.</p>
|
|
219
|
+
* @see {@link UpdateEntityCommand}
|
|
268
220
|
*/
|
|
269
221
|
updateEntity(args: UpdateEntityCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEntityCommandOutput>;
|
|
270
222
|
updateEntity(args: UpdateEntityCommandInput, cb: (err: any, data?: UpdateEntityCommandOutput) => void): void;
|
|
271
223
|
updateEntity(args: UpdateEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEntityCommandOutput) => void): void;
|
|
272
224
|
/**
|
|
273
|
-
* @
|
|
274
|
-
* <p>Update the pricing plan.</p>
|
|
225
|
+
* @see {@link UpdatePricingPlanCommand}
|
|
275
226
|
*/
|
|
276
227
|
updatePricingPlan(args: UpdatePricingPlanCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePricingPlanCommandOutput>;
|
|
277
228
|
updatePricingPlan(args: UpdatePricingPlanCommandInput, cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void): void;
|
|
278
229
|
updatePricingPlan(args: UpdatePricingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void): void;
|
|
279
230
|
/**
|
|
280
|
-
* @
|
|
281
|
-
* <p>Updates a scene.</p>
|
|
231
|
+
* @see {@link UpdateSceneCommand}
|
|
282
232
|
*/
|
|
283
233
|
updateScene(args: UpdateSceneCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSceneCommandOutput>;
|
|
284
234
|
updateScene(args: UpdateSceneCommandInput, cb: (err: any, data?: UpdateSceneCommandOutput) => void): void;
|
|
285
235
|
updateScene(args: UpdateSceneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSceneCommandOutput) => void): void;
|
|
286
236
|
/**
|
|
287
|
-
* @
|
|
288
|
-
* <p>Updates a workspace.</p>
|
|
237
|
+
* @see {@link UpdateWorkspaceCommand}
|
|
289
238
|
*/
|
|
290
239
|
updateWorkspace(args: UpdateWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkspaceCommandOutput>;
|
|
291
240
|
updateWorkspace(args: UpdateWorkspaceCommandInput, cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void): void;
|
|
292
241
|
updateWorkspace(args: UpdateWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void): void;
|
|
293
242
|
}
|
|
243
|
+
/**
|
|
244
|
+
* @public
|
|
245
|
+
* <p>IoT TwinMaker is a service with which you
|
|
246
|
+
* can
|
|
247
|
+
* build operational digital twins of physical systems. IoT TwinMaker overlays measurements
|
|
248
|
+
* and analysis from real-world sensors, cameras, and enterprise applications so you can
|
|
249
|
+
* create data visualizations to monitor your physical factory, building, or industrial plant.
|
|
250
|
+
* You can use this real-world data to monitor operations and diagnose and repair
|
|
251
|
+
* errors.</p>
|
|
252
|
+
*/
|
|
253
|
+
export declare class IoTTwinMaker extends IoTTwinMakerClient implements IoTTwinMaker {
|
|
254
|
+
}
|
|
@@ -136,7 +136,7 @@ import {
|
|
|
136
136
|
UpdateWorkspaceCommandOutput,
|
|
137
137
|
} from "./commands/UpdateWorkspaceCommand";
|
|
138
138
|
import { IoTTwinMakerClient } from "./IoTTwinMakerClient";
|
|
139
|
-
export
|
|
139
|
+
export interface IoTTwinMaker {
|
|
140
140
|
batchPutPropertyValues(
|
|
141
141
|
args: BatchPutPropertyValuesCommandInput,
|
|
142
142
|
options?: __HttpHandlerOptions
|
|
@@ -580,3 +580,6 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
|
580
580
|
cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void
|
|
581
581
|
): void;
|
|
582
582
|
}
|
|
583
|
+
export declare class IoTTwinMaker
|
|
584
|
+
extends IoTTwinMakerClient
|
|
585
|
+
implements IoTTwinMaker {}
|
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.316.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,9 +21,9 @@
|
|
|
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.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|