@aws-sdk/client-iotthingsgraph 3.160.0 → 3.163.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/CHANGELOG.md +30 -0
- package/README.md +2 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-types/IoTThingsGraph.d.ts +74 -1
- package/dist-types/IoTThingsGraphClient.d.ts +2 -0
- package/dist-types/commands/AssociateEntityToThingCommand.d.ts +2 -0
- package/dist-types/commands/CreateFlowTemplateCommand.d.ts +2 -0
- package/dist-types/commands/CreateSystemInstanceCommand.d.ts +2 -0
- package/dist-types/commands/CreateSystemTemplateCommand.d.ts +2 -0
- package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +2 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +4 -1
- package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +2 -0
- package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +2 -0
- package/dist-types/commands/DeploySystemInstanceCommand.d.ts +2 -0
- package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +2 -0
- package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +2 -0
- package/dist-types/commands/DescribeNamespaceCommand.d.ts +2 -0
- package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +2 -0
- package/dist-types/commands/GetEntitiesCommand.d.ts +2 -0
- package/dist-types/commands/GetFlowTemplateCommand.d.ts +2 -0
- package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +2 -0
- package/dist-types/commands/GetNamespaceDeletionStatusCommand.d.ts +2 -0
- package/dist-types/commands/GetSystemInstanceCommand.d.ts +2 -0
- package/dist-types/commands/GetSystemTemplateCommand.d.ts +2 -0
- package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +2 -0
- package/dist-types/commands/GetUploadStatusCommand.d.ts +2 -0
- package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/SearchEntitiesCommand.d.ts +2 -0
- package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +2 -0
- package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +2 -0
- package/dist-types/commands/SearchSystemInstancesCommand.d.ts +2 -0
- package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +2 -0
- package/dist-types/commands/SearchThingsCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +2 -0
- package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +2 -0
- package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +2 -0
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.163.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.162.0...v3.163.0) (2022-09-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-iotthingsgraph
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.162.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.161.0...v3.162.0) (2022-08-31)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **client-iotthingsgraph:** This release deprecates all APIs of the ThingsGraph service ([2584904](https://github.com/aws/aws-sdk-js-v3/commit/2584904bb60c9425713778b14df0eb041f445db4))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.161.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.160.0...v3.161.0) (2022-08-30)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **clients:** update client endpoints as of 2022-08-30 ([59043d3](https://github.com/aws/aws-sdk-js-v3/commit/59043d3755015c9185990f3ad850aaded13bd58c))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.160.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.159.0...v3.160.0) (2022-08-29)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @aws-sdk/client-iotthingsgraph
|
package/README.md
CHANGED
|
@@ -16,6 +16,8 @@ such as units of measure and communication protocols. AWS IoT Things Graph makes
|
|
|
16
16
|
and defining how they interact at an abstract level.</p>
|
|
17
17
|
<p>For more information about how AWS IoT Things Graph works, see the <a href="https://docs.aws.amazon.com/thingsgraph/latest/ug/iot-tg-whatis.html">User Guide</a>.</p>
|
|
18
18
|
|
|
19
|
+
<p>The AWS IoT Things Graph service is discontinued.</p>
|
|
20
|
+
|
|
19
21
|
## Installing
|
|
20
22
|
|
|
21
23
|
To install the this package, simply type add or install @aws-sdk/client-iotthingsgraph
|
package/dist-cjs/endpoints.js
CHANGED
package/dist-es/endpoints.js
CHANGED
|
@@ -41,9 +41,13 @@ import { IoTThingsGraphClient } from "./IoTThingsGraphClient";
|
|
|
41
41
|
* 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
|
|
42
42
|
* and defining how they interact at an abstract level.</p>
|
|
43
43
|
* <p>For more information about how AWS IoT Things Graph works, see the <a href="https://docs.aws.amazon.com/thingsgraph/latest/ug/iot-tg-whatis.html">User Guide</a>.</p>
|
|
44
|
+
*
|
|
45
|
+
* <p>The AWS IoT Things Graph service is discontinued.</p>
|
|
44
46
|
*/
|
|
45
47
|
export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
46
48
|
/**
|
|
49
|
+
* @deprecated
|
|
50
|
+
*
|
|
47
51
|
* <p>Associates a device with a concrete thing that is in the user's registry.</p>
|
|
48
52
|
* <p>A thing can be associated with only one device at a time. If you associate a thing with a new device id, its previous association will be removed.</p>
|
|
49
53
|
*/
|
|
@@ -51,6 +55,8 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
51
55
|
associateEntityToThing(args: AssociateEntityToThingCommandInput, cb: (err: any, data?: AssociateEntityToThingCommandOutput) => void): void;
|
|
52
56
|
associateEntityToThing(args: AssociateEntityToThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateEntityToThingCommandOutput) => void): void;
|
|
53
57
|
/**
|
|
58
|
+
* @deprecated
|
|
59
|
+
*
|
|
54
60
|
* <p>Creates a workflow template. Workflows can be created only in the user's namespace. (The public namespace contains only
|
|
55
61
|
* entities.) The workflow can contain only entities in the specified namespace. The workflow is validated against the entities in the
|
|
56
62
|
* latest version of the user's namespace unless another namespace version is specified in the request.</p>
|
|
@@ -59,6 +65,8 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
59
65
|
createFlowTemplate(args: CreateFlowTemplateCommandInput, cb: (err: any, data?: CreateFlowTemplateCommandOutput) => void): void;
|
|
60
66
|
createFlowTemplate(args: CreateFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFlowTemplateCommandOutput) => void): void;
|
|
61
67
|
/**
|
|
68
|
+
* @deprecated
|
|
69
|
+
*
|
|
62
70
|
* <p>Creates a system instance. </p>
|
|
63
71
|
* <p>This action validates the system instance, prepares the deployment-related resources. For Greengrass deployments, it updates the Greengrass group that is
|
|
64
72
|
* specified by the <code>greengrassGroupName</code> parameter. It also adds a file to the S3 bucket specified by the <code>s3BucketName</code> parameter. You need to
|
|
@@ -73,6 +81,8 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
73
81
|
createSystemInstance(args: CreateSystemInstanceCommandInput, cb: (err: any, data?: CreateSystemInstanceCommandOutput) => void): void;
|
|
74
82
|
createSystemInstance(args: CreateSystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSystemInstanceCommandOutput) => void): void;
|
|
75
83
|
/**
|
|
84
|
+
* @deprecated
|
|
85
|
+
*
|
|
76
86
|
* <p>Creates a system. The system is validated against the entities in the
|
|
77
87
|
* latest version of the user's namespace unless another namespace version is specified in the request.</p>
|
|
78
88
|
*/
|
|
@@ -80,6 +90,8 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
80
90
|
createSystemTemplate(args: CreateSystemTemplateCommandInput, cb: (err: any, data?: CreateSystemTemplateCommandOutput) => void): void;
|
|
81
91
|
createSystemTemplate(args: CreateSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSystemTemplateCommandOutput) => void): void;
|
|
82
92
|
/**
|
|
93
|
+
* @deprecated
|
|
94
|
+
*
|
|
83
95
|
* <p>Deletes a workflow. Any new system or deployment that contains this workflow will fail to update or deploy.
|
|
84
96
|
* Existing deployments that contain the workflow will continue to run (since they use a snapshot of the workflow taken at the time of deployment).</p>
|
|
85
97
|
*/
|
|
@@ -87,12 +99,17 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
87
99
|
deleteFlowTemplate(args: DeleteFlowTemplateCommandInput, cb: (err: any, data?: DeleteFlowTemplateCommandOutput) => void): void;
|
|
88
100
|
deleteFlowTemplate(args: DeleteFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowTemplateCommandOutput) => void): void;
|
|
89
101
|
/**
|
|
90
|
-
*
|
|
102
|
+
* @deprecated
|
|
103
|
+
*
|
|
104
|
+
* <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
|
|
105
|
+
* request parameters.</p>
|
|
91
106
|
*/
|
|
92
107
|
deleteNamespace(args: DeleteNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNamespaceCommandOutput>;
|
|
93
108
|
deleteNamespace(args: DeleteNamespaceCommandInput, cb: (err: any, data?: DeleteNamespaceCommandOutput) => void): void;
|
|
94
109
|
deleteNamespace(args: DeleteNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNamespaceCommandOutput) => void): void;
|
|
95
110
|
/**
|
|
111
|
+
* @deprecated
|
|
112
|
+
*
|
|
96
113
|
* <p>Deletes a system instance.
|
|
97
114
|
* Only system instances that have never been deployed, or that have been undeployed can be deleted.</p>
|
|
98
115
|
* <p>Users can create a new system instance that has the same ID as a deleted system instance.</p>
|
|
@@ -101,6 +118,8 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
101
118
|
deleteSystemInstance(args: DeleteSystemInstanceCommandInput, cb: (err: any, data?: DeleteSystemInstanceCommandOutput) => void): void;
|
|
102
119
|
deleteSystemInstance(args: DeleteSystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSystemInstanceCommandOutput) => void): void;
|
|
103
120
|
/**
|
|
121
|
+
* @deprecated
|
|
122
|
+
*
|
|
104
123
|
* <p>Deletes a system. New deployments can't contain the system after its deletion.
|
|
105
124
|
* Existing deployments that contain the system will continue to work because they use a snapshot of the system that is taken when it is deployed.</p>
|
|
106
125
|
*/
|
|
@@ -108,6 +127,8 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
108
127
|
deleteSystemTemplate(args: DeleteSystemTemplateCommandInput, cb: (err: any, data?: DeleteSystemTemplateCommandOutput) => void): void;
|
|
109
128
|
deleteSystemTemplate(args: DeleteSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSystemTemplateCommandOutput) => void): void;
|
|
110
129
|
/**
|
|
130
|
+
* @deprecated
|
|
131
|
+
*
|
|
111
132
|
* <p>
|
|
112
133
|
* <b>Greengrass and Cloud Deployments</b>
|
|
113
134
|
* </p>
|
|
@@ -125,24 +146,32 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
125
146
|
deploySystemInstance(args: DeploySystemInstanceCommandInput, cb: (err: any, data?: DeploySystemInstanceCommandOutput) => void): void;
|
|
126
147
|
deploySystemInstance(args: DeploySystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeploySystemInstanceCommandOutput) => void): void;
|
|
127
148
|
/**
|
|
149
|
+
* @deprecated
|
|
150
|
+
*
|
|
128
151
|
* <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>
|
|
129
152
|
*/
|
|
130
153
|
deprecateFlowTemplate(args: DeprecateFlowTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeprecateFlowTemplateCommandOutput>;
|
|
131
154
|
deprecateFlowTemplate(args: DeprecateFlowTemplateCommandInput, cb: (err: any, data?: DeprecateFlowTemplateCommandOutput) => void): void;
|
|
132
155
|
deprecateFlowTemplate(args: DeprecateFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprecateFlowTemplateCommandOutput) => void): void;
|
|
133
156
|
/**
|
|
157
|
+
* @deprecated
|
|
158
|
+
*
|
|
134
159
|
* <p>Deprecates the specified system.</p>
|
|
135
160
|
*/
|
|
136
161
|
deprecateSystemTemplate(args: DeprecateSystemTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeprecateSystemTemplateCommandOutput>;
|
|
137
162
|
deprecateSystemTemplate(args: DeprecateSystemTemplateCommandInput, cb: (err: any, data?: DeprecateSystemTemplateCommandOutput) => void): void;
|
|
138
163
|
deprecateSystemTemplate(args: DeprecateSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprecateSystemTemplateCommandOutput) => void): void;
|
|
139
164
|
/**
|
|
165
|
+
* @deprecated
|
|
166
|
+
*
|
|
140
167
|
* <p>Gets the latest version of the user's namespace and the public version that it is tracking.</p>
|
|
141
168
|
*/
|
|
142
169
|
describeNamespace(args: DescribeNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNamespaceCommandOutput>;
|
|
143
170
|
describeNamespace(args: DescribeNamespaceCommandInput, cb: (err: any, data?: DescribeNamespaceCommandOutput) => void): void;
|
|
144
171
|
describeNamespace(args: DescribeNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNamespaceCommandOutput) => void): void;
|
|
145
172
|
/**
|
|
173
|
+
* @deprecated
|
|
174
|
+
*
|
|
146
175
|
* <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
|
|
147
176
|
* one entity of a particular type can be associated with a thing.</p>
|
|
148
177
|
*/
|
|
@@ -150,6 +179,8 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
150
179
|
dissociateEntityFromThing(args: DissociateEntityFromThingCommandInput, cb: (err: any, data?: DissociateEntityFromThingCommandOutput) => void): void;
|
|
151
180
|
dissociateEntityFromThing(args: DissociateEntityFromThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DissociateEntityFromThingCommandOutput) => void): void;
|
|
152
181
|
/**
|
|
182
|
+
* @deprecated
|
|
183
|
+
*
|
|
153
184
|
* <p>Gets definitions of the specified entities. Uses the latest version of the user's namespace by default. This API returns the
|
|
154
185
|
* following TDM entities.</p>
|
|
155
186
|
* <ul>
|
|
@@ -187,12 +218,16 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
187
218
|
getEntities(args: GetEntitiesCommandInput, cb: (err: any, data?: GetEntitiesCommandOutput) => void): void;
|
|
188
219
|
getEntities(args: GetEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEntitiesCommandOutput) => void): void;
|
|
189
220
|
/**
|
|
221
|
+
* @deprecated
|
|
222
|
+
*
|
|
190
223
|
* <p>Gets the latest version of the <code>DefinitionDocument</code> and <code>FlowTemplateSummary</code> for the specified workflow.</p>
|
|
191
224
|
*/
|
|
192
225
|
getFlowTemplate(args: GetFlowTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetFlowTemplateCommandOutput>;
|
|
193
226
|
getFlowTemplate(args: GetFlowTemplateCommandInput, cb: (err: any, data?: GetFlowTemplateCommandOutput) => void): void;
|
|
194
227
|
getFlowTemplate(args: GetFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFlowTemplateCommandOutput) => void): void;
|
|
195
228
|
/**
|
|
229
|
+
* @deprecated
|
|
230
|
+
*
|
|
196
231
|
* <p>Gets revisions of the specified workflow. Only the last 100 revisions are stored. If the workflow has been deprecated,
|
|
197
232
|
* this action will return revisions that occurred before the deprecation. This action won't work for workflows that have been deleted.</p>
|
|
198
233
|
*/
|
|
@@ -200,24 +235,32 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
200
235
|
getFlowTemplateRevisions(args: GetFlowTemplateRevisionsCommandInput, cb: (err: any, data?: GetFlowTemplateRevisionsCommandOutput) => void): void;
|
|
201
236
|
getFlowTemplateRevisions(args: GetFlowTemplateRevisionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFlowTemplateRevisionsCommandOutput) => void): void;
|
|
202
237
|
/**
|
|
238
|
+
* @deprecated
|
|
239
|
+
*
|
|
203
240
|
* <p>Gets the status of a namespace deletion task.</p>
|
|
204
241
|
*/
|
|
205
242
|
getNamespaceDeletionStatus(args: GetNamespaceDeletionStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetNamespaceDeletionStatusCommandOutput>;
|
|
206
243
|
getNamespaceDeletionStatus(args: GetNamespaceDeletionStatusCommandInput, cb: (err: any, data?: GetNamespaceDeletionStatusCommandOutput) => void): void;
|
|
207
244
|
getNamespaceDeletionStatus(args: GetNamespaceDeletionStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNamespaceDeletionStatusCommandOutput) => void): void;
|
|
208
245
|
/**
|
|
246
|
+
* @deprecated
|
|
247
|
+
*
|
|
209
248
|
* <p>Gets a system instance.</p>
|
|
210
249
|
*/
|
|
211
250
|
getSystemInstance(args: GetSystemInstanceCommandInput, options?: __HttpHandlerOptions): Promise<GetSystemInstanceCommandOutput>;
|
|
212
251
|
getSystemInstance(args: GetSystemInstanceCommandInput, cb: (err: any, data?: GetSystemInstanceCommandOutput) => void): void;
|
|
213
252
|
getSystemInstance(args: GetSystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSystemInstanceCommandOutput) => void): void;
|
|
214
253
|
/**
|
|
254
|
+
* @deprecated
|
|
255
|
+
*
|
|
215
256
|
* <p>Gets a system.</p>
|
|
216
257
|
*/
|
|
217
258
|
getSystemTemplate(args: GetSystemTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetSystemTemplateCommandOutput>;
|
|
218
259
|
getSystemTemplate(args: GetSystemTemplateCommandInput, cb: (err: any, data?: GetSystemTemplateCommandOutput) => void): void;
|
|
219
260
|
getSystemTemplate(args: GetSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSystemTemplateCommandOutput) => void): void;
|
|
220
261
|
/**
|
|
262
|
+
* @deprecated
|
|
263
|
+
*
|
|
221
264
|
* <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
|
|
222
265
|
* the revisions that occurred before its deprecation. This action won't work with systems that have been deleted.</p>
|
|
223
266
|
*/
|
|
@@ -225,54 +268,72 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
225
268
|
getSystemTemplateRevisions(args: GetSystemTemplateRevisionsCommandInput, cb: (err: any, data?: GetSystemTemplateRevisionsCommandOutput) => void): void;
|
|
226
269
|
getSystemTemplateRevisions(args: GetSystemTemplateRevisionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSystemTemplateRevisionsCommandOutput) => void): void;
|
|
227
270
|
/**
|
|
271
|
+
* @deprecated
|
|
272
|
+
*
|
|
228
273
|
* <p>Gets the status of the specified upload.</p>
|
|
229
274
|
*/
|
|
230
275
|
getUploadStatus(args: GetUploadStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetUploadStatusCommandOutput>;
|
|
231
276
|
getUploadStatus(args: GetUploadStatusCommandInput, cb: (err: any, data?: GetUploadStatusCommandOutput) => void): void;
|
|
232
277
|
getUploadStatus(args: GetUploadStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUploadStatusCommandOutput) => void): void;
|
|
233
278
|
/**
|
|
279
|
+
* @deprecated
|
|
280
|
+
*
|
|
234
281
|
* <p>Returns a list of objects that contain information about events in a flow execution.</p>
|
|
235
282
|
*/
|
|
236
283
|
listFlowExecutionMessages(args: ListFlowExecutionMessagesCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowExecutionMessagesCommandOutput>;
|
|
237
284
|
listFlowExecutionMessages(args: ListFlowExecutionMessagesCommandInput, cb: (err: any, data?: ListFlowExecutionMessagesCommandOutput) => void): void;
|
|
238
285
|
listFlowExecutionMessages(args: ListFlowExecutionMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowExecutionMessagesCommandOutput) => void): void;
|
|
239
286
|
/**
|
|
287
|
+
* @deprecated
|
|
288
|
+
*
|
|
240
289
|
* <p>Lists all tags on an AWS IoT Things Graph resource.</p>
|
|
241
290
|
*/
|
|
242
291
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
243
292
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
244
293
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
245
294
|
/**
|
|
295
|
+
* @deprecated
|
|
296
|
+
*
|
|
246
297
|
* <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>
|
|
247
298
|
*/
|
|
248
299
|
searchEntities(args: SearchEntitiesCommandInput, options?: __HttpHandlerOptions): Promise<SearchEntitiesCommandOutput>;
|
|
249
300
|
searchEntities(args: SearchEntitiesCommandInput, cb: (err: any, data?: SearchEntitiesCommandOutput) => void): void;
|
|
250
301
|
searchEntities(args: SearchEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchEntitiesCommandOutput) => void): void;
|
|
251
302
|
/**
|
|
303
|
+
* @deprecated
|
|
304
|
+
*
|
|
252
305
|
* <p>Searches for AWS IoT Things Graph workflow execution instances.</p>
|
|
253
306
|
*/
|
|
254
307
|
searchFlowExecutions(args: SearchFlowExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<SearchFlowExecutionsCommandOutput>;
|
|
255
308
|
searchFlowExecutions(args: SearchFlowExecutionsCommandInput, cb: (err: any, data?: SearchFlowExecutionsCommandOutput) => void): void;
|
|
256
309
|
searchFlowExecutions(args: SearchFlowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchFlowExecutionsCommandOutput) => void): void;
|
|
257
310
|
/**
|
|
311
|
+
* @deprecated
|
|
312
|
+
*
|
|
258
313
|
* <p>Searches for summary information about workflows.</p>
|
|
259
314
|
*/
|
|
260
315
|
searchFlowTemplates(args: SearchFlowTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<SearchFlowTemplatesCommandOutput>;
|
|
261
316
|
searchFlowTemplates(args: SearchFlowTemplatesCommandInput, cb: (err: any, data?: SearchFlowTemplatesCommandOutput) => void): void;
|
|
262
317
|
searchFlowTemplates(args: SearchFlowTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchFlowTemplatesCommandOutput) => void): void;
|
|
263
318
|
/**
|
|
319
|
+
* @deprecated
|
|
320
|
+
*
|
|
264
321
|
* <p>Searches for system instances in the user's account.</p>
|
|
265
322
|
*/
|
|
266
323
|
searchSystemInstances(args: SearchSystemInstancesCommandInput, options?: __HttpHandlerOptions): Promise<SearchSystemInstancesCommandOutput>;
|
|
267
324
|
searchSystemInstances(args: SearchSystemInstancesCommandInput, cb: (err: any, data?: SearchSystemInstancesCommandOutput) => void): void;
|
|
268
325
|
searchSystemInstances(args: SearchSystemInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchSystemInstancesCommandOutput) => void): void;
|
|
269
326
|
/**
|
|
327
|
+
* @deprecated
|
|
328
|
+
*
|
|
270
329
|
* <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>
|
|
271
330
|
*/
|
|
272
331
|
searchSystemTemplates(args: SearchSystemTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<SearchSystemTemplatesCommandOutput>;
|
|
273
332
|
searchSystemTemplates(args: SearchSystemTemplatesCommandInput, cb: (err: any, data?: SearchSystemTemplatesCommandOutput) => void): void;
|
|
274
333
|
searchSystemTemplates(args: SearchSystemTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchSystemTemplatesCommandOutput) => void): void;
|
|
275
334
|
/**
|
|
335
|
+
* @deprecated
|
|
336
|
+
*
|
|
276
337
|
* <p>Searches for things associated with the specified entity. You can search by both device and device model.</p>
|
|
277
338
|
* <p>For example, if two different devices, camera1 and camera2, implement the camera device model, the user can associate thing1 to camera1 and thing2 to camera2.
|
|
278
339
|
* <code>SearchThings(camera2)</code> will return only thing2, but <code>SearchThings(camera)</code> will return both thing1 and thing2.</p>
|
|
@@ -282,24 +343,32 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
282
343
|
searchThings(args: SearchThingsCommandInput, cb: (err: any, data?: SearchThingsCommandOutput) => void): void;
|
|
283
344
|
searchThings(args: SearchThingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchThingsCommandOutput) => void): void;
|
|
284
345
|
/**
|
|
346
|
+
* @deprecated
|
|
347
|
+
*
|
|
285
348
|
* <p>Creates a tag for the specified resource.</p>
|
|
286
349
|
*/
|
|
287
350
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
288
351
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
289
352
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
290
353
|
/**
|
|
354
|
+
* @deprecated
|
|
355
|
+
*
|
|
291
356
|
* <p>Removes a system instance from its target (Cloud or Greengrass).</p>
|
|
292
357
|
*/
|
|
293
358
|
undeploySystemInstance(args: UndeploySystemInstanceCommandInput, options?: __HttpHandlerOptions): Promise<UndeploySystemInstanceCommandOutput>;
|
|
294
359
|
undeploySystemInstance(args: UndeploySystemInstanceCommandInput, cb: (err: any, data?: UndeploySystemInstanceCommandOutput) => void): void;
|
|
295
360
|
undeploySystemInstance(args: UndeploySystemInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UndeploySystemInstanceCommandOutput) => void): void;
|
|
296
361
|
/**
|
|
362
|
+
* @deprecated
|
|
363
|
+
*
|
|
297
364
|
* <p>Removes a tag from the specified resource.</p>
|
|
298
365
|
*/
|
|
299
366
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
300
367
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
301
368
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
302
369
|
/**
|
|
370
|
+
* @deprecated
|
|
371
|
+
*
|
|
303
372
|
* <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
|
|
304
373
|
* behavior, copy the workflow (creating a new workflow with a different ID), and update the copy. The workflow can contain only entities in the specified namespace. </p>
|
|
305
374
|
*/
|
|
@@ -307,12 +376,16 @@ export declare class IoTThingsGraph extends IoTThingsGraphClient {
|
|
|
307
376
|
updateFlowTemplate(args: UpdateFlowTemplateCommandInput, cb: (err: any, data?: UpdateFlowTemplateCommandOutput) => void): void;
|
|
308
377
|
updateFlowTemplate(args: UpdateFlowTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowTemplateCommandOutput) => void): void;
|
|
309
378
|
/**
|
|
379
|
+
* @deprecated
|
|
380
|
+
*
|
|
310
381
|
* <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>
|
|
311
382
|
*/
|
|
312
383
|
updateSystemTemplate(args: UpdateSystemTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSystemTemplateCommandOutput>;
|
|
313
384
|
updateSystemTemplate(args: UpdateSystemTemplateCommandInput, cb: (err: any, data?: UpdateSystemTemplateCommandOutput) => void): void;
|
|
314
385
|
updateSystemTemplate(args: UpdateSystemTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSystemTemplateCommandOutput) => void): void;
|
|
315
386
|
/**
|
|
387
|
+
* @deprecated
|
|
388
|
+
*
|
|
316
389
|
* <p>Asynchronously uploads one or more entity definitions to the user's namespace. The <code>document</code> parameter is required if
|
|
317
390
|
* <code>syncWithPublicNamespace</code> and <code>deleteExistingEntites</code> are false. If the <code>syncWithPublicNamespace</code> parameter is set to
|
|
318
391
|
* <code>true</code>, the user's namespace will synchronize with the latest version of the public namespace. If <code>deprecateExistingEntities</code> is set to true,
|
|
@@ -166,6 +166,8 @@ export interface IoTThingsGraphClientResolvedConfig extends IoTThingsGraphClient
|
|
|
166
166
|
* 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
|
|
167
167
|
* and defining how they interact at an abstract level.</p>
|
|
168
168
|
* <p>For more information about how AWS IoT Things Graph works, see the <a href="https://docs.aws.amazon.com/thingsgraph/latest/ug/iot-tg-whatis.html">User Guide</a>.</p>
|
|
169
|
+
*
|
|
170
|
+
* <p>The AWS IoT Things Graph service is discontinued.</p>
|
|
169
171
|
*/
|
|
170
172
|
export declare class IoTThingsGraphClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IoTThingsGraphClientResolvedConfig> {
|
|
171
173
|
/**
|
|
@@ -7,6 +7,8 @@ export interface AssociateEntityToThingCommandInput extends AssociateEntityToThi
|
|
|
7
7
|
export interface AssociateEntityToThingCommandOutput extends AssociateEntityToThingResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Associates a device with a concrete thing that is in the user's registry.</p>
|
|
11
13
|
* <p>A thing can be associated with only one device at a time. If you associate a thing with a new device id, its previous association will be removed.</p>
|
|
12
14
|
* @example
|
|
@@ -7,6 +7,8 @@ export interface CreateFlowTemplateCommandInput extends CreateFlowTemplateReques
|
|
|
7
7
|
export interface CreateFlowTemplateCommandOutput extends CreateFlowTemplateResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Creates a workflow template. Workflows can be created only in the user's namespace. (The public namespace contains only
|
|
11
13
|
* entities.) The workflow can contain only entities in the specified namespace. The workflow is validated against the entities in the
|
|
12
14
|
* latest version of the user's namespace unless another namespace version is specified in the request.</p>
|
|
@@ -7,6 +7,8 @@ export interface CreateSystemInstanceCommandInput extends CreateSystemInstanceRe
|
|
|
7
7
|
export interface CreateSystemInstanceCommandOutput extends CreateSystemInstanceResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Creates a system instance. </p>
|
|
11
13
|
* <p>This action validates the system instance, prepares the deployment-related resources. For Greengrass deployments, it updates the Greengrass group that is
|
|
12
14
|
* specified by the <code>greengrassGroupName</code> parameter. It also adds a file to the S3 bucket specified by the <code>s3BucketName</code> parameter. You need to
|
|
@@ -7,6 +7,8 @@ export interface CreateSystemTemplateCommandInput extends CreateSystemTemplateRe
|
|
|
7
7
|
export interface CreateSystemTemplateCommandOutput extends CreateSystemTemplateResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Creates a system. The system is validated against the entities in the
|
|
11
13
|
* latest version of the user's namespace unless another namespace version is specified in the request.</p>
|
|
12
14
|
* @example
|
|
@@ -7,6 +7,8 @@ export interface DeleteFlowTemplateCommandInput extends DeleteFlowTemplateReques
|
|
|
7
7
|
export interface DeleteFlowTemplateCommandOutput extends DeleteFlowTemplateResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Deletes a workflow. Any new system or deployment that contains this workflow will fail to update or deploy.
|
|
11
13
|
* Existing deployments that contain the workflow will continue to run (since they use a snapshot of the workflow taken at the time of deployment).</p>
|
|
12
14
|
* @example
|
|
@@ -7,7 +7,10 @@ export interface DeleteNamespaceCommandInput extends DeleteNamespaceRequest {
|
|
|
7
7
|
export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
12
|
+
* <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
|
|
13
|
+
* request parameters.</p>
|
|
11
14
|
* @example
|
|
12
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
16
|
* ```javascript
|
|
@@ -7,6 +7,8 @@ export interface DeleteSystemInstanceCommandInput extends DeleteSystemInstanceRe
|
|
|
7
7
|
export interface DeleteSystemInstanceCommandOutput extends DeleteSystemInstanceResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Deletes a system instance.
|
|
11
13
|
* Only system instances that have never been deployed, or that have been undeployed can be deleted.</p>
|
|
12
14
|
* <p>Users can create a new system instance that has the same ID as a deleted system instance.</p>
|
|
@@ -7,6 +7,8 @@ export interface DeleteSystemTemplateCommandInput extends DeleteSystemTemplateRe
|
|
|
7
7
|
export interface DeleteSystemTemplateCommandOutput extends DeleteSystemTemplateResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Deletes a system. New deployments can't contain the system after its deletion.
|
|
11
13
|
* Existing deployments that contain the system will continue to work because they use a snapshot of the system that is taken when it is deployed.</p>
|
|
12
14
|
* @example
|
|
@@ -7,6 +7,8 @@ export interface DeploySystemInstanceCommandInput extends DeploySystemInstanceRe
|
|
|
7
7
|
export interface DeploySystemInstanceCommandOutput extends DeploySystemInstanceResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>
|
|
11
13
|
* <b>Greengrass and Cloud Deployments</b>
|
|
12
14
|
* </p>
|
|
@@ -7,6 +7,8 @@ export interface DeprecateFlowTemplateCommandInput extends DeprecateFlowTemplate
|
|
|
7
7
|
export interface DeprecateFlowTemplateCommandOutput extends DeprecateFlowTemplateResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <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>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface DeprecateSystemTemplateCommandInput extends DeprecateSystemTemp
|
|
|
7
7
|
export interface DeprecateSystemTemplateCommandOutput extends DeprecateSystemTemplateResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Deprecates the specified system.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface DescribeNamespaceCommandInput extends DescribeNamespaceRequest
|
|
|
7
7
|
export interface DescribeNamespaceCommandOutput extends DescribeNamespaceResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Gets the latest version of the user's namespace and the public version that it is tracking.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface DissociateEntityFromThingCommandInput extends DissociateEntityF
|
|
|
7
7
|
export interface DissociateEntityFromThingCommandOutput extends DissociateEntityFromThingResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <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
|
|
11
13
|
* one entity of a particular type can be associated with a thing.</p>
|
|
12
14
|
* @example
|
|
@@ -7,6 +7,8 @@ export interface GetEntitiesCommandInput extends GetEntitiesRequest {
|
|
|
7
7
|
export interface GetEntitiesCommandOutput extends GetEntitiesResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Gets definitions of the specified entities. Uses the latest version of the user's namespace by default. This API returns the
|
|
11
13
|
* following TDM entities.</p>
|
|
12
14
|
* <ul>
|
|
@@ -7,6 +7,8 @@ export interface GetFlowTemplateCommandInput extends GetFlowTemplateRequest {
|
|
|
7
7
|
export interface GetFlowTemplateCommandOutput extends GetFlowTemplateResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Gets the latest version of the <code>DefinitionDocument</code> and <code>FlowTemplateSummary</code> for the specified workflow.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface GetFlowTemplateRevisionsCommandInput extends GetFlowTemplateRev
|
|
|
7
7
|
export interface GetFlowTemplateRevisionsCommandOutput extends GetFlowTemplateRevisionsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Gets revisions of the specified workflow. Only the last 100 revisions are stored. If the workflow has been deprecated,
|
|
11
13
|
* this action will return revisions that occurred before the deprecation. This action won't work for workflows that have been deleted.</p>
|
|
12
14
|
* @example
|
|
@@ -7,6 +7,8 @@ export interface GetNamespaceDeletionStatusCommandInput extends GetNamespaceDele
|
|
|
7
7
|
export interface GetNamespaceDeletionStatusCommandOutput extends GetNamespaceDeletionStatusResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Gets the status of a namespace deletion task.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface GetSystemInstanceCommandInput extends GetSystemInstanceRequest
|
|
|
7
7
|
export interface GetSystemInstanceCommandOutput extends GetSystemInstanceResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Gets a system instance.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface GetSystemTemplateCommandInput extends GetSystemTemplateRequest
|
|
|
7
7
|
export interface GetSystemTemplateCommandOutput extends GetSystemTemplateResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Gets a system.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface GetSystemTemplateRevisionsCommandInput extends GetSystemTemplat
|
|
|
7
7
|
export interface GetSystemTemplateRevisionsCommandOutput extends GetSystemTemplateRevisionsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <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
|
|
11
13
|
* the revisions that occurred before its deprecation. This action won't work with systems that have been deleted.</p>
|
|
12
14
|
* @example
|
|
@@ -7,6 +7,8 @@ export interface GetUploadStatusCommandInput extends GetUploadStatusRequest {
|
|
|
7
7
|
export interface GetUploadStatusCommandOutput extends GetUploadStatusResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Gets the status of the specified upload.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface ListFlowExecutionMessagesCommandInput extends ListFlowExecution
|
|
|
7
7
|
export interface ListFlowExecutionMessagesCommandOutput extends ListFlowExecutionMessagesResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Returns a list of objects that contain information about events in a flow execution.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
|
|
|
7
7
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Lists all tags on an AWS IoT Things Graph resource.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface SearchEntitiesCommandInput extends SearchEntitiesRequest {
|
|
|
7
7
|
export interface SearchEntitiesCommandOutput extends SearchEntitiesResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <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>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface SearchFlowExecutionsCommandInput extends SearchFlowExecutionsRe
|
|
|
7
7
|
export interface SearchFlowExecutionsCommandOutput extends SearchFlowExecutionsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Searches for AWS IoT Things Graph workflow execution instances.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface SearchFlowTemplatesCommandInput extends SearchFlowTemplatesRequ
|
|
|
7
7
|
export interface SearchFlowTemplatesCommandOutput extends SearchFlowTemplatesResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Searches for summary information about workflows.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface SearchSystemInstancesCommandInput extends SearchSystemInstances
|
|
|
7
7
|
export interface SearchSystemInstancesCommandOutput extends SearchSystemInstancesResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Searches for system instances in the user's account.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface SearchSystemTemplatesCommandInput extends SearchSystemTemplates
|
|
|
7
7
|
export interface SearchSystemTemplatesCommandOutput extends SearchSystemTemplatesResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <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>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface SearchThingsCommandInput extends SearchThingsRequest {
|
|
|
7
7
|
export interface SearchThingsCommandOutput extends SearchThingsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Searches for things associated with the specified entity. You can search by both device and device model.</p>
|
|
11
13
|
* <p>For example, if two different devices, camera1 and camera2, implement the camera device model, the user can associate thing1 to camera1 and thing2 to camera2.
|
|
12
14
|
* <code>SearchThings(camera2)</code> will return only thing2, but <code>SearchThings(camera)</code> will return both thing1 and thing2.</p>
|
|
@@ -7,6 +7,8 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
7
7
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Creates a tag for the specified resource.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface UndeploySystemInstanceCommandInput extends UndeploySystemInstan
|
|
|
7
7
|
export interface UndeploySystemInstanceCommandOutput extends UndeploySystemInstanceResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Removes a system instance from its target (Cloud or Greengrass).</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
|
7
7
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Removes a tag from the specified resource.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface UpdateFlowTemplateCommandInput extends UpdateFlowTemplateReques
|
|
|
7
7
|
export interface UpdateFlowTemplateCommandOutput extends UpdateFlowTemplateResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <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
|
|
11
13
|
* behavior, copy the workflow (creating a new workflow with a different ID), and update the copy. The workflow can contain only entities in the specified namespace. </p>
|
|
12
14
|
* @example
|
|
@@ -7,6 +7,8 @@ export interface UpdateSystemTemplateCommandInput extends UpdateSystemTemplateRe
|
|
|
7
7
|
export interface UpdateSystemTemplateCommandOutput extends UpdateSystemTemplateResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <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>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,6 +7,8 @@ export interface UploadEntityDefinitionsCommandInput extends UploadEntityDefinit
|
|
|
7
7
|
export interface UploadEntityDefinitionsCommandOutput extends UploadEntityDefinitionsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
+
* @deprecated
|
|
11
|
+
*
|
|
10
12
|
* <p>Asynchronously uploads one or more entity definitions to the user's namespace. The <code>document</code> parameter is required if
|
|
11
13
|
* <code>syncWithPublicNamespace</code> and <code>deleteExistingEntites</code> are false. If the <code>syncWithPublicNamespace</code> parameter is set to
|
|
12
14
|
* <code>true</code>, the user's namespace will synchronize with the latest version of the public namespace. If <code>deprecateExistingEntities</code> is set to true,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotthingsgraph",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotthingsgraph Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.163.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",
|
|
@@ -18,35 +18,35 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.163.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.163.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.163.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.162.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.162.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.162.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.162.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.162.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.162.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.162.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.162.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.162.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.163.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.162.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.162.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.162.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.162.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.162.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.162.0",
|
|
40
|
+
"@aws-sdk/types": "3.162.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.162.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.154.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.162.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.163.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.162.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.162.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1"
|