@aws-sdk/client-glue 3.45.0 → 3.47.2
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 +45 -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/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 +0 -24
- package/dist-cjs/models/models_0.js +22 -124
- package/dist-cjs/models/models_1.js +77 -66
- package/dist-cjs/pagination/GetUnfilteredPartitionsMetadataPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +545 -5
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- 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/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 +0 -24
- package/dist-es/models/models_0.js +12 -80
- package/dist-es/models/models_1.js +49 -40
- package/dist-es/pagination/GetUnfilteredPartitionsMetadataPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +538 -7
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/Glue.d.ts +12 -0
- package/dist-types/GlueClient.d.ts +10 -3
- package/dist-types/commands/GetCrawlerMetricsCommand.d.ts +2 -1
- package/dist-types/commands/GetCrawlersCommand.d.ts +1 -1
- 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 +49 -148
- package/dist-types/models/models_1.d.ts +172 -61
- 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/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/Glue.d.ts +12 -0
- package/dist-types/ts3.4/GlueClient.d.ts +8 -3
- 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/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 +32 -38
- package/dist-types/ts3.4/models/models_1.d.ts +126 -41
- 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/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +39 -46
|
@@ -105,6 +105,9 @@ import { GetTableVersionsCommandInput, GetTableVersionsCommandOutput } from "../
|
|
|
105
105
|
import { GetTagsCommandInput, GetTagsCommandOutput } from "../commands/GetTagsCommand";
|
|
106
106
|
import { GetTriggerCommandInput, GetTriggerCommandOutput } from "../commands/GetTriggerCommand";
|
|
107
107
|
import { GetTriggersCommandInput, GetTriggersCommandOutput } from "../commands/GetTriggersCommand";
|
|
108
|
+
import { GetUnfilteredPartitionMetadataCommandInput, GetUnfilteredPartitionMetadataCommandOutput } from "../commands/GetUnfilteredPartitionMetadataCommand";
|
|
109
|
+
import { GetUnfilteredPartitionsMetadataCommandInput, GetUnfilteredPartitionsMetadataCommandOutput } from "../commands/GetUnfilteredPartitionsMetadataCommand";
|
|
110
|
+
import { GetUnfilteredTableMetadataCommandInput, GetUnfilteredTableMetadataCommandOutput } from "../commands/GetUnfilteredTableMetadataCommand";
|
|
108
111
|
import { GetUserDefinedFunctionCommandInput, GetUserDefinedFunctionCommandOutput } from "../commands/GetUserDefinedFunctionCommand";
|
|
109
112
|
import { GetUserDefinedFunctionsCommandInput, GetUserDefinedFunctionsCommandOutput } from "../commands/GetUserDefinedFunctionsCommand";
|
|
110
113
|
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "../commands/GetWorkflowCommand";
|
|
@@ -271,6 +274,9 @@ export declare const serializeAws_json1_1GetTableVersionsCommand: (input: GetTab
|
|
|
271
274
|
export declare const serializeAws_json1_1GetTagsCommand: (input: GetTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
272
275
|
export declare const serializeAws_json1_1GetTriggerCommand: (input: GetTriggerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
273
276
|
export declare const serializeAws_json1_1GetTriggersCommand: (input: GetTriggersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
277
|
+
export declare const serializeAws_json1_1GetUnfilteredPartitionMetadataCommand: (input: GetUnfilteredPartitionMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
278
|
+
export declare const serializeAws_json1_1GetUnfilteredPartitionsMetadataCommand: (input: GetUnfilteredPartitionsMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
279
|
+
export declare const serializeAws_json1_1GetUnfilteredTableMetadataCommand: (input: GetUnfilteredTableMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
274
280
|
export declare const serializeAws_json1_1GetUserDefinedFunctionCommand: (input: GetUserDefinedFunctionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
275
281
|
export declare const serializeAws_json1_1GetUserDefinedFunctionsCommand: (input: GetUserDefinedFunctionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
276
282
|
export declare const serializeAws_json1_1GetWorkflowCommand: (input: GetWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -437,6 +443,9 @@ export declare const deserializeAws_json1_1GetTableVersionsCommand: (output: __H
|
|
|
437
443
|
export declare const deserializeAws_json1_1GetTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTagsCommandOutput>;
|
|
438
444
|
export declare const deserializeAws_json1_1GetTriggerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTriggerCommandOutput>;
|
|
439
445
|
export declare const deserializeAws_json1_1GetTriggersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTriggersCommandOutput>;
|
|
446
|
+
export declare const deserializeAws_json1_1GetUnfilteredPartitionMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUnfilteredPartitionMetadataCommandOutput>;
|
|
447
|
+
export declare const deserializeAws_json1_1GetUnfilteredPartitionsMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUnfilteredPartitionsMetadataCommandOutput>;
|
|
448
|
+
export declare const deserializeAws_json1_1GetUnfilteredTableMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUnfilteredTableMetadataCommandOutput>;
|
|
440
449
|
export declare const deserializeAws_json1_1GetUserDefinedFunctionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserDefinedFunctionCommandOutput>;
|
|
441
450
|
export declare const deserializeAws_json1_1GetUserDefinedFunctionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserDefinedFunctionsCommandOutput>;
|
|
442
451
|
export declare const deserializeAws_json1_1GetWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkflowCommandOutput>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { GlueClientConfig } from "./GlueClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { GlueClientConfig } from "./GlueClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -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;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { BatchCreatePartitionCommandInput, BatchCreatePartitionCommandOutput } from "./commands/BatchCreatePartitionCommand";
|
|
10
10
|
import { BatchDeleteConnectionCommandInput, BatchDeleteConnectionCommandOutput } from "./commands/BatchDeleteConnectionCommand";
|
|
@@ -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;
|
|
@@ -217,6 +220,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
217
220
|
regionInfoProvider?: RegionInfoProvider;
|
|
218
221
|
|
|
219
222
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
223
|
+
|
|
224
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
220
225
|
}
|
|
221
226
|
declare type GlueClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
222
227
|
|
|
@@ -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 {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { GetUnfilteredPartitionMetadataRequest, GetUnfilteredPartitionMetadataResponse } from "../models/models_1";
|
|
5
|
+
export interface GetUnfilteredPartitionMetadataCommandInput extends GetUnfilteredPartitionMetadataRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetUnfilteredPartitionMetadataCommandOutput extends GetUnfilteredPartitionMetadataResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
export declare class GetUnfilteredPartitionMetadataCommand extends $Command<GetUnfilteredPartitionMetadataCommandInput, GetUnfilteredPartitionMetadataCommandOutput, GlueClientResolvedConfig> {
|
|
10
|
+
readonly input: GetUnfilteredPartitionMetadataCommandInput;
|
|
11
|
+
constructor(input: GetUnfilteredPartitionMetadataCommandInput);
|
|
12
|
+
|
|
13
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlueClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUnfilteredPartitionMetadataCommandInput, GetUnfilteredPartitionMetadataCommandOutput>;
|
|
14
|
+
private serialize;
|
|
15
|
+
private deserialize;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { GetUnfilteredPartitionsMetadataRequest, GetUnfilteredPartitionsMetadataResponse } from "../models/models_1";
|
|
5
|
+
export interface GetUnfilteredPartitionsMetadataCommandInput extends GetUnfilteredPartitionsMetadataRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetUnfilteredPartitionsMetadataCommandOutput extends GetUnfilteredPartitionsMetadataResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
export declare class GetUnfilteredPartitionsMetadataCommand extends $Command<GetUnfilteredPartitionsMetadataCommandInput, GetUnfilteredPartitionsMetadataCommandOutput, GlueClientResolvedConfig> {
|
|
10
|
+
readonly input: GetUnfilteredPartitionsMetadataCommandInput;
|
|
11
|
+
constructor(input: GetUnfilteredPartitionsMetadataCommandInput);
|
|
12
|
+
|
|
13
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlueClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUnfilteredPartitionsMetadataCommandInput, GetUnfilteredPartitionsMetadataCommandOutput>;
|
|
14
|
+
private serialize;
|
|
15
|
+
private deserialize;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { GetUnfilteredTableMetadataRequest, GetUnfilteredTableMetadataResponse } from "../models/models_1";
|
|
5
|
+
export interface GetUnfilteredTableMetadataCommandInput extends GetUnfilteredTableMetadataRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetUnfilteredTableMetadataCommandOutput extends GetUnfilteredTableMetadataResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
export declare class GetUnfilteredTableMetadataCommand extends $Command<GetUnfilteredTableMetadataCommandInput, GetUnfilteredTableMetadataCommandOutput, GlueClientResolvedConfig> {
|
|
10
|
+
readonly input: GetUnfilteredTableMetadataCommandInput;
|
|
11
|
+
constructor(input: GetUnfilteredTableMetadataCommandInput);
|
|
12
|
+
|
|
13
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlueClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUnfilteredTableMetadataCommandInput, GetUnfilteredTableMetadataCommandOutput>;
|
|
14
|
+
private serialize;
|
|
15
|
+
private deserialize;
|
|
16
|
+
}
|
|
@@ -103,6 +103,9 @@ export * from "./GetTablesCommand";
|
|
|
103
103
|
export * from "./GetTagsCommand";
|
|
104
104
|
export * from "./GetTriggerCommand";
|
|
105
105
|
export * from "./GetTriggersCommand";
|
|
106
|
+
export * from "./GetUnfilteredPartitionMetadataCommand";
|
|
107
|
+
export * from "./GetUnfilteredPartitionsMetadataCommand";
|
|
108
|
+
export * from "./GetUnfilteredTableMetadataCommand";
|
|
106
109
|
export * from "./GetUserDefinedFunctionCommand";
|
|
107
110
|
export * from "./GetUserDefinedFunctionsCommand";
|
|
108
111
|
export * from "./GetWorkflowCommand";
|
|
@@ -6,10 +6,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
6
6
|
|
|
7
7
|
Message?: string;
|
|
8
8
|
}
|
|
9
|
-
export declare namespace AccessDeniedException {
|
|
10
|
-
|
|
11
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
12
|
-
}
|
|
13
9
|
|
|
14
10
|
export interface NotificationProperty {
|
|
15
11
|
|
|
@@ -47,9 +43,12 @@ export interface AlreadyExistsException extends __SmithyException, $MetadataBear
|
|
|
47
43
|
|
|
48
44
|
Message?: string;
|
|
49
45
|
}
|
|
50
|
-
export
|
|
46
|
+
export interface AuditContext {
|
|
47
|
+
AdditionalAuditContext?: string;
|
|
48
|
+
}
|
|
49
|
+
export declare namespace AuditContext {
|
|
51
50
|
|
|
52
|
-
const filterSensitiveLog: (obj:
|
|
51
|
+
const filterSensitiveLog: (obj: AuditContext) => any;
|
|
53
52
|
}
|
|
54
53
|
|
|
55
54
|
export interface Column {
|
|
@@ -141,6 +140,7 @@ export interface StorageDescriptor {
|
|
|
141
140
|
Columns?: Column[];
|
|
142
141
|
|
|
143
142
|
Location?: string;
|
|
143
|
+
AdditionalLocations?: string[];
|
|
144
144
|
|
|
145
145
|
InputFormat?: string;
|
|
146
146
|
|
|
@@ -240,10 +240,6 @@ export interface EntityNotFoundException extends __SmithyException, $MetadataBea
|
|
|
240
240
|
|
|
241
241
|
Message?: string;
|
|
242
242
|
}
|
|
243
|
-
export declare namespace EntityNotFoundException {
|
|
244
|
-
|
|
245
|
-
const filterSensitiveLog: (obj: EntityNotFoundException) => any;
|
|
246
|
-
}
|
|
247
243
|
|
|
248
244
|
export interface GlueEncryptionException extends __SmithyException, $MetadataBearer {
|
|
249
245
|
name: "GlueEncryptionException";
|
|
@@ -251,10 +247,6 @@ export interface GlueEncryptionException extends __SmithyException, $MetadataBea
|
|
|
251
247
|
|
|
252
248
|
Message?: string;
|
|
253
249
|
}
|
|
254
|
-
export declare namespace GlueEncryptionException {
|
|
255
|
-
|
|
256
|
-
const filterSensitiveLog: (obj: GlueEncryptionException) => any;
|
|
257
|
-
}
|
|
258
250
|
|
|
259
251
|
export interface InternalServiceException extends __SmithyException, $MetadataBearer {
|
|
260
252
|
name: "InternalServiceException";
|
|
@@ -262,10 +254,6 @@ export interface InternalServiceException extends __SmithyException, $MetadataBe
|
|
|
262
254
|
|
|
263
255
|
Message?: string;
|
|
264
256
|
}
|
|
265
|
-
export declare namespace InternalServiceException {
|
|
266
|
-
|
|
267
|
-
const filterSensitiveLog: (obj: InternalServiceException) => any;
|
|
268
|
-
}
|
|
269
257
|
|
|
270
258
|
export interface InvalidInputException extends __SmithyException, $MetadataBearer {
|
|
271
259
|
name: "InvalidInputException";
|
|
@@ -273,10 +261,6 @@ export interface InvalidInputException extends __SmithyException, $MetadataBeare
|
|
|
273
261
|
|
|
274
262
|
Message?: string;
|
|
275
263
|
}
|
|
276
|
-
export declare namespace InvalidInputException {
|
|
277
|
-
|
|
278
|
-
const filterSensitiveLog: (obj: InvalidInputException) => any;
|
|
279
|
-
}
|
|
280
264
|
|
|
281
265
|
export interface OperationTimeoutException extends __SmithyException, $MetadataBearer {
|
|
282
266
|
name: "OperationTimeoutException";
|
|
@@ -284,10 +268,6 @@ export interface OperationTimeoutException extends __SmithyException, $MetadataB
|
|
|
284
268
|
|
|
285
269
|
Message?: string;
|
|
286
270
|
}
|
|
287
|
-
export declare namespace OperationTimeoutException {
|
|
288
|
-
|
|
289
|
-
const filterSensitiveLog: (obj: OperationTimeoutException) => any;
|
|
290
|
-
}
|
|
291
271
|
|
|
292
272
|
export interface ResourceNumberLimitExceededException extends __SmithyException, $MetadataBearer {
|
|
293
273
|
name: "ResourceNumberLimitExceededException";
|
|
@@ -295,10 +275,6 @@ export interface ResourceNumberLimitExceededException extends __SmithyException,
|
|
|
295
275
|
|
|
296
276
|
Message?: string;
|
|
297
277
|
}
|
|
298
|
-
export declare namespace ResourceNumberLimitExceededException {
|
|
299
|
-
|
|
300
|
-
const filterSensitiveLog: (obj: ResourceNumberLimitExceededException) => any;
|
|
301
|
-
}
|
|
302
278
|
export interface BatchDeleteConnectionRequest {
|
|
303
279
|
|
|
304
280
|
CatalogId?: string;
|
|
@@ -392,10 +368,6 @@ export interface ResourceNotReadyException extends __SmithyException, $MetadataB
|
|
|
392
368
|
|
|
393
369
|
Message?: string;
|
|
394
370
|
}
|
|
395
|
-
export declare namespace ResourceNotReadyException {
|
|
396
|
-
|
|
397
|
-
const filterSensitiveLog: (obj: ResourceNotReadyException) => any;
|
|
398
|
-
}
|
|
399
371
|
export interface BatchDeleteTableVersionRequest {
|
|
400
372
|
|
|
401
373
|
CatalogId?: string;
|
|
@@ -511,6 +483,14 @@ export declare namespace BatchGetCrawlersRequest {
|
|
|
511
483
|
|
|
512
484
|
const filterSensitiveLog: (obj: BatchGetCrawlersRequest) => any;
|
|
513
485
|
}
|
|
486
|
+
export interface LakeFormationConfiguration {
|
|
487
|
+
UseLakeFormationCredentials?: boolean;
|
|
488
|
+
AccountId?: string;
|
|
489
|
+
}
|
|
490
|
+
export declare namespace LakeFormationConfiguration {
|
|
491
|
+
|
|
492
|
+
const filterSensitiveLog: (obj: LakeFormationConfiguration) => any;
|
|
493
|
+
}
|
|
514
494
|
export declare enum LastCrawlStatus {
|
|
515
495
|
CANCELLED = "CANCELLED",
|
|
516
496
|
FAILED = "FAILED",
|
|
@@ -609,12 +589,27 @@ export interface CatalogTarget {
|
|
|
609
589
|
DatabaseName: string | undefined;
|
|
610
590
|
|
|
611
591
|
Tables: string[] | undefined;
|
|
592
|
+
|
|
593
|
+
ConnectionName?: string;
|
|
612
594
|
}
|
|
613
595
|
export declare namespace CatalogTarget {
|
|
614
596
|
|
|
615
597
|
const filterSensitiveLog: (obj: CatalogTarget) => any;
|
|
616
598
|
}
|
|
617
599
|
|
|
600
|
+
export interface DeltaTarget {
|
|
601
|
+
|
|
602
|
+
DeltaTables?: string[];
|
|
603
|
+
|
|
604
|
+
ConnectionName?: string;
|
|
605
|
+
|
|
606
|
+
WriteManifest?: boolean;
|
|
607
|
+
}
|
|
608
|
+
export declare namespace DeltaTarget {
|
|
609
|
+
|
|
610
|
+
const filterSensitiveLog: (obj: DeltaTarget) => any;
|
|
611
|
+
}
|
|
612
|
+
|
|
618
613
|
export interface DynamoDBTarget {
|
|
619
614
|
|
|
620
615
|
Path?: string;
|
|
@@ -684,6 +679,8 @@ export interface CrawlerTargets {
|
|
|
684
679
|
DynamoDBTargets?: DynamoDBTarget[];
|
|
685
680
|
|
|
686
681
|
CatalogTargets?: CatalogTarget[];
|
|
682
|
+
|
|
683
|
+
DeltaTargets?: DeltaTarget[];
|
|
687
684
|
}
|
|
688
685
|
export declare namespace CrawlerTargets {
|
|
689
686
|
|
|
@@ -729,6 +726,7 @@ export interface Crawler {
|
|
|
729
726
|
Configuration?: string;
|
|
730
727
|
|
|
731
728
|
CrawlerSecurityConfiguration?: string;
|
|
729
|
+
LakeFormationConfiguration?: LakeFormationConfiguration;
|
|
732
730
|
}
|
|
733
731
|
export declare namespace Crawler {
|
|
734
732
|
|
|
@@ -980,10 +978,6 @@ export interface InvalidStateException extends __SmithyException, $MetadataBeare
|
|
|
980
978
|
|
|
981
979
|
Message?: string;
|
|
982
980
|
}
|
|
983
|
-
export declare namespace InvalidStateException {
|
|
984
|
-
|
|
985
|
-
const filterSensitiveLog: (obj: InvalidStateException) => any;
|
|
986
|
-
}
|
|
987
981
|
export interface BatchGetTriggersRequest {
|
|
988
982
|
|
|
989
983
|
TriggerNames: string[] | undefined;
|