@aws-sdk/client-glue 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.
@@ -134,7 +134,7 @@ export interface GetUnfilteredPartitionMetadataRequest {
134
134
  TableName: string | undefined;
135
135
  PartitionValues: string[] | undefined;
136
136
  AuditContext?: AuditContext;
137
- SupportedPermissionTypes: (PermissionType | string)[] | undefined;
137
+ SupportedPermissionTypes: PermissionType[] | undefined;
138
138
  }
139
139
  export interface GetUnfilteredPartitionMetadataResponse {
140
140
  Partition?: Partition;
@@ -158,7 +158,7 @@ export interface GetUnfilteredPartitionsMetadataRequest {
158
158
  TableName: string | undefined;
159
159
  Expression?: string;
160
160
  AuditContext?: AuditContext;
161
- SupportedPermissionTypes: (PermissionType | string)[] | undefined;
161
+ SupportedPermissionTypes: PermissionType[] | undefined;
162
162
  NextToken?: string;
163
163
  Segment?: Segment;
164
164
  MaxResults?: number;
@@ -177,7 +177,7 @@ export interface GetUnfilteredTableMetadataRequest {
177
177
  DatabaseName: string | undefined;
178
178
  Name: string | undefined;
179
179
  AuditContext?: AuditContext;
180
- SupportedPermissionTypes: (PermissionType | string)[] | undefined;
180
+ SupportedPermissionTypes: PermissionType[] | undefined;
181
181
  }
182
182
  export interface ColumnRowFilter {
183
183
  ColumnName?: string;
@@ -199,7 +199,7 @@ export interface UserDefinedFunction {
199
199
  DatabaseName?: string;
200
200
  ClassName?: string;
201
201
  OwnerName?: string;
202
- OwnerType?: PrincipalType | string;
202
+ OwnerType?: PrincipalType;
203
203
  CreateTime?: Date;
204
204
  ResourceUris?: ResourceUri[];
205
205
  CatalogId?: string;
@@ -291,8 +291,8 @@ export declare const FilterOperator: {
291
291
  export type FilterOperator =
292
292
  (typeof FilterOperator)[keyof typeof FilterOperator];
293
293
  export interface CrawlsFilter {
294
- FieldName?: FieldName | string;
295
- FilterOperator?: FilterOperator | string;
294
+ FieldName?: FieldName;
295
+ FilterOperator?: FilterOperator;
296
296
  FieldValue?: string;
297
297
  }
298
298
  export interface ListCrawlsRequest {
@@ -311,7 +311,7 @@ export type CrawlerHistoryState =
311
311
  (typeof CrawlerHistoryState)[keyof typeof CrawlerHistoryState];
312
312
  export interface CrawlerHistory {
313
313
  CrawlId?: string;
314
- State?: CrawlerHistoryState | string;
314
+ State?: CrawlerHistoryState;
315
315
  StartTime?: Date;
316
316
  EndTime?: Date;
317
317
  Summary?: string;
@@ -369,7 +369,7 @@ export interface ListDataQualityRuleRecommendationRunsRequest {
369
369
  }
370
370
  export interface DataQualityRuleRecommendationRunDescription {
371
371
  RunId?: string;
372
- Status?: TaskStatusType | string;
372
+ Status?: TaskStatusType;
373
373
  StartedOn?: Date;
374
374
  DataSource?: DataSource;
375
375
  }
@@ -389,7 +389,7 @@ export interface ListDataQualityRulesetEvaluationRunsRequest {
389
389
  }
390
390
  export interface DataQualityRulesetEvaluationRunDescription {
391
391
  RunId?: string;
392
- Status?: TaskStatusType | string;
392
+ Status?: TaskStatusType;
393
393
  StartedOn?: Date;
394
394
  DataSource?: DataSource;
395
395
  }
@@ -462,7 +462,7 @@ export interface RegistryListItem {
462
462
  RegistryName?: string;
463
463
  RegistryArn?: string;
464
464
  Description?: string;
465
- Status?: RegistryStatus | string;
465
+ Status?: RegistryStatus;
466
466
  CreatedTime?: string;
467
467
  UpdatedTime?: string;
468
468
  }
@@ -480,7 +480,7 @@ export interface SchemaListItem {
480
480
  SchemaName?: string;
481
481
  SchemaArn?: string;
482
482
  Description?: string;
483
- SchemaStatus?: SchemaStatus | string;
483
+ SchemaStatus?: SchemaStatus;
484
484
  CreatedTime?: string;
485
485
  UpdatedTime?: string;
486
486
  }
@@ -497,7 +497,7 @@ export interface SchemaVersionListItem {
497
497
  SchemaArn?: string;
498
498
  SchemaVersionId?: string;
499
499
  VersionNumber?: number;
500
- Status?: SchemaVersionStatus | string;
500
+ Status?: SchemaVersionStatus;
501
501
  CreatedTime?: string;
502
502
  }
503
503
  export interface ListSchemaVersionsResponse {
@@ -564,8 +564,8 @@ export interface PutResourcePolicyRequest {
564
564
  PolicyInJson: string | undefined;
565
565
  ResourceArn?: string;
566
566
  PolicyHashCondition?: string;
567
- PolicyExistsCondition?: ExistCondition | string;
568
- EnableHybrid?: EnableHybridValues | string;
567
+ PolicyExistsCondition?: ExistCondition;
568
+ EnableHybrid?: EnableHybridValues;
569
569
  }
570
570
  export interface PutResourcePolicyResponse {
571
571
  PolicyHash?: string;
@@ -625,7 +625,7 @@ export interface RegisterSchemaVersionInput {
625
625
  export interface RegisterSchemaVersionResponse {
626
626
  SchemaVersionId?: string;
627
627
  VersionNumber?: number;
628
- Status?: SchemaVersionStatus | string;
628
+ Status?: SchemaVersionStatus;
629
629
  }
630
630
  export interface RemoveSchemaVersionMetadataInput {
631
631
  SchemaId?: SchemaId;
@@ -697,7 +697,7 @@ export type Comparator = (typeof Comparator)[keyof typeof Comparator];
697
697
  export interface PropertyPredicate {
698
698
  Key?: string;
699
699
  Value?: string;
700
- Comparator?: Comparator | string;
700
+ Comparator?: Comparator;
701
701
  }
702
702
  export declare const Sort: {
703
703
  readonly ASCENDING: "ASC";
@@ -706,7 +706,7 @@ export declare const Sort: {
706
706
  export type Sort = (typeof Sort)[keyof typeof Sort];
707
707
  export interface SortCriterion {
708
708
  FieldName?: string;
709
- Sort?: Sort | string;
709
+ Sort?: Sort;
710
710
  }
711
711
  export interface SearchTablesRequest {
712
712
  CatalogId?: string;
@@ -715,7 +715,7 @@ export interface SearchTablesRequest {
715
715
  SearchText?: string;
716
716
  SortCriteria?: SortCriterion[];
717
717
  MaxResults?: number;
718
- ResourceShareType?: ResourceShareType | string;
718
+ ResourceShareType?: ResourceShareType;
719
719
  }
720
720
  export interface SearchTablesResponse {
721
721
  NextToken?: string;
@@ -809,9 +809,9 @@ export interface StartJobRunRequest {
809
809
  MaxCapacity?: number;
810
810
  SecurityConfiguration?: string;
811
811
  NotificationProperty?: NotificationProperty;
812
- WorkerType?: WorkerType | string;
812
+ WorkerType?: WorkerType;
813
813
  NumberOfWorkers?: number;
814
- ExecutionClass?: ExecutionClass | string;
814
+ ExecutionClass?: ExecutionClass;
815
815
  }
816
816
  export interface StartJobRunResponse {
817
817
  JobRunId?: string;
@@ -922,13 +922,13 @@ export interface UpdateCsvClassifierRequest {
922
922
  Name: string | undefined;
923
923
  Delimiter?: string;
924
924
  QuoteSymbol?: string;
925
- ContainsHeader?: CsvHeaderOption | string;
925
+ ContainsHeader?: CsvHeaderOption;
926
926
  Header?: string[];
927
927
  DisableValueTrimming?: boolean;
928
928
  AllowSingleColumn?: boolean;
929
929
  CustomDatatypeConfigured?: boolean;
930
930
  CustomDatatypes?: string[];
931
- Serde?: CsvSerdeOption | string;
931
+ Serde?: CsvSerdeOption;
932
932
  }
933
933
  export interface UpdateGrokClassifierRequest {
934
934
  Name: string | undefined;
@@ -1047,13 +1047,13 @@ export interface UpdateJobResponse {
1047
1047
  }
1048
1048
  export interface UpdateJobFromSourceControlRequest {
1049
1049
  JobName?: string;
1050
- Provider?: SourceControlProvider | string;
1050
+ Provider?: SourceControlProvider;
1051
1051
  RepositoryName?: string;
1052
1052
  RepositoryOwner?: string;
1053
1053
  BranchName?: string;
1054
1054
  Folder?: string;
1055
1055
  CommitId?: string;
1056
- AuthStrategy?: SourceControlAuthStrategy | string;
1056
+ AuthStrategy?: SourceControlAuthStrategy;
1057
1057
  AuthToken?: string;
1058
1058
  }
1059
1059
  export interface UpdateJobFromSourceControlResponse {
@@ -1067,7 +1067,7 @@ export interface UpdateMLTransformRequest {
1067
1067
  Role?: string;
1068
1068
  GlueVersion?: string;
1069
1069
  MaxCapacity?: number;
1070
- WorkerType?: WorkerType | string;
1070
+ WorkerType?: WorkerType;
1071
1071
  NumberOfWorkers?: number;
1072
1072
  Timeout?: number;
1073
1073
  MaxRetries?: number;
@@ -1094,7 +1094,7 @@ export interface UpdateRegistryResponse {
1094
1094
  export interface UpdateSchemaInput {
1095
1095
  SchemaId: SchemaId | undefined;
1096
1096
  SchemaVersionNumber?: SchemaVersionNumber;
1097
- Compatibility?: Compatibility | string;
1097
+ Compatibility?: Compatibility;
1098
1098
  Description?: string;
1099
1099
  }
1100
1100
  export interface UpdateSchemaResponse {
@@ -1104,13 +1104,13 @@ export interface UpdateSchemaResponse {
1104
1104
  }
1105
1105
  export interface UpdateSourceControlFromJobRequest {
1106
1106
  JobName?: string;
1107
- Provider?: SourceControlProvider | string;
1107
+ Provider?: SourceControlProvider;
1108
1108
  RepositoryName?: string;
1109
1109
  RepositoryOwner?: string;
1110
1110
  BranchName?: string;
1111
1111
  Folder?: string;
1112
1112
  CommitId?: string;
1113
- AuthStrategy?: SourceControlAuthStrategy | string;
1113
+ AuthStrategy?: SourceControlAuthStrategy;
1114
1114
  AuthToken?: string;
1115
1115
  }
1116
1116
  export interface UpdateSourceControlFromJobResponse {
@@ -1259,9 +1259,9 @@ export interface CreateJobRequest {
1259
1259
  NotificationProperty?: NotificationProperty;
1260
1260
  GlueVersion?: string;
1261
1261
  NumberOfWorkers?: number;
1262
- WorkerType?: WorkerType | string;
1262
+ WorkerType?: WorkerType;
1263
1263
  CodeGenConfigurationNodes?: Record<string, CodeGenConfigurationNode>;
1264
- ExecutionClass?: ExecutionClass | string;
1264
+ ExecutionClass?: ExecutionClass;
1265
1265
  SourceControlDetails?: SourceControlDetails;
1266
1266
  }
1267
1267
  export interface Job {
@@ -1280,13 +1280,13 @@ export interface Job {
1280
1280
  AllocatedCapacity?: number;
1281
1281
  Timeout?: number;
1282
1282
  MaxCapacity?: number;
1283
- WorkerType?: WorkerType | string;
1283
+ WorkerType?: WorkerType;
1284
1284
  NumberOfWorkers?: number;
1285
1285
  SecurityConfiguration?: string;
1286
1286
  NotificationProperty?: NotificationProperty;
1287
1287
  GlueVersion?: string;
1288
1288
  CodeGenConfigurationNodes?: Record<string, CodeGenConfigurationNode>;
1289
- ExecutionClass?: ExecutionClass | string;
1289
+ ExecutionClass?: ExecutionClass;
1290
1290
  SourceControlDetails?: SourceControlDetails;
1291
1291
  }
1292
1292
  export interface JobUpdate {
@@ -1302,13 +1302,13 @@ export interface JobUpdate {
1302
1302
  AllocatedCapacity?: number;
1303
1303
  Timeout?: number;
1304
1304
  MaxCapacity?: number;
1305
- WorkerType?: WorkerType | string;
1305
+ WorkerType?: WorkerType;
1306
1306
  NumberOfWorkers?: number;
1307
1307
  SecurityConfiguration?: string;
1308
1308
  NotificationProperty?: NotificationProperty;
1309
1309
  GlueVersion?: string;
1310
1310
  CodeGenConfigurationNodes?: Record<string, CodeGenConfigurationNode>;
1311
- ExecutionClass?: ExecutionClass | string;
1311
+ ExecutionClass?: ExecutionClass;
1312
1312
  SourceControlDetails?: SourceControlDetails;
1313
1313
  }
1314
1314
  export interface GetJobResponse {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-glue",
3
3
  "description": "AWS SDK for JavaScript Glue 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",