@aws-sdk/client-schemas 3.168.0 → 3.170.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 +16 -0
- package/dist-types/ts3.4/Schemas.d.ts +561 -159
- package/dist-types/ts3.4/SchemasClient.d.ts +315 -104
- package/dist-types/ts3.4/commands/CreateDiscovererCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDiscovererCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteSchemaCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteSchemaVersionCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DescribeCodeBindingCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeDiscovererCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeRegistryCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeSchemaCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ExportSchemaCommand.d.ts +33 -16
- package/dist-types/ts3.4/commands/GetCodeBindingSourceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetDiscoveredSchemaCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListDiscoverersCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListSchemaVersionsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutCodeBindingCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/SearchSchemasCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartDiscovererCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StopDiscovererCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateDiscovererCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +31 -31
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/SchemasServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +838 -757
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListDiscoverersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRegistriesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSchemaVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSchemasPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/SearchSchemasPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +377 -95
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForCodeBindingExists.d.ts +13 -7
- package/package.json +35 -35
|
@@ -1,757 +1,838 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
42
|
-
export declare enum Type {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
46
|
-
export interface SchemaVersionSummary {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
}
|
|
197
|
-
export interface CreateSchemaResponse {
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
}
|
|
233
|
-
export interface
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
}
|
|
305
|
-
export interface
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
}
|
|
369
|
-
export interface
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
}
|
|
392
|
-
export
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
}
|
|
411
|
-
export interface
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
}
|
|
466
|
-
export interface
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
export interface
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
}
|
|
509
|
-
export interface
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
export interface
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
export
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
1
|
+
import {
|
|
2
|
+
ExceptionOptionType as __ExceptionOptionType,
|
|
3
|
+
LazyJsonString as __LazyJsonString,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
import { SchemasServiceException as __BaseException } from "./SchemasServiceException";
|
|
6
|
+
export declare enum DiscovererState {
|
|
7
|
+
STARTED = "STARTED",
|
|
8
|
+
STOPPED = "STOPPED",
|
|
9
|
+
}
|
|
10
|
+
export interface DiscovererSummary {
|
|
11
|
+
DiscovererArn?: string;
|
|
12
|
+
|
|
13
|
+
DiscovererId?: string;
|
|
14
|
+
|
|
15
|
+
SourceArn?: string;
|
|
16
|
+
|
|
17
|
+
State?: DiscovererState | string;
|
|
18
|
+
|
|
19
|
+
CrossAccount?: boolean;
|
|
20
|
+
|
|
21
|
+
Tags?: Record<string, string>;
|
|
22
|
+
}
|
|
23
|
+
export interface RegistrySummary {
|
|
24
|
+
RegistryArn?: string;
|
|
25
|
+
|
|
26
|
+
RegistryName?: string;
|
|
27
|
+
|
|
28
|
+
Tags?: Record<string, string>;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export interface SchemaSummary {
|
|
32
|
+
LastModified?: Date;
|
|
33
|
+
|
|
34
|
+
SchemaArn?: string;
|
|
35
|
+
|
|
36
|
+
SchemaName?: string;
|
|
37
|
+
|
|
38
|
+
Tags?: Record<string, string>;
|
|
39
|
+
|
|
40
|
+
VersionCount?: number;
|
|
41
|
+
}
|
|
42
|
+
export declare enum Type {
|
|
43
|
+
JSONSchemaDraft4 = "JSONSchemaDraft4",
|
|
44
|
+
OpenApi3 = "OpenApi3",
|
|
45
|
+
}
|
|
46
|
+
export interface SchemaVersionSummary {
|
|
47
|
+
SchemaArn?: string;
|
|
48
|
+
|
|
49
|
+
SchemaName?: string;
|
|
50
|
+
|
|
51
|
+
SchemaVersion?: string;
|
|
52
|
+
|
|
53
|
+
Type?: Type | string;
|
|
54
|
+
}
|
|
55
|
+
export interface SearchSchemaVersionSummary {
|
|
56
|
+
CreatedDate?: Date;
|
|
57
|
+
|
|
58
|
+
SchemaVersion?: string;
|
|
59
|
+
|
|
60
|
+
Type?: Type | string;
|
|
61
|
+
}
|
|
62
|
+
export interface SearchSchemaSummary {
|
|
63
|
+
RegistryName?: string;
|
|
64
|
+
|
|
65
|
+
SchemaArn?: string;
|
|
66
|
+
|
|
67
|
+
SchemaName?: string;
|
|
68
|
+
|
|
69
|
+
SchemaVersions?: SearchSchemaVersionSummary[];
|
|
70
|
+
}
|
|
71
|
+
export declare class BadRequestException extends __BaseException {
|
|
72
|
+
readonly name: "BadRequestException";
|
|
73
|
+
readonly $fault: "client";
|
|
74
|
+
|
|
75
|
+
Code: string | undefined;
|
|
76
|
+
|
|
77
|
+
Message: string | undefined;
|
|
78
|
+
|
|
79
|
+
constructor(
|
|
80
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
81
|
+
);
|
|
82
|
+
}
|
|
83
|
+
export declare enum CodeGenerationStatus {
|
|
84
|
+
CREATE_COMPLETE = "CREATE_COMPLETE",
|
|
85
|
+
CREATE_FAILED = "CREATE_FAILED",
|
|
86
|
+
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
|
|
87
|
+
}
|
|
88
|
+
export declare class ConflictException extends __BaseException {
|
|
89
|
+
readonly name: "ConflictException";
|
|
90
|
+
readonly $fault: "client";
|
|
91
|
+
|
|
92
|
+
Code: string | undefined;
|
|
93
|
+
|
|
94
|
+
Message: string | undefined;
|
|
95
|
+
|
|
96
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
97
|
+
}
|
|
98
|
+
export interface CreateDiscovererRequest {
|
|
99
|
+
Description?: string;
|
|
100
|
+
|
|
101
|
+
SourceArn: string | undefined;
|
|
102
|
+
|
|
103
|
+
CrossAccount?: boolean;
|
|
104
|
+
|
|
105
|
+
Tags?: Record<string, string>;
|
|
106
|
+
}
|
|
107
|
+
export interface CreateDiscovererResponse {
|
|
108
|
+
Description?: string;
|
|
109
|
+
|
|
110
|
+
DiscovererArn?: string;
|
|
111
|
+
|
|
112
|
+
DiscovererId?: string;
|
|
113
|
+
|
|
114
|
+
SourceArn?: string;
|
|
115
|
+
|
|
116
|
+
State?: DiscovererState | string;
|
|
117
|
+
|
|
118
|
+
CrossAccount?: boolean;
|
|
119
|
+
|
|
120
|
+
Tags?: Record<string, string>;
|
|
121
|
+
}
|
|
122
|
+
export declare class ForbiddenException extends __BaseException {
|
|
123
|
+
readonly name: "ForbiddenException";
|
|
124
|
+
readonly $fault: "client";
|
|
125
|
+
|
|
126
|
+
Code: string | undefined;
|
|
127
|
+
|
|
128
|
+
Message: string | undefined;
|
|
129
|
+
|
|
130
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
131
|
+
}
|
|
132
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
133
|
+
readonly name: "InternalServerErrorException";
|
|
134
|
+
readonly $fault: "server";
|
|
135
|
+
|
|
136
|
+
Code: string | undefined;
|
|
137
|
+
|
|
138
|
+
Message: string | undefined;
|
|
139
|
+
|
|
140
|
+
constructor(
|
|
141
|
+
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
142
|
+
);
|
|
143
|
+
}
|
|
144
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
145
|
+
readonly name: "ServiceUnavailableException";
|
|
146
|
+
readonly $fault: "server";
|
|
147
|
+
|
|
148
|
+
Code: string | undefined;
|
|
149
|
+
|
|
150
|
+
Message: string | undefined;
|
|
151
|
+
|
|
152
|
+
constructor(
|
|
153
|
+
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
154
|
+
);
|
|
155
|
+
}
|
|
156
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
157
|
+
readonly name: "UnauthorizedException";
|
|
158
|
+
readonly $fault: "client";
|
|
159
|
+
|
|
160
|
+
Code: string | undefined;
|
|
161
|
+
|
|
162
|
+
Message: string | undefined;
|
|
163
|
+
|
|
164
|
+
constructor(
|
|
165
|
+
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
166
|
+
);
|
|
167
|
+
}
|
|
168
|
+
export interface CreateRegistryRequest {
|
|
169
|
+
Description?: string;
|
|
170
|
+
|
|
171
|
+
RegistryName: string | undefined;
|
|
172
|
+
|
|
173
|
+
Tags?: Record<string, string>;
|
|
174
|
+
}
|
|
175
|
+
export interface CreateRegistryResponse {
|
|
176
|
+
Description?: string;
|
|
177
|
+
|
|
178
|
+
RegistryArn?: string;
|
|
179
|
+
|
|
180
|
+
RegistryName?: string;
|
|
181
|
+
|
|
182
|
+
Tags?: Record<string, string>;
|
|
183
|
+
}
|
|
184
|
+
export interface CreateSchemaRequest {
|
|
185
|
+
Content: string | undefined;
|
|
186
|
+
|
|
187
|
+
Description?: string;
|
|
188
|
+
|
|
189
|
+
RegistryName: string | undefined;
|
|
190
|
+
|
|
191
|
+
SchemaName: string | undefined;
|
|
192
|
+
|
|
193
|
+
Tags?: Record<string, string>;
|
|
194
|
+
|
|
195
|
+
Type: Type | string | undefined;
|
|
196
|
+
}
|
|
197
|
+
export interface CreateSchemaResponse {
|
|
198
|
+
Description?: string;
|
|
199
|
+
|
|
200
|
+
LastModified?: Date;
|
|
201
|
+
|
|
202
|
+
SchemaArn?: string;
|
|
203
|
+
|
|
204
|
+
SchemaName?: string;
|
|
205
|
+
|
|
206
|
+
SchemaVersion?: string;
|
|
207
|
+
|
|
208
|
+
Tags?: Record<string, string>;
|
|
209
|
+
|
|
210
|
+
Type?: string;
|
|
211
|
+
|
|
212
|
+
VersionCreatedDate?: Date;
|
|
213
|
+
}
|
|
214
|
+
export interface DeleteDiscovererRequest {
|
|
215
|
+
DiscovererId: string | undefined;
|
|
216
|
+
}
|
|
217
|
+
export declare class NotFoundException extends __BaseException {
|
|
218
|
+
readonly name: "NotFoundException";
|
|
219
|
+
readonly $fault: "client";
|
|
220
|
+
|
|
221
|
+
Code: string | undefined;
|
|
222
|
+
|
|
223
|
+
Message: string | undefined;
|
|
224
|
+
|
|
225
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
226
|
+
}
|
|
227
|
+
export interface DeleteRegistryRequest {
|
|
228
|
+
RegistryName: string | undefined;
|
|
229
|
+
}
|
|
230
|
+
export interface DeleteResourcePolicyRequest {
|
|
231
|
+
RegistryName?: string;
|
|
232
|
+
}
|
|
233
|
+
export interface DeleteSchemaRequest {
|
|
234
|
+
RegistryName: string | undefined;
|
|
235
|
+
|
|
236
|
+
SchemaName: string | undefined;
|
|
237
|
+
}
|
|
238
|
+
export interface DeleteSchemaVersionRequest {
|
|
239
|
+
RegistryName: string | undefined;
|
|
240
|
+
|
|
241
|
+
SchemaName: string | undefined;
|
|
242
|
+
|
|
243
|
+
SchemaVersion: string | undefined;
|
|
244
|
+
}
|
|
245
|
+
export interface DescribeCodeBindingRequest {
|
|
246
|
+
Language: string | undefined;
|
|
247
|
+
|
|
248
|
+
RegistryName: string | undefined;
|
|
249
|
+
|
|
250
|
+
SchemaName: string | undefined;
|
|
251
|
+
|
|
252
|
+
SchemaVersion?: string;
|
|
253
|
+
}
|
|
254
|
+
export interface DescribeCodeBindingResponse {
|
|
255
|
+
CreationDate?: Date;
|
|
256
|
+
|
|
257
|
+
LastModified?: Date;
|
|
258
|
+
|
|
259
|
+
SchemaVersion?: string;
|
|
260
|
+
|
|
261
|
+
Status?: CodeGenerationStatus | string;
|
|
262
|
+
}
|
|
263
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
264
|
+
readonly name: "TooManyRequestsException";
|
|
265
|
+
readonly $fault: "client";
|
|
266
|
+
|
|
267
|
+
Code: string | undefined;
|
|
268
|
+
|
|
269
|
+
Message: string | undefined;
|
|
270
|
+
|
|
271
|
+
constructor(
|
|
272
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
273
|
+
);
|
|
274
|
+
}
|
|
275
|
+
export interface DescribeDiscovererRequest {
|
|
276
|
+
DiscovererId: string | undefined;
|
|
277
|
+
}
|
|
278
|
+
export interface DescribeDiscovererResponse {
|
|
279
|
+
Description?: string;
|
|
280
|
+
|
|
281
|
+
DiscovererArn?: string;
|
|
282
|
+
|
|
283
|
+
DiscovererId?: string;
|
|
284
|
+
|
|
285
|
+
SourceArn?: string;
|
|
286
|
+
|
|
287
|
+
State?: DiscovererState | string;
|
|
288
|
+
|
|
289
|
+
CrossAccount?: boolean;
|
|
290
|
+
|
|
291
|
+
Tags?: Record<string, string>;
|
|
292
|
+
}
|
|
293
|
+
export interface DescribeRegistryRequest {
|
|
294
|
+
RegistryName: string | undefined;
|
|
295
|
+
}
|
|
296
|
+
export interface DescribeRegistryResponse {
|
|
297
|
+
Description?: string;
|
|
298
|
+
|
|
299
|
+
RegistryArn?: string;
|
|
300
|
+
|
|
301
|
+
RegistryName?: string;
|
|
302
|
+
|
|
303
|
+
Tags?: Record<string, string>;
|
|
304
|
+
}
|
|
305
|
+
export interface DescribeSchemaRequest {
|
|
306
|
+
RegistryName: string | undefined;
|
|
307
|
+
|
|
308
|
+
SchemaName: string | undefined;
|
|
309
|
+
|
|
310
|
+
SchemaVersion?: string;
|
|
311
|
+
}
|
|
312
|
+
export interface DescribeSchemaResponse {
|
|
313
|
+
Content?: string;
|
|
314
|
+
|
|
315
|
+
Description?: string;
|
|
316
|
+
|
|
317
|
+
LastModified?: Date;
|
|
318
|
+
|
|
319
|
+
SchemaArn?: string;
|
|
320
|
+
|
|
321
|
+
SchemaName?: string;
|
|
322
|
+
|
|
323
|
+
SchemaVersion?: string;
|
|
324
|
+
|
|
325
|
+
Tags?: Record<string, string>;
|
|
326
|
+
|
|
327
|
+
Type?: string;
|
|
328
|
+
|
|
329
|
+
VersionCreatedDate?: Date;
|
|
330
|
+
}
|
|
331
|
+
export interface ExportSchemaRequest {
|
|
332
|
+
RegistryName: string | undefined;
|
|
333
|
+
|
|
334
|
+
SchemaName: string | undefined;
|
|
335
|
+
|
|
336
|
+
SchemaVersion?: string;
|
|
337
|
+
Type: string | undefined;
|
|
338
|
+
}
|
|
339
|
+
export interface ExportSchemaResponse {
|
|
340
|
+
Content?: string;
|
|
341
|
+
SchemaArn?: string;
|
|
342
|
+
SchemaName?: string;
|
|
343
|
+
SchemaVersion?: string;
|
|
344
|
+
Type?: string;
|
|
345
|
+
}
|
|
346
|
+
export interface GetCodeBindingSourceRequest {
|
|
347
|
+
Language: string | undefined;
|
|
348
|
+
|
|
349
|
+
RegistryName: string | undefined;
|
|
350
|
+
|
|
351
|
+
SchemaName: string | undefined;
|
|
352
|
+
|
|
353
|
+
SchemaVersion?: string;
|
|
354
|
+
}
|
|
355
|
+
export interface GetCodeBindingSourceResponse {
|
|
356
|
+
Body?: Uint8Array;
|
|
357
|
+
}
|
|
358
|
+
export interface GetDiscoveredSchemaRequest {
|
|
359
|
+
Events: string[] | undefined;
|
|
360
|
+
|
|
361
|
+
Type: Type | string | undefined;
|
|
362
|
+
}
|
|
363
|
+
export interface GetDiscoveredSchemaResponse {
|
|
364
|
+
Content?: string;
|
|
365
|
+
}
|
|
366
|
+
export interface GetResourcePolicyRequest {
|
|
367
|
+
RegistryName?: string;
|
|
368
|
+
}
|
|
369
|
+
export interface GetResourcePolicyResponse {
|
|
370
|
+
Policy?: __LazyJsonString | string;
|
|
371
|
+
|
|
372
|
+
RevisionId?: string;
|
|
373
|
+
}
|
|
374
|
+
export declare class GoneException extends __BaseException {
|
|
375
|
+
readonly name: "GoneException";
|
|
376
|
+
readonly $fault: "client";
|
|
377
|
+
|
|
378
|
+
Code: string | undefined;
|
|
379
|
+
|
|
380
|
+
Message: string | undefined;
|
|
381
|
+
|
|
382
|
+
constructor(opts: __ExceptionOptionType<GoneException, __BaseException>);
|
|
383
|
+
}
|
|
384
|
+
export interface ListDiscoverersRequest {
|
|
385
|
+
DiscovererIdPrefix?: string;
|
|
386
|
+
Limit?: number;
|
|
387
|
+
|
|
388
|
+
NextToken?: string;
|
|
389
|
+
|
|
390
|
+
SourceArnPrefix?: string;
|
|
391
|
+
}
|
|
392
|
+
export interface ListDiscoverersResponse {
|
|
393
|
+
Discoverers?: DiscovererSummary[];
|
|
394
|
+
|
|
395
|
+
NextToken?: string;
|
|
396
|
+
}
|
|
397
|
+
export interface ListRegistriesRequest {
|
|
398
|
+
Limit?: number;
|
|
399
|
+
|
|
400
|
+
NextToken?: string;
|
|
401
|
+
|
|
402
|
+
RegistryNamePrefix?: string;
|
|
403
|
+
|
|
404
|
+
Scope?: string;
|
|
405
|
+
}
|
|
406
|
+
export interface ListRegistriesResponse {
|
|
407
|
+
NextToken?: string;
|
|
408
|
+
|
|
409
|
+
Registries?: RegistrySummary[];
|
|
410
|
+
}
|
|
411
|
+
export interface ListSchemasRequest {
|
|
412
|
+
Limit?: number;
|
|
413
|
+
|
|
414
|
+
NextToken?: string;
|
|
415
|
+
|
|
416
|
+
RegistryName: string | undefined;
|
|
417
|
+
|
|
418
|
+
SchemaNamePrefix?: string;
|
|
419
|
+
}
|
|
420
|
+
export interface ListSchemasResponse {
|
|
421
|
+
NextToken?: string;
|
|
422
|
+
|
|
423
|
+
Schemas?: SchemaSummary[];
|
|
424
|
+
}
|
|
425
|
+
export interface ListSchemaVersionsRequest {
|
|
426
|
+
Limit?: number;
|
|
427
|
+
|
|
428
|
+
NextToken?: string;
|
|
429
|
+
|
|
430
|
+
RegistryName: string | undefined;
|
|
431
|
+
|
|
432
|
+
SchemaName: string | undefined;
|
|
433
|
+
}
|
|
434
|
+
export interface ListSchemaVersionsResponse {
|
|
435
|
+
NextToken?: string;
|
|
436
|
+
|
|
437
|
+
SchemaVersions?: SchemaVersionSummary[];
|
|
438
|
+
}
|
|
439
|
+
export interface ListTagsForResourceRequest {
|
|
440
|
+
ResourceArn: string | undefined;
|
|
441
|
+
}
|
|
442
|
+
export interface ListTagsForResourceResponse {
|
|
443
|
+
Tags?: Record<string, string>;
|
|
444
|
+
}
|
|
445
|
+
export declare class PreconditionFailedException extends __BaseException {
|
|
446
|
+
readonly name: "PreconditionFailedException";
|
|
447
|
+
readonly $fault: "client";
|
|
448
|
+
|
|
449
|
+
Code: string | undefined;
|
|
450
|
+
|
|
451
|
+
Message: string | undefined;
|
|
452
|
+
|
|
453
|
+
constructor(
|
|
454
|
+
opts: __ExceptionOptionType<PreconditionFailedException, __BaseException>
|
|
455
|
+
);
|
|
456
|
+
}
|
|
457
|
+
export interface PutCodeBindingRequest {
|
|
458
|
+
Language: string | undefined;
|
|
459
|
+
|
|
460
|
+
RegistryName: string | undefined;
|
|
461
|
+
|
|
462
|
+
SchemaName: string | undefined;
|
|
463
|
+
|
|
464
|
+
SchemaVersion?: string;
|
|
465
|
+
}
|
|
466
|
+
export interface PutCodeBindingResponse {
|
|
467
|
+
CreationDate?: Date;
|
|
468
|
+
|
|
469
|
+
LastModified?: Date;
|
|
470
|
+
|
|
471
|
+
SchemaVersion?: string;
|
|
472
|
+
|
|
473
|
+
Status?: CodeGenerationStatus | string;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
export interface PutResourcePolicyRequest {
|
|
477
|
+
Policy: __LazyJsonString | string | undefined;
|
|
478
|
+
|
|
479
|
+
RegistryName?: string;
|
|
480
|
+
|
|
481
|
+
RevisionId?: string;
|
|
482
|
+
}
|
|
483
|
+
export interface PutResourcePolicyResponse {
|
|
484
|
+
Policy?: __LazyJsonString | string;
|
|
485
|
+
|
|
486
|
+
RevisionId?: string;
|
|
487
|
+
}
|
|
488
|
+
export interface SearchSchemasRequest {
|
|
489
|
+
Keywords: string | undefined;
|
|
490
|
+
Limit?: number;
|
|
491
|
+
|
|
492
|
+
NextToken?: string;
|
|
493
|
+
|
|
494
|
+
RegistryName: string | undefined;
|
|
495
|
+
}
|
|
496
|
+
export interface SearchSchemasResponse {
|
|
497
|
+
NextToken?: string;
|
|
498
|
+
|
|
499
|
+
Schemas?: SearchSchemaSummary[];
|
|
500
|
+
}
|
|
501
|
+
export interface StartDiscovererRequest {
|
|
502
|
+
DiscovererId: string | undefined;
|
|
503
|
+
}
|
|
504
|
+
export interface StartDiscovererResponse {
|
|
505
|
+
DiscovererId?: string;
|
|
506
|
+
|
|
507
|
+
State?: DiscovererState | string;
|
|
508
|
+
}
|
|
509
|
+
export interface StopDiscovererRequest {
|
|
510
|
+
DiscovererId: string | undefined;
|
|
511
|
+
}
|
|
512
|
+
export interface StopDiscovererResponse {
|
|
513
|
+
DiscovererId?: string;
|
|
514
|
+
|
|
515
|
+
State?: DiscovererState | string;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
export interface TagResourceRequest {
|
|
519
|
+
ResourceArn: string | undefined;
|
|
520
|
+
|
|
521
|
+
Tags: Record<string, string> | undefined;
|
|
522
|
+
}
|
|
523
|
+
export interface UntagResourceRequest {
|
|
524
|
+
ResourceArn: string | undefined;
|
|
525
|
+
|
|
526
|
+
TagKeys: string[] | undefined;
|
|
527
|
+
}
|
|
528
|
+
export interface UpdateDiscovererRequest {
|
|
529
|
+
Description?: string;
|
|
530
|
+
|
|
531
|
+
DiscovererId: string | undefined;
|
|
532
|
+
|
|
533
|
+
CrossAccount?: boolean;
|
|
534
|
+
}
|
|
535
|
+
export interface UpdateDiscovererResponse {
|
|
536
|
+
Description?: string;
|
|
537
|
+
|
|
538
|
+
DiscovererArn?: string;
|
|
539
|
+
|
|
540
|
+
DiscovererId?: string;
|
|
541
|
+
|
|
542
|
+
SourceArn?: string;
|
|
543
|
+
|
|
544
|
+
State?: DiscovererState | string;
|
|
545
|
+
|
|
546
|
+
CrossAccount?: boolean;
|
|
547
|
+
|
|
548
|
+
Tags?: Record<string, string>;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
export interface UpdateRegistryRequest {
|
|
552
|
+
Description?: string;
|
|
553
|
+
|
|
554
|
+
RegistryName: string | undefined;
|
|
555
|
+
}
|
|
556
|
+
export interface UpdateRegistryResponse {
|
|
557
|
+
Description?: string;
|
|
558
|
+
|
|
559
|
+
RegistryArn?: string;
|
|
560
|
+
|
|
561
|
+
RegistryName?: string;
|
|
562
|
+
|
|
563
|
+
Tags?: Record<string, string>;
|
|
564
|
+
}
|
|
565
|
+
export interface UpdateSchemaRequest {
|
|
566
|
+
ClientTokenId?: string;
|
|
567
|
+
|
|
568
|
+
Content?: string;
|
|
569
|
+
|
|
570
|
+
Description?: string;
|
|
571
|
+
|
|
572
|
+
RegistryName: string | undefined;
|
|
573
|
+
|
|
574
|
+
SchemaName: string | undefined;
|
|
575
|
+
|
|
576
|
+
Type?: Type | string;
|
|
577
|
+
}
|
|
578
|
+
export interface UpdateSchemaResponse {
|
|
579
|
+
Description?: string;
|
|
580
|
+
|
|
581
|
+
LastModified?: Date;
|
|
582
|
+
|
|
583
|
+
SchemaArn?: string;
|
|
584
|
+
|
|
585
|
+
SchemaName?: string;
|
|
586
|
+
|
|
587
|
+
SchemaVersion?: string;
|
|
588
|
+
|
|
589
|
+
Tags?: Record<string, string>;
|
|
590
|
+
|
|
591
|
+
Type?: string;
|
|
592
|
+
|
|
593
|
+
VersionCreatedDate?: Date;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
export declare const DiscovererSummaryFilterSensitiveLog: (
|
|
597
|
+
obj: DiscovererSummary
|
|
598
|
+
) => any;
|
|
599
|
+
|
|
600
|
+
export declare const RegistrySummaryFilterSensitiveLog: (
|
|
601
|
+
obj: RegistrySummary
|
|
602
|
+
) => any;
|
|
603
|
+
|
|
604
|
+
export declare const SchemaSummaryFilterSensitiveLog: (
|
|
605
|
+
obj: SchemaSummary
|
|
606
|
+
) => any;
|
|
607
|
+
|
|
608
|
+
export declare const SchemaVersionSummaryFilterSensitiveLog: (
|
|
609
|
+
obj: SchemaVersionSummary
|
|
610
|
+
) => any;
|
|
611
|
+
|
|
612
|
+
export declare const SearchSchemaVersionSummaryFilterSensitiveLog: (
|
|
613
|
+
obj: SearchSchemaVersionSummary
|
|
614
|
+
) => any;
|
|
615
|
+
|
|
616
|
+
export declare const SearchSchemaSummaryFilterSensitiveLog: (
|
|
617
|
+
obj: SearchSchemaSummary
|
|
618
|
+
) => any;
|
|
619
|
+
|
|
620
|
+
export declare const CreateDiscovererRequestFilterSensitiveLog: (
|
|
621
|
+
obj: CreateDiscovererRequest
|
|
622
|
+
) => any;
|
|
623
|
+
|
|
624
|
+
export declare const CreateDiscovererResponseFilterSensitiveLog: (
|
|
625
|
+
obj: CreateDiscovererResponse
|
|
626
|
+
) => any;
|
|
627
|
+
|
|
628
|
+
export declare const CreateRegistryRequestFilterSensitiveLog: (
|
|
629
|
+
obj: CreateRegistryRequest
|
|
630
|
+
) => any;
|
|
631
|
+
|
|
632
|
+
export declare const CreateRegistryResponseFilterSensitiveLog: (
|
|
633
|
+
obj: CreateRegistryResponse
|
|
634
|
+
) => any;
|
|
635
|
+
|
|
636
|
+
export declare const CreateSchemaRequestFilterSensitiveLog: (
|
|
637
|
+
obj: CreateSchemaRequest
|
|
638
|
+
) => any;
|
|
639
|
+
|
|
640
|
+
export declare const CreateSchemaResponseFilterSensitiveLog: (
|
|
641
|
+
obj: CreateSchemaResponse
|
|
642
|
+
) => any;
|
|
643
|
+
|
|
644
|
+
export declare const DeleteDiscovererRequestFilterSensitiveLog: (
|
|
645
|
+
obj: DeleteDiscovererRequest
|
|
646
|
+
) => any;
|
|
647
|
+
|
|
648
|
+
export declare const DeleteRegistryRequestFilterSensitiveLog: (
|
|
649
|
+
obj: DeleteRegistryRequest
|
|
650
|
+
) => any;
|
|
651
|
+
|
|
652
|
+
export declare const DeleteResourcePolicyRequestFilterSensitiveLog: (
|
|
653
|
+
obj: DeleteResourcePolicyRequest
|
|
654
|
+
) => any;
|
|
655
|
+
|
|
656
|
+
export declare const DeleteSchemaRequestFilterSensitiveLog: (
|
|
657
|
+
obj: DeleteSchemaRequest
|
|
658
|
+
) => any;
|
|
659
|
+
|
|
660
|
+
export declare const DeleteSchemaVersionRequestFilterSensitiveLog: (
|
|
661
|
+
obj: DeleteSchemaVersionRequest
|
|
662
|
+
) => any;
|
|
663
|
+
|
|
664
|
+
export declare const DescribeCodeBindingRequestFilterSensitiveLog: (
|
|
665
|
+
obj: DescribeCodeBindingRequest
|
|
666
|
+
) => any;
|
|
667
|
+
|
|
668
|
+
export declare const DescribeCodeBindingResponseFilterSensitiveLog: (
|
|
669
|
+
obj: DescribeCodeBindingResponse
|
|
670
|
+
) => any;
|
|
671
|
+
|
|
672
|
+
export declare const DescribeDiscovererRequestFilterSensitiveLog: (
|
|
673
|
+
obj: DescribeDiscovererRequest
|
|
674
|
+
) => any;
|
|
675
|
+
|
|
676
|
+
export declare const DescribeDiscovererResponseFilterSensitiveLog: (
|
|
677
|
+
obj: DescribeDiscovererResponse
|
|
678
|
+
) => any;
|
|
679
|
+
|
|
680
|
+
export declare const DescribeRegistryRequestFilterSensitiveLog: (
|
|
681
|
+
obj: DescribeRegistryRequest
|
|
682
|
+
) => any;
|
|
683
|
+
|
|
684
|
+
export declare const DescribeRegistryResponseFilterSensitiveLog: (
|
|
685
|
+
obj: DescribeRegistryResponse
|
|
686
|
+
) => any;
|
|
687
|
+
|
|
688
|
+
export declare const DescribeSchemaRequestFilterSensitiveLog: (
|
|
689
|
+
obj: DescribeSchemaRequest
|
|
690
|
+
) => any;
|
|
691
|
+
|
|
692
|
+
export declare const DescribeSchemaResponseFilterSensitiveLog: (
|
|
693
|
+
obj: DescribeSchemaResponse
|
|
694
|
+
) => any;
|
|
695
|
+
|
|
696
|
+
export declare const ExportSchemaRequestFilterSensitiveLog: (
|
|
697
|
+
obj: ExportSchemaRequest
|
|
698
|
+
) => any;
|
|
699
|
+
|
|
700
|
+
export declare const ExportSchemaResponseFilterSensitiveLog: (
|
|
701
|
+
obj: ExportSchemaResponse
|
|
702
|
+
) => any;
|
|
703
|
+
|
|
704
|
+
export declare const GetCodeBindingSourceRequestFilterSensitiveLog: (
|
|
705
|
+
obj: GetCodeBindingSourceRequest
|
|
706
|
+
) => any;
|
|
707
|
+
|
|
708
|
+
export declare const GetCodeBindingSourceResponseFilterSensitiveLog: (
|
|
709
|
+
obj: GetCodeBindingSourceResponse
|
|
710
|
+
) => any;
|
|
711
|
+
|
|
712
|
+
export declare const GetDiscoveredSchemaRequestFilterSensitiveLog: (
|
|
713
|
+
obj: GetDiscoveredSchemaRequest
|
|
714
|
+
) => any;
|
|
715
|
+
|
|
716
|
+
export declare const GetDiscoveredSchemaResponseFilterSensitiveLog: (
|
|
717
|
+
obj: GetDiscoveredSchemaResponse
|
|
718
|
+
) => any;
|
|
719
|
+
|
|
720
|
+
export declare const GetResourcePolicyRequestFilterSensitiveLog: (
|
|
721
|
+
obj: GetResourcePolicyRequest
|
|
722
|
+
) => any;
|
|
723
|
+
|
|
724
|
+
export declare const GetResourcePolicyResponseFilterSensitiveLog: (
|
|
725
|
+
obj: GetResourcePolicyResponse
|
|
726
|
+
) => any;
|
|
727
|
+
|
|
728
|
+
export declare const ListDiscoverersRequestFilterSensitiveLog: (
|
|
729
|
+
obj: ListDiscoverersRequest
|
|
730
|
+
) => any;
|
|
731
|
+
|
|
732
|
+
export declare const ListDiscoverersResponseFilterSensitiveLog: (
|
|
733
|
+
obj: ListDiscoverersResponse
|
|
734
|
+
) => any;
|
|
735
|
+
|
|
736
|
+
export declare const ListRegistriesRequestFilterSensitiveLog: (
|
|
737
|
+
obj: ListRegistriesRequest
|
|
738
|
+
) => any;
|
|
739
|
+
|
|
740
|
+
export declare const ListRegistriesResponseFilterSensitiveLog: (
|
|
741
|
+
obj: ListRegistriesResponse
|
|
742
|
+
) => any;
|
|
743
|
+
|
|
744
|
+
export declare const ListSchemasRequestFilterSensitiveLog: (
|
|
745
|
+
obj: ListSchemasRequest
|
|
746
|
+
) => any;
|
|
747
|
+
|
|
748
|
+
export declare const ListSchemasResponseFilterSensitiveLog: (
|
|
749
|
+
obj: ListSchemasResponse
|
|
750
|
+
) => any;
|
|
751
|
+
|
|
752
|
+
export declare const ListSchemaVersionsRequestFilterSensitiveLog: (
|
|
753
|
+
obj: ListSchemaVersionsRequest
|
|
754
|
+
) => any;
|
|
755
|
+
|
|
756
|
+
export declare const ListSchemaVersionsResponseFilterSensitiveLog: (
|
|
757
|
+
obj: ListSchemaVersionsResponse
|
|
758
|
+
) => any;
|
|
759
|
+
|
|
760
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
761
|
+
obj: ListTagsForResourceRequest
|
|
762
|
+
) => any;
|
|
763
|
+
|
|
764
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
765
|
+
obj: ListTagsForResourceResponse
|
|
766
|
+
) => any;
|
|
767
|
+
|
|
768
|
+
export declare const PutCodeBindingRequestFilterSensitiveLog: (
|
|
769
|
+
obj: PutCodeBindingRequest
|
|
770
|
+
) => any;
|
|
771
|
+
|
|
772
|
+
export declare const PutCodeBindingResponseFilterSensitiveLog: (
|
|
773
|
+
obj: PutCodeBindingResponse
|
|
774
|
+
) => any;
|
|
775
|
+
|
|
776
|
+
export declare const PutResourcePolicyRequestFilterSensitiveLog: (
|
|
777
|
+
obj: PutResourcePolicyRequest
|
|
778
|
+
) => any;
|
|
779
|
+
|
|
780
|
+
export declare const PutResourcePolicyResponseFilterSensitiveLog: (
|
|
781
|
+
obj: PutResourcePolicyResponse
|
|
782
|
+
) => any;
|
|
783
|
+
|
|
784
|
+
export declare const SearchSchemasRequestFilterSensitiveLog: (
|
|
785
|
+
obj: SearchSchemasRequest
|
|
786
|
+
) => any;
|
|
787
|
+
|
|
788
|
+
export declare const SearchSchemasResponseFilterSensitiveLog: (
|
|
789
|
+
obj: SearchSchemasResponse
|
|
790
|
+
) => any;
|
|
791
|
+
|
|
792
|
+
export declare const StartDiscovererRequestFilterSensitiveLog: (
|
|
793
|
+
obj: StartDiscovererRequest
|
|
794
|
+
) => any;
|
|
795
|
+
|
|
796
|
+
export declare const StartDiscovererResponseFilterSensitiveLog: (
|
|
797
|
+
obj: StartDiscovererResponse
|
|
798
|
+
) => any;
|
|
799
|
+
|
|
800
|
+
export declare const StopDiscovererRequestFilterSensitiveLog: (
|
|
801
|
+
obj: StopDiscovererRequest
|
|
802
|
+
) => any;
|
|
803
|
+
|
|
804
|
+
export declare const StopDiscovererResponseFilterSensitiveLog: (
|
|
805
|
+
obj: StopDiscovererResponse
|
|
806
|
+
) => any;
|
|
807
|
+
|
|
808
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
809
|
+
obj: TagResourceRequest
|
|
810
|
+
) => any;
|
|
811
|
+
|
|
812
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
813
|
+
obj: UntagResourceRequest
|
|
814
|
+
) => any;
|
|
815
|
+
|
|
816
|
+
export declare const UpdateDiscovererRequestFilterSensitiveLog: (
|
|
817
|
+
obj: UpdateDiscovererRequest
|
|
818
|
+
) => any;
|
|
819
|
+
|
|
820
|
+
export declare const UpdateDiscovererResponseFilterSensitiveLog: (
|
|
821
|
+
obj: UpdateDiscovererResponse
|
|
822
|
+
) => any;
|
|
823
|
+
|
|
824
|
+
export declare const UpdateRegistryRequestFilterSensitiveLog: (
|
|
825
|
+
obj: UpdateRegistryRequest
|
|
826
|
+
) => any;
|
|
827
|
+
|
|
828
|
+
export declare const UpdateRegistryResponseFilterSensitiveLog: (
|
|
829
|
+
obj: UpdateRegistryResponse
|
|
830
|
+
) => any;
|
|
831
|
+
|
|
832
|
+
export declare const UpdateSchemaRequestFilterSensitiveLog: (
|
|
833
|
+
obj: UpdateSchemaRequest
|
|
834
|
+
) => any;
|
|
835
|
+
|
|
836
|
+
export declare const UpdateSchemaResponseFilterSensitiveLog: (
|
|
837
|
+
obj: UpdateSchemaResponse
|
|
838
|
+
) => any;
|