@aws-sdk/client-glue 3.43.0 → 3.47.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 (68) hide show
  1. package/CHANGELOG.md +51 -0
  2. package/dist-cjs/Glue.js +45 -0
  3. package/dist-cjs/commands/GetCrawlerMetricsCommand.js +2 -1
  4. package/dist-cjs/commands/GetCrawlersCommand.js +3 -3
  5. package/dist-cjs/commands/GetDatabaseCommand.js +1 -2
  6. package/dist-cjs/commands/GetUnfilteredPartitionMetadataCommand.js +36 -0
  7. package/dist-cjs/commands/GetUnfilteredPartitionsMetadataCommand.js +36 -0
  8. package/dist-cjs/commands/GetUnfilteredTableMetadataCommand.js +36 -0
  9. package/dist-cjs/commands/index.js +3 -0
  10. package/dist-cjs/endpoints.js +1 -24
  11. package/dist-cjs/models/models_0.js +22 -124
  12. package/dist-cjs/models/models_1.js +89 -66
  13. package/dist-cjs/pagination/GetUnfilteredPartitionsMetadataPaginator.js +35 -0
  14. package/dist-cjs/pagination/index.js +1 -0
  15. package/dist-cjs/protocols/Aws_json1_1.js +662 -5
  16. package/dist-cjs/runtimeConfig.browser.js +7 -2
  17. package/dist-cjs/runtimeConfig.js +9 -3
  18. package/dist-es/Glue.js +45 -0
  19. package/dist-es/commands/GetCrawlerMetricsCommand.js +2 -1
  20. package/dist-es/commands/GetCrawlersCommand.js +1 -1
  21. package/dist-es/commands/GetDatabaseCommand.js +1 -2
  22. package/dist-es/commands/GetUnfilteredPartitionMetadataCommand.js +39 -0
  23. package/dist-es/commands/GetUnfilteredPartitionsMetadataCommand.js +39 -0
  24. package/dist-es/commands/GetUnfilteredTableMetadataCommand.js +39 -0
  25. package/dist-es/commands/index.js +3 -0
  26. package/dist-es/endpoints.js +1 -24
  27. package/dist-es/models/models_0.js +12 -80
  28. package/dist-es/models/models_1.js +57 -40
  29. package/dist-es/pagination/GetUnfilteredPartitionsMetadataPaginator.js +74 -0
  30. package/dist-es/pagination/index.js +1 -0
  31. package/dist-es/protocols/Aws_json1_1.js +831 -197
  32. package/dist-es/runtimeConfig.browser.js +12 -3
  33. package/dist-es/runtimeConfig.js +13 -6
  34. package/dist-types/Glue.d.ts +12 -0
  35. package/dist-types/GlueClient.d.ts +10 -3
  36. package/dist-types/commands/GetCrawlerMetricsCommand.d.ts +2 -1
  37. package/dist-types/commands/GetCrawlersCommand.d.ts +1 -1
  38. package/dist-types/commands/GetDatabaseCommand.d.ts +1 -2
  39. package/dist-types/commands/GetUnfilteredPartitionMetadataCommand.d.ts +18 -0
  40. package/dist-types/commands/GetUnfilteredPartitionsMetadataCommand.d.ts +18 -0
  41. package/dist-types/commands/GetUnfilteredTableMetadataCommand.d.ts +18 -0
  42. package/dist-types/commands/index.d.ts +3 -0
  43. package/dist-types/models/models_0.d.ts +83 -202
  44. package/dist-types/models/models_1.d.ts +266 -61
  45. package/dist-types/pagination/GetUnfilteredPartitionsMetadataPaginator.d.ts +4 -0
  46. package/dist-types/pagination/index.d.ts +1 -0
  47. package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
  48. package/dist-types/runtimeConfig.browser.d.ts +3 -2
  49. package/dist-types/runtimeConfig.d.ts +4 -3
  50. package/dist-types/runtimeConfig.native.d.ts +1 -0
  51. package/dist-types/ts3.4/Glue.d.ts +12 -0
  52. package/dist-types/ts3.4/GlueClient.d.ts +8 -3
  53. package/dist-types/ts3.4/commands/GetCrawlerMetricsCommand.d.ts +2 -1
  54. package/dist-types/ts3.4/commands/GetCrawlersCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +1 -2
  56. package/dist-types/ts3.4/commands/GetUnfilteredPartitionMetadataCommand.d.ts +16 -0
  57. package/dist-types/ts3.4/commands/GetUnfilteredPartitionsMetadataCommand.d.ts +16 -0
  58. package/dist-types/ts3.4/commands/GetUnfilteredTableMetadataCommand.d.ts +16 -0
  59. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +48 -30
  61. package/dist-types/ts3.4/models/models_1.d.ts +173 -41
  62. package/dist-types/ts3.4/pagination/GetUnfilteredPartitionsMetadataPaginator.d.ts +4 -0
  63. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  64. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
  65. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  66. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
  67. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  68. package/package.json +38 -45
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import { GetCrawlerMetricsRequest, GetCrawlerMetricsResponse } from "../models/models_0";
4
+ import { GetCrawlerMetricsRequest } from "../models/models_0";
5
+ import { GetCrawlerMetricsResponse } from "../models/models_1";
5
6
  export interface GetCrawlerMetricsCommandInput extends GetCrawlerMetricsRequest {
6
7
  }
7
8
  export interface GetCrawlerMetricsCommandOutput extends GetCrawlerMetricsResponse, __MetadataBearer {
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import { GetCrawlersRequest, GetCrawlersResponse } from "../models/models_0";
4
+ import { GetCrawlersRequest, GetCrawlersResponse } from "../models/models_1";
5
5
  export interface GetCrawlersCommandInput extends GetCrawlersRequest {
6
6
  }
7
7
  export interface GetCrawlersCommandOutput extends GetCrawlersResponse, __MetadataBearer {
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
3
  import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import { GetDatabaseRequest } from "../models/models_0";
5
- import { GetDatabaseResponse } from "../models/models_1";
4
+ import { GetDatabaseRequest, GetDatabaseResponse } from "../models/models_1";
6
5
  export interface GetDatabaseCommandInput extends GetDatabaseRequest {
7
6
  }
8
7
  export interface GetDatabaseCommandOutput extends GetDatabaseResponse, __MetadataBearer {
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
+ import { GetUnfilteredPartitionMetadataRequest, GetUnfilteredPartitionMetadataResponse } from "../models/models_1";
5
+ export interface GetUnfilteredPartitionMetadataCommandInput extends GetUnfilteredPartitionMetadataRequest {
6
+ }
7
+ export interface GetUnfilteredPartitionMetadataCommandOutput extends GetUnfilteredPartitionMetadataResponse, __MetadataBearer {
8
+ }
9
+ export declare class GetUnfilteredPartitionMetadataCommand extends $Command<GetUnfilteredPartitionMetadataCommandInput, GetUnfilteredPartitionMetadataCommandOutput, GlueClientResolvedConfig> {
10
+ readonly input: GetUnfilteredPartitionMetadataCommandInput;
11
+ constructor(input: GetUnfilteredPartitionMetadataCommandInput);
12
+
13
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlueClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUnfilteredPartitionMetadataCommandInput, GetUnfilteredPartitionMetadataCommandOutput>;
14
+ private serialize;
15
+ private deserialize;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
+ import { GetUnfilteredPartitionsMetadataRequest, GetUnfilteredPartitionsMetadataResponse } from "../models/models_1";
5
+ export interface GetUnfilteredPartitionsMetadataCommandInput extends GetUnfilteredPartitionsMetadataRequest {
6
+ }
7
+ export interface GetUnfilteredPartitionsMetadataCommandOutput extends GetUnfilteredPartitionsMetadataResponse, __MetadataBearer {
8
+ }
9
+ export declare class GetUnfilteredPartitionsMetadataCommand extends $Command<GetUnfilteredPartitionsMetadataCommandInput, GetUnfilteredPartitionsMetadataCommandOutput, GlueClientResolvedConfig> {
10
+ readonly input: GetUnfilteredPartitionsMetadataCommandInput;
11
+ constructor(input: GetUnfilteredPartitionsMetadataCommandInput);
12
+
13
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlueClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUnfilteredPartitionsMetadataCommandInput, GetUnfilteredPartitionsMetadataCommandOutput>;
14
+ private serialize;
15
+ private deserialize;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
+ import { GetUnfilteredTableMetadataRequest, GetUnfilteredTableMetadataResponse } from "../models/models_1";
5
+ export interface GetUnfilteredTableMetadataCommandInput extends GetUnfilteredTableMetadataRequest {
6
+ }
7
+ export interface GetUnfilteredTableMetadataCommandOutput extends GetUnfilteredTableMetadataResponse, __MetadataBearer {
8
+ }
9
+ export declare class GetUnfilteredTableMetadataCommand extends $Command<GetUnfilteredTableMetadataCommandInput, GetUnfilteredTableMetadataCommandOutput, GlueClientResolvedConfig> {
10
+ readonly input: GetUnfilteredTableMetadataCommandInput;
11
+ constructor(input: GetUnfilteredTableMetadataCommandInput);
12
+
13
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlueClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUnfilteredTableMetadataCommandInput, GetUnfilteredTableMetadataCommandOutput>;
14
+ private serialize;
15
+ private deserialize;
16
+ }
@@ -103,6 +103,9 @@ export * from "./GetTablesCommand";
103
103
  export * from "./GetTagsCommand";
104
104
  export * from "./GetTriggerCommand";
105
105
  export * from "./GetTriggersCommand";
106
+ export * from "./GetUnfilteredPartitionMetadataCommand";
107
+ export * from "./GetUnfilteredPartitionsMetadataCommand";
108
+ export * from "./GetUnfilteredTableMetadataCommand";
106
109
  export * from "./GetUserDefinedFunctionCommand";
107
110
  export * from "./GetUserDefinedFunctionsCommand";
108
111
  export * from "./GetWorkflowCommand";
@@ -6,10 +6,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
6
6
 
7
7
  Message?: string;
8
8
  }
9
- export declare namespace AccessDeniedException {
10
-
11
- const filterSensitiveLog: (obj: AccessDeniedException) => any;
12
- }
13
9
 
14
10
  export interface NotificationProperty {
15
11
 
@@ -47,9 +43,12 @@ export interface AlreadyExistsException extends __SmithyException, $MetadataBear
47
43
 
48
44
  Message?: string;
49
45
  }
50
- export declare namespace AlreadyExistsException {
46
+ export interface AuditContext {
47
+ AdditionalAuditContext?: string;
48
+ }
49
+ export declare namespace AuditContext {
51
50
 
52
- const filterSensitiveLog: (obj: AlreadyExistsException) => any;
51
+ const filterSensitiveLog: (obj: AuditContext) => any;
53
52
  }
54
53
 
55
54
  export interface Column {
@@ -141,6 +140,7 @@ export interface StorageDescriptor {
141
140
  Columns?: Column[];
142
141
 
143
142
  Location?: string;
143
+ AdditionalLocations?: string[];
144
144
 
145
145
  InputFormat?: string;
146
146
 
@@ -240,10 +240,6 @@ export interface EntityNotFoundException extends __SmithyException, $MetadataBea
240
240
 
241
241
  Message?: string;
242
242
  }
243
- export declare namespace EntityNotFoundException {
244
-
245
- const filterSensitiveLog: (obj: EntityNotFoundException) => any;
246
- }
247
243
 
248
244
  export interface GlueEncryptionException extends __SmithyException, $MetadataBearer {
249
245
  name: "GlueEncryptionException";
@@ -251,10 +247,6 @@ export interface GlueEncryptionException extends __SmithyException, $MetadataBea
251
247
 
252
248
  Message?: string;
253
249
  }
254
- export declare namespace GlueEncryptionException {
255
-
256
- const filterSensitiveLog: (obj: GlueEncryptionException) => any;
257
- }
258
250
 
259
251
  export interface InternalServiceException extends __SmithyException, $MetadataBearer {
260
252
  name: "InternalServiceException";
@@ -262,10 +254,6 @@ export interface InternalServiceException extends __SmithyException, $MetadataBe
262
254
 
263
255
  Message?: string;
264
256
  }
265
- export declare namespace InternalServiceException {
266
-
267
- const filterSensitiveLog: (obj: InternalServiceException) => any;
268
- }
269
257
 
270
258
  export interface InvalidInputException extends __SmithyException, $MetadataBearer {
271
259
  name: "InvalidInputException";
@@ -273,10 +261,6 @@ export interface InvalidInputException extends __SmithyException, $MetadataBeare
273
261
 
274
262
  Message?: string;
275
263
  }
276
- export declare namespace InvalidInputException {
277
-
278
- const filterSensitiveLog: (obj: InvalidInputException) => any;
279
- }
280
264
 
281
265
  export interface OperationTimeoutException extends __SmithyException, $MetadataBearer {
282
266
  name: "OperationTimeoutException";
@@ -284,10 +268,6 @@ export interface OperationTimeoutException extends __SmithyException, $MetadataB
284
268
 
285
269
  Message?: string;
286
270
  }
287
- export declare namespace OperationTimeoutException {
288
-
289
- const filterSensitiveLog: (obj: OperationTimeoutException) => any;
290
- }
291
271
 
292
272
  export interface ResourceNumberLimitExceededException extends __SmithyException, $MetadataBearer {
293
273
  name: "ResourceNumberLimitExceededException";
@@ -295,10 +275,6 @@ export interface ResourceNumberLimitExceededException extends __SmithyException,
295
275
 
296
276
  Message?: string;
297
277
  }
298
- export declare namespace ResourceNumberLimitExceededException {
299
-
300
- const filterSensitiveLog: (obj: ResourceNumberLimitExceededException) => any;
301
- }
302
278
  export interface BatchDeleteConnectionRequest {
303
279
 
304
280
  CatalogId?: string;
@@ -359,6 +335,8 @@ export interface BatchDeleteTableRequest {
359
335
  DatabaseName: string | undefined;
360
336
 
361
337
  TablesToDelete: string[] | undefined;
338
+
339
+ TransactionId?: string;
362
340
  }
363
341
  export declare namespace BatchDeleteTableRequest {
364
342
 
@@ -383,6 +361,13 @@ export declare namespace BatchDeleteTableResponse {
383
361
 
384
362
  const filterSensitiveLog: (obj: BatchDeleteTableResponse) => any;
385
363
  }
364
+
365
+ export interface ResourceNotReadyException extends __SmithyException, $MetadataBearer {
366
+ name: "ResourceNotReadyException";
367
+ $fault: "client";
368
+
369
+ Message?: string;
370
+ }
386
371
  export interface BatchDeleteTableVersionRequest {
387
372
 
388
373
  CatalogId?: string;
@@ -498,6 +483,14 @@ export declare namespace BatchGetCrawlersRequest {
498
483
 
499
484
  const filterSensitiveLog: (obj: BatchGetCrawlersRequest) => any;
500
485
  }
486
+ export interface LakeFormationConfiguration {
487
+ UseLakeFormationCredentials?: boolean;
488
+ AccountId?: string;
489
+ }
490
+ export declare namespace LakeFormationConfiguration {
491
+
492
+ const filterSensitiveLog: (obj: LakeFormationConfiguration) => any;
493
+ }
501
494
  export declare enum LastCrawlStatus {
502
495
  CANCELLED = "CANCELLED",
503
496
  FAILED = "FAILED",
@@ -596,12 +589,27 @@ export interface CatalogTarget {
596
589
  DatabaseName: string | undefined;
597
590
 
598
591
  Tables: string[] | undefined;
592
+
593
+ ConnectionName?: string;
599
594
  }
600
595
  export declare namespace CatalogTarget {
601
596
 
602
597
  const filterSensitiveLog: (obj: CatalogTarget) => any;
603
598
  }
604
599
 
600
+ export interface DeltaTarget {
601
+
602
+ DeltaTables?: string[];
603
+
604
+ ConnectionName?: string;
605
+
606
+ WriteManifest?: boolean;
607
+ }
608
+ export declare namespace DeltaTarget {
609
+
610
+ const filterSensitiveLog: (obj: DeltaTarget) => any;
611
+ }
612
+
605
613
  export interface DynamoDBTarget {
606
614
 
607
615
  Path?: string;
@@ -671,6 +679,8 @@ export interface CrawlerTargets {
671
679
  DynamoDBTargets?: DynamoDBTarget[];
672
680
 
673
681
  CatalogTargets?: CatalogTarget[];
682
+
683
+ DeltaTargets?: DeltaTarget[];
674
684
  }
675
685
  export declare namespace CrawlerTargets {
676
686
 
@@ -716,6 +726,7 @@ export interface Crawler {
716
726
  Configuration?: string;
717
727
 
718
728
  CrawlerSecurityConfiguration?: string;
729
+ LakeFormationConfiguration?: LakeFormationConfiguration;
719
730
  }
720
731
  export declare namespace Crawler {
721
732
 
@@ -960,6 +971,13 @@ export declare namespace BatchGetPartitionResponse {
960
971
 
961
972
  const filterSensitiveLog: (obj: BatchGetPartitionResponse) => any;
962
973
  }
974
+
975
+ export interface InvalidStateException extends __SmithyException, $MetadataBearer {
976
+ name: "InvalidStateException";
977
+ $fault: "client";
978
+
979
+ Message?: string;
980
+ }
963
981
  export interface BatchGetTriggersRequest {
964
982
 
965
983
  TriggerNames: string[] | undefined;
@@ -1,5 +1,70 @@
1
1
  import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
- import { Action, CodeGenEdge, CodeGenNode, CodeGenNodeArg, Column, ColumnStatistics, Compatibility, ConnectionInput, ConnectionsList, CrawlerTargets, CsvHeaderOption, Database, DatabaseInput, DataFormat, DevEndpoint, EncryptionConfiguration, ErrorDetail, EventBatchingCondition, ExecutionProperty, GlueTable, Job, JobCommand, JobRun, Language, LineageConfiguration, NotificationProperty, Partition, PartitionInput, PartitionValueList, Predicate, PrincipalType, RecrawlPolicy, RegistryId, RegistryStatus, ResourceUri, SchemaChangePolicy, SchemaId, SchemaStatus, SchemaVersionStatus, StorageDescriptor, TableIdentifier, TableInput, TaskStatusType, TransformEncryption, TransformParameters, TransformType, Trigger, UserDefinedFunctionInput, WorkerType, Workflow, WorkflowRun } from "./models_0";
2
+ import { Action, AuditContext, CodeGenEdge, CodeGenNode, CodeGenNodeArg, Column, ColumnStatistics, Compatibility, ConnectionInput, ConnectionsList, Crawler, CrawlerMetrics, CrawlerTargets, CsvHeaderOption, DatabaseIdentifier, DatabaseInput, DataFormat, DevEndpoint, EncryptionConfiguration, ErrorDetail, EventBatchingCondition, ExecutionProperty, GlueTable, Job, JobCommand, JobRun, LakeFormationConfiguration, Language, LineageConfiguration, NotificationProperty, Partition, PartitionInput, PartitionValueList, Predicate, PrincipalPermissions, PrincipalType, RecrawlPolicy, RegistryId, RegistryStatus, ResourceUri, SchemaChangePolicy, SchemaId, SchemaStatus, SchemaVersionStatus, StorageDescriptor, TableIdentifier, TableInput, TaskStatusType, TransformEncryption, TransformParameters, TransformType, Trigger, UserDefinedFunctionInput, WorkerType, Workflow, WorkflowRun } from "./models_0";
3
+ export interface GetCrawlerMetricsResponse {
4
+
5
+ CrawlerMetricsList?: CrawlerMetrics[];
6
+
7
+ NextToken?: string;
8
+ }
9
+ export declare namespace GetCrawlerMetricsResponse {
10
+
11
+ const filterSensitiveLog: (obj: GetCrawlerMetricsResponse) => any;
12
+ }
13
+ export interface GetCrawlersRequest {
14
+
15
+ MaxResults?: number;
16
+
17
+ NextToken?: string;
18
+ }
19
+ export declare namespace GetCrawlersRequest {
20
+
21
+ const filterSensitiveLog: (obj: GetCrawlersRequest) => any;
22
+ }
23
+ export interface GetCrawlersResponse {
24
+
25
+ Crawlers?: Crawler[];
26
+
27
+ NextToken?: string;
28
+ }
29
+ export declare namespace GetCrawlersResponse {
30
+
31
+ const filterSensitiveLog: (obj: GetCrawlersResponse) => any;
32
+ }
33
+ export interface GetDatabaseRequest {
34
+
35
+ CatalogId?: string;
36
+
37
+ Name: string | undefined;
38
+ }
39
+ export declare namespace GetDatabaseRequest {
40
+
41
+ const filterSensitiveLog: (obj: GetDatabaseRequest) => any;
42
+ }
43
+
44
+ export interface Database {
45
+
46
+ Name: string | undefined;
47
+
48
+ Description?: string;
49
+
50
+ LocationUri?: string;
51
+
52
+ Parameters?: {
53
+ [key: string]: string;
54
+ };
55
+
56
+ CreateTime?: Date;
57
+
58
+ CreateTableDefaultPermissions?: PrincipalPermissions[];
59
+
60
+ TargetDatabase?: DatabaseIdentifier;
61
+
62
+ CatalogId?: string;
63
+ }
64
+ export declare namespace Database {
65
+
66
+ const filterSensitiveLog: (obj: Database) => any;
67
+ }
3
68
  export interface GetDatabaseResponse {
4
69
 
5
70
  Database?: Database;
@@ -873,6 +938,10 @@ export interface GetPartitionsRequest {
873
938
  MaxResults?: number;
874
939
 
875
940
  ExcludeColumnSchema?: boolean;
941
+
942
+ TransactionId?: string;
943
+
944
+ QueryAsOfTime?: Date;
876
945
  }
877
946
  export declare namespace GetPartitionsRequest {
878
947
 
@@ -1191,6 +1260,10 @@ export interface GetTableRequest {
1191
1260
  DatabaseName: string | undefined;
1192
1261
 
1193
1262
  Name: string | undefined;
1263
+
1264
+ TransactionId?: string;
1265
+
1266
+ QueryAsOfTime?: Date;
1194
1267
  }
1195
1268
  export declare namespace GetTableRequest {
1196
1269
 
@@ -1262,6 +1335,10 @@ export interface GetTablesRequest {
1262
1335
  NextToken?: string;
1263
1336
 
1264
1337
  MaxResults?: number;
1338
+
1339
+ TransactionId?: string;
1340
+
1341
+ QueryAsOfTime?: Date;
1265
1342
  }
1266
1343
  export declare namespace GetTablesRequest {
1267
1344
 
@@ -1392,6 +1469,101 @@ export declare namespace GetTriggersResponse {
1392
1469
 
1393
1470
  const filterSensitiveLog: (obj: GetTriggersResponse) => any;
1394
1471
  }
1472
+ export declare enum PermissionType {
1473
+ CELL_FILTER_PERMISSION = "CELL_FILTER_PERMISSION",
1474
+ COLUMN_PERMISSION = "COLUMN_PERMISSION"
1475
+ }
1476
+ export interface GetUnfilteredPartitionMetadataRequest {
1477
+ CatalogId: string | undefined;
1478
+ DatabaseName: string | undefined;
1479
+ TableName: string | undefined;
1480
+ PartitionValues: string[] | undefined;
1481
+ AuditContext?: AuditContext;
1482
+ SupportedPermissionTypes: (PermissionType | string)[] | undefined;
1483
+ }
1484
+ export declare namespace GetUnfilteredPartitionMetadataRequest {
1485
+
1486
+ const filterSensitiveLog: (obj: GetUnfilteredPartitionMetadataRequest) => any;
1487
+ }
1488
+ export interface GetUnfilteredPartitionMetadataResponse {
1489
+
1490
+ Partition?: Partition;
1491
+ AuthorizedColumns?: string[];
1492
+ IsRegisteredWithLakeFormation?: boolean;
1493
+ }
1494
+ export declare namespace GetUnfilteredPartitionMetadataResponse {
1495
+
1496
+ const filterSensitiveLog: (obj: GetUnfilteredPartitionMetadataResponse) => any;
1497
+ }
1498
+ export interface PermissionTypeMismatchException extends __SmithyException, $MetadataBearer {
1499
+ name: "PermissionTypeMismatchException";
1500
+ $fault: "client";
1501
+ Message?: string;
1502
+ }
1503
+ export interface GetUnfilteredPartitionsMetadataRequest {
1504
+ CatalogId: string | undefined;
1505
+ DatabaseName: string | undefined;
1506
+ TableName: string | undefined;
1507
+ Expression?: string;
1508
+ AuditContext?: AuditContext;
1509
+ SupportedPermissionTypes: (PermissionType | string)[] | undefined;
1510
+ NextToken?: string;
1511
+
1512
+ Segment?: Segment;
1513
+ MaxResults?: number;
1514
+ }
1515
+ export declare namespace GetUnfilteredPartitionsMetadataRequest {
1516
+
1517
+ const filterSensitiveLog: (obj: GetUnfilteredPartitionsMetadataRequest) => any;
1518
+ }
1519
+ export interface UnfilteredPartition {
1520
+
1521
+ Partition?: Partition;
1522
+ AuthorizedColumns?: string[];
1523
+ IsRegisteredWithLakeFormation?: boolean;
1524
+ }
1525
+ export declare namespace UnfilteredPartition {
1526
+
1527
+ const filterSensitiveLog: (obj: UnfilteredPartition) => any;
1528
+ }
1529
+ export interface GetUnfilteredPartitionsMetadataResponse {
1530
+ UnfilteredPartitions?: UnfilteredPartition[];
1531
+ NextToken?: string;
1532
+ }
1533
+ export declare namespace GetUnfilteredPartitionsMetadataResponse {
1534
+
1535
+ const filterSensitiveLog: (obj: GetUnfilteredPartitionsMetadataResponse) => any;
1536
+ }
1537
+ export interface GetUnfilteredTableMetadataRequest {
1538
+ CatalogId: string | undefined;
1539
+ DatabaseName: string | undefined;
1540
+ Name: string | undefined;
1541
+ AuditContext?: AuditContext;
1542
+ SupportedPermissionTypes: (PermissionType | string)[] | undefined;
1543
+ }
1544
+ export declare namespace GetUnfilteredTableMetadataRequest {
1545
+
1546
+ const filterSensitiveLog: (obj: GetUnfilteredTableMetadataRequest) => any;
1547
+ }
1548
+ export interface ColumnRowFilter {
1549
+ ColumnName?: string;
1550
+ RowFilterExpression?: string;
1551
+ }
1552
+ export declare namespace ColumnRowFilter {
1553
+
1554
+ const filterSensitiveLog: (obj: ColumnRowFilter) => any;
1555
+ }
1556
+ export interface GetUnfilteredTableMetadataResponse {
1557
+
1558
+ Table?: Table;
1559
+ AuthorizedColumns?: string[];
1560
+ IsRegisteredWithLakeFormation?: boolean;
1561
+ CellFilters?: ColumnRowFilter[];
1562
+ }
1563
+ export declare namespace GetUnfilteredTableMetadataResponse {
1564
+
1565
+ const filterSensitiveLog: (obj: GetUnfilteredTableMetadataResponse) => any;
1566
+ }
1395
1567
  export interface GetUserDefinedFunctionRequest {
1396
1568
 
1397
1569
  CatalogId?: string;
@@ -2103,10 +2275,6 @@ export interface ConcurrentRunsExceededException extends __SmithyException, $Met
2103
2275
 
2104
2276
  Message?: string;
2105
2277
  }
2106
- export declare namespace ConcurrentRunsExceededException {
2107
-
2108
- const filterSensitiveLog: (obj: ConcurrentRunsExceededException) => any;
2109
- }
2110
2278
 
2111
2279
  export interface IllegalWorkflowStateException extends __SmithyException, $MetadataBearer {
2112
2280
  name: "IllegalWorkflowStateException";
@@ -2114,10 +2282,6 @@ export interface IllegalWorkflowStateException extends __SmithyException, $Metad
2114
2282
 
2115
2283
  Message?: string;
2116
2284
  }
2117
- export declare namespace IllegalWorkflowStateException {
2118
-
2119
- const filterSensitiveLog: (obj: IllegalWorkflowStateException) => any;
2120
- }
2121
2285
  export interface ResumeWorkflowRunRequest {
2122
2286
 
2123
2287
  Name: string | undefined;
@@ -2210,10 +2374,6 @@ export interface IllegalBlueprintStateException extends __SmithyException, $Meta
2210
2374
  $fault: "client";
2211
2375
  Message?: string;
2212
2376
  }
2213
- export declare namespace IllegalBlueprintStateException {
2214
-
2215
- const filterSensitiveLog: (obj: IllegalBlueprintStateException) => any;
2216
- }
2217
2377
  export interface StartBlueprintRunRequest {
2218
2378
 
2219
2379
  BlueprintName: string | undefined;
@@ -2255,10 +2415,6 @@ export interface NoScheduleException extends __SmithyException, $MetadataBearer
2255
2415
 
2256
2416
  Message?: string;
2257
2417
  }
2258
- export declare namespace NoScheduleException {
2259
-
2260
- const filterSensitiveLog: (obj: NoScheduleException) => any;
2261
- }
2262
2418
 
2263
2419
  export interface SchedulerRunningException extends __SmithyException, $MetadataBearer {
2264
2420
  name: "SchedulerRunningException";
@@ -2266,10 +2422,6 @@ export interface SchedulerRunningException extends __SmithyException, $MetadataB
2266
2422
 
2267
2423
  Message?: string;
2268
2424
  }
2269
- export declare namespace SchedulerRunningException {
2270
-
2271
- const filterSensitiveLog: (obj: SchedulerRunningException) => any;
2272
- }
2273
2425
  export interface StartCrawlerScheduleRequest {
2274
2426
 
2275
2427
  CrawlerName: string | undefined;
@@ -2365,10 +2517,6 @@ export interface MLTransformNotReadyException extends __SmithyException, $Metada
2365
2517
 
2366
2518
  Message?: string;
2367
2519
  }
2368
- export declare namespace MLTransformNotReadyException {
2369
-
2370
- const filterSensitiveLog: (obj: MLTransformNotReadyException) => any;
2371
- }
2372
2520
  export interface StartMLEvaluationTaskRunRequest {
2373
2521
 
2374
2522
  TransformId: string | undefined;
@@ -2442,10 +2590,6 @@ export interface CrawlerNotRunningException extends __SmithyException, $Metadata
2442
2590
 
2443
2591
  Message?: string;
2444
2592
  }
2445
- export declare namespace CrawlerNotRunningException {
2446
-
2447
- const filterSensitiveLog: (obj: CrawlerNotRunningException) => any;
2448
- }
2449
2593
 
2450
2594
  export interface CrawlerStoppingException extends __SmithyException, $MetadataBearer {
2451
2595
  name: "CrawlerStoppingException";
@@ -2453,10 +2597,6 @@ export interface CrawlerStoppingException extends __SmithyException, $MetadataBe
2453
2597
 
2454
2598
  Message?: string;
2455
2599
  }
2456
- export declare namespace CrawlerStoppingException {
2457
-
2458
- const filterSensitiveLog: (obj: CrawlerStoppingException) => any;
2459
- }
2460
2600
  export interface StopCrawlerRequest {
2461
2601
 
2462
2602
  Name: string | undefined;
@@ -2478,10 +2618,6 @@ export interface SchedulerNotRunningException extends __SmithyException, $Metada
2478
2618
 
2479
2619
  Message?: string;
2480
2620
  }
2481
- export declare namespace SchedulerNotRunningException {
2482
-
2483
- const filterSensitiveLog: (obj: SchedulerNotRunningException) => any;
2484
- }
2485
2621
  export interface StopCrawlerScheduleRequest {
2486
2622
 
2487
2623
  CrawlerName: string | undefined;
@@ -2669,10 +2805,6 @@ export interface VersionMismatchException extends __SmithyException, $MetadataBe
2669
2805
 
2670
2806
  Message?: string;
2671
2807
  }
2672
- export declare namespace VersionMismatchException {
2673
-
2674
- const filterSensitiveLog: (obj: VersionMismatchException) => any;
2675
- }
2676
2808
  export interface UpdateColumnStatisticsForPartitionRequest {
2677
2809
 
2678
2810
  CatalogId?: string;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetUnfilteredPartitionsMetadataCommandInput, GetUnfilteredPartitionsMetadataCommandOutput } from "../commands/GetUnfilteredPartitionsMetadataCommand";
3
+ import { GluePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetUnfilteredPartitionsMetadata(config: GluePaginationConfiguration, input: GetUnfilteredPartitionsMetadataCommandInput, ...additionalArguments: any): Paginator<GetUnfilteredPartitionsMetadataCommandOutput>;
@@ -17,6 +17,7 @@ export * from "./GetSecurityConfigurationsPaginator";
17
17
  export * from "./GetTableVersionsPaginator";
18
18
  export * from "./GetTablesPaginator";
19
19
  export * from "./GetTriggersPaginator";
20
+ export * from "./GetUnfilteredPartitionsMetadataPaginator";
20
21
  export * from "./GetUserDefinedFunctionsPaginator";
21
22
  export * from "./GetWorkflowRunsPaginator";
22
23
  export * from "./ListBlueprintsPaginator";
@@ -105,6 +105,9 @@ import { GetTableVersionsCommandInput, GetTableVersionsCommandOutput } from "../
105
105
  import { GetTagsCommandInput, GetTagsCommandOutput } from "../commands/GetTagsCommand";
106
106
  import { GetTriggerCommandInput, GetTriggerCommandOutput } from "../commands/GetTriggerCommand";
107
107
  import { GetTriggersCommandInput, GetTriggersCommandOutput } from "../commands/GetTriggersCommand";
108
+ import { GetUnfilteredPartitionMetadataCommandInput, GetUnfilteredPartitionMetadataCommandOutput } from "../commands/GetUnfilteredPartitionMetadataCommand";
109
+ import { GetUnfilteredPartitionsMetadataCommandInput, GetUnfilteredPartitionsMetadataCommandOutput } from "../commands/GetUnfilteredPartitionsMetadataCommand";
110
+ import { GetUnfilteredTableMetadataCommandInput, GetUnfilteredTableMetadataCommandOutput } from "../commands/GetUnfilteredTableMetadataCommand";
108
111
  import { GetUserDefinedFunctionCommandInput, GetUserDefinedFunctionCommandOutput } from "../commands/GetUserDefinedFunctionCommand";
109
112
  import { GetUserDefinedFunctionsCommandInput, GetUserDefinedFunctionsCommandOutput } from "../commands/GetUserDefinedFunctionsCommand";
110
113
  import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "../commands/GetWorkflowCommand";
@@ -271,6 +274,9 @@ export declare const serializeAws_json1_1GetTableVersionsCommand: (input: GetTab
271
274
  export declare const serializeAws_json1_1GetTagsCommand: (input: GetTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
272
275
  export declare const serializeAws_json1_1GetTriggerCommand: (input: GetTriggerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
273
276
  export declare const serializeAws_json1_1GetTriggersCommand: (input: GetTriggersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
277
+ export declare const serializeAws_json1_1GetUnfilteredPartitionMetadataCommand: (input: GetUnfilteredPartitionMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
278
+ export declare const serializeAws_json1_1GetUnfilteredPartitionsMetadataCommand: (input: GetUnfilteredPartitionsMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
279
+ export declare const serializeAws_json1_1GetUnfilteredTableMetadataCommand: (input: GetUnfilteredTableMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
274
280
  export declare const serializeAws_json1_1GetUserDefinedFunctionCommand: (input: GetUserDefinedFunctionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
275
281
  export declare const serializeAws_json1_1GetUserDefinedFunctionsCommand: (input: GetUserDefinedFunctionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
276
282
  export declare const serializeAws_json1_1GetWorkflowCommand: (input: GetWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -437,6 +443,9 @@ export declare const deserializeAws_json1_1GetTableVersionsCommand: (output: __H
437
443
  export declare const deserializeAws_json1_1GetTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTagsCommandOutput>;
438
444
  export declare const deserializeAws_json1_1GetTriggerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTriggerCommandOutput>;
439
445
  export declare const deserializeAws_json1_1GetTriggersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTriggersCommandOutput>;
446
+ export declare const deserializeAws_json1_1GetUnfilteredPartitionMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUnfilteredPartitionMetadataCommandOutput>;
447
+ export declare const deserializeAws_json1_1GetUnfilteredPartitionsMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUnfilteredPartitionsMetadataCommandOutput>;
448
+ export declare const deserializeAws_json1_1GetUnfilteredTableMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUnfilteredTableMetadataCommandOutput>;
440
449
  export declare const deserializeAws_json1_1GetUserDefinedFunctionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserDefinedFunctionCommandOutput>;
441
450
  export declare const deserializeAws_json1_1GetUserDefinedFunctionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserDefinedFunctionsCommandOutput>;
442
451
  export declare const deserializeAws_json1_1GetWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkflowCommandOutput>;
@@ -1,8 +1,9 @@
1
- import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { GlueClientConfig } from "./GlueClient";
3
3
 
4
4
  export declare const getRuntimeConfig: (config: GlueClientConfig) => {
5
5
  runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
6
7
  base64Decoder: import("@aws-sdk/types").Decoder;
7
8
  base64Encoder: import("@aws-sdk/types").Encoder;
8
9
  bodyLengthChecker: (body: any) => number | undefined;
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
10
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
11
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
12
13
  region: string | import("@aws-sdk/types").Provider<any>;
13
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
14
15
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
16
  sha256: import("@aws-sdk/types").HashConstructor;
16
17
  streamCollector: import("@aws-sdk/types").StreamCollector;