@aws-sdk/client-schemas 3.686.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +155 -155
- package/dist-types/ts3.4/models/models_0.d.ts +155 -155
- package/package.json +7 -7
|
@@ -10,24 +10,24 @@ export declare const DiscovererState: {
|
|
|
10
10
|
export type DiscovererState =
|
|
11
11
|
(typeof DiscovererState)[keyof typeof DiscovererState];
|
|
12
12
|
export interface DiscovererSummary {
|
|
13
|
-
DiscovererArn?: string;
|
|
14
|
-
DiscovererId?: string;
|
|
15
|
-
SourceArn?: string;
|
|
16
|
-
State?: DiscovererState;
|
|
17
|
-
CrossAccount?: boolean;
|
|
18
|
-
Tags?: Record<string, string
|
|
13
|
+
DiscovererArn?: string | undefined;
|
|
14
|
+
DiscovererId?: string | undefined;
|
|
15
|
+
SourceArn?: string | undefined;
|
|
16
|
+
State?: DiscovererState | undefined;
|
|
17
|
+
CrossAccount?: boolean | undefined;
|
|
18
|
+
Tags?: Record<string, string> | undefined;
|
|
19
19
|
}
|
|
20
20
|
export interface RegistrySummary {
|
|
21
|
-
RegistryArn?: string;
|
|
22
|
-
RegistryName?: string;
|
|
23
|
-
Tags?: Record<string, string
|
|
21
|
+
RegistryArn?: string | undefined;
|
|
22
|
+
RegistryName?: string | undefined;
|
|
23
|
+
Tags?: Record<string, string> | undefined;
|
|
24
24
|
}
|
|
25
25
|
export interface SchemaSummary {
|
|
26
|
-
LastModified?: Date;
|
|
27
|
-
SchemaArn?: string;
|
|
28
|
-
SchemaName?: string;
|
|
29
|
-
Tags?: Record<string, string
|
|
30
|
-
VersionCount?: number;
|
|
26
|
+
LastModified?: Date | undefined;
|
|
27
|
+
SchemaArn?: string | undefined;
|
|
28
|
+
SchemaName?: string | undefined;
|
|
29
|
+
Tags?: Record<string, string> | undefined;
|
|
30
|
+
VersionCount?: number | undefined;
|
|
31
31
|
}
|
|
32
32
|
export declare const Type: {
|
|
33
33
|
readonly JSONSchemaDraft4: "JSONSchemaDraft4";
|
|
@@ -35,21 +35,21 @@ export declare const Type: {
|
|
|
35
35
|
};
|
|
36
36
|
export type Type = (typeof Type)[keyof typeof Type];
|
|
37
37
|
export interface SchemaVersionSummary {
|
|
38
|
-
SchemaArn?: string;
|
|
39
|
-
SchemaName?: string;
|
|
40
|
-
SchemaVersion?: string;
|
|
41
|
-
Type?: Type;
|
|
38
|
+
SchemaArn?: string | undefined;
|
|
39
|
+
SchemaName?: string | undefined;
|
|
40
|
+
SchemaVersion?: string | undefined;
|
|
41
|
+
Type?: Type | undefined;
|
|
42
42
|
}
|
|
43
43
|
export interface SearchSchemaVersionSummary {
|
|
44
|
-
CreatedDate?: Date;
|
|
45
|
-
SchemaVersion?: string;
|
|
46
|
-
Type?: Type;
|
|
44
|
+
CreatedDate?: Date | undefined;
|
|
45
|
+
SchemaVersion?: string | undefined;
|
|
46
|
+
Type?: Type | undefined;
|
|
47
47
|
}
|
|
48
48
|
export interface SearchSchemaSummary {
|
|
49
|
-
RegistryName?: string;
|
|
50
|
-
SchemaArn?: string;
|
|
51
|
-
SchemaName?: string;
|
|
52
|
-
SchemaVersions?: SearchSchemaVersionSummary[];
|
|
49
|
+
RegistryName?: string | undefined;
|
|
50
|
+
SchemaArn?: string | undefined;
|
|
51
|
+
SchemaName?: string | undefined;
|
|
52
|
+
SchemaVersions?: SearchSchemaVersionSummary[] | undefined;
|
|
53
53
|
}
|
|
54
54
|
export declare class BadRequestException extends __BaseException {
|
|
55
55
|
readonly name: "BadRequestException";
|
|
@@ -75,19 +75,19 @@ export declare class ConflictException extends __BaseException {
|
|
|
75
75
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
76
76
|
}
|
|
77
77
|
export interface CreateDiscovererRequest {
|
|
78
|
-
Description?: string;
|
|
78
|
+
Description?: string | undefined;
|
|
79
79
|
SourceArn: string | undefined;
|
|
80
|
-
CrossAccount?: boolean;
|
|
81
|
-
Tags?: Record<string, string
|
|
80
|
+
CrossAccount?: boolean | undefined;
|
|
81
|
+
Tags?: Record<string, string> | undefined;
|
|
82
82
|
}
|
|
83
83
|
export interface CreateDiscovererResponse {
|
|
84
|
-
Description?: string;
|
|
85
|
-
DiscovererArn?: string;
|
|
86
|
-
DiscovererId?: string;
|
|
87
|
-
SourceArn?: string;
|
|
88
|
-
State?: DiscovererState;
|
|
89
|
-
CrossAccount?: boolean;
|
|
90
|
-
Tags?: Record<string, string
|
|
84
|
+
Description?: string | undefined;
|
|
85
|
+
DiscovererArn?: string | undefined;
|
|
86
|
+
DiscovererId?: string | undefined;
|
|
87
|
+
SourceArn?: string | undefined;
|
|
88
|
+
State?: DiscovererState | undefined;
|
|
89
|
+
CrossAccount?: boolean | undefined;
|
|
90
|
+
Tags?: Record<string, string> | undefined;
|
|
91
91
|
}
|
|
92
92
|
export declare class ForbiddenException extends __BaseException {
|
|
93
93
|
readonly name: "ForbiddenException";
|
|
@@ -124,33 +124,33 @@ export declare class UnauthorizedException extends __BaseException {
|
|
|
124
124
|
);
|
|
125
125
|
}
|
|
126
126
|
export interface CreateRegistryRequest {
|
|
127
|
-
Description?: string;
|
|
127
|
+
Description?: string | undefined;
|
|
128
128
|
RegistryName: string | undefined;
|
|
129
|
-
Tags?: Record<string, string
|
|
129
|
+
Tags?: Record<string, string> | undefined;
|
|
130
130
|
}
|
|
131
131
|
export interface CreateRegistryResponse {
|
|
132
|
-
Description?: string;
|
|
133
|
-
RegistryArn?: string;
|
|
134
|
-
RegistryName?: string;
|
|
135
|
-
Tags?: Record<string, string
|
|
132
|
+
Description?: string | undefined;
|
|
133
|
+
RegistryArn?: string | undefined;
|
|
134
|
+
RegistryName?: string | undefined;
|
|
135
|
+
Tags?: Record<string, string> | undefined;
|
|
136
136
|
}
|
|
137
137
|
export interface CreateSchemaRequest {
|
|
138
138
|
Content: string | undefined;
|
|
139
|
-
Description?: string;
|
|
139
|
+
Description?: string | undefined;
|
|
140
140
|
RegistryName: string | undefined;
|
|
141
141
|
SchemaName: string | undefined;
|
|
142
|
-
Tags?: Record<string, string
|
|
142
|
+
Tags?: Record<string, string> | undefined;
|
|
143
143
|
Type: Type | undefined;
|
|
144
144
|
}
|
|
145
145
|
export interface CreateSchemaResponse {
|
|
146
|
-
Description?: string;
|
|
147
|
-
LastModified?: Date;
|
|
148
|
-
SchemaArn?: string;
|
|
149
|
-
SchemaName?: string;
|
|
150
|
-
SchemaVersion?: string;
|
|
151
|
-
Tags?: Record<string, string
|
|
152
|
-
Type?: string;
|
|
153
|
-
VersionCreatedDate?: Date;
|
|
146
|
+
Description?: string | undefined;
|
|
147
|
+
LastModified?: Date | undefined;
|
|
148
|
+
SchemaArn?: string | undefined;
|
|
149
|
+
SchemaName?: string | undefined;
|
|
150
|
+
SchemaVersion?: string | undefined;
|
|
151
|
+
Tags?: Record<string, string> | undefined;
|
|
152
|
+
Type?: string | undefined;
|
|
153
|
+
VersionCreatedDate?: Date | undefined;
|
|
154
154
|
}
|
|
155
155
|
export interface DeleteDiscovererRequest {
|
|
156
156
|
DiscovererId: string | undefined;
|
|
@@ -166,7 +166,7 @@ export interface DeleteRegistryRequest {
|
|
|
166
166
|
RegistryName: string | undefined;
|
|
167
167
|
}
|
|
168
168
|
export interface DeleteResourcePolicyRequest {
|
|
169
|
-
RegistryName?: string;
|
|
169
|
+
RegistryName?: string | undefined;
|
|
170
170
|
}
|
|
171
171
|
export interface DeleteSchemaRequest {
|
|
172
172
|
RegistryName: string | undefined;
|
|
@@ -181,13 +181,13 @@ export interface DescribeCodeBindingRequest {
|
|
|
181
181
|
Language: string | undefined;
|
|
182
182
|
RegistryName: string | undefined;
|
|
183
183
|
SchemaName: string | undefined;
|
|
184
|
-
SchemaVersion?: string;
|
|
184
|
+
SchemaVersion?: string | undefined;
|
|
185
185
|
}
|
|
186
186
|
export interface DescribeCodeBindingResponse {
|
|
187
|
-
CreationDate?: Date;
|
|
188
|
-
LastModified?: Date;
|
|
189
|
-
SchemaVersion?: string;
|
|
190
|
-
Status?: CodeGenerationStatus;
|
|
187
|
+
CreationDate?: Date | undefined;
|
|
188
|
+
LastModified?: Date | undefined;
|
|
189
|
+
SchemaVersion?: string | undefined;
|
|
190
|
+
Status?: CodeGenerationStatus | undefined;
|
|
191
191
|
}
|
|
192
192
|
export declare class TooManyRequestsException extends __BaseException {
|
|
193
193
|
readonly name: "TooManyRequestsException";
|
|
@@ -202,74 +202,74 @@ export interface DescribeDiscovererRequest {
|
|
|
202
202
|
DiscovererId: string | undefined;
|
|
203
203
|
}
|
|
204
204
|
export interface DescribeDiscovererResponse {
|
|
205
|
-
Description?: string;
|
|
206
|
-
DiscovererArn?: string;
|
|
207
|
-
DiscovererId?: string;
|
|
208
|
-
SourceArn?: string;
|
|
209
|
-
State?: DiscovererState;
|
|
210
|
-
CrossAccount?: boolean;
|
|
211
|
-
Tags?: Record<string, string
|
|
205
|
+
Description?: string | undefined;
|
|
206
|
+
DiscovererArn?: string | undefined;
|
|
207
|
+
DiscovererId?: string | undefined;
|
|
208
|
+
SourceArn?: string | undefined;
|
|
209
|
+
State?: DiscovererState | undefined;
|
|
210
|
+
CrossAccount?: boolean | undefined;
|
|
211
|
+
Tags?: Record<string, string> | undefined;
|
|
212
212
|
}
|
|
213
213
|
export interface DescribeRegistryRequest {
|
|
214
214
|
RegistryName: string | undefined;
|
|
215
215
|
}
|
|
216
216
|
export interface DescribeRegistryResponse {
|
|
217
|
-
Description?: string;
|
|
218
|
-
RegistryArn?: string;
|
|
219
|
-
RegistryName?: string;
|
|
220
|
-
Tags?: Record<string, string
|
|
217
|
+
Description?: string | undefined;
|
|
218
|
+
RegistryArn?: string | undefined;
|
|
219
|
+
RegistryName?: string | undefined;
|
|
220
|
+
Tags?: Record<string, string> | undefined;
|
|
221
221
|
}
|
|
222
222
|
export interface DescribeSchemaRequest {
|
|
223
223
|
RegistryName: string | undefined;
|
|
224
224
|
SchemaName: string | undefined;
|
|
225
|
-
SchemaVersion?: string;
|
|
225
|
+
SchemaVersion?: string | undefined;
|
|
226
226
|
}
|
|
227
227
|
export interface DescribeSchemaResponse {
|
|
228
|
-
Content?: string;
|
|
229
|
-
Description?: string;
|
|
230
|
-
LastModified?: Date;
|
|
231
|
-
SchemaArn?: string;
|
|
232
|
-
SchemaName?: string;
|
|
233
|
-
SchemaVersion?: string;
|
|
234
|
-
Tags?: Record<string, string
|
|
235
|
-
Type?: string;
|
|
236
|
-
VersionCreatedDate?: Date;
|
|
228
|
+
Content?: string | undefined;
|
|
229
|
+
Description?: string | undefined;
|
|
230
|
+
LastModified?: Date | undefined;
|
|
231
|
+
SchemaArn?: string | undefined;
|
|
232
|
+
SchemaName?: string | undefined;
|
|
233
|
+
SchemaVersion?: string | undefined;
|
|
234
|
+
Tags?: Record<string, string> | undefined;
|
|
235
|
+
Type?: string | undefined;
|
|
236
|
+
VersionCreatedDate?: Date | undefined;
|
|
237
237
|
}
|
|
238
238
|
export interface ExportSchemaRequest {
|
|
239
239
|
RegistryName: string | undefined;
|
|
240
240
|
SchemaName: string | undefined;
|
|
241
|
-
SchemaVersion?: string;
|
|
241
|
+
SchemaVersion?: string | undefined;
|
|
242
242
|
Type: string | undefined;
|
|
243
243
|
}
|
|
244
244
|
export interface ExportSchemaResponse {
|
|
245
|
-
Content?: string;
|
|
246
|
-
SchemaArn?: string;
|
|
247
|
-
SchemaName?: string;
|
|
248
|
-
SchemaVersion?: string;
|
|
249
|
-
Type?: string;
|
|
245
|
+
Content?: string | undefined;
|
|
246
|
+
SchemaArn?: string | undefined;
|
|
247
|
+
SchemaName?: string | undefined;
|
|
248
|
+
SchemaVersion?: string | undefined;
|
|
249
|
+
Type?: string | undefined;
|
|
250
250
|
}
|
|
251
251
|
export interface GetCodeBindingSourceRequest {
|
|
252
252
|
Language: string | undefined;
|
|
253
253
|
RegistryName: string | undefined;
|
|
254
254
|
SchemaName: string | undefined;
|
|
255
|
-
SchemaVersion?: string;
|
|
255
|
+
SchemaVersion?: string | undefined;
|
|
256
256
|
}
|
|
257
257
|
export interface GetCodeBindingSourceResponse {
|
|
258
|
-
Body?: Uint8Array;
|
|
258
|
+
Body?: Uint8Array | undefined;
|
|
259
259
|
}
|
|
260
260
|
export interface GetDiscoveredSchemaRequest {
|
|
261
261
|
Events: string[] | undefined;
|
|
262
262
|
Type: Type | undefined;
|
|
263
263
|
}
|
|
264
264
|
export interface GetDiscoveredSchemaResponse {
|
|
265
|
-
Content?: string;
|
|
265
|
+
Content?: string | undefined;
|
|
266
266
|
}
|
|
267
267
|
export interface GetResourcePolicyRequest {
|
|
268
|
-
RegistryName?: string;
|
|
268
|
+
RegistryName?: string | undefined;
|
|
269
269
|
}
|
|
270
270
|
export interface GetResourcePolicyResponse {
|
|
271
|
-
Policy?: __LazyJsonString | string;
|
|
272
|
-
RevisionId?: string;
|
|
271
|
+
Policy?: __LazyJsonString | string | undefined;
|
|
272
|
+
RevisionId?: string | undefined;
|
|
273
273
|
}
|
|
274
274
|
export declare class GoneException extends __BaseException {
|
|
275
275
|
readonly name: "GoneException";
|
|
@@ -279,50 +279,50 @@ export declare class GoneException extends __BaseException {
|
|
|
279
279
|
constructor(opts: __ExceptionOptionType<GoneException, __BaseException>);
|
|
280
280
|
}
|
|
281
281
|
export interface ListDiscoverersRequest {
|
|
282
|
-
DiscovererIdPrefix?: string;
|
|
283
|
-
Limit?: number;
|
|
284
|
-
NextToken?: string;
|
|
285
|
-
SourceArnPrefix?: string;
|
|
282
|
+
DiscovererIdPrefix?: string | undefined;
|
|
283
|
+
Limit?: number | undefined;
|
|
284
|
+
NextToken?: string | undefined;
|
|
285
|
+
SourceArnPrefix?: string | undefined;
|
|
286
286
|
}
|
|
287
287
|
export interface ListDiscoverersResponse {
|
|
288
|
-
Discoverers?: DiscovererSummary[];
|
|
289
|
-
NextToken?: string;
|
|
288
|
+
Discoverers?: DiscovererSummary[] | undefined;
|
|
289
|
+
NextToken?: string | undefined;
|
|
290
290
|
}
|
|
291
291
|
export interface ListRegistriesRequest {
|
|
292
|
-
Limit?: number;
|
|
293
|
-
NextToken?: string;
|
|
294
|
-
RegistryNamePrefix?: string;
|
|
295
|
-
Scope?: string;
|
|
292
|
+
Limit?: number | undefined;
|
|
293
|
+
NextToken?: string | undefined;
|
|
294
|
+
RegistryNamePrefix?: string | undefined;
|
|
295
|
+
Scope?: string | undefined;
|
|
296
296
|
}
|
|
297
297
|
export interface ListRegistriesResponse {
|
|
298
|
-
NextToken?: string;
|
|
299
|
-
Registries?: RegistrySummary[];
|
|
298
|
+
NextToken?: string | undefined;
|
|
299
|
+
Registries?: RegistrySummary[] | undefined;
|
|
300
300
|
}
|
|
301
301
|
export interface ListSchemasRequest {
|
|
302
|
-
Limit?: number;
|
|
303
|
-
NextToken?: string;
|
|
302
|
+
Limit?: number | undefined;
|
|
303
|
+
NextToken?: string | undefined;
|
|
304
304
|
RegistryName: string | undefined;
|
|
305
|
-
SchemaNamePrefix?: string;
|
|
305
|
+
SchemaNamePrefix?: string | undefined;
|
|
306
306
|
}
|
|
307
307
|
export interface ListSchemasResponse {
|
|
308
|
-
NextToken?: string;
|
|
309
|
-
Schemas?: SchemaSummary[];
|
|
308
|
+
NextToken?: string | undefined;
|
|
309
|
+
Schemas?: SchemaSummary[] | undefined;
|
|
310
310
|
}
|
|
311
311
|
export interface ListSchemaVersionsRequest {
|
|
312
|
-
Limit?: number;
|
|
313
|
-
NextToken?: string;
|
|
312
|
+
Limit?: number | undefined;
|
|
313
|
+
NextToken?: string | undefined;
|
|
314
314
|
RegistryName: string | undefined;
|
|
315
315
|
SchemaName: string | undefined;
|
|
316
316
|
}
|
|
317
317
|
export interface ListSchemaVersionsResponse {
|
|
318
|
-
NextToken?: string;
|
|
319
|
-
SchemaVersions?: SchemaVersionSummary[];
|
|
318
|
+
NextToken?: string | undefined;
|
|
319
|
+
SchemaVersions?: SchemaVersionSummary[] | undefined;
|
|
320
320
|
}
|
|
321
321
|
export interface ListTagsForResourceRequest {
|
|
322
322
|
ResourceArn: string | undefined;
|
|
323
323
|
}
|
|
324
324
|
export interface ListTagsForResourceResponse {
|
|
325
|
-
Tags?: Record<string, string
|
|
325
|
+
Tags?: Record<string, string> | undefined;
|
|
326
326
|
}
|
|
327
327
|
export declare class PreconditionFailedException extends __BaseException {
|
|
328
328
|
readonly name: "PreconditionFailedException";
|
|
@@ -337,46 +337,46 @@ export interface PutCodeBindingRequest {
|
|
|
337
337
|
Language: string | undefined;
|
|
338
338
|
RegistryName: string | undefined;
|
|
339
339
|
SchemaName: string | undefined;
|
|
340
|
-
SchemaVersion?: string;
|
|
340
|
+
SchemaVersion?: string | undefined;
|
|
341
341
|
}
|
|
342
342
|
export interface PutCodeBindingResponse {
|
|
343
|
-
CreationDate?: Date;
|
|
344
|
-
LastModified?: Date;
|
|
345
|
-
SchemaVersion?: string;
|
|
346
|
-
Status?: CodeGenerationStatus;
|
|
343
|
+
CreationDate?: Date | undefined;
|
|
344
|
+
LastModified?: Date | undefined;
|
|
345
|
+
SchemaVersion?: string | undefined;
|
|
346
|
+
Status?: CodeGenerationStatus | undefined;
|
|
347
347
|
}
|
|
348
348
|
export interface PutResourcePolicyRequest {
|
|
349
349
|
Policy: __LazyJsonString | string | undefined;
|
|
350
|
-
RegistryName?: string;
|
|
351
|
-
RevisionId?: string;
|
|
350
|
+
RegistryName?: string | undefined;
|
|
351
|
+
RevisionId?: string | undefined;
|
|
352
352
|
}
|
|
353
353
|
export interface PutResourcePolicyResponse {
|
|
354
|
-
Policy?: __LazyJsonString | string;
|
|
355
|
-
RevisionId?: string;
|
|
354
|
+
Policy?: __LazyJsonString | string | undefined;
|
|
355
|
+
RevisionId?: string | undefined;
|
|
356
356
|
}
|
|
357
357
|
export interface SearchSchemasRequest {
|
|
358
358
|
Keywords: string | undefined;
|
|
359
|
-
Limit?: number;
|
|
360
|
-
NextToken?: string;
|
|
359
|
+
Limit?: number | undefined;
|
|
360
|
+
NextToken?: string | undefined;
|
|
361
361
|
RegistryName: string | undefined;
|
|
362
362
|
}
|
|
363
363
|
export interface SearchSchemasResponse {
|
|
364
|
-
NextToken?: string;
|
|
365
|
-
Schemas?: SearchSchemaSummary[];
|
|
364
|
+
NextToken?: string | undefined;
|
|
365
|
+
Schemas?: SearchSchemaSummary[] | undefined;
|
|
366
366
|
}
|
|
367
367
|
export interface StartDiscovererRequest {
|
|
368
368
|
DiscovererId: string | undefined;
|
|
369
369
|
}
|
|
370
370
|
export interface StartDiscovererResponse {
|
|
371
|
-
DiscovererId?: string;
|
|
372
|
-
State?: DiscovererState;
|
|
371
|
+
DiscovererId?: string | undefined;
|
|
372
|
+
State?: DiscovererState | undefined;
|
|
373
373
|
}
|
|
374
374
|
export interface StopDiscovererRequest {
|
|
375
375
|
DiscovererId: string | undefined;
|
|
376
376
|
}
|
|
377
377
|
export interface StopDiscovererResponse {
|
|
378
|
-
DiscovererId?: string;
|
|
379
|
-
State?: DiscovererState;
|
|
378
|
+
DiscovererId?: string | undefined;
|
|
379
|
+
State?: DiscovererState | undefined;
|
|
380
380
|
}
|
|
381
381
|
export interface TagResourceRequest {
|
|
382
382
|
ResourceArn: string | undefined;
|
|
@@ -387,44 +387,44 @@ export interface UntagResourceRequest {
|
|
|
387
387
|
TagKeys: string[] | undefined;
|
|
388
388
|
}
|
|
389
389
|
export interface UpdateDiscovererRequest {
|
|
390
|
-
Description?: string;
|
|
390
|
+
Description?: string | undefined;
|
|
391
391
|
DiscovererId: string | undefined;
|
|
392
|
-
CrossAccount?: boolean;
|
|
392
|
+
CrossAccount?: boolean | undefined;
|
|
393
393
|
}
|
|
394
394
|
export interface UpdateDiscovererResponse {
|
|
395
|
-
Description?: string;
|
|
396
|
-
DiscovererArn?: string;
|
|
397
|
-
DiscovererId?: string;
|
|
398
|
-
SourceArn?: string;
|
|
399
|
-
State?: DiscovererState;
|
|
400
|
-
CrossAccount?: boolean;
|
|
401
|
-
Tags?: Record<string, string
|
|
395
|
+
Description?: string | undefined;
|
|
396
|
+
DiscovererArn?: string | undefined;
|
|
397
|
+
DiscovererId?: string | undefined;
|
|
398
|
+
SourceArn?: string | undefined;
|
|
399
|
+
State?: DiscovererState | undefined;
|
|
400
|
+
CrossAccount?: boolean | undefined;
|
|
401
|
+
Tags?: Record<string, string> | undefined;
|
|
402
402
|
}
|
|
403
403
|
export interface UpdateRegistryRequest {
|
|
404
|
-
Description?: string;
|
|
404
|
+
Description?: string | undefined;
|
|
405
405
|
RegistryName: string | undefined;
|
|
406
406
|
}
|
|
407
407
|
export interface UpdateRegistryResponse {
|
|
408
|
-
Description?: string;
|
|
409
|
-
RegistryArn?: string;
|
|
410
|
-
RegistryName?: string;
|
|
411
|
-
Tags?: Record<string, string
|
|
408
|
+
Description?: string | undefined;
|
|
409
|
+
RegistryArn?: string | undefined;
|
|
410
|
+
RegistryName?: string | undefined;
|
|
411
|
+
Tags?: Record<string, string> | undefined;
|
|
412
412
|
}
|
|
413
413
|
export interface UpdateSchemaRequest {
|
|
414
|
-
ClientTokenId?: string;
|
|
415
|
-
Content?: string;
|
|
416
|
-
Description?: string;
|
|
414
|
+
ClientTokenId?: string | undefined;
|
|
415
|
+
Content?: string | undefined;
|
|
416
|
+
Description?: string | undefined;
|
|
417
417
|
RegistryName: string | undefined;
|
|
418
418
|
SchemaName: string | undefined;
|
|
419
|
-
Type?: Type;
|
|
419
|
+
Type?: Type | undefined;
|
|
420
420
|
}
|
|
421
421
|
export interface UpdateSchemaResponse {
|
|
422
|
-
Description?: string;
|
|
423
|
-
LastModified?: Date;
|
|
424
|
-
SchemaArn?: string;
|
|
425
|
-
SchemaName?: string;
|
|
426
|
-
SchemaVersion?: string;
|
|
427
|
-
Tags?: Record<string, string
|
|
428
|
-
Type?: string;
|
|
429
|
-
VersionCreatedDate?: Date;
|
|
422
|
+
Description?: string | undefined;
|
|
423
|
+
LastModified?: Date | undefined;
|
|
424
|
+
SchemaArn?: string | undefined;
|
|
425
|
+
SchemaName?: string | undefined;
|
|
426
|
+
SchemaVersion?: string | undefined;
|
|
427
|
+
Tags?: Record<string, string> | undefined;
|
|
428
|
+
Type?: string | undefined;
|
|
429
|
+
VersionCreatedDate?: Date | undefined;
|
|
430
430
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-schemas",
|
|
3
3
|
"description": "AWS SDK for JavaScript Schemas Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-schemas",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|