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