@aws-sdk/client-iotthingsgraph 3.987.0 → 3.989.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +54 -1112
- package/dist-cjs/models/IoTThingsGraphServiceException.js +12 -0
- package/dist-cjs/models/errors.js +95 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +867 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +69 -63
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultIoTThingsGraphHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2018-09-06",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.iotthingsgraph",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2018-09-06",
|
|
30
32
|
serviceTarget: "IotThingsGraphFrontEndService",
|
|
31
33
|
},
|
|
@@ -188,15 +188,15 @@ const _nV = "namespaceVersion";
|
|
|
188
188
|
const _p = "payload";
|
|
189
189
|
const _rA = "resourceArn";
|
|
190
190
|
const _rN = "revisionNumber";
|
|
191
|
-
const _s = "
|
|
191
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.iotthingsgraph";
|
|
192
192
|
const _sBN = "s3BucketName";
|
|
193
193
|
const _sII = "systemInstanceId";
|
|
194
194
|
const _sT = "startTime";
|
|
195
195
|
const _sWPN = "syncWithPublicNamespace";
|
|
196
196
|
const _se = "server";
|
|
197
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.iotthingsgraph";
|
|
198
197
|
const _st = "status";
|
|
199
|
-
const _su = "
|
|
198
|
+
const _su = "summary";
|
|
199
|
+
const _sum = "summaries";
|
|
200
200
|
const _t = "target";
|
|
201
201
|
const _tA = "thingArn";
|
|
202
202
|
const _tK = "tagKeys";
|
|
@@ -218,6 +218,56 @@ const n0 = "com.amazonaws.iotthingsgraph";
|
|
|
218
218
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
219
219
|
import { InternalFailureException, InvalidRequestException, LimitExceededException, ResourceAlreadyExistsException, ResourceInUseException, ResourceNotFoundException, ThrottlingException, } from "../models/errors";
|
|
220
220
|
import { IoTThingsGraphServiceException } from "../models/IoTThingsGraphServiceException";
|
|
221
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
222
|
+
export var IoTThingsGraphServiceException$ = [-3, _s, "IoTThingsGraphServiceException", 0, [], []];
|
|
223
|
+
_s_registry.registerError(IoTThingsGraphServiceException$, IoTThingsGraphServiceException);
|
|
224
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
225
|
+
export var InternalFailureException$ = [-3, n0, _IFE,
|
|
226
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
227
|
+
[_m],
|
|
228
|
+
[0]
|
|
229
|
+
];
|
|
230
|
+
n0_registry.registerError(InternalFailureException$, InternalFailureException);
|
|
231
|
+
export var InvalidRequestException$ = [-3, n0, _IRE,
|
|
232
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
233
|
+
[_m],
|
|
234
|
+
[0]
|
|
235
|
+
];
|
|
236
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
237
|
+
export var LimitExceededException$ = [-3, n0, _LEE,
|
|
238
|
+
{ [_e]: _c, [_hE]: 410 },
|
|
239
|
+
[_m],
|
|
240
|
+
[0]
|
|
241
|
+
];
|
|
242
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
243
|
+
export var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
244
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
245
|
+
[_m],
|
|
246
|
+
[0]
|
|
247
|
+
];
|
|
248
|
+
n0_registry.registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
249
|
+
export var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
250
|
+
{ [_e]: _c, [_hE]: 412 },
|
|
251
|
+
[_m],
|
|
252
|
+
[0]
|
|
253
|
+
];
|
|
254
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
255
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
256
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
257
|
+
[_m],
|
|
258
|
+
[0]
|
|
259
|
+
];
|
|
260
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
261
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
262
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
263
|
+
[_m],
|
|
264
|
+
[0]
|
|
265
|
+
];
|
|
266
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
267
|
+
export const errorTypeRegistries = [
|
|
268
|
+
_s_registry,
|
|
269
|
+
n0_registry,
|
|
270
|
+
];
|
|
221
271
|
export var AssociateEntityToThingRequest$ = [3, n0, _AETTR,
|
|
222
272
|
0,
|
|
223
273
|
[_tN, _eI, _nV],
|
|
@@ -235,7 +285,7 @@ export var CreateFlowTemplateRequest$ = [3, n0, _CFTR,
|
|
|
235
285
|
];
|
|
236
286
|
export var CreateFlowTemplateResponse$ = [3, n0, _CFTRr,
|
|
237
287
|
0,
|
|
238
|
-
[
|
|
288
|
+
[_su],
|
|
239
289
|
[() => FlowTemplateSummary$]
|
|
240
290
|
];
|
|
241
291
|
export var CreateSystemInstanceRequest$ = [3, n0, _CSIR,
|
|
@@ -245,7 +295,7 @@ export var CreateSystemInstanceRequest$ = [3, n0, _CSIR,
|
|
|
245
295
|
];
|
|
246
296
|
export var CreateSystemInstanceResponse$ = [3, n0, _CSIRr,
|
|
247
297
|
0,
|
|
248
|
-
[
|
|
298
|
+
[_su],
|
|
249
299
|
[() => SystemInstanceSummary$]
|
|
250
300
|
];
|
|
251
301
|
export var CreateSystemTemplateRequest$ = [3, n0, _CSTR,
|
|
@@ -255,7 +305,7 @@ export var CreateSystemTemplateRequest$ = [3, n0, _CSTR,
|
|
|
255
305
|
];
|
|
256
306
|
export var CreateSystemTemplateResponse$ = [3, n0, _CSTRr,
|
|
257
307
|
0,
|
|
258
|
-
[
|
|
308
|
+
[_su],
|
|
259
309
|
[() => SystemTemplateSummary$]
|
|
260
310
|
];
|
|
261
311
|
export var DefinitionDocument$ = [3, n0, _DD,
|
|
@@ -315,7 +365,7 @@ export var DeploySystemInstanceRequest$ = [3, n0, _DSIRep,
|
|
|
315
365
|
];
|
|
316
366
|
export var DeploySystemInstanceResponse$ = [3, n0, _DSIRepl,
|
|
317
367
|
0,
|
|
318
|
-
[
|
|
368
|
+
[_su, _gDI],
|
|
319
369
|
[() => SystemInstanceSummary$, 0], 1
|
|
320
370
|
];
|
|
321
371
|
export var DeprecateFlowTemplateRequest$ = [3, n0, _DFTRep,
|
|
@@ -380,7 +430,7 @@ export var FlowExecutionSummary$ = [3, n0, _FES,
|
|
|
380
430
|
];
|
|
381
431
|
export var FlowTemplateDescription$ = [3, n0, _FTD,
|
|
382
432
|
0,
|
|
383
|
-
[
|
|
433
|
+
[_su, _d, _vNV],
|
|
384
434
|
[() => FlowTemplateSummary$, () => DefinitionDocument$, 1]
|
|
385
435
|
];
|
|
386
436
|
export var FlowTemplateFilter$ = [3, n0, _FTF,
|
|
@@ -420,7 +470,7 @@ export var GetFlowTemplateRevisionsRequest$ = [3, n0, _GFTRR,
|
|
|
420
470
|
];
|
|
421
471
|
export var GetFlowTemplateRevisionsResponse$ = [3, n0, _GFTRRe,
|
|
422
472
|
0,
|
|
423
|
-
[
|
|
473
|
+
[_sum, _nT],
|
|
424
474
|
[() => FlowTemplateSummaries, 0]
|
|
425
475
|
];
|
|
426
476
|
export var GetNamespaceDeletionStatusRequest$ = [3, n0, _GNDSR,
|
|
@@ -460,7 +510,7 @@ export var GetSystemTemplateRevisionsRequest$ = [3, n0, _GSTRR,
|
|
|
460
510
|
];
|
|
461
511
|
export var GetSystemTemplateRevisionsResponse$ = [3, n0, _GSTRRe,
|
|
462
512
|
0,
|
|
463
|
-
[
|
|
513
|
+
[_sum, _nT],
|
|
464
514
|
[() => SystemTemplateSummaries, 0]
|
|
465
515
|
];
|
|
466
516
|
export var GetUploadStatusRequest$ = [3, n0, _GUSR,
|
|
@@ -473,24 +523,6 @@ export var GetUploadStatusResponse$ = [3, n0, _GUSRe,
|
|
|
473
523
|
[_uI, _uS, _cD, _nA, _nN, _nV, _fR],
|
|
474
524
|
[0, 0, 4, 0, 0, 1, 64 | 0], 3
|
|
475
525
|
];
|
|
476
|
-
export var InternalFailureException$ = [-3, n0, _IFE,
|
|
477
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
478
|
-
[_m],
|
|
479
|
-
[0]
|
|
480
|
-
];
|
|
481
|
-
TypeRegistry.for(n0).registerError(InternalFailureException$, InternalFailureException);
|
|
482
|
-
export var InvalidRequestException$ = [-3, n0, _IRE,
|
|
483
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
484
|
-
[_m],
|
|
485
|
-
[0]
|
|
486
|
-
];
|
|
487
|
-
TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
|
|
488
|
-
export var LimitExceededException$ = [-3, n0, _LEE,
|
|
489
|
-
{ [_e]: _c, [_hE]: 410 },
|
|
490
|
-
[_m],
|
|
491
|
-
[0]
|
|
492
|
-
];
|
|
493
|
-
TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
494
526
|
export var ListFlowExecutionMessagesRequest$ = [3, n0, _LFEMR,
|
|
495
527
|
0,
|
|
496
528
|
[_fEI, _nT, _mR],
|
|
@@ -516,24 +548,6 @@ export var MetricsConfiguration$ = [3, n0, _MC,
|
|
|
516
548
|
[_cME, _mRRA],
|
|
517
549
|
[2, 0]
|
|
518
550
|
];
|
|
519
|
-
export var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
520
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
521
|
-
[_m],
|
|
522
|
-
[0]
|
|
523
|
-
];
|
|
524
|
-
TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
525
|
-
export var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
526
|
-
{ [_e]: _c, [_hE]: 412 },
|
|
527
|
-
[_m],
|
|
528
|
-
[0]
|
|
529
|
-
];
|
|
530
|
-
TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
531
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
532
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
533
|
-
[_m],
|
|
534
|
-
[0]
|
|
535
|
-
];
|
|
536
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
537
551
|
export var SearchEntitiesRequest$ = [3, n0, _SER,
|
|
538
552
|
0,
|
|
539
553
|
[_eTn, _f, _nT, _mR, _nV],
|
|
@@ -551,7 +565,7 @@ export var SearchFlowExecutionsRequest$ = [3, n0, _SFER,
|
|
|
551
565
|
];
|
|
552
566
|
export var SearchFlowExecutionsResponse$ = [3, n0, _SFERe,
|
|
553
567
|
0,
|
|
554
|
-
[
|
|
568
|
+
[_sum, _nT],
|
|
555
569
|
[() => FlowExecutionSummaries, 0]
|
|
556
570
|
];
|
|
557
571
|
export var SearchFlowTemplatesRequest$ = [3, n0, _SFTR,
|
|
@@ -561,7 +575,7 @@ export var SearchFlowTemplatesRequest$ = [3, n0, _SFTR,
|
|
|
561
575
|
];
|
|
562
576
|
export var SearchFlowTemplatesResponse$ = [3, n0, _SFTRe,
|
|
563
577
|
0,
|
|
564
|
-
[
|
|
578
|
+
[_sum, _nT],
|
|
565
579
|
[() => FlowTemplateSummaries, 0]
|
|
566
580
|
];
|
|
567
581
|
export var SearchSystemInstancesRequest$ = [3, n0, _SSIR,
|
|
@@ -571,7 +585,7 @@ export var SearchSystemInstancesRequest$ = [3, n0, _SSIR,
|
|
|
571
585
|
];
|
|
572
586
|
export var SearchSystemInstancesResponse$ = [3, n0, _SSIRe,
|
|
573
587
|
0,
|
|
574
|
-
[
|
|
588
|
+
[_sum, _nT],
|
|
575
589
|
[() => SystemInstanceSummaries, 0]
|
|
576
590
|
];
|
|
577
591
|
export var SearchSystemTemplatesRequest$ = [3, n0, _SSTR,
|
|
@@ -581,7 +595,7 @@ export var SearchSystemTemplatesRequest$ = [3, n0, _SSTR,
|
|
|
581
595
|
];
|
|
582
596
|
export var SearchSystemTemplatesResponse$ = [3, n0, _SSTRe,
|
|
583
597
|
0,
|
|
584
|
-
[
|
|
598
|
+
[_sum, _nT],
|
|
585
599
|
[() => SystemTemplateSummaries, 0]
|
|
586
600
|
];
|
|
587
601
|
export var SearchThingsRequest$ = [3, n0, _STR,
|
|
@@ -596,7 +610,7 @@ export var SearchThingsResponse$ = [3, n0, _STRe,
|
|
|
596
610
|
];
|
|
597
611
|
export var SystemInstanceDescription$ = [3, n0, _SID,
|
|
598
612
|
0,
|
|
599
|
-
[
|
|
613
|
+
[_su, _d, _sBN, _mC, _vNV, _vDR, _fARA],
|
|
600
614
|
[() => SystemInstanceSummary$, () => DefinitionDocument$, 0, () => MetricsConfiguration$, 1, () => DependencyRevisions, 0]
|
|
601
615
|
];
|
|
602
616
|
export var SystemInstanceFilter$ = [3, n0, _SIF,
|
|
@@ -611,7 +625,7 @@ export var SystemInstanceSummary$ = [3, n0, _SIS,
|
|
|
611
625
|
];
|
|
612
626
|
export var SystemTemplateDescription$ = [3, n0, _STD,
|
|
613
627
|
0,
|
|
614
|
-
[
|
|
628
|
+
[_su, _d, _vNV],
|
|
615
629
|
[() => SystemTemplateSummary$, () => DefinitionDocument$, 1]
|
|
616
630
|
];
|
|
617
631
|
export var SystemTemplateFilter$ = [3, n0, _STF,
|
|
@@ -644,12 +658,6 @@ export var Thing$ = [3, n0, _Th,
|
|
|
644
658
|
[_tA, _tN],
|
|
645
659
|
[0, 0]
|
|
646
660
|
];
|
|
647
|
-
export var ThrottlingException$ = [-3, n0, _TE,
|
|
648
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
649
|
-
[_m],
|
|
650
|
-
[0]
|
|
651
|
-
];
|
|
652
|
-
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
653
661
|
export var UndeploySystemInstanceRequest$ = [3, n0, _USIR,
|
|
654
662
|
0,
|
|
655
663
|
[_i],
|
|
@@ -657,7 +665,7 @@ export var UndeploySystemInstanceRequest$ = [3, n0, _USIR,
|
|
|
657
665
|
];
|
|
658
666
|
export var UndeploySystemInstanceResponse$ = [3, n0, _USIRn,
|
|
659
667
|
0,
|
|
660
|
-
[
|
|
668
|
+
[_su],
|
|
661
669
|
[() => SystemInstanceSummary$]
|
|
662
670
|
];
|
|
663
671
|
export var UntagResourceRequest$ = [3, n0, _URR,
|
|
@@ -677,7 +685,7 @@ export var UpdateFlowTemplateRequest$ = [3, n0, _UFTR,
|
|
|
677
685
|
];
|
|
678
686
|
export var UpdateFlowTemplateResponse$ = [3, n0, _UFTRp,
|
|
679
687
|
0,
|
|
680
|
-
[
|
|
688
|
+
[_su],
|
|
681
689
|
[() => FlowTemplateSummary$]
|
|
682
690
|
];
|
|
683
691
|
export var UpdateSystemTemplateRequest$ = [3, n0, _USTR,
|
|
@@ -687,7 +695,7 @@ export var UpdateSystemTemplateRequest$ = [3, n0, _USTR,
|
|
|
687
695
|
];
|
|
688
696
|
export var UpdateSystemTemplateResponse$ = [3, n0, _USTRp,
|
|
689
697
|
0,
|
|
690
|
-
[
|
|
698
|
+
[_su],
|
|
691
699
|
[() => SystemTemplateSummary$]
|
|
692
700
|
];
|
|
693
701
|
export var UploadEntityDefinitionsRequest$ = [3, n0, _UEDR,
|
|
@@ -700,8 +708,6 @@ export var UploadEntityDefinitionsResponse$ = [3, n0, _UEDRp,
|
|
|
700
708
|
[_uI],
|
|
701
709
|
[0], 1
|
|
702
710
|
];
|
|
703
|
-
export var IoTThingsGraphServiceException$ = [-3, _sm, "IoTThingsGraphServiceException", 0, [], []];
|
|
704
|
-
TypeRegistry.for(_sm).registerError(IoTThingsGraphServiceException$, IoTThingsGraphServiceException);
|
|
705
711
|
var DependencyRevisions = [1, n0, _DRe,
|
|
706
712
|
0, () => DependencyRevision$
|
|
707
713
|
];
|
|
@@ -1,4 +1,19 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var IoTThingsGraphServiceException$: StaticErrorSchema;
|
|
4
|
+
export declare var InternalFailureException$: StaticErrorSchema;
|
|
5
|
+
export declare var InvalidRequestException$: StaticErrorSchema;
|
|
6
|
+
export declare var LimitExceededException$: StaticErrorSchema;
|
|
7
|
+
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
8
|
+
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
9
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
10
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
11
|
+
/**
|
|
12
|
+
* TypeRegistry instances containing modeled errors.
|
|
13
|
+
* @internal
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
2
17
|
export declare var AssociateEntityToThingRequest$: StaticStructureSchema;
|
|
3
18
|
export declare var AssociateEntityToThingResponse$: StaticStructureSchema;
|
|
4
19
|
export declare var CreateFlowTemplateRequest$: StaticStructureSchema;
|
|
@@ -50,17 +65,11 @@ export declare var GetSystemTemplateRevisionsRequest$: StaticStructureSchema;
|
|
|
50
65
|
export declare var GetSystemTemplateRevisionsResponse$: StaticStructureSchema;
|
|
51
66
|
export declare var GetUploadStatusRequest$: StaticStructureSchema;
|
|
52
67
|
export declare var GetUploadStatusResponse$: StaticStructureSchema;
|
|
53
|
-
export declare var InternalFailureException$: StaticErrorSchema;
|
|
54
|
-
export declare var InvalidRequestException$: StaticErrorSchema;
|
|
55
|
-
export declare var LimitExceededException$: StaticErrorSchema;
|
|
56
68
|
export declare var ListFlowExecutionMessagesRequest$: StaticStructureSchema;
|
|
57
69
|
export declare var ListFlowExecutionMessagesResponse$: StaticStructureSchema;
|
|
58
70
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
59
71
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
60
72
|
export declare var MetricsConfiguration$: StaticStructureSchema;
|
|
61
|
-
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
62
|
-
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
63
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
64
73
|
export declare var SearchEntitiesRequest$: StaticStructureSchema;
|
|
65
74
|
export declare var SearchEntitiesResponse$: StaticStructureSchema;
|
|
66
75
|
export declare var SearchFlowExecutionsRequest$: StaticStructureSchema;
|
|
@@ -83,7 +92,6 @@ export declare var Tag$: StaticStructureSchema;
|
|
|
83
92
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
84
93
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
85
94
|
export declare var Thing$: StaticStructureSchema;
|
|
86
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
87
95
|
export declare var UndeploySystemInstanceRequest$: StaticStructureSchema;
|
|
88
96
|
export declare var UndeploySystemInstanceResponse$: StaticStructureSchema;
|
|
89
97
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
@@ -94,7 +102,6 @@ export declare var UpdateSystemTemplateRequest$: StaticStructureSchema;
|
|
|
94
102
|
export declare var UpdateSystemTemplateResponse$: StaticStructureSchema;
|
|
95
103
|
export declare var UploadEntityDefinitionsRequest$: StaticStructureSchema;
|
|
96
104
|
export declare var UploadEntityDefinitionsResponse$: StaticStructureSchema;
|
|
97
|
-
export declare var IoTThingsGraphServiceException$: StaticErrorSchema;
|
|
98
105
|
export declare var AssociateEntityToThing$: StaticOperationSchema;
|
|
99
106
|
export declare var CreateFlowTemplate$: StaticOperationSchema;
|
|
100
107
|
export declare var CreateSystemInstance$: StaticOperationSchema;
|
|
@@ -1,8 +1,18 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
} from "@smithy/types";
|
|
7
|
+
export declare var IoTThingsGraphServiceException$: StaticErrorSchema;
|
|
8
|
+
export declare var InternalFailureException$: StaticErrorSchema;
|
|
9
|
+
export declare var InvalidRequestException$: StaticErrorSchema;
|
|
10
|
+
export declare var LimitExceededException$: StaticErrorSchema;
|
|
11
|
+
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
12
|
+
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
13
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
14
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
15
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
6
16
|
export declare var AssociateEntityToThingRequest$: StaticStructureSchema;
|
|
7
17
|
export declare var AssociateEntityToThingResponse$: StaticStructureSchema;
|
|
8
18
|
export declare var CreateFlowTemplateRequest$: StaticStructureSchema;
|
|
@@ -54,17 +64,11 @@ export declare var GetSystemTemplateRevisionsRequest$: StaticStructureSchema;
|
|
|
54
64
|
export declare var GetSystemTemplateRevisionsResponse$: StaticStructureSchema;
|
|
55
65
|
export declare var GetUploadStatusRequest$: StaticStructureSchema;
|
|
56
66
|
export declare var GetUploadStatusResponse$: StaticStructureSchema;
|
|
57
|
-
export declare var InternalFailureException$: StaticErrorSchema;
|
|
58
|
-
export declare var InvalidRequestException$: StaticErrorSchema;
|
|
59
|
-
export declare var LimitExceededException$: StaticErrorSchema;
|
|
60
67
|
export declare var ListFlowExecutionMessagesRequest$: StaticStructureSchema;
|
|
61
68
|
export declare var ListFlowExecutionMessagesResponse$: StaticStructureSchema;
|
|
62
69
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
63
70
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
64
71
|
export declare var MetricsConfiguration$: StaticStructureSchema;
|
|
65
|
-
export declare var ResourceAlreadyExistsException$: StaticErrorSchema;
|
|
66
|
-
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
67
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
68
72
|
export declare var SearchEntitiesRequest$: StaticStructureSchema;
|
|
69
73
|
export declare var SearchEntitiesResponse$: StaticStructureSchema;
|
|
70
74
|
export declare var SearchFlowExecutionsRequest$: StaticStructureSchema;
|
|
@@ -87,7 +91,6 @@ export declare var Tag$: StaticStructureSchema;
|
|
|
87
91
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
88
92
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
89
93
|
export declare var Thing$: StaticStructureSchema;
|
|
90
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
91
94
|
export declare var UndeploySystemInstanceRequest$: StaticStructureSchema;
|
|
92
95
|
export declare var UndeploySystemInstanceResponse$: StaticStructureSchema;
|
|
93
96
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
@@ -98,7 +101,6 @@ export declare var UpdateSystemTemplateRequest$: StaticStructureSchema;
|
|
|
98
101
|
export declare var UpdateSystemTemplateResponse$: StaticStructureSchema;
|
|
99
102
|
export declare var UploadEntityDefinitionsRequest$: StaticStructureSchema;
|
|
100
103
|
export declare var UploadEntityDefinitionsResponse$: StaticStructureSchema;
|
|
101
|
-
export declare var IoTThingsGraphServiceException$: StaticErrorSchema;
|
|
102
104
|
export declare var AssociateEntityToThing$: StaticOperationSchema;
|
|
103
105
|
export declare var CreateFlowTemplate$: StaticOperationSchema;
|
|
104
106
|
export declare var CreateSystemInstance$: StaticOperationSchema;
|
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.989.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iotthingsgraph",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.9",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.8",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.9",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.989.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.7",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|