@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.
- package/CHANGELOG.md +48 -0
- package/dist-cjs/Glue.js +45 -0
- package/dist-cjs/commands/GetCrawlerMetricsCommand.js +2 -1
- package/dist-cjs/commands/GetCrawlersCommand.js +3 -3
- package/dist-cjs/commands/GetDatabaseCommand.js +1 -2
- package/dist-cjs/commands/GetUnfilteredPartitionMetadataCommand.js +36 -0
- package/dist-cjs/commands/GetUnfilteredPartitionsMetadataCommand.js +36 -0
- package/dist-cjs/commands/GetUnfilteredTableMetadataCommand.js +36 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +36 -36
- package/dist-cjs/models/models_1.js +95 -6
- package/dist-cjs/pagination/GetUnfilteredPartitionsMetadataPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +662 -5
- package/dist-cjs/runtimeConfig.js +0 -2
- package/dist-es/Glue.js +45 -0
- package/dist-es/commands/GetCrawlerMetricsCommand.js +2 -1
- package/dist-es/commands/GetCrawlersCommand.js +1 -1
- package/dist-es/commands/GetDatabaseCommand.js +1 -2
- package/dist-es/commands/GetUnfilteredPartitionMetadataCommand.js +39 -0
- package/dist-es/commands/GetUnfilteredPartitionsMetadataCommand.js +39 -0
- package/dist-es/commands/GetUnfilteredTableMetadataCommand.js +39 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +20 -20
- package/dist-es/models/models_1.js +61 -0
- package/dist-es/pagination/GetUnfilteredPartitionsMetadataPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +831 -197
- package/dist-es/runtimeConfig.js +0 -2
- package/dist-types/Glue.d.ts +12 -0
- package/dist-types/GlueClient.d.ts +5 -2
- package/dist-types/commands/GetCrawlerMetricsCommand.d.ts +2 -1
- package/dist-types/commands/GetCrawlersCommand.d.ts +1 -1
- package/dist-types/commands/GetDatabaseCommand.d.ts +1 -2
- package/dist-types/commands/GetUnfilteredPartitionMetadataCommand.d.ts +18 -0
- package/dist-types/commands/GetUnfilteredPartitionsMetadataCommand.d.ts +18 -0
- package/dist-types/commands/GetUnfilteredTableMetadataCommand.d.ts +18 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +99 -116
- package/dist-types/models/models_1.d.ts +272 -1
- package/dist-types/pagination/GetUnfilteredPartitionsMetadataPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/Glue.d.ts +12 -0
- package/dist-types/ts3.4/GlueClient.d.ts +5 -2
- package/dist-types/ts3.4/commands/GetCrawlerMetricsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetCrawlersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetUnfilteredPartitionMetadataCommand.d.ts +16 -0
- package/dist-types/ts3.4/commands/GetUnfilteredPartitionsMetadataCommand.d.ts +16 -0
- package/dist-types/ts3.4/commands/GetUnfilteredTableMetadataCommand.d.ts +16 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +58 -0
- package/dist-types/ts3.4/models/models_1.d.ts +177 -1
- package/dist-types/ts3.4/pagination/GetUnfilteredPartitionsMetadataPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
- package/package.json +36 -43
|
@@ -1,5 +1,121 @@
|
|
|
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, 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
|
+
* <p>A list of metrics for the specified crawler.</p>
|
|
6
|
+
*/
|
|
7
|
+
CrawlerMetricsList?: CrawlerMetrics[];
|
|
8
|
+
/**
|
|
9
|
+
* <p>A continuation token, if the returned list does not contain the
|
|
10
|
+
* last metric available.</p>
|
|
11
|
+
*/
|
|
12
|
+
NextToken?: string;
|
|
13
|
+
}
|
|
14
|
+
export declare namespace GetCrawlerMetricsResponse {
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
const filterSensitiveLog: (obj: GetCrawlerMetricsResponse) => any;
|
|
19
|
+
}
|
|
20
|
+
export interface GetCrawlersRequest {
|
|
21
|
+
/**
|
|
22
|
+
* <p>The number of crawlers to return on each call.</p>
|
|
23
|
+
*/
|
|
24
|
+
MaxResults?: number;
|
|
25
|
+
/**
|
|
26
|
+
* <p>A continuation token, if this is a continuation request.</p>
|
|
27
|
+
*/
|
|
28
|
+
NextToken?: string;
|
|
29
|
+
}
|
|
30
|
+
export declare namespace GetCrawlersRequest {
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
const filterSensitiveLog: (obj: GetCrawlersRequest) => any;
|
|
35
|
+
}
|
|
36
|
+
export interface GetCrawlersResponse {
|
|
37
|
+
/**
|
|
38
|
+
* <p>A list of crawler metadata.</p>
|
|
39
|
+
*/
|
|
40
|
+
Crawlers?: Crawler[];
|
|
41
|
+
/**
|
|
42
|
+
* <p>A continuation token, if the returned list has not reached the end
|
|
43
|
+
* of those defined in this customer account.</p>
|
|
44
|
+
*/
|
|
45
|
+
NextToken?: string;
|
|
46
|
+
}
|
|
47
|
+
export declare namespace GetCrawlersResponse {
|
|
48
|
+
/**
|
|
49
|
+
* @internal
|
|
50
|
+
*/
|
|
51
|
+
const filterSensitiveLog: (obj: GetCrawlersResponse) => any;
|
|
52
|
+
}
|
|
53
|
+
export interface GetDatabaseRequest {
|
|
54
|
+
/**
|
|
55
|
+
* <p>The ID of the Data Catalog in which the database resides. If none is provided, the Amazon Web Services
|
|
56
|
+
* account ID is used by default.</p>
|
|
57
|
+
*/
|
|
58
|
+
CatalogId?: string;
|
|
59
|
+
/**
|
|
60
|
+
* <p>The name of the database to retrieve. For Hive compatibility, this
|
|
61
|
+
* should be all lowercase.</p>
|
|
62
|
+
*/
|
|
63
|
+
Name: string | undefined;
|
|
64
|
+
}
|
|
65
|
+
export declare namespace GetDatabaseRequest {
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
69
|
+
const filterSensitiveLog: (obj: GetDatabaseRequest) => any;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* <p>The <code>Database</code> object represents a logical grouping of tables that might reside
|
|
73
|
+
* in a Hive metastore or an RDBMS.</p>
|
|
74
|
+
*/
|
|
75
|
+
export interface Database {
|
|
76
|
+
/**
|
|
77
|
+
* <p>The name of the database. For Hive compatibility, this is folded to lowercase when it is
|
|
78
|
+
* stored.</p>
|
|
79
|
+
*/
|
|
80
|
+
Name: string | undefined;
|
|
81
|
+
/**
|
|
82
|
+
* <p>A description of the database.</p>
|
|
83
|
+
*/
|
|
84
|
+
Description?: string;
|
|
85
|
+
/**
|
|
86
|
+
* <p>The location of the database (for example, an HDFS path).</p>
|
|
87
|
+
*/
|
|
88
|
+
LocationUri?: string;
|
|
89
|
+
/**
|
|
90
|
+
* <p>These key-value pairs define parameters and properties
|
|
91
|
+
* of the database.</p>
|
|
92
|
+
*/
|
|
93
|
+
Parameters?: {
|
|
94
|
+
[key: string]: string;
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* <p>The time at which the metadata database was created in the catalog.</p>
|
|
98
|
+
*/
|
|
99
|
+
CreateTime?: Date;
|
|
100
|
+
/**
|
|
101
|
+
* <p>Creates a set of default permissions on the table for principals. </p>
|
|
102
|
+
*/
|
|
103
|
+
CreateTableDefaultPermissions?: PrincipalPermissions[];
|
|
104
|
+
/**
|
|
105
|
+
* <p>A <code>DatabaseIdentifier</code> structure that describes a target database for resource linking.</p>
|
|
106
|
+
*/
|
|
107
|
+
TargetDatabase?: DatabaseIdentifier;
|
|
108
|
+
/**
|
|
109
|
+
* <p>The ID of the Data Catalog in which the database resides.</p>
|
|
110
|
+
*/
|
|
111
|
+
CatalogId?: string;
|
|
112
|
+
}
|
|
113
|
+
export declare namespace Database {
|
|
114
|
+
/**
|
|
115
|
+
* @internal
|
|
116
|
+
*/
|
|
117
|
+
const filterSensitiveLog: (obj: Database) => any;
|
|
118
|
+
}
|
|
3
119
|
export interface GetDatabaseResponse {
|
|
4
120
|
/**
|
|
5
121
|
* <p>The definition of the specified database in the Data Catalog.</p>
|
|
@@ -1778,6 +1894,14 @@ export interface GetPartitionsRequest {
|
|
|
1778
1894
|
* <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
1895
|
*/
|
|
1780
1896
|
ExcludeColumnSchema?: boolean;
|
|
1897
|
+
/**
|
|
1898
|
+
* <p>The transaction ID at which to read the partition contents.</p>
|
|
1899
|
+
*/
|
|
1900
|
+
TransactionId?: string;
|
|
1901
|
+
/**
|
|
1902
|
+
* <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>
|
|
1903
|
+
*/
|
|
1904
|
+
QueryAsOfTime?: Date;
|
|
1781
1905
|
}
|
|
1782
1906
|
export declare namespace GetPartitionsRequest {
|
|
1783
1907
|
/**
|
|
@@ -2364,6 +2488,14 @@ export interface GetTableRequest {
|
|
|
2364
2488
|
* compatibility, this name is entirely lowercase.</p>
|
|
2365
2489
|
*/
|
|
2366
2490
|
Name: string | undefined;
|
|
2491
|
+
/**
|
|
2492
|
+
* <p>The transaction ID at which to read the table contents. </p>
|
|
2493
|
+
*/
|
|
2494
|
+
TransactionId?: string;
|
|
2495
|
+
/**
|
|
2496
|
+
* <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>
|
|
2497
|
+
*/
|
|
2498
|
+
QueryAsOfTime?: Date;
|
|
2367
2499
|
}
|
|
2368
2500
|
export declare namespace GetTableRequest {
|
|
2369
2501
|
/**
|
|
@@ -2507,6 +2639,14 @@ export interface GetTablesRequest {
|
|
|
2507
2639
|
* <p>The maximum number of tables to return in a single response.</p>
|
|
2508
2640
|
*/
|
|
2509
2641
|
MaxResults?: number;
|
|
2642
|
+
/**
|
|
2643
|
+
* <p>The transaction ID at which to read the table contents.</p>
|
|
2644
|
+
*/
|
|
2645
|
+
TransactionId?: string;
|
|
2646
|
+
/**
|
|
2647
|
+
* <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>
|
|
2648
|
+
*/
|
|
2649
|
+
QueryAsOfTime?: Date;
|
|
2510
2650
|
}
|
|
2511
2651
|
export declare namespace GetTablesRequest {
|
|
2512
2652
|
/**
|
|
@@ -2726,6 +2866,132 @@ export declare namespace GetTriggersResponse {
|
|
|
2726
2866
|
*/
|
|
2727
2867
|
const filterSensitiveLog: (obj: GetTriggersResponse) => any;
|
|
2728
2868
|
}
|
|
2869
|
+
export declare enum PermissionType {
|
|
2870
|
+
CELL_FILTER_PERMISSION = "CELL_FILTER_PERMISSION",
|
|
2871
|
+
COLUMN_PERMISSION = "COLUMN_PERMISSION"
|
|
2872
|
+
}
|
|
2873
|
+
export interface GetUnfilteredPartitionMetadataRequest {
|
|
2874
|
+
CatalogId: string | undefined;
|
|
2875
|
+
DatabaseName: string | undefined;
|
|
2876
|
+
TableName: string | undefined;
|
|
2877
|
+
PartitionValues: string[] | undefined;
|
|
2878
|
+
AuditContext?: AuditContext;
|
|
2879
|
+
SupportedPermissionTypes: (PermissionType | string)[] | undefined;
|
|
2880
|
+
}
|
|
2881
|
+
export declare namespace GetUnfilteredPartitionMetadataRequest {
|
|
2882
|
+
/**
|
|
2883
|
+
* @internal
|
|
2884
|
+
*/
|
|
2885
|
+
const filterSensitiveLog: (obj: GetUnfilteredPartitionMetadataRequest) => any;
|
|
2886
|
+
}
|
|
2887
|
+
export interface GetUnfilteredPartitionMetadataResponse {
|
|
2888
|
+
/**
|
|
2889
|
+
* <p>Represents a slice of table data.</p>
|
|
2890
|
+
*/
|
|
2891
|
+
Partition?: Partition;
|
|
2892
|
+
AuthorizedColumns?: string[];
|
|
2893
|
+
IsRegisteredWithLakeFormation?: boolean;
|
|
2894
|
+
}
|
|
2895
|
+
export declare namespace GetUnfilteredPartitionMetadataResponse {
|
|
2896
|
+
/**
|
|
2897
|
+
* @internal
|
|
2898
|
+
*/
|
|
2899
|
+
const filterSensitiveLog: (obj: GetUnfilteredPartitionMetadataResponse) => any;
|
|
2900
|
+
}
|
|
2901
|
+
export interface PermissionTypeMismatchException extends __SmithyException, $MetadataBearer {
|
|
2902
|
+
name: "PermissionTypeMismatchException";
|
|
2903
|
+
$fault: "client";
|
|
2904
|
+
Message?: string;
|
|
2905
|
+
}
|
|
2906
|
+
export declare namespace PermissionTypeMismatchException {
|
|
2907
|
+
/**
|
|
2908
|
+
* @internal
|
|
2909
|
+
*/
|
|
2910
|
+
const filterSensitiveLog: (obj: PermissionTypeMismatchException) => any;
|
|
2911
|
+
}
|
|
2912
|
+
export interface GetUnfilteredPartitionsMetadataRequest {
|
|
2913
|
+
CatalogId: string | undefined;
|
|
2914
|
+
DatabaseName: string | undefined;
|
|
2915
|
+
TableName: string | undefined;
|
|
2916
|
+
Expression?: string;
|
|
2917
|
+
AuditContext?: AuditContext;
|
|
2918
|
+
SupportedPermissionTypes: (PermissionType | string)[] | undefined;
|
|
2919
|
+
NextToken?: string;
|
|
2920
|
+
/**
|
|
2921
|
+
* <p>Defines a non-overlapping region of a table's partitions, allowing
|
|
2922
|
+
* multiple requests to be run in parallel.</p>
|
|
2923
|
+
*/
|
|
2924
|
+
Segment?: Segment;
|
|
2925
|
+
MaxResults?: number;
|
|
2926
|
+
}
|
|
2927
|
+
export declare namespace GetUnfilteredPartitionsMetadataRequest {
|
|
2928
|
+
/**
|
|
2929
|
+
* @internal
|
|
2930
|
+
*/
|
|
2931
|
+
const filterSensitiveLog: (obj: GetUnfilteredPartitionsMetadataRequest) => any;
|
|
2932
|
+
}
|
|
2933
|
+
export interface UnfilteredPartition {
|
|
2934
|
+
/**
|
|
2935
|
+
* <p>Represents a slice of table data.</p>
|
|
2936
|
+
*/
|
|
2937
|
+
Partition?: Partition;
|
|
2938
|
+
AuthorizedColumns?: string[];
|
|
2939
|
+
IsRegisteredWithLakeFormation?: boolean;
|
|
2940
|
+
}
|
|
2941
|
+
export declare namespace UnfilteredPartition {
|
|
2942
|
+
/**
|
|
2943
|
+
* @internal
|
|
2944
|
+
*/
|
|
2945
|
+
const filterSensitiveLog: (obj: UnfilteredPartition) => any;
|
|
2946
|
+
}
|
|
2947
|
+
export interface GetUnfilteredPartitionsMetadataResponse {
|
|
2948
|
+
UnfilteredPartitions?: UnfilteredPartition[];
|
|
2949
|
+
NextToken?: string;
|
|
2950
|
+
}
|
|
2951
|
+
export declare namespace GetUnfilteredPartitionsMetadataResponse {
|
|
2952
|
+
/**
|
|
2953
|
+
* @internal
|
|
2954
|
+
*/
|
|
2955
|
+
const filterSensitiveLog: (obj: GetUnfilteredPartitionsMetadataResponse) => any;
|
|
2956
|
+
}
|
|
2957
|
+
export interface GetUnfilteredTableMetadataRequest {
|
|
2958
|
+
CatalogId: string | undefined;
|
|
2959
|
+
DatabaseName: string | undefined;
|
|
2960
|
+
Name: string | undefined;
|
|
2961
|
+
AuditContext?: AuditContext;
|
|
2962
|
+
SupportedPermissionTypes: (PermissionType | string)[] | undefined;
|
|
2963
|
+
}
|
|
2964
|
+
export declare namespace GetUnfilteredTableMetadataRequest {
|
|
2965
|
+
/**
|
|
2966
|
+
* @internal
|
|
2967
|
+
*/
|
|
2968
|
+
const filterSensitiveLog: (obj: GetUnfilteredTableMetadataRequest) => any;
|
|
2969
|
+
}
|
|
2970
|
+
export interface ColumnRowFilter {
|
|
2971
|
+
ColumnName?: string;
|
|
2972
|
+
RowFilterExpression?: string;
|
|
2973
|
+
}
|
|
2974
|
+
export declare namespace ColumnRowFilter {
|
|
2975
|
+
/**
|
|
2976
|
+
* @internal
|
|
2977
|
+
*/
|
|
2978
|
+
const filterSensitiveLog: (obj: ColumnRowFilter) => any;
|
|
2979
|
+
}
|
|
2980
|
+
export interface GetUnfilteredTableMetadataResponse {
|
|
2981
|
+
/**
|
|
2982
|
+
* <p>Represents a collection of related data organized in columns and rows.</p>
|
|
2983
|
+
*/
|
|
2984
|
+
Table?: Table;
|
|
2985
|
+
AuthorizedColumns?: string[];
|
|
2986
|
+
IsRegisteredWithLakeFormation?: boolean;
|
|
2987
|
+
CellFilters?: ColumnRowFilter[];
|
|
2988
|
+
}
|
|
2989
|
+
export declare namespace GetUnfilteredTableMetadataResponse {
|
|
2990
|
+
/**
|
|
2991
|
+
* @internal
|
|
2992
|
+
*/
|
|
2993
|
+
const filterSensitiveLog: (obj: GetUnfilteredTableMetadataResponse) => any;
|
|
2994
|
+
}
|
|
2729
2995
|
export interface GetUserDefinedFunctionRequest {
|
|
2730
2996
|
/**
|
|
2731
2997
|
* <p>The ID of the Data Catalog where the function to be retrieved is located. If none is
|
|
@@ -5093,6 +5359,7 @@ export interface UpdateCrawlerRequest {
|
|
|
5093
5359
|
* <p>Specifies data lineage configuration settings for the crawler.</p>
|
|
5094
5360
|
*/
|
|
5095
5361
|
LineageConfiguration?: LineageConfiguration;
|
|
5362
|
+
LakeFormationConfiguration?: LakeFormationConfiguration;
|
|
5096
5363
|
/**
|
|
5097
5364
|
* <p>Crawler configuration information. This versioned JSON string allows users
|
|
5098
5365
|
* to specify aspects of a crawler's behavior.
|
|
@@ -5662,6 +5929,10 @@ export interface UpdateTableRequest {
|
|
|
5662
5929
|
* <code>UpdateTable</code> does not create the archived version.</p>
|
|
5663
5930
|
*/
|
|
5664
5931
|
SkipArchive?: boolean;
|
|
5932
|
+
/**
|
|
5933
|
+
* <p>The transaction ID at which to update the table contents. </p>
|
|
5934
|
+
*/
|
|
5935
|
+
TransactionId?: string;
|
|
5665
5936
|
}
|
|
5666
5937
|
export declare namespace UpdateTableRequest {
|
|
5667
5938
|
/**
|
|
@@ -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>;
|
|
@@ -104,6 +104,9 @@ import { GetTableVersionsCommandInput, GetTableVersionsCommandOutput } from "./c
|
|
|
104
104
|
import { GetTagsCommandInput, GetTagsCommandOutput } from "./commands/GetTagsCommand";
|
|
105
105
|
import { GetTriggerCommandInput, GetTriggerCommandOutput } from "./commands/GetTriggerCommand";
|
|
106
106
|
import { GetTriggersCommandInput, GetTriggersCommandOutput } from "./commands/GetTriggersCommand";
|
|
107
|
+
import { GetUnfilteredPartitionMetadataCommandInput, GetUnfilteredPartitionMetadataCommandOutput } from "./commands/GetUnfilteredPartitionMetadataCommand";
|
|
108
|
+
import { GetUnfilteredPartitionsMetadataCommandInput, GetUnfilteredPartitionsMetadataCommandOutput } from "./commands/GetUnfilteredPartitionsMetadataCommand";
|
|
109
|
+
import { GetUnfilteredTableMetadataCommandInput, GetUnfilteredTableMetadataCommandOutput } from "./commands/GetUnfilteredTableMetadataCommand";
|
|
107
110
|
import { GetUserDefinedFunctionCommandInput, GetUserDefinedFunctionCommandOutput } from "./commands/GetUserDefinedFunctionCommand";
|
|
108
111
|
import { GetUserDefinedFunctionsCommandInput, GetUserDefinedFunctionsCommandOutput } from "./commands/GetUserDefinedFunctionsCommand";
|
|
109
112
|
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
@@ -588,6 +591,15 @@ export declare class Glue extends GlueClient {
|
|
|
588
591
|
getTriggers(args: GetTriggersCommandInput, options?: __HttpHandlerOptions): Promise<GetTriggersCommandOutput>;
|
|
589
592
|
getTriggers(args: GetTriggersCommandInput, cb: (err: any, data?: GetTriggersCommandOutput) => void): void;
|
|
590
593
|
getTriggers(args: GetTriggersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTriggersCommandOutput) => void): void;
|
|
594
|
+
getUnfilteredPartitionMetadata(args: GetUnfilteredPartitionMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetUnfilteredPartitionMetadataCommandOutput>;
|
|
595
|
+
getUnfilteredPartitionMetadata(args: GetUnfilteredPartitionMetadataCommandInput, cb: (err: any, data?: GetUnfilteredPartitionMetadataCommandOutput) => void): void;
|
|
596
|
+
getUnfilteredPartitionMetadata(args: GetUnfilteredPartitionMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUnfilteredPartitionMetadataCommandOutput) => void): void;
|
|
597
|
+
getUnfilteredPartitionsMetadata(args: GetUnfilteredPartitionsMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetUnfilteredPartitionsMetadataCommandOutput>;
|
|
598
|
+
getUnfilteredPartitionsMetadata(args: GetUnfilteredPartitionsMetadataCommandInput, cb: (err: any, data?: GetUnfilteredPartitionsMetadataCommandOutput) => void): void;
|
|
599
|
+
getUnfilteredPartitionsMetadata(args: GetUnfilteredPartitionsMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUnfilteredPartitionsMetadataCommandOutput) => void): void;
|
|
600
|
+
getUnfilteredTableMetadata(args: GetUnfilteredTableMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetUnfilteredTableMetadataCommandOutput>;
|
|
601
|
+
getUnfilteredTableMetadata(args: GetUnfilteredTableMetadataCommandInput, cb: (err: any, data?: GetUnfilteredTableMetadataCommandOutput) => void): void;
|
|
602
|
+
getUnfilteredTableMetadata(args: GetUnfilteredTableMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUnfilteredTableMetadataCommandOutput) => void): void;
|
|
591
603
|
|
|
592
604
|
getUserDefinedFunction(args: GetUserDefinedFunctionCommandInput, options?: __HttpHandlerOptions): Promise<GetUserDefinedFunctionCommandOutput>;
|
|
593
605
|
getUserDefinedFunction(args: GetUserDefinedFunctionCommandInput, cb: (err: any, data?: GetUserDefinedFunctionCommandOutput) => void): void;
|
|
@@ -111,6 +111,9 @@ import { GetTableVersionsCommandInput, GetTableVersionsCommandOutput } from "./c
|
|
|
111
111
|
import { GetTagsCommandInput, GetTagsCommandOutput } from "./commands/GetTagsCommand";
|
|
112
112
|
import { GetTriggerCommandInput, GetTriggerCommandOutput } from "./commands/GetTriggerCommand";
|
|
113
113
|
import { GetTriggersCommandInput, GetTriggersCommandOutput } from "./commands/GetTriggersCommand";
|
|
114
|
+
import { GetUnfilteredPartitionMetadataCommandInput, GetUnfilteredPartitionMetadataCommandOutput } from "./commands/GetUnfilteredPartitionMetadataCommand";
|
|
115
|
+
import { GetUnfilteredPartitionsMetadataCommandInput, GetUnfilteredPartitionsMetadataCommandOutput } from "./commands/GetUnfilteredPartitionsMetadataCommand";
|
|
116
|
+
import { GetUnfilteredTableMetadataCommandInput, GetUnfilteredTableMetadataCommandOutput } from "./commands/GetUnfilteredTableMetadataCommand";
|
|
114
117
|
import { GetUserDefinedFunctionCommandInput, GetUserDefinedFunctionCommandOutput } from "./commands/GetUserDefinedFunctionCommand";
|
|
115
118
|
import { GetUserDefinedFunctionsCommandInput, GetUserDefinedFunctionsCommandOutput } from "./commands/GetUserDefinedFunctionsCommand";
|
|
116
119
|
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
@@ -172,8 +175,8 @@ import { UpdateTableCommandInput, UpdateTableCommandOutput } from "./commands/Up
|
|
|
172
175
|
import { UpdateTriggerCommandInput, UpdateTriggerCommandOutput } from "./commands/UpdateTriggerCommand";
|
|
173
176
|
import { UpdateUserDefinedFunctionCommandInput, UpdateUserDefinedFunctionCommandOutput } from "./commands/UpdateUserDefinedFunctionCommand";
|
|
174
177
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "./commands/UpdateWorkflowCommand";
|
|
175
|
-
export declare type ServiceInputTypes = BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetDevEndpointsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelMLTaskRunCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateClassifierCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateTableCommandInput | CreateTriggerCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteBlueprintCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteConnectionCommandInput | DeleteCrawlerCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteTableCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogImportStatusCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetTableCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListBlueprintsCommandInput | ListCrawlersCommandInput | ListDevEndpointsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListTriggersCommandInput | ListWorkflowsCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBlueprintCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateJobCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateTableCommandInput | UpdateTriggerCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
|
|
176
|
-
export declare type ServiceOutputTypes = BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelMLTaskRunCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateClassifierCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateTableCommandOutput | CreateTriggerCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteBlueprintCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteConnectionCommandOutput | DeleteCrawlerCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteTableCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogImportStatusCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetTableCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListBlueprintsCommandOutput | ListCrawlersCommandOutput | ListDevEndpointsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListTriggersCommandOutput | ListWorkflowsCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBlueprintCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateJobCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateTableCommandOutput | UpdateTriggerCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
|
|
178
|
+
export declare type ServiceInputTypes = BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetDevEndpointsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelMLTaskRunCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateClassifierCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateTableCommandInput | CreateTriggerCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteBlueprintCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteConnectionCommandInput | DeleteCrawlerCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteTableCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogImportStatusCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetTableCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListBlueprintsCommandInput | ListCrawlersCommandInput | ListDevEndpointsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListTriggersCommandInput | ListWorkflowsCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBlueprintCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateJobCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateTableCommandInput | UpdateTriggerCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
|
|
179
|
+
export declare type ServiceOutputTypes = BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelMLTaskRunCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateClassifierCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateTableCommandOutput | CreateTriggerCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteBlueprintCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteConnectionCommandOutput | DeleteCrawlerCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteTableCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogImportStatusCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetTableCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListBlueprintsCommandOutput | ListCrawlersCommandOutput | ListDevEndpointsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListTriggersCommandOutput | ListWorkflowsCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBlueprintCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateJobCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateTableCommandOutput | UpdateTriggerCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
|
|
177
180
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
178
181
|
|
|
179
182
|
requestHandler?: __HttpHandler;
|
|
@@ -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
|
|
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/
|
|
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/
|
|
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";
|