@aws-sdk/client-iotthingsgraph 3.183.0 → 3.186.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 +19 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/IoTThingsGraph.js +149 -142
- package/dist-es/IoTThingsGraphClient.js +28 -22
- package/dist-es/commands/AssociateEntityToThingCommand.js +28 -21
- package/dist-es/commands/CreateFlowTemplateCommand.js +28 -21
- package/dist-es/commands/CreateSystemInstanceCommand.js +28 -21
- package/dist-es/commands/CreateSystemTemplateCommand.js +28 -21
- package/dist-es/commands/DeleteFlowTemplateCommand.js +28 -21
- package/dist-es/commands/DeleteNamespaceCommand.js +28 -21
- package/dist-es/commands/DeleteSystemInstanceCommand.js +28 -21
- package/dist-es/commands/DeleteSystemTemplateCommand.js +28 -21
- package/dist-es/commands/DeploySystemInstanceCommand.js +28 -21
- package/dist-es/commands/DeprecateFlowTemplateCommand.js +28 -21
- package/dist-es/commands/DeprecateSystemTemplateCommand.js +28 -21
- package/dist-es/commands/DescribeNamespaceCommand.js +28 -21
- package/dist-es/commands/DissociateEntityFromThingCommand.js +28 -21
- package/dist-es/commands/GetEntitiesCommand.js +28 -21
- package/dist-es/commands/GetFlowTemplateCommand.js +28 -21
- package/dist-es/commands/GetFlowTemplateRevisionsCommand.js +28 -21
- package/dist-es/commands/GetNamespaceDeletionStatusCommand.js +28 -21
- package/dist-es/commands/GetSystemInstanceCommand.js +28 -21
- package/dist-es/commands/GetSystemTemplateCommand.js +28 -21
- package/dist-es/commands/GetSystemTemplateRevisionsCommand.js +28 -21
- package/dist-es/commands/GetUploadStatusCommand.js +28 -21
- package/dist-es/commands/ListFlowExecutionMessagesCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/SearchEntitiesCommand.js +28 -21
- package/dist-es/commands/SearchFlowExecutionsCommand.js +28 -21
- package/dist-es/commands/SearchFlowTemplatesCommand.js +28 -21
- package/dist-es/commands/SearchSystemInstancesCommand.js +28 -21
- package/dist-es/commands/SearchSystemTemplatesCommand.js +28 -21
- package/dist-es/commands/SearchThingsCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UndeploySystemInstanceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateFlowTemplateCommand.js +28 -21
- package/dist-es/commands/UpdateSystemTemplateCommand.js +28 -21
- package/dist-es/commands/UploadEntityDefinitionsCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/IoTThingsGraphServiceException.js +10 -5
- package/dist-es/models/models_0.js +166 -341
- package/dist-es/pagination/GetFlowTemplateRevisionsPaginator.js +68 -25
- package/dist-es/pagination/GetSystemTemplateRevisionsPaginator.js +68 -25
- package/dist-es/pagination/ListFlowExecutionMessagesPaginator.js +68 -25
- package/dist-es/pagination/ListTagsForResourcePaginator.js +68 -25
- package/dist-es/pagination/SearchEntitiesPaginator.js +68 -25
- package/dist-es/pagination/SearchFlowExecutionsPaginator.js +68 -25
- package/dist-es/pagination/SearchFlowTemplatesPaginator.js +68 -25
- package/dist-es/pagination/SearchSystemInstancesPaginator.js +68 -25
- package/dist-es/pagination/SearchSystemTemplatesPaginator.js +68 -25
- package/dist-es/pagination/SearchThingsPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +2918 -2228
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
|
@@ -1,80 +1,81 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { IoTThingsGraphServiceException as __BaseException } from "./IoTThingsGraphServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
this.$fault = "server";
|
|
11
|
-
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
3
|
+
var InternalFailureException = (function (_super) {
|
|
4
|
+
__extends(InternalFailureException, _super);
|
|
5
|
+
function InternalFailureException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "InternalFailureException", $fault: "server" }, opts)) || this;
|
|
7
|
+
_this.name = "InternalFailureException";
|
|
8
|
+
_this.$fault = "server";
|
|
9
|
+
Object.setPrototypeOf(_this, InternalFailureException.prototype);
|
|
10
|
+
return _this;
|
|
12
11
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
12
|
+
return InternalFailureException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { InternalFailureException };
|
|
15
|
+
var InvalidRequestException = (function (_super) {
|
|
16
|
+
__extends(InvalidRequestException, _super);
|
|
17
|
+
function InvalidRequestException(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "InvalidRequestException";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
22
|
+
return _this;
|
|
24
23
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
24
|
+
return InvalidRequestException;
|
|
25
|
+
}(__BaseException));
|
|
26
|
+
export { InvalidRequestException };
|
|
27
|
+
var ResourceNotFoundException = (function (_super) {
|
|
28
|
+
__extends(ResourceNotFoundException, _super);
|
|
29
|
+
function ResourceNotFoundException(opts) {
|
|
30
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
31
|
+
_this.name = "ResourceNotFoundException";
|
|
32
|
+
_this.$fault = "client";
|
|
33
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
34
|
+
return _this;
|
|
36
35
|
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
36
|
+
return ResourceNotFoundException;
|
|
37
|
+
}(__BaseException));
|
|
38
|
+
export { ResourceNotFoundException };
|
|
39
|
+
var ThrottlingException = (function (_super) {
|
|
40
|
+
__extends(ThrottlingException, _super);
|
|
41
|
+
function ThrottlingException(opts) {
|
|
42
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
43
|
+
_this.name = "ThrottlingException";
|
|
44
|
+
_this.$fault = "client";
|
|
45
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
46
|
+
return _this;
|
|
48
47
|
}
|
|
49
|
-
|
|
48
|
+
return ThrottlingException;
|
|
49
|
+
}(__BaseException));
|
|
50
|
+
export { ThrottlingException };
|
|
50
51
|
export var DefinitionLanguage;
|
|
51
52
|
(function (DefinitionLanguage) {
|
|
52
53
|
DefinitionLanguage["GRAPHQL"] = "GRAPHQL";
|
|
53
54
|
})(DefinitionLanguage || (DefinitionLanguage = {}));
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
this.$fault = "client";
|
|
63
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
55
|
+
var LimitExceededException = (function (_super) {
|
|
56
|
+
__extends(LimitExceededException, _super);
|
|
57
|
+
function LimitExceededException(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "LimitExceededException";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
62
|
+
return _this;
|
|
64
63
|
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
64
|
+
return LimitExceededException;
|
|
65
|
+
}(__BaseException));
|
|
66
|
+
export { LimitExceededException };
|
|
67
|
+
var ResourceAlreadyExistsException = (function (_super) {
|
|
68
|
+
__extends(ResourceAlreadyExistsException, _super);
|
|
69
|
+
function ResourceAlreadyExistsException(opts) {
|
|
70
|
+
var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
71
|
+
_this.name = "ResourceAlreadyExistsException";
|
|
72
|
+
_this.$fault = "client";
|
|
73
|
+
Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
|
|
74
|
+
return _this;
|
|
76
75
|
}
|
|
77
|
-
|
|
76
|
+
return ResourceAlreadyExistsException;
|
|
77
|
+
}(__BaseException));
|
|
78
|
+
export { ResourceAlreadyExistsException };
|
|
78
79
|
export var DeploymentTarget;
|
|
79
80
|
(function (DeploymentTarget) {
|
|
80
81
|
DeploymentTarget["CLOUD"] = "CLOUD";
|
|
@@ -91,18 +92,18 @@ export var SystemInstanceDeploymentStatus;
|
|
|
91
92
|
SystemInstanceDeploymentStatus["PENDING_DELETE"] = "PENDING_DELETE";
|
|
92
93
|
SystemInstanceDeploymentStatus["UNDEPLOY_IN_PROGRESS"] = "UNDEPLOY_IN_PROGRESS";
|
|
93
94
|
})(SystemInstanceDeploymentStatus || (SystemInstanceDeploymentStatus = {}));
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
this.$fault = "client";
|
|
103
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
95
|
+
var ResourceInUseException = (function (_super) {
|
|
96
|
+
__extends(ResourceInUseException, _super);
|
|
97
|
+
function ResourceInUseException(opts) {
|
|
98
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
|
|
99
|
+
_this.name = "ResourceInUseException";
|
|
100
|
+
_this.$fault = "client";
|
|
101
|
+
Object.setPrototypeOf(_this, ResourceInUseException.prototype);
|
|
102
|
+
return _this;
|
|
104
103
|
}
|
|
105
|
-
|
|
104
|
+
return ResourceInUseException;
|
|
105
|
+
}(__BaseException));
|
|
106
|
+
export { ResourceInUseException };
|
|
106
107
|
export var EntityType;
|
|
107
108
|
(function (EntityType) {
|
|
108
109
|
EntityType["ACTION"] = "ACTION";
|
|
@@ -180,267 +181,91 @@ export var SystemTemplateFilterName;
|
|
|
180
181
|
(function (SystemTemplateFilterName) {
|
|
181
182
|
SystemTemplateFilterName["FLOW_TEMPLATE_ID"] = "FLOW_TEMPLATE_ID";
|
|
182
183
|
})(SystemTemplateFilterName || (SystemTemplateFilterName = {}));
|
|
183
|
-
export
|
|
184
|
-
|
|
185
|
-
});
|
|
186
|
-
export
|
|
187
|
-
|
|
188
|
-
});
|
|
189
|
-
export
|
|
190
|
-
|
|
191
|
-
});
|
|
192
|
-
export
|
|
193
|
-
|
|
194
|
-
});
|
|
195
|
-
export
|
|
196
|
-
|
|
197
|
-
});
|
|
198
|
-
export
|
|
199
|
-
|
|
200
|
-
});
|
|
201
|
-
export
|
|
202
|
-
|
|
203
|
-
});
|
|
204
|
-
export
|
|
205
|
-
|
|
206
|
-
});
|
|
207
|
-
export
|
|
208
|
-
|
|
209
|
-
});
|
|
210
|
-
export
|
|
211
|
-
|
|
212
|
-
});
|
|
213
|
-
export
|
|
214
|
-
|
|
215
|
-
});
|
|
216
|
-
export
|
|
217
|
-
|
|
218
|
-
});
|
|
219
|
-
export
|
|
220
|
-
|
|
221
|
-
});
|
|
222
|
-
export
|
|
223
|
-
|
|
224
|
-
});
|
|
225
|
-
export
|
|
226
|
-
|
|
227
|
-
});
|
|
228
|
-
export
|
|
229
|
-
|
|
230
|
-
});
|
|
231
|
-
export
|
|
232
|
-
|
|
233
|
-
});
|
|
234
|
-
export
|
|
235
|
-
|
|
236
|
-
});
|
|
237
|
-
export
|
|
238
|
-
|
|
239
|
-
});
|
|
240
|
-
export
|
|
241
|
-
|
|
242
|
-
});
|
|
243
|
-
export
|
|
244
|
-
|
|
245
|
-
});
|
|
246
|
-
export
|
|
247
|
-
|
|
248
|
-
});
|
|
249
|
-
export
|
|
250
|
-
|
|
251
|
-
});
|
|
252
|
-
export
|
|
253
|
-
|
|
254
|
-
});
|
|
255
|
-
export
|
|
256
|
-
|
|
257
|
-
});
|
|
258
|
-
export
|
|
259
|
-
|
|
260
|
-
});
|
|
261
|
-
export
|
|
262
|
-
|
|
263
|
-
});
|
|
264
|
-
export
|
|
265
|
-
|
|
266
|
-
});
|
|
267
|
-
export
|
|
268
|
-
|
|
269
|
-
});
|
|
270
|
-
export
|
|
271
|
-
...obj,
|
|
272
|
-
});
|
|
273
|
-
export const DescribeNamespaceResponseFilterSensitiveLog = (obj) => ({
|
|
274
|
-
...obj,
|
|
275
|
-
});
|
|
276
|
-
export const DissociateEntityFromThingRequestFilterSensitiveLog = (obj) => ({
|
|
277
|
-
...obj,
|
|
278
|
-
});
|
|
279
|
-
export const DissociateEntityFromThingResponseFilterSensitiveLog = (obj) => ({
|
|
280
|
-
...obj,
|
|
281
|
-
});
|
|
282
|
-
export const EntityDescriptionFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
});
|
|
285
|
-
export const EntityFilterFilterSensitiveLog = (obj) => ({
|
|
286
|
-
...obj,
|
|
287
|
-
});
|
|
288
|
-
export const FlowExecutionMessageFilterSensitiveLog = (obj) => ({
|
|
289
|
-
...obj,
|
|
290
|
-
});
|
|
291
|
-
export const FlowExecutionSummaryFilterSensitiveLog = (obj) => ({
|
|
292
|
-
...obj,
|
|
293
|
-
});
|
|
294
|
-
export const FlowTemplateDescriptionFilterSensitiveLog = (obj) => ({
|
|
295
|
-
...obj,
|
|
296
|
-
});
|
|
297
|
-
export const FlowTemplateFilterFilterSensitiveLog = (obj) => ({
|
|
298
|
-
...obj,
|
|
299
|
-
});
|
|
300
|
-
export const GetEntitiesRequestFilterSensitiveLog = (obj) => ({
|
|
301
|
-
...obj,
|
|
302
|
-
});
|
|
303
|
-
export const GetEntitiesResponseFilterSensitiveLog = (obj) => ({
|
|
304
|
-
...obj,
|
|
305
|
-
});
|
|
306
|
-
export const GetFlowTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
307
|
-
...obj,
|
|
308
|
-
});
|
|
309
|
-
export const GetFlowTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
310
|
-
...obj,
|
|
311
|
-
});
|
|
312
|
-
export const GetFlowTemplateRevisionsRequestFilterSensitiveLog = (obj) => ({
|
|
313
|
-
...obj,
|
|
314
|
-
});
|
|
315
|
-
export const GetFlowTemplateRevisionsResponseFilterSensitiveLog = (obj) => ({
|
|
316
|
-
...obj,
|
|
317
|
-
});
|
|
318
|
-
export const GetNamespaceDeletionStatusRequestFilterSensitiveLog = (obj) => ({
|
|
319
|
-
...obj,
|
|
320
|
-
});
|
|
321
|
-
export const GetNamespaceDeletionStatusResponseFilterSensitiveLog = (obj) => ({
|
|
322
|
-
...obj,
|
|
323
|
-
});
|
|
324
|
-
export const GetSystemInstanceRequestFilterSensitiveLog = (obj) => ({
|
|
325
|
-
...obj,
|
|
326
|
-
});
|
|
327
|
-
export const SystemInstanceDescriptionFilterSensitiveLog = (obj) => ({
|
|
328
|
-
...obj,
|
|
329
|
-
});
|
|
330
|
-
export const GetSystemInstanceResponseFilterSensitiveLog = (obj) => ({
|
|
331
|
-
...obj,
|
|
332
|
-
});
|
|
333
|
-
export const GetSystemTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
334
|
-
...obj,
|
|
335
|
-
});
|
|
336
|
-
export const SystemTemplateDescriptionFilterSensitiveLog = (obj) => ({
|
|
337
|
-
...obj,
|
|
338
|
-
});
|
|
339
|
-
export const GetSystemTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
340
|
-
...obj,
|
|
341
|
-
});
|
|
342
|
-
export const GetSystemTemplateRevisionsRequestFilterSensitiveLog = (obj) => ({
|
|
343
|
-
...obj,
|
|
344
|
-
});
|
|
345
|
-
export const GetSystemTemplateRevisionsResponseFilterSensitiveLog = (obj) => ({
|
|
346
|
-
...obj,
|
|
347
|
-
});
|
|
348
|
-
export const GetUploadStatusRequestFilterSensitiveLog = (obj) => ({
|
|
349
|
-
...obj,
|
|
350
|
-
});
|
|
351
|
-
export const GetUploadStatusResponseFilterSensitiveLog = (obj) => ({
|
|
352
|
-
...obj,
|
|
353
|
-
});
|
|
354
|
-
export const ListFlowExecutionMessagesRequestFilterSensitiveLog = (obj) => ({
|
|
355
|
-
...obj,
|
|
356
|
-
});
|
|
357
|
-
export const ListFlowExecutionMessagesResponseFilterSensitiveLog = (obj) => ({
|
|
358
|
-
...obj,
|
|
359
|
-
});
|
|
360
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
361
|
-
...obj,
|
|
362
|
-
});
|
|
363
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
364
|
-
...obj,
|
|
365
|
-
});
|
|
366
|
-
export const SearchEntitiesRequestFilterSensitiveLog = (obj) => ({
|
|
367
|
-
...obj,
|
|
368
|
-
});
|
|
369
|
-
export const SearchEntitiesResponseFilterSensitiveLog = (obj) => ({
|
|
370
|
-
...obj,
|
|
371
|
-
});
|
|
372
|
-
export const SearchFlowExecutionsRequestFilterSensitiveLog = (obj) => ({
|
|
373
|
-
...obj,
|
|
374
|
-
});
|
|
375
|
-
export const SearchFlowExecutionsResponseFilterSensitiveLog = (obj) => ({
|
|
376
|
-
...obj,
|
|
377
|
-
});
|
|
378
|
-
export const SearchFlowTemplatesRequestFilterSensitiveLog = (obj) => ({
|
|
379
|
-
...obj,
|
|
380
|
-
});
|
|
381
|
-
export const SearchFlowTemplatesResponseFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
});
|
|
384
|
-
export const SystemInstanceFilterFilterSensitiveLog = (obj) => ({
|
|
385
|
-
...obj,
|
|
386
|
-
});
|
|
387
|
-
export const SearchSystemInstancesRequestFilterSensitiveLog = (obj) => ({
|
|
388
|
-
...obj,
|
|
389
|
-
});
|
|
390
|
-
export const SearchSystemInstancesResponseFilterSensitiveLog = (obj) => ({
|
|
391
|
-
...obj,
|
|
392
|
-
});
|
|
393
|
-
export const SystemTemplateFilterFilterSensitiveLog = (obj) => ({
|
|
394
|
-
...obj,
|
|
395
|
-
});
|
|
396
|
-
export const SearchSystemTemplatesRequestFilterSensitiveLog = (obj) => ({
|
|
397
|
-
...obj,
|
|
398
|
-
});
|
|
399
|
-
export const SearchSystemTemplatesResponseFilterSensitiveLog = (obj) => ({
|
|
400
|
-
...obj,
|
|
401
|
-
});
|
|
402
|
-
export const SearchThingsRequestFilterSensitiveLog = (obj) => ({
|
|
403
|
-
...obj,
|
|
404
|
-
});
|
|
405
|
-
export const ThingFilterSensitiveLog = (obj) => ({
|
|
406
|
-
...obj,
|
|
407
|
-
});
|
|
408
|
-
export const SearchThingsResponseFilterSensitiveLog = (obj) => ({
|
|
409
|
-
...obj,
|
|
410
|
-
});
|
|
411
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
412
|
-
...obj,
|
|
413
|
-
});
|
|
414
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
415
|
-
...obj,
|
|
416
|
-
});
|
|
417
|
-
export const UndeploySystemInstanceRequestFilterSensitiveLog = (obj) => ({
|
|
418
|
-
...obj,
|
|
419
|
-
});
|
|
420
|
-
export const UndeploySystemInstanceResponseFilterSensitiveLog = (obj) => ({
|
|
421
|
-
...obj,
|
|
422
|
-
});
|
|
423
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
424
|
-
...obj,
|
|
425
|
-
});
|
|
426
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
427
|
-
...obj,
|
|
428
|
-
});
|
|
429
|
-
export const UpdateFlowTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
430
|
-
...obj,
|
|
431
|
-
});
|
|
432
|
-
export const UpdateFlowTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
433
|
-
...obj,
|
|
434
|
-
});
|
|
435
|
-
export const UpdateSystemTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
436
|
-
...obj,
|
|
437
|
-
});
|
|
438
|
-
export const UpdateSystemTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
439
|
-
...obj,
|
|
440
|
-
});
|
|
441
|
-
export const UploadEntityDefinitionsRequestFilterSensitiveLog = (obj) => ({
|
|
442
|
-
...obj,
|
|
443
|
-
});
|
|
444
|
-
export const UploadEntityDefinitionsResponseFilterSensitiveLog = (obj) => ({
|
|
445
|
-
...obj,
|
|
446
|
-
});
|
|
184
|
+
export var AssociateEntityToThingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
185
|
+
export var AssociateEntityToThingResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
186
|
+
export var DefinitionDocumentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
187
|
+
export var CreateFlowTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
188
|
+
export var FlowTemplateSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
189
|
+
export var CreateFlowTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
190
|
+
export var MetricsConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
191
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
192
|
+
export var CreateSystemInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
193
|
+
export var SystemInstanceSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
194
|
+
export var CreateSystemInstanceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
195
|
+
export var CreateSystemTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
196
|
+
export var SystemTemplateSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
197
|
+
export var CreateSystemTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
198
|
+
export var DeleteFlowTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
199
|
+
export var DeleteFlowTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
200
|
+
export var DeleteNamespaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
201
|
+
export var DeleteNamespaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
202
|
+
export var DeleteSystemInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
203
|
+
export var DeleteSystemInstanceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
204
|
+
export var DeleteSystemTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
205
|
+
export var DeleteSystemTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
206
|
+
export var DependencyRevisionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
207
|
+
export var DeploySystemInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
208
|
+
export var DeploySystemInstanceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
209
|
+
export var DeprecateFlowTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
210
|
+
export var DeprecateFlowTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
211
|
+
export var DeprecateSystemTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
212
|
+
export var DeprecateSystemTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
213
|
+
export var DescribeNamespaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
214
|
+
export var DescribeNamespaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
215
|
+
export var DissociateEntityFromThingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
216
|
+
export var DissociateEntityFromThingResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
217
|
+
export var EntityDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
218
|
+
export var EntityFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
|
+
export var FlowExecutionMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
220
|
+
export var FlowExecutionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
221
|
+
export var FlowTemplateDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
222
|
+
export var FlowTemplateFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
223
|
+
export var GetEntitiesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
224
|
+
export var GetEntitiesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
225
|
+
export var GetFlowTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
226
|
+
export var GetFlowTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
227
|
+
export var GetFlowTemplateRevisionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
228
|
+
export var GetFlowTemplateRevisionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
229
|
+
export var GetNamespaceDeletionStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
230
|
+
export var GetNamespaceDeletionStatusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
231
|
+
export var GetSystemInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
232
|
+
export var SystemInstanceDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
233
|
+
export var GetSystemInstanceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
234
|
+
export var GetSystemTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
|
+
export var SystemTemplateDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
236
|
+
export var GetSystemTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
237
|
+
export var GetSystemTemplateRevisionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
238
|
+
export var GetSystemTemplateRevisionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
239
|
+
export var GetUploadStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
240
|
+
export var GetUploadStatusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
241
|
+
export var ListFlowExecutionMessagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
242
|
+
export var ListFlowExecutionMessagesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
243
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
244
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
245
|
+
export var SearchEntitiesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
246
|
+
export var SearchEntitiesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
+
export var SearchFlowExecutionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
248
|
+
export var SearchFlowExecutionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
249
|
+
export var SearchFlowTemplatesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
250
|
+
export var SearchFlowTemplatesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
+
export var SystemInstanceFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
252
|
+
export var SearchSystemInstancesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
253
|
+
export var SearchSystemInstancesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
254
|
+
export var SystemTemplateFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
255
|
+
export var SearchSystemTemplatesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
256
|
+
export var SearchSystemTemplatesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
export var SearchThingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
+
export var ThingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
export var SearchThingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
260
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
+
export var UndeploySystemInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
|
+
export var UndeploySystemInstanceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
264
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
266
|
+
export var UpdateFlowTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
+
export var UpdateFlowTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
|
+
export var UpdateSystemTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
|
+
export var UpdateSystemTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
+
export var UploadEntityDefinitionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var UploadEntityDefinitionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1,32 +1,75 @@
|
|
|
1
|
+
import { __asyncGenerator, __await, __awaiter, __generator, __read, __spreadArray } from "tslib";
|
|
1
2
|
import { GetFlowTemplateRevisionsCommand, } from "../commands/GetFlowTemplateRevisionsCommand";
|
|
2
3
|
import { IoTThingsGraph } from "../IoTThingsGraph";
|
|
3
4
|
import { IoTThingsGraphClient } from "../IoTThingsGraphClient";
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
var makePagedClientRequest = function (client, input) {
|
|
6
|
+
var args = [];
|
|
7
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
8
|
+
args[_i - 2] = arguments[_i];
|
|
9
|
+
}
|
|
10
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
|
+
return __generator(this, function (_a) {
|
|
12
|
+
switch (_a.label) {
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new GetFlowTemplateRevisionsCommand(input)], __read(args), false))];
|
|
14
|
+
case 1: return [2, _a.sent()];
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
});
|
|
6
18
|
};
|
|
7
|
-
|
|
8
|
-
|
|
19
|
+
var makePagedRequest = function (client, input) {
|
|
20
|
+
var args = [];
|
|
21
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
22
|
+
args[_i - 2] = arguments[_i];
|
|
23
|
+
}
|
|
24
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
|
+
return __generator(this, function (_a) {
|
|
26
|
+
switch (_a.label) {
|
|
27
|
+
case 0: return [4, client.getFlowTemplateRevisions.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
|
+
case 1: return [2, _a.sent()];
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
});
|
|
9
32
|
};
|
|
10
|
-
export
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
while (hasNext) {
|
|
15
|
-
input.nextToken = token;
|
|
16
|
-
input["maxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof IoTThingsGraph) {
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof IoTThingsGraphClient) {
|
|
21
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else {
|
|
24
|
-
throw new Error("Invalid client, expected IoTThingsGraph | IoTThingsGraphClient");
|
|
25
|
-
}
|
|
26
|
-
yield page;
|
|
27
|
-
const prevToken = token;
|
|
28
|
-
token = page.nextToken;
|
|
29
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
33
|
+
export function paginateGetFlowTemplateRevisions(config, input) {
|
|
34
|
+
var additionalArguments = [];
|
|
35
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
36
|
+
additionalArguments[_i - 2] = arguments[_i];
|
|
30
37
|
}
|
|
31
|
-
return
|
|
38
|
+
return __asyncGenerator(this, arguments, function paginateGetFlowTemplateRevisions_1() {
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
|
+
return __generator(this, function (_a) {
|
|
41
|
+
switch (_a.label) {
|
|
42
|
+
case 0:
|
|
43
|
+
token = config.startingToken || undefined;
|
|
44
|
+
hasNext = true;
|
|
45
|
+
_a.label = 1;
|
|
46
|
+
case 1:
|
|
47
|
+
if (!hasNext) return [3, 9];
|
|
48
|
+
input.nextToken = token;
|
|
49
|
+
input["maxResults"] = config.pageSize;
|
|
50
|
+
if (!(config.client instanceof IoTThingsGraph)) return [3, 3];
|
|
51
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
52
|
+
case 2:
|
|
53
|
+
page = _a.sent();
|
|
54
|
+
return [3, 6];
|
|
55
|
+
case 3:
|
|
56
|
+
if (!(config.client instanceof IoTThingsGraphClient)) return [3, 5];
|
|
57
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
58
|
+
case 4:
|
|
59
|
+
page = _a.sent();
|
|
60
|
+
return [3, 6];
|
|
61
|
+
case 5: throw new Error("Invalid client, expected IoTThingsGraph | IoTThingsGraphClient");
|
|
62
|
+
case 6: return [4, __await(page)];
|
|
63
|
+
case 7: return [4, _a.sent()];
|
|
64
|
+
case 8:
|
|
65
|
+
_a.sent();
|
|
66
|
+
prevToken = token;
|
|
67
|
+
token = page.nextToken;
|
|
68
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
69
|
+
return [3, 1];
|
|
70
|
+
case 9: return [4, __await(undefined)];
|
|
71
|
+
case 10: return [2, _a.sent()];
|
|
72
|
+
}
|
|
73
|
+
});
|
|
74
|
+
});
|
|
32
75
|
}
|