@aws-sdk/client-glue 3.42.0 → 3.46.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 (60) hide show
  1. package/CHANGELOG.md +48 -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 -0
  11. package/dist-cjs/models/models_0.js +36 -36
  12. package/dist-cjs/models/models_1.js +95 -6
  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.js +0 -2
  17. package/dist-es/Glue.js +45 -0
  18. package/dist-es/commands/GetCrawlerMetricsCommand.js +2 -1
  19. package/dist-es/commands/GetCrawlersCommand.js +1 -1
  20. package/dist-es/commands/GetDatabaseCommand.js +1 -2
  21. package/dist-es/commands/GetUnfilteredPartitionMetadataCommand.js +39 -0
  22. package/dist-es/commands/GetUnfilteredPartitionsMetadataCommand.js +39 -0
  23. package/dist-es/commands/GetUnfilteredTableMetadataCommand.js +39 -0
  24. package/dist-es/commands/index.js +3 -0
  25. package/dist-es/endpoints.js +1 -0
  26. package/dist-es/models/models_0.js +20 -20
  27. package/dist-es/models/models_1.js +61 -0
  28. package/dist-es/pagination/GetUnfilteredPartitionsMetadataPaginator.js +74 -0
  29. package/dist-es/pagination/index.js +1 -0
  30. package/dist-es/protocols/Aws_json1_1.js +831 -197
  31. package/dist-es/runtimeConfig.js +0 -2
  32. package/dist-types/Glue.d.ts +12 -0
  33. package/dist-types/GlueClient.d.ts +5 -2
  34. package/dist-types/commands/GetCrawlerMetricsCommand.d.ts +2 -1
  35. package/dist-types/commands/GetCrawlersCommand.d.ts +1 -1
  36. package/dist-types/commands/GetDatabaseCommand.d.ts +1 -2
  37. package/dist-types/commands/GetUnfilteredPartitionMetadataCommand.d.ts +18 -0
  38. package/dist-types/commands/GetUnfilteredPartitionsMetadataCommand.d.ts +18 -0
  39. package/dist-types/commands/GetUnfilteredTableMetadataCommand.d.ts +18 -0
  40. package/dist-types/commands/index.d.ts +3 -0
  41. package/dist-types/models/models_0.d.ts +99 -116
  42. package/dist-types/models/models_1.d.ts +272 -1
  43. package/dist-types/pagination/GetUnfilteredPartitionsMetadataPaginator.d.ts +4 -0
  44. package/dist-types/pagination/index.d.ts +1 -0
  45. package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
  46. package/dist-types/ts3.4/Glue.d.ts +12 -0
  47. package/dist-types/ts3.4/GlueClient.d.ts +5 -2
  48. package/dist-types/ts3.4/commands/GetCrawlerMetricsCommand.d.ts +2 -1
  49. package/dist-types/ts3.4/commands/GetCrawlersCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +1 -2
  51. package/dist-types/ts3.4/commands/GetUnfilteredPartitionMetadataCommand.d.ts +16 -0
  52. package/dist-types/ts3.4/commands/GetUnfilteredPartitionsMetadataCommand.d.ts +16 -0
  53. package/dist-types/ts3.4/commands/GetUnfilteredTableMetadataCommand.d.ts +16 -0
  54. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  55. package/dist-types/ts3.4/models/models_0.d.ts +58 -0
  56. package/dist-types/ts3.4/models/models_1.d.ts +177 -1
  57. package/dist-types/ts3.4/pagination/GetUnfilteredPartitionsMetadataPaginator.d.ts +4 -0
  58. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  59. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
  60. package/package.json +36 -43
@@ -51,6 +51,13 @@ export declare namespace AlreadyExistsException {
51
51
 
52
52
  const filterSensitiveLog: (obj: AlreadyExistsException) => any;
53
53
  }
54
+ export interface AuditContext {
55
+ AdditionalAuditContext?: string;
56
+ }
57
+ export declare namespace AuditContext {
58
+
59
+ const filterSensitiveLog: (obj: AuditContext) => any;
60
+ }
54
61
 
55
62
  export interface Column {
56
63
 
@@ -141,6 +148,7 @@ export interface StorageDescriptor {
141
148
  Columns?: Column[];
142
149
 
143
150
  Location?: string;
151
+ AdditionalLocations?: string[];
144
152
 
145
153
  InputFormat?: string;
146
154
 
@@ -359,6 +367,8 @@ export interface BatchDeleteTableRequest {
359
367
  DatabaseName: string | undefined;
360
368
 
361
369
  TablesToDelete: string[] | undefined;
370
+
371
+ TransactionId?: string;
362
372
  }
363
373
  export declare namespace BatchDeleteTableRequest {
364
374
 
@@ -383,6 +393,17 @@ export declare namespace BatchDeleteTableResponse {
383
393
 
384
394
  const filterSensitiveLog: (obj: BatchDeleteTableResponse) => any;
385
395
  }
396
+
397
+ export interface ResourceNotReadyException extends __SmithyException, $MetadataBearer {
398
+ name: "ResourceNotReadyException";
399
+ $fault: "client";
400
+
401
+ Message?: string;
402
+ }
403
+ export declare namespace ResourceNotReadyException {
404
+
405
+ const filterSensitiveLog: (obj: ResourceNotReadyException) => any;
406
+ }
386
407
  export interface BatchDeleteTableVersionRequest {
387
408
 
388
409
  CatalogId?: string;
@@ -498,6 +519,14 @@ export declare namespace BatchGetCrawlersRequest {
498
519
 
499
520
  const filterSensitiveLog: (obj: BatchGetCrawlersRequest) => any;
500
521
  }
522
+ export interface LakeFormationConfiguration {
523
+ UseLakeFormationCredentials?: boolean;
524
+ AccountId?: string;
525
+ }
526
+ export declare namespace LakeFormationConfiguration {
527
+
528
+ const filterSensitiveLog: (obj: LakeFormationConfiguration) => any;
529
+ }
501
530
  export declare enum LastCrawlStatus {
502
531
  CANCELLED = "CANCELLED",
503
532
  FAILED = "FAILED",
@@ -596,12 +625,27 @@ export interface CatalogTarget {
596
625
  DatabaseName: string | undefined;
597
626
 
598
627
  Tables: string[] | undefined;
628
+
629
+ ConnectionName?: string;
599
630
  }
600
631
  export declare namespace CatalogTarget {
601
632
 
602
633
  const filterSensitiveLog: (obj: CatalogTarget) => any;
603
634
  }
604
635
 
636
+ export interface DeltaTarget {
637
+
638
+ DeltaTables?: string[];
639
+
640
+ ConnectionName?: string;
641
+
642
+ WriteManifest?: boolean;
643
+ }
644
+ export declare namespace DeltaTarget {
645
+
646
+ const filterSensitiveLog: (obj: DeltaTarget) => any;
647
+ }
648
+
605
649
  export interface DynamoDBTarget {
606
650
 
607
651
  Path?: string;
@@ -671,6 +715,8 @@ export interface CrawlerTargets {
671
715
  DynamoDBTargets?: DynamoDBTarget[];
672
716
 
673
717
  CatalogTargets?: CatalogTarget[];
718
+
719
+ DeltaTargets?: DeltaTarget[];
674
720
  }
675
721
  export declare namespace CrawlerTargets {
676
722
 
@@ -716,6 +762,7 @@ export interface Crawler {
716
762
  Configuration?: string;
717
763
 
718
764
  CrawlerSecurityConfiguration?: string;
765
+ LakeFormationConfiguration?: LakeFormationConfiguration;
719
766
  }
720
767
  export declare namespace Crawler {
721
768
 
@@ -960,6 +1007,17 @@ export declare namespace BatchGetPartitionResponse {
960
1007
 
961
1008
  const filterSensitiveLog: (obj: BatchGetPartitionResponse) => any;
962
1009
  }
1010
+
1011
+ export interface InvalidStateException extends __SmithyException, $MetadataBearer {
1012
+ name: "InvalidStateException";
1013
+ $fault: "client";
1014
+
1015
+ Message?: string;
1016
+ }
1017
+ export declare namespace InvalidStateException {
1018
+
1019
+ const filterSensitiveLog: (obj: InvalidStateException) => any;
1020
+ }
963
1021
  export interface BatchGetTriggersRequest {
964
1022
 
965
1023
  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,105 @@ 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 declare namespace PermissionTypeMismatchException {
1504
+
1505
+ const filterSensitiveLog: (obj: PermissionTypeMismatchException) => any;
1506
+ }
1507
+ export interface GetUnfilteredPartitionsMetadataRequest {
1508
+ CatalogId: string | undefined;
1509
+ DatabaseName: string | undefined;
1510
+ TableName: string | undefined;
1511
+ Expression?: string;
1512
+ AuditContext?: AuditContext;
1513
+ SupportedPermissionTypes: (PermissionType | string)[] | undefined;
1514
+ NextToken?: string;
1515
+
1516
+ Segment?: Segment;
1517
+ MaxResults?: number;
1518
+ }
1519
+ export declare namespace GetUnfilteredPartitionsMetadataRequest {
1520
+
1521
+ const filterSensitiveLog: (obj: GetUnfilteredPartitionsMetadataRequest) => any;
1522
+ }
1523
+ export interface UnfilteredPartition {
1524
+
1525
+ Partition?: Partition;
1526
+ AuthorizedColumns?: string[];
1527
+ IsRegisteredWithLakeFormation?: boolean;
1528
+ }
1529
+ export declare namespace UnfilteredPartition {
1530
+
1531
+ const filterSensitiveLog: (obj: UnfilteredPartition) => any;
1532
+ }
1533
+ export interface GetUnfilteredPartitionsMetadataResponse {
1534
+ UnfilteredPartitions?: UnfilteredPartition[];
1535
+ NextToken?: string;
1536
+ }
1537
+ export declare namespace GetUnfilteredPartitionsMetadataResponse {
1538
+
1539
+ const filterSensitiveLog: (obj: GetUnfilteredPartitionsMetadataResponse) => any;
1540
+ }
1541
+ export interface GetUnfilteredTableMetadataRequest {
1542
+ CatalogId: string | undefined;
1543
+ DatabaseName: string | undefined;
1544
+ Name: string | undefined;
1545
+ AuditContext?: AuditContext;
1546
+ SupportedPermissionTypes: (PermissionType | string)[] | undefined;
1547
+ }
1548
+ export declare namespace GetUnfilteredTableMetadataRequest {
1549
+
1550
+ const filterSensitiveLog: (obj: GetUnfilteredTableMetadataRequest) => any;
1551
+ }
1552
+ export interface ColumnRowFilter {
1553
+ ColumnName?: string;
1554
+ RowFilterExpression?: string;
1555
+ }
1556
+ export declare namespace ColumnRowFilter {
1557
+
1558
+ const filterSensitiveLog: (obj: ColumnRowFilter) => any;
1559
+ }
1560
+ export interface GetUnfilteredTableMetadataResponse {
1561
+
1562
+ Table?: Table;
1563
+ AuthorizedColumns?: string[];
1564
+ IsRegisteredWithLakeFormation?: boolean;
1565
+ CellFilters?: ColumnRowFilter[];
1566
+ }
1567
+ export declare namespace GetUnfilteredTableMetadataResponse {
1568
+
1569
+ const filterSensitiveLog: (obj: GetUnfilteredTableMetadataResponse) => any;
1570
+ }
1395
1571
  export interface GetUserDefinedFunctionRequest {
1396
1572
 
1397
1573
  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>;
package/package.json CHANGED
@@ -1,18 +1,17 @@
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.42.0",
4
+ "version": "3.46.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
8
- "build:docs": "yarn clean:docs && typedoc ./",
8
+ "build:docs": "typedoc",
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
11
12
  "clean": "yarn clean:dist && yarn clean:docs",
12
- "clean:dist": "rimraf ./dist",
13
- "clean:docs": "rimraf ./docs",
14
- "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
15
- "test": "exit 0"
13
+ "clean:dist": "rimraf ./dist-*",
14
+ "clean:docs": "rimraf ./docs"
16
15
  },
17
16
  "main": "./dist-cjs/index.js",
18
17
  "types": "./dist-types/index.d.ts",
@@ -21,48 +20,42 @@
21
20
  "dependencies": {
22
21
  "@aws-crypto/sha256-browser": "2.0.0",
23
22
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.42.0",
25
- "@aws-sdk/config-resolver": "3.40.0",
26
- "@aws-sdk/credential-provider-node": "3.41.0",
27
- "@aws-sdk/fetch-http-handler": "3.40.0",
28
- "@aws-sdk/hash-node": "3.40.0",
29
- "@aws-sdk/invalid-dependency": "3.40.0",
30
- "@aws-sdk/middleware-content-length": "3.40.0",
31
- "@aws-sdk/middleware-host-header": "3.40.0",
32
- "@aws-sdk/middleware-logger": "3.40.0",
33
- "@aws-sdk/middleware-retry": "3.40.0",
34
- "@aws-sdk/middleware-serde": "3.40.0",
35
- "@aws-sdk/middleware-signing": "3.40.0",
36
- "@aws-sdk/middleware-stack": "3.40.0",
37
- "@aws-sdk/middleware-user-agent": "3.40.0",
38
- "@aws-sdk/node-config-provider": "3.40.0",
39
- "@aws-sdk/node-http-handler": "3.40.0",
40
- "@aws-sdk/protocol-http": "3.40.0",
41
- "@aws-sdk/smithy-client": "3.41.0",
42
- "@aws-sdk/types": "3.40.0",
43
- "@aws-sdk/url-parser": "3.40.0",
44
- "@aws-sdk/util-base64-browser": "3.37.0",
45
- "@aws-sdk/util-base64-node": "3.37.0",
46
- "@aws-sdk/util-body-length-browser": "3.37.0",
47
- "@aws-sdk/util-body-length-node": "3.37.0",
48
- "@aws-sdk/util-user-agent-browser": "3.40.0",
49
- "@aws-sdk/util-user-agent-node": "3.40.0",
50
- "@aws-sdk/util-utf8-browser": "3.37.0",
51
- "@aws-sdk/util-utf8-node": "3.37.0",
23
+ "@aws-sdk/client-sts": "3.46.0",
24
+ "@aws-sdk/config-resolver": "3.46.0",
25
+ "@aws-sdk/credential-provider-node": "3.46.0",
26
+ "@aws-sdk/fetch-http-handler": "3.46.0",
27
+ "@aws-sdk/hash-node": "3.46.0",
28
+ "@aws-sdk/invalid-dependency": "3.46.0",
29
+ "@aws-sdk/middleware-content-length": "3.46.0",
30
+ "@aws-sdk/middleware-host-header": "3.46.0",
31
+ "@aws-sdk/middleware-logger": "3.46.0",
32
+ "@aws-sdk/middleware-retry": "3.46.0",
33
+ "@aws-sdk/middleware-serde": "3.46.0",
34
+ "@aws-sdk/middleware-signing": "3.46.0",
35
+ "@aws-sdk/middleware-stack": "3.46.0",
36
+ "@aws-sdk/middleware-user-agent": "3.46.0",
37
+ "@aws-sdk/node-config-provider": "3.46.0",
38
+ "@aws-sdk/node-http-handler": "3.46.0",
39
+ "@aws-sdk/protocol-http": "3.46.0",
40
+ "@aws-sdk/smithy-client": "3.46.0",
41
+ "@aws-sdk/types": "3.46.0",
42
+ "@aws-sdk/url-parser": "3.46.0",
43
+ "@aws-sdk/util-base64-browser": "3.46.0",
44
+ "@aws-sdk/util-base64-node": "3.46.0",
45
+ "@aws-sdk/util-body-length-browser": "3.46.0",
46
+ "@aws-sdk/util-body-length-node": "3.46.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.46.0",
48
+ "@aws-sdk/util-user-agent-node": "3.46.0",
49
+ "@aws-sdk/util-utf8-browser": "3.46.0",
50
+ "@aws-sdk/util-utf8-node": "3.46.0",
52
51
  "tslib": "^2.3.0"
53
52
  },
54
53
  "devDependencies": {
55
- "@aws-sdk/service-client-documentation-generator": "3.38.0",
56
- "@types/node": "^12.7.5",
57
- "downlevel-dts": "0.7.0",
58
- "jest": "^26.1.0",
59
- "rimraf": "^3.0.0",
60
- "ts-jest": "^26.4.1",
61
- "typedoc": "^0.19.2",
62
- "typescript": "~4.3.5"
54
+ "@aws-sdk/service-client-documentation-generator": "3.46.0",
55
+ "@types/node": "^12.7.5"
63
56
  },
64
57
  "engines": {
65
- "node": ">=10.0.0"
58
+ "node": ">=12.0.0"
66
59
  },
67
60
  "typesVersions": {
68
61
  "<4.0": {