@aws-sdk/client-schemas 3.428.0 → 3.429.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.
@@ -35,7 +35,7 @@ export interface DiscovererSummary {
35
35
  * @public
36
36
  * <p>The state of the discoverer.</p>
37
37
  */
38
- State?: DiscovererState | string;
38
+ State?: DiscovererState;
39
39
  /**
40
40
  * @public
41
41
  * <p>The Status if the discoverer will discover schemas from events sent from another account.</p>
@@ -133,7 +133,7 @@ export interface SchemaVersionSummary {
133
133
  * @public
134
134
  * <p>The type of schema.</p>
135
135
  */
136
- Type?: Type | string;
136
+ Type?: Type;
137
137
  }
138
138
  /**
139
139
  * @public
@@ -153,7 +153,7 @@ export interface SearchSchemaVersionSummary {
153
153
  * @public
154
154
  * <p>The type of schema.</p>
155
155
  */
156
- Type?: Type | string;
156
+ Type?: Type;
157
157
  }
158
158
  /**
159
159
  * @public
@@ -288,7 +288,7 @@ export interface CreateDiscovererResponse {
288
288
  * @public
289
289
  * <p>The state of the discoverer.</p>
290
290
  */
291
- State?: DiscovererState | string;
291
+ State?: DiscovererState;
292
292
  /**
293
293
  * @public
294
294
  * <p>The Status if the discoverer will discover schemas from events sent from another account.</p>
@@ -462,7 +462,7 @@ export interface CreateSchemaRequest {
462
462
  * @public
463
463
  * <p>The type of schema.</p>
464
464
  */
465
- Type: Type | string | undefined;
465
+ Type: Type | undefined;
466
466
  }
467
467
  /**
468
468
  * @public
@@ -643,7 +643,7 @@ export interface DescribeCodeBindingResponse {
643
643
  * @public
644
644
  * <p>The current status of code binding generation.</p>
645
645
  */
646
- Status?: CodeGenerationStatus | string;
646
+ Status?: CodeGenerationStatus;
647
647
  }
648
648
  /**
649
649
  * @public
@@ -704,7 +704,7 @@ export interface DescribeDiscovererResponse {
704
704
  * @public
705
705
  * <p>The state of the discoverer.</p>
706
706
  */
707
- State?: DiscovererState | string;
707
+ State?: DiscovererState;
708
708
  /**
709
709
  * @public
710
710
  * <p>The Status if the discoverer will discover schemas from events sent from another account.</p>
@@ -896,7 +896,7 @@ export interface GetDiscoveredSchemaRequest {
896
896
  * @public
897
897
  * <p>The type of event.</p>
898
898
  */
899
- Type: Type | string | undefined;
899
+ Type: Type | undefined;
900
900
  }
901
901
  /**
902
902
  * @public
@@ -1187,7 +1187,7 @@ export interface PutCodeBindingResponse {
1187
1187
  * @public
1188
1188
  * <p>The current status of code binding generation.</p>
1189
1189
  */
1190
- Status?: CodeGenerationStatus | string;
1190
+ Status?: CodeGenerationStatus;
1191
1191
  }
1192
1192
  /**
1193
1193
  * @public
@@ -1284,7 +1284,7 @@ export interface StartDiscovererResponse {
1284
1284
  * @public
1285
1285
  * <p>The state of the discoverer.</p>
1286
1286
  */
1287
- State?: DiscovererState | string;
1287
+ State?: DiscovererState;
1288
1288
  }
1289
1289
  /**
1290
1290
  * @public
@@ -1309,7 +1309,7 @@ export interface StopDiscovererResponse {
1309
1309
  * @public
1310
1310
  * <p>The state of the discoverer.</p>
1311
1311
  */
1312
- State?: DiscovererState | string;
1312
+ State?: DiscovererState;
1313
1313
  }
1314
1314
  /**
1315
1315
  * @public
@@ -1390,7 +1390,7 @@ export interface UpdateDiscovererResponse {
1390
1390
  * @public
1391
1391
  * <p>The state of the discoverer.</p>
1392
1392
  */
1393
- State?: DiscovererState | string;
1393
+ State?: DiscovererState;
1394
1394
  /**
1395
1395
  * @public
1396
1396
  * <p>The Status if the discoverer will discover schemas from events sent from another account.</p>
@@ -1476,7 +1476,7 @@ export interface UpdateSchemaRequest {
1476
1476
  * @public
1477
1477
  * <p>The schema type for the events schema.</p>
1478
1478
  */
1479
- Type?: Type | string;
1479
+ Type?: Type;
1480
1480
  }
1481
1481
  /**
1482
1482
  * @public
@@ -13,7 +13,7 @@ export interface DiscovererSummary {
13
13
  DiscovererArn?: string;
14
14
  DiscovererId?: string;
15
15
  SourceArn?: string;
16
- State?: DiscovererState | string;
16
+ State?: DiscovererState;
17
17
  CrossAccount?: boolean;
18
18
  Tags?: Record<string, string>;
19
19
  }
@@ -38,12 +38,12 @@ export interface SchemaVersionSummary {
38
38
  SchemaArn?: string;
39
39
  SchemaName?: string;
40
40
  SchemaVersion?: string;
41
- Type?: Type | string;
41
+ Type?: Type;
42
42
  }
43
43
  export interface SearchSchemaVersionSummary {
44
44
  CreatedDate?: Date;
45
45
  SchemaVersion?: string;
46
- Type?: Type | string;
46
+ Type?: Type;
47
47
  }
48
48
  export interface SearchSchemaSummary {
49
49
  RegistryName?: string;
@@ -85,7 +85,7 @@ export interface CreateDiscovererResponse {
85
85
  DiscovererArn?: string;
86
86
  DiscovererId?: string;
87
87
  SourceArn?: string;
88
- State?: DiscovererState | string;
88
+ State?: DiscovererState;
89
89
  CrossAccount?: boolean;
90
90
  Tags?: Record<string, string>;
91
91
  }
@@ -140,7 +140,7 @@ export interface CreateSchemaRequest {
140
140
  RegistryName: string | undefined;
141
141
  SchemaName: string | undefined;
142
142
  Tags?: Record<string, string>;
143
- Type: Type | string | undefined;
143
+ Type: Type | undefined;
144
144
  }
145
145
  export interface CreateSchemaResponse {
146
146
  Description?: string;
@@ -187,7 +187,7 @@ export interface DescribeCodeBindingResponse {
187
187
  CreationDate?: Date;
188
188
  LastModified?: Date;
189
189
  SchemaVersion?: string;
190
- Status?: CodeGenerationStatus | string;
190
+ Status?: CodeGenerationStatus;
191
191
  }
192
192
  export declare class TooManyRequestsException extends __BaseException {
193
193
  readonly name: "TooManyRequestsException";
@@ -206,7 +206,7 @@ export interface DescribeDiscovererResponse {
206
206
  DiscovererArn?: string;
207
207
  DiscovererId?: string;
208
208
  SourceArn?: string;
209
- State?: DiscovererState | string;
209
+ State?: DiscovererState;
210
210
  CrossAccount?: boolean;
211
211
  Tags?: Record<string, string>;
212
212
  }
@@ -259,7 +259,7 @@ export interface GetCodeBindingSourceResponse {
259
259
  }
260
260
  export interface GetDiscoveredSchemaRequest {
261
261
  Events: string[] | undefined;
262
- Type: Type | string | undefined;
262
+ Type: Type | undefined;
263
263
  }
264
264
  export interface GetDiscoveredSchemaResponse {
265
265
  Content?: string;
@@ -343,7 +343,7 @@ export interface PutCodeBindingResponse {
343
343
  CreationDate?: Date;
344
344
  LastModified?: Date;
345
345
  SchemaVersion?: string;
346
- Status?: CodeGenerationStatus | string;
346
+ Status?: CodeGenerationStatus;
347
347
  }
348
348
  export interface PutResourcePolicyRequest {
349
349
  Policy: __LazyJsonString | string | undefined;
@@ -369,14 +369,14 @@ export interface StartDiscovererRequest {
369
369
  }
370
370
  export interface StartDiscovererResponse {
371
371
  DiscovererId?: string;
372
- State?: DiscovererState | string;
372
+ State?: DiscovererState;
373
373
  }
374
374
  export interface StopDiscovererRequest {
375
375
  DiscovererId: string | undefined;
376
376
  }
377
377
  export interface StopDiscovererResponse {
378
378
  DiscovererId?: string;
379
- State?: DiscovererState | string;
379
+ State?: DiscovererState;
380
380
  }
381
381
  export interface TagResourceRequest {
382
382
  ResourceArn: string | undefined;
@@ -396,7 +396,7 @@ export interface UpdateDiscovererResponse {
396
396
  DiscovererArn?: string;
397
397
  DiscovererId?: string;
398
398
  SourceArn?: string;
399
- State?: DiscovererState | string;
399
+ State?: DiscovererState;
400
400
  CrossAccount?: boolean;
401
401
  Tags?: Record<string, string>;
402
402
  }
@@ -416,7 +416,7 @@ export interface UpdateSchemaRequest {
416
416
  Description?: string;
417
417
  RegistryName: string | undefined;
418
418
  SchemaName: string | undefined;
419
- Type?: Type | string;
419
+ Type?: Type;
420
420
  }
421
421
  export interface UpdateSchemaResponse {
422
422
  Description?: string;
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.428.0",
4
+ "version": "3.429.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",