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