@aws-sdk/client-iotthingsgraph 3.296.0 → 3.297.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-types/IoTThingsGraph.d.ts +36 -0
- package/dist-types/IoTThingsGraphClient.d.ts +24 -4
- package/dist-types/commands/AssociateEntityToThingCommand.d.ts +16 -0
- package/dist-types/commands/CreateFlowTemplateCommand.d.ts +16 -0
- package/dist-types/commands/CreateSystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/CreateSystemTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeploySystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DescribeNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +16 -0
- package/dist-types/commands/GetEntitiesCommand.d.ts +16 -0
- package/dist-types/commands/GetFlowTemplateCommand.d.ts +16 -0
- package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +16 -0
- package/dist-types/commands/GetNamespaceDeletionStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetSystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/GetSystemTemplateCommand.d.ts +16 -0
- package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +16 -0
- package/dist-types/commands/GetUploadStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/SearchEntitiesCommand.d.ts +16 -0
- package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/SearchSystemInstancesCommand.d.ts +16 -0
- package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/SearchThingsCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +16 -0
- package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +16 -0
- package/dist-types/models/IoTThingsGraphServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +274 -0
- package/dist-types/pagination/GetFlowTemplateRevisionsPaginator.d.ts +3 -0
- package/dist-types/pagination/GetSystemTemplateRevisionsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListFlowExecutionMessagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/dist-types/pagination/SearchEntitiesPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchFlowExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchFlowTemplatesPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchSystemInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchSystemTemplatesPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchThingsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -36,6 +36,7 @@ import { UpdateSystemTemplateCommandInput, UpdateSystemTemplateCommandOutput } f
|
|
|
36
36
|
import { UploadEntityDefinitionsCommandInput, UploadEntityDefinitionsCommandOutput } from "./commands/UploadEntityDefinitionsCommand";
|
|
37
37
|
import { IoTThingsGraphClient } from "./IoTThingsGraphClient";
|
|
38
38
|
/**
|
|
39
|
+
* @public
|
|
39
40
|
* <fullname>AWS IoT Things Graph</fullname>
|
|
40
41
|
* <p>AWS IoT Things Graph provides an integrated set of tools that enable developers to connect devices and services that use different standards,
|
|
41
42
|
* such as units of measure and communication protocols. AWS IoT Things Graph makes it possible to build IoT applications with little to no code by connecting devices and services
|
|
@@ -46,6 +47,7 @@ import { IoTThingsGraphClient } from "./IoTThingsGraphClient";
|
|
|
46
47
|
*/
|
|
47
48
|
export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
48
49
|
/**
|
|
50
|
+
* @public
|
|
49
51
|
* @deprecated
|
|
50
52
|
*
|
|
51
53
|
* <p>Associates a device with a concrete thing that is in the user's registry.</p>
|
|
@@ -55,6 +57,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
55
57
|
associateEntityToThing(args: AssociateEntityToThingCommandInput, cb: (err: any, data?: AssociateEntityToThingCommandOutput) => void): void;
|
|
56
58
|
associateEntityToThing(args: AssociateEntityToThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateEntityToThingCommandOutput) => void): void;
|
|
57
59
|
/**
|
|
60
|
+
* @public
|
|
58
61
|
* @deprecated
|
|
59
62
|
*
|
|
60
63
|
* <p>Creates a workflow template. Workflows can be created only in the user's namespace. (The public namespace contains only
|
|
@@ -65,6 +68,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
65
68
|
createFlowTemplate(args: CreateFlowTemplateCommandInput, cb: (err: any, data?: CreateFlowTemplateCommandOutput) => void): void;
|
|
66
69
|
createFlowTemplate(args: CreateFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFlowTemplateCommandOutput) => void): void;
|
|
67
70
|
/**
|
|
71
|
+
* @public
|
|
68
72
|
* @deprecated
|
|
69
73
|
*
|
|
70
74
|
* <p>Creates a system instance. </p>
|
|
@@ -81,6 +85,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
81
85
|
createSystemInstance(args: CreateSystemInstanceCommandInput, cb: (err: any, data?: CreateSystemInstanceCommandOutput) => void): void;
|
|
82
86
|
createSystemInstance(args: CreateSystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSystemInstanceCommandOutput) => void): void;
|
|
83
87
|
/**
|
|
88
|
+
* @public
|
|
84
89
|
* @deprecated
|
|
85
90
|
*
|
|
86
91
|
* <p>Creates a system. The system is validated against the entities in the
|
|
@@ -90,6 +95,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
90
95
|
createSystemTemplate(args: CreateSystemTemplateCommandInput, cb: (err: any, data?: CreateSystemTemplateCommandOutput) => void): void;
|
|
91
96
|
createSystemTemplate(args: CreateSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSystemTemplateCommandOutput) => void): void;
|
|
92
97
|
/**
|
|
98
|
+
* @public
|
|
93
99
|
* @deprecated
|
|
94
100
|
*
|
|
95
101
|
* <p>Deletes a workflow. Any new system or deployment that contains this workflow will fail to update or deploy.
|
|
@@ -99,6 +105,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
99
105
|
deleteFlowTemplate(args: DeleteFlowTemplateCommandInput, cb: (err: any, data?: DeleteFlowTemplateCommandOutput) => void): void;
|
|
100
106
|
deleteFlowTemplate(args: DeleteFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowTemplateCommandOutput) => void): void;
|
|
101
107
|
/**
|
|
108
|
+
* @public
|
|
102
109
|
* @deprecated
|
|
103
110
|
*
|
|
104
111
|
* <p>Deletes the specified namespace. This action deletes all of the entities in the namespace. Delete the systems and flows that use entities in the namespace before performing this action. This action takes no
|
|
@@ -108,6 +115,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
108
115
|
deleteNamespace(args: DeleteNamespaceCommandInput, cb: (err: any, data?: DeleteNamespaceCommandOutput) => void): void;
|
|
109
116
|
deleteNamespace(args: DeleteNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNamespaceCommandOutput) => void): void;
|
|
110
117
|
/**
|
|
118
|
+
* @public
|
|
111
119
|
* @deprecated
|
|
112
120
|
*
|
|
113
121
|
* <p>Deletes a system instance.
|
|
@@ -118,6 +126,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
118
126
|
deleteSystemInstance(args: DeleteSystemInstanceCommandInput, cb: (err: any, data?: DeleteSystemInstanceCommandOutput) => void): void;
|
|
119
127
|
deleteSystemInstance(args: DeleteSystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSystemInstanceCommandOutput) => void): void;
|
|
120
128
|
/**
|
|
129
|
+
* @public
|
|
121
130
|
* @deprecated
|
|
122
131
|
*
|
|
123
132
|
* <p>Deletes a system. New deployments can't contain the system after its deletion.
|
|
@@ -127,6 +136,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
127
136
|
deleteSystemTemplate(args: DeleteSystemTemplateCommandInput, cb: (err: any, data?: DeleteSystemTemplateCommandOutput) => void): void;
|
|
128
137
|
deleteSystemTemplate(args: DeleteSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSystemTemplateCommandOutput) => void): void;
|
|
129
138
|
/**
|
|
139
|
+
* @public
|
|
130
140
|
* @deprecated
|
|
131
141
|
*
|
|
132
142
|
* <p>
|
|
@@ -146,6 +156,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
146
156
|
deploySystemInstance(args: DeploySystemInstanceCommandInput, cb: (err: any, data?: DeploySystemInstanceCommandOutput) => void): void;
|
|
147
157
|
deploySystemInstance(args: DeploySystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeploySystemInstanceCommandOutput) => void): void;
|
|
148
158
|
/**
|
|
159
|
+
* @public
|
|
149
160
|
* @deprecated
|
|
150
161
|
*
|
|
151
162
|
* <p>Deprecates the specified workflow. This action marks the workflow for deletion. Deprecated flows can't be deployed, but existing deployments will continue to run.</p>
|
|
@@ -154,6 +165,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
154
165
|
deprecateFlowTemplate(args: DeprecateFlowTemplateCommandInput, cb: (err: any, data?: DeprecateFlowTemplateCommandOutput) => void): void;
|
|
155
166
|
deprecateFlowTemplate(args: DeprecateFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprecateFlowTemplateCommandOutput) => void): void;
|
|
156
167
|
/**
|
|
168
|
+
* @public
|
|
157
169
|
* @deprecated
|
|
158
170
|
*
|
|
159
171
|
* <p>Deprecates the specified system.</p>
|
|
@@ -162,6 +174,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
162
174
|
deprecateSystemTemplate(args: DeprecateSystemTemplateCommandInput, cb: (err: any, data?: DeprecateSystemTemplateCommandOutput) => void): void;
|
|
163
175
|
deprecateSystemTemplate(args: DeprecateSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprecateSystemTemplateCommandOutput) => void): void;
|
|
164
176
|
/**
|
|
177
|
+
* @public
|
|
165
178
|
* @deprecated
|
|
166
179
|
*
|
|
167
180
|
* <p>Gets the latest version of the user's namespace and the public version that it is tracking.</p>
|
|
@@ -170,6 +183,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
170
183
|
describeNamespace(args: DescribeNamespaceCommandInput, cb: (err: any, data?: DescribeNamespaceCommandOutput) => void): void;
|
|
171
184
|
describeNamespace(args: DescribeNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNamespaceCommandOutput) => void): void;
|
|
172
185
|
/**
|
|
186
|
+
* @public
|
|
173
187
|
* @deprecated
|
|
174
188
|
*
|
|
175
189
|
* <p>Dissociates a device entity from a concrete thing. The action takes only the type of the entity that you need to dissociate because only
|
|
@@ -179,6 +193,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
179
193
|
dissociateEntityFromThing(args: DissociateEntityFromThingCommandInput, cb: (err: any, data?: DissociateEntityFromThingCommandOutput) => void): void;
|
|
180
194
|
dissociateEntityFromThing(args: DissociateEntityFromThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DissociateEntityFromThingCommandOutput) => void): void;
|
|
181
195
|
/**
|
|
196
|
+
* @public
|
|
182
197
|
* @deprecated
|
|
183
198
|
*
|
|
184
199
|
* <p>Gets definitions of the specified entities. Uses the latest version of the user's namespace by default. This API returns the
|
|
@@ -218,6 +233,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
218
233
|
getEntities(args: GetEntitiesCommandInput, cb: (err: any, data?: GetEntitiesCommandOutput) => void): void;
|
|
219
234
|
getEntities(args: GetEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEntitiesCommandOutput) => void): void;
|
|
220
235
|
/**
|
|
236
|
+
* @public
|
|
221
237
|
* @deprecated
|
|
222
238
|
*
|
|
223
239
|
* <p>Gets the latest version of the <code>DefinitionDocument</code> and <code>FlowTemplateSummary</code> for the specified workflow.</p>
|
|
@@ -226,6 +242,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
226
242
|
getFlowTemplate(args: GetFlowTemplateCommandInput, cb: (err: any, data?: GetFlowTemplateCommandOutput) => void): void;
|
|
227
243
|
getFlowTemplate(args: GetFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFlowTemplateCommandOutput) => void): void;
|
|
228
244
|
/**
|
|
245
|
+
* @public
|
|
229
246
|
* @deprecated
|
|
230
247
|
*
|
|
231
248
|
* <p>Gets revisions of the specified workflow. Only the last 100 revisions are stored. If the workflow has been deprecated,
|
|
@@ -235,6 +252,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
235
252
|
getFlowTemplateRevisions(args: GetFlowTemplateRevisionsCommandInput, cb: (err: any, data?: GetFlowTemplateRevisionsCommandOutput) => void): void;
|
|
236
253
|
getFlowTemplateRevisions(args: GetFlowTemplateRevisionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFlowTemplateRevisionsCommandOutput) => void): void;
|
|
237
254
|
/**
|
|
255
|
+
* @public
|
|
238
256
|
* @deprecated
|
|
239
257
|
*
|
|
240
258
|
* <p>Gets the status of a namespace deletion task.</p>
|
|
@@ -243,6 +261,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
243
261
|
getNamespaceDeletionStatus(args: GetNamespaceDeletionStatusCommandInput, cb: (err: any, data?: GetNamespaceDeletionStatusCommandOutput) => void): void;
|
|
244
262
|
getNamespaceDeletionStatus(args: GetNamespaceDeletionStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNamespaceDeletionStatusCommandOutput) => void): void;
|
|
245
263
|
/**
|
|
264
|
+
* @public
|
|
246
265
|
* @deprecated
|
|
247
266
|
*
|
|
248
267
|
* <p>Gets a system instance.</p>
|
|
@@ -251,6 +270,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
251
270
|
getSystemInstance(args: GetSystemInstanceCommandInput, cb: (err: any, data?: GetSystemInstanceCommandOutput) => void): void;
|
|
252
271
|
getSystemInstance(args: GetSystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSystemInstanceCommandOutput) => void): void;
|
|
253
272
|
/**
|
|
273
|
+
* @public
|
|
254
274
|
* @deprecated
|
|
255
275
|
*
|
|
256
276
|
* <p>Gets a system.</p>
|
|
@@ -259,6 +279,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
259
279
|
getSystemTemplate(args: GetSystemTemplateCommandInput, cb: (err: any, data?: GetSystemTemplateCommandOutput) => void): void;
|
|
260
280
|
getSystemTemplate(args: GetSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSystemTemplateCommandOutput) => void): void;
|
|
261
281
|
/**
|
|
282
|
+
* @public
|
|
262
283
|
* @deprecated
|
|
263
284
|
*
|
|
264
285
|
* <p>Gets revisions made to the specified system template. Only the previous 100 revisions are stored. If the system has been deprecated, this action will return
|
|
@@ -268,6 +289,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
268
289
|
getSystemTemplateRevisions(args: GetSystemTemplateRevisionsCommandInput, cb: (err: any, data?: GetSystemTemplateRevisionsCommandOutput) => void): void;
|
|
269
290
|
getSystemTemplateRevisions(args: GetSystemTemplateRevisionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSystemTemplateRevisionsCommandOutput) => void): void;
|
|
270
291
|
/**
|
|
292
|
+
* @public
|
|
271
293
|
* @deprecated
|
|
272
294
|
*
|
|
273
295
|
* <p>Gets the status of the specified upload.</p>
|
|
@@ -276,6 +298,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
276
298
|
getUploadStatus(args: GetUploadStatusCommandInput, cb: (err: any, data?: GetUploadStatusCommandOutput) => void): void;
|
|
277
299
|
getUploadStatus(args: GetUploadStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUploadStatusCommandOutput) => void): void;
|
|
278
300
|
/**
|
|
301
|
+
* @public
|
|
279
302
|
* @deprecated
|
|
280
303
|
*
|
|
281
304
|
* <p>Returns a list of objects that contain information about events in a flow execution.</p>
|
|
@@ -284,6 +307,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
284
307
|
listFlowExecutionMessages(args: ListFlowExecutionMessagesCommandInput, cb: (err: any, data?: ListFlowExecutionMessagesCommandOutput) => void): void;
|
|
285
308
|
listFlowExecutionMessages(args: ListFlowExecutionMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowExecutionMessagesCommandOutput) => void): void;
|
|
286
309
|
/**
|
|
310
|
+
* @public
|
|
287
311
|
* @deprecated
|
|
288
312
|
*
|
|
289
313
|
* <p>Lists all tags on an AWS IoT Things Graph resource.</p>
|
|
@@ -292,6 +316,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
292
316
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
293
317
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
294
318
|
/**
|
|
319
|
+
* @public
|
|
295
320
|
* @deprecated
|
|
296
321
|
*
|
|
297
322
|
* <p>Searches for entities of the specified type. You can search for entities in your namespace and the public namespace that you're tracking.</p>
|
|
@@ -300,6 +325,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
300
325
|
searchEntities(args: SearchEntitiesCommandInput, cb: (err: any, data?: SearchEntitiesCommandOutput) => void): void;
|
|
301
326
|
searchEntities(args: SearchEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchEntitiesCommandOutput) => void): void;
|
|
302
327
|
/**
|
|
328
|
+
* @public
|
|
303
329
|
* @deprecated
|
|
304
330
|
*
|
|
305
331
|
* <p>Searches for AWS IoT Things Graph workflow execution instances.</p>
|
|
@@ -308,6 +334,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
308
334
|
searchFlowExecutions(args: SearchFlowExecutionsCommandInput, cb: (err: any, data?: SearchFlowExecutionsCommandOutput) => void): void;
|
|
309
335
|
searchFlowExecutions(args: SearchFlowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchFlowExecutionsCommandOutput) => void): void;
|
|
310
336
|
/**
|
|
337
|
+
* @public
|
|
311
338
|
* @deprecated
|
|
312
339
|
*
|
|
313
340
|
* <p>Searches for summary information about workflows.</p>
|
|
@@ -316,6 +343,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
316
343
|
searchFlowTemplates(args: SearchFlowTemplatesCommandInput, cb: (err: any, data?: SearchFlowTemplatesCommandOutput) => void): void;
|
|
317
344
|
searchFlowTemplates(args: SearchFlowTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchFlowTemplatesCommandOutput) => void): void;
|
|
318
345
|
/**
|
|
346
|
+
* @public
|
|
319
347
|
* @deprecated
|
|
320
348
|
*
|
|
321
349
|
* <p>Searches for system instances in the user's account.</p>
|
|
@@ -324,6 +352,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
324
352
|
searchSystemInstances(args: SearchSystemInstancesCommandInput, cb: (err: any, data?: SearchSystemInstancesCommandOutput) => void): void;
|
|
325
353
|
searchSystemInstances(args: SearchSystemInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchSystemInstancesCommandOutput) => void): void;
|
|
326
354
|
/**
|
|
355
|
+
* @public
|
|
327
356
|
* @deprecated
|
|
328
357
|
*
|
|
329
358
|
* <p>Searches for summary information about systems in the user's account. You can filter by the ID of a workflow to return only systems that use the specified workflow.</p>
|
|
@@ -332,6 +361,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
332
361
|
searchSystemTemplates(args: SearchSystemTemplatesCommandInput, cb: (err: any, data?: SearchSystemTemplatesCommandOutput) => void): void;
|
|
333
362
|
searchSystemTemplates(args: SearchSystemTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchSystemTemplatesCommandOutput) => void): void;
|
|
334
363
|
/**
|
|
364
|
+
* @public
|
|
335
365
|
* @deprecated
|
|
336
366
|
*
|
|
337
367
|
* <p>Searches for things associated with the specified entity. You can search by both device and device model.</p>
|
|
@@ -343,6 +373,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
343
373
|
searchThings(args: SearchThingsCommandInput, cb: (err: any, data?: SearchThingsCommandOutput) => void): void;
|
|
344
374
|
searchThings(args: SearchThingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchThingsCommandOutput) => void): void;
|
|
345
375
|
/**
|
|
376
|
+
* @public
|
|
346
377
|
* @deprecated
|
|
347
378
|
*
|
|
348
379
|
* <p>Creates a tag for the specified resource.</p>
|
|
@@ -351,6 +382,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
351
382
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
352
383
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
353
384
|
/**
|
|
385
|
+
* @public
|
|
354
386
|
* @deprecated
|
|
355
387
|
*
|
|
356
388
|
* <p>Removes a system instance from its target (Cloud or Greengrass).</p>
|
|
@@ -359,6 +391,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
359
391
|
undeploySystemInstance(args: UndeploySystemInstanceCommandInput, cb: (err: any, data?: UndeploySystemInstanceCommandOutput) => void): void;
|
|
360
392
|
undeploySystemInstance(args: UndeploySystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UndeploySystemInstanceCommandOutput) => void): void;
|
|
361
393
|
/**
|
|
394
|
+
* @public
|
|
362
395
|
* @deprecated
|
|
363
396
|
*
|
|
364
397
|
* <p>Removes a tag from the specified resource.</p>
|
|
@@ -367,6 +400,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
367
400
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
368
401
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
369
402
|
/**
|
|
403
|
+
* @public
|
|
370
404
|
* @deprecated
|
|
371
405
|
*
|
|
372
406
|
* <p>Updates the specified workflow. All deployed systems and system instances that use the workflow will see the changes in the flow when it is redeployed. If you don't want this
|
|
@@ -376,6 +410,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
376
410
|
updateFlowTemplate(args: UpdateFlowTemplateCommandInput, cb: (err: any, data?: UpdateFlowTemplateCommandOutput) => void): void;
|
|
377
411
|
updateFlowTemplate(args: UpdateFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowTemplateCommandOutput) => void): void;
|
|
378
412
|
/**
|
|
413
|
+
* @public
|
|
379
414
|
* @deprecated
|
|
380
415
|
*
|
|
381
416
|
* <p>Updates the specified system. You don't need to run this action after updating a workflow. Any deployment that uses the system will see the changes in the system when it is redeployed.</p>
|
|
@@ -384,6 +419,7 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
384
419
|
updateSystemTemplate(args: UpdateSystemTemplateCommandInput, cb: (err: any, data?: UpdateSystemTemplateCommandOutput) => void): void;
|
|
385
420
|
updateSystemTemplate(args: UpdateSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSystemTemplateCommandOutput) => void): void;
|
|
386
421
|
/**
|
|
422
|
+
* @public
|
|
387
423
|
* @deprecated
|
|
388
424
|
*
|
|
389
425
|
* <p>Asynchronously uploads one or more entity definitions to the user's namespace. The <code>document</code> parameter is required if
|
|
@@ -43,15 +43,24 @@ import { UpdateFlowTemplateCommandInput, UpdateFlowTemplateCommandOutput } from
|
|
|
43
43
|
import { UpdateSystemTemplateCommandInput, UpdateSystemTemplateCommandOutput } from "./commands/UpdateSystemTemplateCommand";
|
|
44
44
|
import { UploadEntityDefinitionsCommandInput, UploadEntityDefinitionsCommandOutput } from "./commands/UploadEntityDefinitionsCommand";
|
|
45
45
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
46
49
|
export type ServiceInputTypes = AssociateEntityToThingCommandInput | CreateFlowTemplateCommandInput | CreateSystemInstanceCommandInput | CreateSystemTemplateCommandInput | DeleteFlowTemplateCommandInput | DeleteNamespaceCommandInput | DeleteSystemInstanceCommandInput | DeleteSystemTemplateCommandInput | DeploySystemInstanceCommandInput | DeprecateFlowTemplateCommandInput | DeprecateSystemTemplateCommandInput | DescribeNamespaceCommandInput | DissociateEntityFromThingCommandInput | GetEntitiesCommandInput | GetFlowTemplateCommandInput | GetFlowTemplateRevisionsCommandInput | GetNamespaceDeletionStatusCommandInput | GetSystemInstanceCommandInput | GetSystemTemplateCommandInput | GetSystemTemplateRevisionsCommandInput | GetUploadStatusCommandInput | ListFlowExecutionMessagesCommandInput | ListTagsForResourceCommandInput | SearchEntitiesCommandInput | SearchFlowExecutionsCommandInput | SearchFlowTemplatesCommandInput | SearchSystemInstancesCommandInput | SearchSystemTemplatesCommandInput | SearchThingsCommandInput | TagResourceCommandInput | UndeploySystemInstanceCommandInput | UntagResourceCommandInput | UpdateFlowTemplateCommandInput | UpdateSystemTemplateCommandInput | UploadEntityDefinitionsCommandInput;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
47
53
|
export type ServiceOutputTypes = AssociateEntityToThingCommandOutput | CreateFlowTemplateCommandOutput | CreateSystemInstanceCommandOutput | CreateSystemTemplateCommandOutput | DeleteFlowTemplateCommandOutput | DeleteNamespaceCommandOutput | DeleteSystemInstanceCommandOutput | DeleteSystemTemplateCommandOutput | DeploySystemInstanceCommandOutput | DeprecateFlowTemplateCommandOutput | DeprecateSystemTemplateCommandOutput | DescribeNamespaceCommandOutput | DissociateEntityFromThingCommandOutput | GetEntitiesCommandOutput | GetFlowTemplateCommandOutput | GetFlowTemplateRevisionsCommandOutput | GetNamespaceDeletionStatusCommandOutput | GetSystemInstanceCommandOutput | GetSystemTemplateCommandOutput | GetSystemTemplateRevisionsCommandOutput | GetUploadStatusCommandOutput | ListFlowExecutionMessagesCommandOutput | ListTagsForResourceCommandOutput | SearchEntitiesCommandOutput | SearchFlowExecutionsCommandOutput | SearchFlowTemplatesCommandOutput | SearchSystemInstancesCommandOutput | SearchSystemTemplatesCommandOutput | SearchThingsCommandOutput | TagResourceCommandOutput | UndeploySystemInstanceCommandOutput | UntagResourceCommandOutput | UpdateFlowTemplateCommandOutput | UpdateSystemTemplateCommandOutput | UploadEntityDefinitionsCommandOutput;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
48
57
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
49
58
|
/**
|
|
50
59
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
51
60
|
*/
|
|
52
61
|
requestHandler?: __HttpHandler;
|
|
53
62
|
/**
|
|
54
|
-
* A constructor for a class implementing the {@link
|
|
63
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
55
64
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
56
65
|
* @internal
|
|
57
66
|
*/
|
|
@@ -141,23 +150,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
141
150
|
*/
|
|
142
151
|
logger?: __Logger;
|
|
143
152
|
/**
|
|
144
|
-
* The {@link
|
|
153
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
145
154
|
*/
|
|
146
155
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
147
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
148
160
|
type IoTThingsGraphClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
149
161
|
/**
|
|
150
|
-
*
|
|
162
|
+
* @public
|
|
163
|
+
*
|
|
164
|
+
* The configuration interface of IoTThingsGraphClient class constructor that set the region, credentials and other options.
|
|
151
165
|
*/
|
|
152
166
|
export interface IoTThingsGraphClientConfig extends IoTThingsGraphClientConfigType {
|
|
153
167
|
}
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
154
171
|
type IoTThingsGraphClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
155
172
|
/**
|
|
156
|
-
*
|
|
173
|
+
* @public
|
|
174
|
+
*
|
|
175
|
+
* The resolved configuration interface of IoTThingsGraphClient class. This is resolved and normalized from the {@link IoTThingsGraphClientConfig | constructor configuration interface}.
|
|
157
176
|
*/
|
|
158
177
|
export interface IoTThingsGraphClientResolvedConfig extends IoTThingsGraphClientResolvedConfigType {
|
|
159
178
|
}
|
|
160
179
|
/**
|
|
180
|
+
* @public
|
|
161
181
|
* <fullname>AWS IoT Things Graph</fullname>
|
|
162
182
|
* <p>AWS IoT Things Graph provides an integrated set of tools that enable developers to connect devices and services that use different standards,
|
|
163
183
|
* such as units of measure and communication protocols. AWS IoT Things Graph makes it possible to build IoT applications with little to no code by connecting devices and services
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
|
|
5
5
|
import { AssociateEntityToThingRequest, AssociateEntityToThingResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateEntityToThingCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateEntityToThingCommandInput extends AssociateEntityToThingRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateEntityToThingCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateEntityToThingCommandOutput extends AssociateEntityToThingResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* @deprecated
|
|
18
23
|
*
|
|
19
24
|
* <p>Associates a device with a concrete thing that is in the user's registry.</p>
|
|
@@ -28,6 +33,8 @@ export interface AssociateEntityToThingCommandOutput extends AssociateEntityToTh
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param AssociateEntityToThingCommandInput - {@link AssociateEntityToThingCommandInput}
|
|
37
|
+
* @returns {@link AssociateEntityToThingCommandOutput}
|
|
31
38
|
* @see {@link AssociateEntityToThingCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link AssociateEntityToThingCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface AssociateEntityToThingCommandOutput extends AssociateEntityToTh
|
|
|
49
56
|
export declare class AssociateEntityToThingCommand extends $Command<AssociateEntityToThingCommandInput, AssociateEntityToThingCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
50
57
|
readonly input: AssociateEntityToThingCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: AssociateEntityToThingCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateEntityToThingCommandInput, AssociateEntityToThingCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
|
|
5
5
|
import { CreateFlowTemplateRequest, CreateFlowTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateFlowTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateFlowTemplateCommandInput extends CreateFlowTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateFlowTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateFlowTemplateCommandOutput extends CreateFlowTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* @deprecated
|
|
18
23
|
*
|
|
19
24
|
* <p>Creates a workflow template. Workflows can be created only in the user's namespace. (The public namespace contains only
|
|
@@ -29,6 +34,8 @@ export interface CreateFlowTemplateCommandOutput extends CreateFlowTemplateRespo
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param CreateFlowTemplateCommandInput - {@link CreateFlowTemplateCommandInput}
|
|
38
|
+
* @returns {@link CreateFlowTemplateCommandOutput}
|
|
32
39
|
* @see {@link CreateFlowTemplateCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link CreateFlowTemplateCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface CreateFlowTemplateCommandOutput extends CreateFlowTemplateRespo
|
|
|
53
60
|
export declare class CreateFlowTemplateCommand extends $Command<CreateFlowTemplateCommandInput, CreateFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
54
61
|
readonly input: CreateFlowTemplateCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: CreateFlowTemplateCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFlowTemplateCommandInput, CreateFlowTemplateCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
|
|
5
5
|
import { CreateSystemInstanceRequest, CreateSystemInstanceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateSystemInstanceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateSystemInstanceCommandInput extends CreateSystemInstanceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateSystemInstanceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateSystemInstanceCommandOutput extends CreateSystemInstanceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* @deprecated
|
|
18
23
|
*
|
|
19
24
|
* <p>Creates a system instance. </p>
|
|
@@ -35,6 +40,8 @@ export interface CreateSystemInstanceCommandOutput extends CreateSystemInstanceR
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param CreateSystemInstanceCommandInput - {@link CreateSystemInstanceCommandInput}
|
|
44
|
+
* @returns {@link CreateSystemInstanceCommandOutput}
|
|
38
45
|
* @see {@link CreateSystemInstanceCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link CreateSystemInstanceCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface CreateSystemInstanceCommandOutput extends CreateSystemInstanceR
|
|
|
59
66
|
export declare class CreateSystemInstanceCommand extends $Command<CreateSystemInstanceCommandInput, CreateSystemInstanceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
60
67
|
readonly input: CreateSystemInstanceCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: CreateSystemInstanceCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSystemInstanceCommandInput, CreateSystemInstanceCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
|
|
5
5
|
import { CreateSystemTemplateRequest, CreateSystemTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateSystemTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateSystemTemplateCommandInput extends CreateSystemTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateSystemTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateSystemTemplateCommandOutput extends CreateSystemTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* @deprecated
|
|
18
23
|
*
|
|
19
24
|
* <p>Creates a system. The system is validated against the entities in the
|
|
@@ -28,6 +33,8 @@ export interface CreateSystemTemplateCommandOutput extends CreateSystemTemplateR
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CreateSystemTemplateCommandInput - {@link CreateSystemTemplateCommandInput}
|
|
37
|
+
* @returns {@link CreateSystemTemplateCommandOutput}
|
|
31
38
|
* @see {@link CreateSystemTemplateCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CreateSystemTemplateCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface CreateSystemTemplateCommandOutput extends CreateSystemTemplateR
|
|
|
49
56
|
export declare class CreateSystemTemplateCommand extends $Command<CreateSystemTemplateCommandInput, CreateSystemTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
50
57
|
readonly input: CreateSystemTemplateCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: CreateSystemTemplateCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSystemTemplateCommandInput, CreateSystemTemplateCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
|
|
5
5
|
import { DeleteFlowTemplateRequest, DeleteFlowTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteFlowTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteFlowTemplateCommandInput extends DeleteFlowTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteFlowTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteFlowTemplateCommandOutput extends DeleteFlowTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* @deprecated
|
|
18
23
|
*
|
|
19
24
|
* <p>Deletes a workflow. Any new system or deployment that contains this workflow will fail to update or deploy.
|
|
@@ -28,6 +33,8 @@ export interface DeleteFlowTemplateCommandOutput extends DeleteFlowTemplateRespo
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteFlowTemplateCommandInput - {@link DeleteFlowTemplateCommandInput}
|
|
37
|
+
* @returns {@link DeleteFlowTemplateCommandOutput}
|
|
31
38
|
* @see {@link DeleteFlowTemplateCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteFlowTemplateCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteFlowTemplateCommandOutput extends DeleteFlowTemplateRespo
|
|
|
49
56
|
export declare class DeleteFlowTemplateCommand extends $Command<DeleteFlowTemplateCommandInput, DeleteFlowTemplateCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteFlowTemplateCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteFlowTemplateCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFlowTemplateCommandInput, DeleteFlowTemplateCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient";
|
|
5
5
|
import { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteNamespaceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteNamespaceCommandInput extends DeleteNamespaceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteNamespaceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* @deprecated
|
|
18
23
|
*
|
|
19
24
|
* <p>Deletes the specified namespace. This action deletes all of the entities in the namespace. Delete the systems and flows that use entities in the namespace before performing this action. This action takes no
|
|
@@ -28,6 +33,8 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteNamespaceCommandInput - {@link DeleteNamespaceCommandInput}
|
|
37
|
+
* @returns {@link DeleteNamespaceCommandOutput}
|
|
31
38
|
* @see {@link DeleteNamespaceCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteNamespaceCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link IoTThingsGraphClientResolvedConfig | config} for IoTThingsGraphClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, _
|
|
|
43
50
|
export declare class DeleteNamespaceCommand extends $Command<DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput, IoTThingsGraphClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteNamespaceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteNamespaceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTThingsGraphClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|