@aws-sdk/client-glue 3.43.0 → 3.44.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/CHANGELOG.md +11 -0
- package/dist-cjs/commands/GetDatabaseCommand.js +1 -2
- package/dist-cjs/models/models_0.js +18 -18
- package/dist-cjs/models/models_1.js +18 -6
- package/dist-cjs/protocols/Aws_json1_1.js +117 -0
- package/dist-es/commands/GetDatabaseCommand.js +1 -2
- package/dist-es/models/models_0.js +8 -8
- package/dist-es/models/models_1.js +8 -0
- package/dist-es/protocols/Aws_json1_1.js +277 -174
- package/dist-types/commands/GetDatabaseCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +46 -66
- package/dist-types/models/models_1.d.ts +95 -1
- package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +24 -0
- package/dist-types/ts3.4/models/models_1.d.ts +48 -1
- package/package.json +1 -1
|
@@ -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/
|
|
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 {
|
|
@@ -639,6 +639,10 @@ export interface BatchDeleteTableRequest {
|
|
|
639
639
|
* <p>A list of the table to delete.</p>
|
|
640
640
|
*/
|
|
641
641
|
TablesToDelete: string[] | undefined;
|
|
642
|
+
/**
|
|
643
|
+
* <p>The transaction ID at which to delete the table contents.</p>
|
|
644
|
+
*/
|
|
645
|
+
TransactionId?: string;
|
|
642
646
|
}
|
|
643
647
|
export declare namespace BatchDeleteTableRequest {
|
|
644
648
|
/**
|
|
@@ -677,6 +681,23 @@ export declare namespace BatchDeleteTableResponse {
|
|
|
677
681
|
*/
|
|
678
682
|
const filterSensitiveLog: (obj: BatchDeleteTableResponse) => any;
|
|
679
683
|
}
|
|
684
|
+
/**
|
|
685
|
+
* <p>A resource was not ready for a transaction.</p>
|
|
686
|
+
*/
|
|
687
|
+
export interface ResourceNotReadyException extends __SmithyException, $MetadataBearer {
|
|
688
|
+
name: "ResourceNotReadyException";
|
|
689
|
+
$fault: "client";
|
|
690
|
+
/**
|
|
691
|
+
* <p>A message describing the problem.</p>
|
|
692
|
+
*/
|
|
693
|
+
Message?: string;
|
|
694
|
+
}
|
|
695
|
+
export declare namespace ResourceNotReadyException {
|
|
696
|
+
/**
|
|
697
|
+
* @internal
|
|
698
|
+
*/
|
|
699
|
+
const filterSensitiveLog: (obj: ResourceNotReadyException) => any;
|
|
700
|
+
}
|
|
680
701
|
export interface BatchDeleteTableVersionRequest {
|
|
681
702
|
/**
|
|
682
703
|
* <p>The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account
|
|
@@ -1854,6 +1875,23 @@ export declare namespace BatchGetPartitionResponse {
|
|
|
1854
1875
|
*/
|
|
1855
1876
|
const filterSensitiveLog: (obj: BatchGetPartitionResponse) => any;
|
|
1856
1877
|
}
|
|
1878
|
+
/**
|
|
1879
|
+
* <p>An error that indicates your data is in an invalid state.</p>
|
|
1880
|
+
*/
|
|
1881
|
+
export interface InvalidStateException extends __SmithyException, $MetadataBearer {
|
|
1882
|
+
name: "InvalidStateException";
|
|
1883
|
+
$fault: "client";
|
|
1884
|
+
/**
|
|
1885
|
+
* <p>A message describing the problem.</p>
|
|
1886
|
+
*/
|
|
1887
|
+
Message?: string;
|
|
1888
|
+
}
|
|
1889
|
+
export declare namespace InvalidStateException {
|
|
1890
|
+
/**
|
|
1891
|
+
* @internal
|
|
1892
|
+
*/
|
|
1893
|
+
const filterSensitiveLog: (obj: InvalidStateException) => any;
|
|
1894
|
+
}
|
|
1857
1895
|
export interface BatchGetTriggersRequest {
|
|
1858
1896
|
/**
|
|
1859
1897
|
* <p>A list of trigger names, which may be the names returned from the <code>ListTriggers</code> operation.</p>
|
|
@@ -4798,6 +4836,10 @@ export interface CreateTableRequest {
|
|
|
4798
4836
|
* <p>A list of partition indexes, <code>PartitionIndex</code> structures, to create in the table.</p>
|
|
4799
4837
|
*/
|
|
4800
4838
|
PartitionIndexes?: PartitionIndex[];
|
|
4839
|
+
/**
|
|
4840
|
+
* <p>The ID of the transaction.</p>
|
|
4841
|
+
*/
|
|
4842
|
+
TransactionId?: string;
|
|
4801
4843
|
}
|
|
4802
4844
|
export declare namespace CreateTableRequest {
|
|
4803
4845
|
/**
|
|
@@ -5606,6 +5648,10 @@ export interface DeleteTableRequest {
|
|
|
5606
5648
|
* compatibility, this name is entirely lowercase.</p>
|
|
5607
5649
|
*/
|
|
5608
5650
|
Name: string | undefined;
|
|
5651
|
+
/**
|
|
5652
|
+
* <p>The transaction ID at which to delete the table contents.</p>
|
|
5653
|
+
*/
|
|
5654
|
+
TransactionId?: string;
|
|
5609
5655
|
}
|
|
5610
5656
|
export declare namespace DeleteTableRequest {
|
|
5611
5657
|
/**
|
|
@@ -7017,69 +7063,3 @@ export declare namespace GetCrawlersResponse {
|
|
|
7017
7063
|
*/
|
|
7018
7064
|
const filterSensitiveLog: (obj: GetCrawlersResponse) => any;
|
|
7019
7065
|
}
|
|
7020
|
-
export interface GetDatabaseRequest {
|
|
7021
|
-
/**
|
|
7022
|
-
* <p>The ID of the Data Catalog in which the database resides. If none is provided, the Amazon Web Services
|
|
7023
|
-
* account ID is used by default.</p>
|
|
7024
|
-
*/
|
|
7025
|
-
CatalogId?: string;
|
|
7026
|
-
/**
|
|
7027
|
-
* <p>The name of the database to retrieve. For Hive compatibility, this
|
|
7028
|
-
* should be all lowercase.</p>
|
|
7029
|
-
*/
|
|
7030
|
-
Name: string | undefined;
|
|
7031
|
-
}
|
|
7032
|
-
export declare namespace GetDatabaseRequest {
|
|
7033
|
-
/**
|
|
7034
|
-
* @internal
|
|
7035
|
-
*/
|
|
7036
|
-
const filterSensitiveLog: (obj: GetDatabaseRequest) => any;
|
|
7037
|
-
}
|
|
7038
|
-
/**
|
|
7039
|
-
* <p>The <code>Database</code> object represents a logical grouping of tables that might reside
|
|
7040
|
-
* in a Hive metastore or an RDBMS.</p>
|
|
7041
|
-
*/
|
|
7042
|
-
export interface Database {
|
|
7043
|
-
/**
|
|
7044
|
-
* <p>The name of the database. For Hive compatibility, this is folded to lowercase when it is
|
|
7045
|
-
* stored.</p>
|
|
7046
|
-
*/
|
|
7047
|
-
Name: string | undefined;
|
|
7048
|
-
/**
|
|
7049
|
-
* <p>A description of the database.</p>
|
|
7050
|
-
*/
|
|
7051
|
-
Description?: string;
|
|
7052
|
-
/**
|
|
7053
|
-
* <p>The location of the database (for example, an HDFS path).</p>
|
|
7054
|
-
*/
|
|
7055
|
-
LocationUri?: string;
|
|
7056
|
-
/**
|
|
7057
|
-
* <p>These key-value pairs define parameters and properties
|
|
7058
|
-
* of the database.</p>
|
|
7059
|
-
*/
|
|
7060
|
-
Parameters?: {
|
|
7061
|
-
[key: string]: string;
|
|
7062
|
-
};
|
|
7063
|
-
/**
|
|
7064
|
-
* <p>The time at which the metadata database was created in the catalog.</p>
|
|
7065
|
-
*/
|
|
7066
|
-
CreateTime?: Date;
|
|
7067
|
-
/**
|
|
7068
|
-
* <p>Creates a set of default permissions on the table for principals. </p>
|
|
7069
|
-
*/
|
|
7070
|
-
CreateTableDefaultPermissions?: PrincipalPermissions[];
|
|
7071
|
-
/**
|
|
7072
|
-
* <p>A <code>DatabaseIdentifier</code> structure that describes a target database for resource linking.</p>
|
|
7073
|
-
*/
|
|
7074
|
-
TargetDatabase?: DatabaseIdentifier;
|
|
7075
|
-
/**
|
|
7076
|
-
* <p>The ID of the Data Catalog in which the database resides.</p>
|
|
7077
|
-
*/
|
|
7078
|
-
CatalogId?: string;
|
|
7079
|
-
}
|
|
7080
|
-
export declare namespace Database {
|
|
7081
|
-
/**
|
|
7082
|
-
* @internal
|
|
7083
|
-
*/
|
|
7084
|
-
const filterSensitiveLog: (obj: Database) => any;
|
|
7085
|
-
}
|
|
@@ -1,5 +1,71 @@
|
|
|
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,
|
|
2
|
+
import { Action, CodeGenEdge, CodeGenNode, CodeGenNodeArg, Column, ColumnStatistics, Compatibility, ConnectionInput, ConnectionsList, CrawlerTargets, CsvHeaderOption, DatabaseIdentifier, DatabaseInput, DataFormat, DevEndpoint, EncryptionConfiguration, ErrorDetail, EventBatchingCondition, ExecutionProperty, GlueTable, Job, JobCommand, JobRun, 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 GetDatabaseRequest {
|
|
4
|
+
/**
|
|
5
|
+
* <p>The ID of the Data Catalog in which the database resides. If none is provided, the Amazon Web Services
|
|
6
|
+
* account ID is used by default.</p>
|
|
7
|
+
*/
|
|
8
|
+
CatalogId?: string;
|
|
9
|
+
/**
|
|
10
|
+
* <p>The name of the database to retrieve. For Hive compatibility, this
|
|
11
|
+
* should be all lowercase.</p>
|
|
12
|
+
*/
|
|
13
|
+
Name: string | undefined;
|
|
14
|
+
}
|
|
15
|
+
export declare namespace GetDatabaseRequest {
|
|
16
|
+
/**
|
|
17
|
+
* @internal
|
|
18
|
+
*/
|
|
19
|
+
const filterSensitiveLog: (obj: GetDatabaseRequest) => any;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* <p>The <code>Database</code> object represents a logical grouping of tables that might reside
|
|
23
|
+
* in a Hive metastore or an RDBMS.</p>
|
|
24
|
+
*/
|
|
25
|
+
export interface Database {
|
|
26
|
+
/**
|
|
27
|
+
* <p>The name of the database. For Hive compatibility, this is folded to lowercase when it is
|
|
28
|
+
* stored.</p>
|
|
29
|
+
*/
|
|
30
|
+
Name: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>A description of the database.</p>
|
|
33
|
+
*/
|
|
34
|
+
Description?: string;
|
|
35
|
+
/**
|
|
36
|
+
* <p>The location of the database (for example, an HDFS path).</p>
|
|
37
|
+
*/
|
|
38
|
+
LocationUri?: string;
|
|
39
|
+
/**
|
|
40
|
+
* <p>These key-value pairs define parameters and properties
|
|
41
|
+
* of the database.</p>
|
|
42
|
+
*/
|
|
43
|
+
Parameters?: {
|
|
44
|
+
[key: string]: string;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* <p>The time at which the metadata database was created in the catalog.</p>
|
|
48
|
+
*/
|
|
49
|
+
CreateTime?: Date;
|
|
50
|
+
/**
|
|
51
|
+
* <p>Creates a set of default permissions on the table for principals. </p>
|
|
52
|
+
*/
|
|
53
|
+
CreateTableDefaultPermissions?: PrincipalPermissions[];
|
|
54
|
+
/**
|
|
55
|
+
* <p>A <code>DatabaseIdentifier</code> structure that describes a target database for resource linking.</p>
|
|
56
|
+
*/
|
|
57
|
+
TargetDatabase?: DatabaseIdentifier;
|
|
58
|
+
/**
|
|
59
|
+
* <p>The ID of the Data Catalog in which the database resides.</p>
|
|
60
|
+
*/
|
|
61
|
+
CatalogId?: string;
|
|
62
|
+
}
|
|
63
|
+
export declare namespace Database {
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
67
|
+
const filterSensitiveLog: (obj: Database) => any;
|
|
68
|
+
}
|
|
3
69
|
export interface GetDatabaseResponse {
|
|
4
70
|
/**
|
|
5
71
|
* <p>The definition of the specified database in the Data Catalog.</p>
|
|
@@ -1778,6 +1844,14 @@ export interface GetPartitionsRequest {
|
|
|
1778
1844
|
* <p>When true, specifies not returning the partition column schema. Useful when you are interested only in other partition attributes such as partition values or location. This approach avoids the problem of a large response by not returning duplicate data.</p>
|
|
1779
1845
|
*/
|
|
1780
1846
|
ExcludeColumnSchema?: boolean;
|
|
1847
|
+
/**
|
|
1848
|
+
* <p>The transaction ID at which to read the partition contents.</p>
|
|
1849
|
+
*/
|
|
1850
|
+
TransactionId?: string;
|
|
1851
|
+
/**
|
|
1852
|
+
* <p>The time as of when to read the partition contents. If not set, the most recent transaction commit time will be used. Cannot be specified along with <code>TransactionId</code>.</p>
|
|
1853
|
+
*/
|
|
1854
|
+
QueryAsOfTime?: Date;
|
|
1781
1855
|
}
|
|
1782
1856
|
export declare namespace GetPartitionsRequest {
|
|
1783
1857
|
/**
|
|
@@ -2364,6 +2438,14 @@ export interface GetTableRequest {
|
|
|
2364
2438
|
* compatibility, this name is entirely lowercase.</p>
|
|
2365
2439
|
*/
|
|
2366
2440
|
Name: string | undefined;
|
|
2441
|
+
/**
|
|
2442
|
+
* <p>The transaction ID at which to read the table contents. </p>
|
|
2443
|
+
*/
|
|
2444
|
+
TransactionId?: string;
|
|
2445
|
+
/**
|
|
2446
|
+
* <p>The time as of when to read the table contents. If not set, the most recent transaction commit time will be used. Cannot be specified along with <code>TransactionId</code>.</p>
|
|
2447
|
+
*/
|
|
2448
|
+
QueryAsOfTime?: Date;
|
|
2367
2449
|
}
|
|
2368
2450
|
export declare namespace GetTableRequest {
|
|
2369
2451
|
/**
|
|
@@ -2507,6 +2589,14 @@ export interface GetTablesRequest {
|
|
|
2507
2589
|
* <p>The maximum number of tables to return in a single response.</p>
|
|
2508
2590
|
*/
|
|
2509
2591
|
MaxResults?: number;
|
|
2592
|
+
/**
|
|
2593
|
+
* <p>The transaction ID at which to read the table contents.</p>
|
|
2594
|
+
*/
|
|
2595
|
+
TransactionId?: string;
|
|
2596
|
+
/**
|
|
2597
|
+
* <p>The time as of when to read the table contents. If not set, the most recent transaction commit time will be used. Cannot be specified along with <code>TransactionId</code>.</p>
|
|
2598
|
+
*/
|
|
2599
|
+
QueryAsOfTime?: Date;
|
|
2510
2600
|
}
|
|
2511
2601
|
export declare namespace GetTablesRequest {
|
|
2512
2602
|
/**
|
|
@@ -5662,6 +5752,10 @@ export interface UpdateTableRequest {
|
|
|
5662
5752
|
* <code>UpdateTable</code> does not create the archived version.</p>
|
|
5663
5753
|
*/
|
|
5664
5754
|
SkipArchive?: boolean;
|
|
5755
|
+
/**
|
|
5756
|
+
* <p>The transaction ID at which to update the table contents. </p>
|
|
5757
|
+
*/
|
|
5758
|
+
TransactionId?: string;
|
|
5665
5759
|
}
|
|
5666
5760
|
export declare namespace UpdateTableRequest {
|
|
5667
5761
|
/**
|
|
@@ -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/
|
|
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 {
|
|
@@ -359,6 +359,8 @@ export interface BatchDeleteTableRequest {
|
|
|
359
359
|
DatabaseName: string | undefined;
|
|
360
360
|
|
|
361
361
|
TablesToDelete: string[] | undefined;
|
|
362
|
+
|
|
363
|
+
TransactionId?: string;
|
|
362
364
|
}
|
|
363
365
|
export declare namespace BatchDeleteTableRequest {
|
|
364
366
|
|
|
@@ -383,6 +385,17 @@ export declare namespace BatchDeleteTableResponse {
|
|
|
383
385
|
|
|
384
386
|
const filterSensitiveLog: (obj: BatchDeleteTableResponse) => any;
|
|
385
387
|
}
|
|
388
|
+
|
|
389
|
+
export interface ResourceNotReadyException extends __SmithyException, $MetadataBearer {
|
|
390
|
+
name: "ResourceNotReadyException";
|
|
391
|
+
$fault: "client";
|
|
392
|
+
|
|
393
|
+
Message?: string;
|
|
394
|
+
}
|
|
395
|
+
export declare namespace ResourceNotReadyException {
|
|
396
|
+
|
|
397
|
+
const filterSensitiveLog: (obj: ResourceNotReadyException) => any;
|
|
398
|
+
}
|
|
386
399
|
export interface BatchDeleteTableVersionRequest {
|
|
387
400
|
|
|
388
401
|
CatalogId?: string;
|
|
@@ -960,6 +973,17 @@ export declare namespace BatchGetPartitionResponse {
|
|
|
960
973
|
|
|
961
974
|
const filterSensitiveLog: (obj: BatchGetPartitionResponse) => any;
|
|
962
975
|
}
|
|
976
|
+
|
|
977
|
+
export interface InvalidStateException extends __SmithyException, $MetadataBearer {
|
|
978
|
+
name: "InvalidStateException";
|
|
979
|
+
$fault: "client";
|
|
980
|
+
|
|
981
|
+
Message?: string;
|
|
982
|
+
}
|
|
983
|
+
export declare namespace InvalidStateException {
|
|
984
|
+
|
|
985
|
+
const filterSensitiveLog: (obj: InvalidStateException) => any;
|
|
986
|
+
}
|
|
963
987
|
export interface BatchGetTriggersRequest {
|
|
964
988
|
|
|
965
989
|
TriggerNames: string[] | undefined;
|
|
@@ -1,5 +1,40 @@
|
|
|
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,
|
|
2
|
+
import { Action, CodeGenEdge, CodeGenNode, CodeGenNodeArg, Column, ColumnStatistics, Compatibility, ConnectionInput, ConnectionsList, CrawlerTargets, CsvHeaderOption, DatabaseIdentifier, DatabaseInput, DataFormat, DevEndpoint, EncryptionConfiguration, ErrorDetail, EventBatchingCondition, ExecutionProperty, GlueTable, Job, JobCommand, JobRun, 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 GetDatabaseRequest {
|
|
4
|
+
|
|
5
|
+
CatalogId?: string;
|
|
6
|
+
|
|
7
|
+
Name: string | undefined;
|
|
8
|
+
}
|
|
9
|
+
export declare namespace GetDatabaseRequest {
|
|
10
|
+
|
|
11
|
+
const filterSensitiveLog: (obj: GetDatabaseRequest) => any;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export interface Database {
|
|
15
|
+
|
|
16
|
+
Name: string | undefined;
|
|
17
|
+
|
|
18
|
+
Description?: string;
|
|
19
|
+
|
|
20
|
+
LocationUri?: string;
|
|
21
|
+
|
|
22
|
+
Parameters?: {
|
|
23
|
+
[key: string]: string;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
CreateTime?: Date;
|
|
27
|
+
|
|
28
|
+
CreateTableDefaultPermissions?: PrincipalPermissions[];
|
|
29
|
+
|
|
30
|
+
TargetDatabase?: DatabaseIdentifier;
|
|
31
|
+
|
|
32
|
+
CatalogId?: string;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace Database {
|
|
35
|
+
|
|
36
|
+
const filterSensitiveLog: (obj: Database) => any;
|
|
37
|
+
}
|
|
3
38
|
export interface GetDatabaseResponse {
|
|
4
39
|
|
|
5
40
|
Database?: Database;
|
|
@@ -873,6 +908,10 @@ export interface GetPartitionsRequest {
|
|
|
873
908
|
MaxResults?: number;
|
|
874
909
|
|
|
875
910
|
ExcludeColumnSchema?: boolean;
|
|
911
|
+
|
|
912
|
+
TransactionId?: string;
|
|
913
|
+
|
|
914
|
+
QueryAsOfTime?: Date;
|
|
876
915
|
}
|
|
877
916
|
export declare namespace GetPartitionsRequest {
|
|
878
917
|
|
|
@@ -1191,6 +1230,10 @@ export interface GetTableRequest {
|
|
|
1191
1230
|
DatabaseName: string | undefined;
|
|
1192
1231
|
|
|
1193
1232
|
Name: string | undefined;
|
|
1233
|
+
|
|
1234
|
+
TransactionId?: string;
|
|
1235
|
+
|
|
1236
|
+
QueryAsOfTime?: Date;
|
|
1194
1237
|
}
|
|
1195
1238
|
export declare namespace GetTableRequest {
|
|
1196
1239
|
|
|
@@ -1262,6 +1305,10 @@ export interface GetTablesRequest {
|
|
|
1262
1305
|
NextToken?: string;
|
|
1263
1306
|
|
|
1264
1307
|
MaxResults?: number;
|
|
1308
|
+
|
|
1309
|
+
TransactionId?: string;
|
|
1310
|
+
|
|
1311
|
+
QueryAsOfTime?: Date;
|
|
1265
1312
|
}
|
|
1266
1313
|
export declare namespace GetTablesRequest {
|
|
1267
1314
|
|
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.
|
|
4
|
+
"version": "3.44.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|