@aws-sdk/client-glue 3.613.0 → 3.616.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/dist-cjs/index.js +5 -5
- package/dist-es/GlueClient.js +5 -5
- package/dist-types/GlueClient.d.ts +2 -2
- package/dist-types/commands/BatchGetJobsCommand.d.ts +17 -0
- package/dist-types/commands/CreateClassifierCommand.d.ts +1 -1
- package/dist-types/commands/CreateJobCommand.d.ts +17 -0
- package/dist-types/commands/GetJobCommand.d.ts +17 -0
- package/dist-types/commands/GetJobsCommand.d.ts +17 -0
- package/dist-types/commands/GetPartitionsCommand.d.ts +1 -1
- package/dist-types/commands/GetPlanCommand.d.ts +1 -2
- package/dist-types/commands/UpdateJobCommand.d.ts +17 -0
- package/dist-types/models/models_0.d.ts +59 -60
- package/dist-types/models/models_1.d.ts +60 -223
- package/dist-types/models/models_2.d.ts +223 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/GlueClient.d.ts +2 -2
- package/dist-types/ts3.4/commands/CreateClassifierCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPartitionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPlanCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +15 -13
- package/dist-types/ts3.4/models/models_1.d.ts +15 -24
- package/dist-types/ts3.4/models/models_2.d.ts +28 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +24 -24
package/dist-cjs/index.js
CHANGED
|
@@ -532,19 +532,19 @@ var _GlueClient = class _GlueClient extends import_smithy_client.Client {
|
|
|
532
532
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
533
533
|
const _config_2 = (0, import_config_resolver.resolveRegionConfig)(_config_1);
|
|
534
534
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
535
|
-
const _config_4 = (0,
|
|
536
|
-
const _config_5 = (0,
|
|
537
|
-
const _config_6 = (0,
|
|
535
|
+
const _config_4 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_3);
|
|
536
|
+
const _config_5 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_4);
|
|
537
|
+
const _config_6 = (0, import_middleware_retry.resolveRetryConfig)(_config_5);
|
|
538
538
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
539
539
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
540
540
|
super(_config_8);
|
|
541
541
|
this.config = _config_8;
|
|
542
|
-
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
543
|
-
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
544
542
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
545
543
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
546
544
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
547
545
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
546
|
+
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
547
|
+
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
548
548
|
this.middlewareStack.use(
|
|
549
549
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
550
550
|
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
package/dist-es/GlueClient.js
CHANGED
|
@@ -19,19 +19,19 @@ export class GlueClient extends __Client {
|
|
|
19
19
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
20
20
|
const _config_2 = resolveRegionConfig(_config_1);
|
|
21
21
|
const _config_3 = resolveEndpointConfig(_config_2);
|
|
22
|
-
const _config_4 =
|
|
23
|
-
const _config_5 =
|
|
24
|
-
const _config_6 =
|
|
22
|
+
const _config_4 = resolveHostHeaderConfig(_config_3);
|
|
23
|
+
const _config_5 = resolveUserAgentConfig(_config_4);
|
|
24
|
+
const _config_6 = resolveRetryConfig(_config_5);
|
|
25
25
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
26
26
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
27
27
|
super(_config_8);
|
|
28
28
|
this.config = _config_8;
|
|
29
|
-
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
30
|
-
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
31
29
|
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
32
30
|
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
33
31
|
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
34
32
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
33
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
34
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
35
35
|
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
36
36
|
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
37
37
|
identityProviderConfigProvider: this.getIdentityProviderConfigProvider(),
|
|
@@ -349,7 +349,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
349
349
|
/**
|
|
350
350
|
* @public
|
|
351
351
|
*/
|
|
352
|
-
export type GlueClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> &
|
|
352
|
+
export type GlueClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & HostHeaderInputConfig & UserAgentInputConfig & RetryInputConfig & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
353
353
|
/**
|
|
354
354
|
* @public
|
|
355
355
|
*
|
|
@@ -360,7 +360,7 @@ export interface GlueClientConfig extends GlueClientConfigType {
|
|
|
360
360
|
/**
|
|
361
361
|
* @public
|
|
362
362
|
*/
|
|
363
|
-
export type GlueClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> &
|
|
363
|
+
export type GlueClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HostHeaderResolvedConfig & UserAgentResolvedConfig & RetryResolvedConfig & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
364
364
|
/**
|
|
365
365
|
* @public
|
|
366
366
|
*
|
|
@@ -1033,6 +1033,23 @@ declare const BatchGetJobsCommand_base: {
|
|
|
1033
1033
|
* // RecipeArn: "STRING_VALUE", // required
|
|
1034
1034
|
* // RecipeVersion: "STRING_VALUE", // required
|
|
1035
1035
|
* // },
|
|
1036
|
+
* // RecipeSteps: [ // RecipeSteps
|
|
1037
|
+
* // { // RecipeStep
|
|
1038
|
+
* // Action: { // RecipeAction
|
|
1039
|
+
* // Operation: "STRING_VALUE", // required
|
|
1040
|
+
* // Parameters: { // ParameterMap
|
|
1041
|
+
* // "<keys>": "STRING_VALUE",
|
|
1042
|
+
* // },
|
|
1043
|
+
* // },
|
|
1044
|
+
* // ConditionExpressions: [ // ConditionExpressionList
|
|
1045
|
+
* // { // ConditionExpression
|
|
1046
|
+
* // Condition: "STRING_VALUE", // required
|
|
1047
|
+
* // Value: "STRING_VALUE",
|
|
1048
|
+
* // TargetColumn: "STRING_VALUE", // required
|
|
1049
|
+
* // },
|
|
1050
|
+
* // ],
|
|
1051
|
+
* // },
|
|
1052
|
+
* // ],
|
|
1036
1053
|
* // },
|
|
1037
1054
|
* // SnowflakeSource: { // SnowflakeSource
|
|
1038
1055
|
* // Name: "STRING_VALUE", // required
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { CreateClassifierRequest, CreateClassifierResponse } from "../models/
|
|
4
|
+
import { CreateClassifierRequest, CreateClassifierResponse } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1024,6 +1024,23 @@ declare const CreateJobCommand_base: {
|
|
|
1024
1024
|
* RecipeArn: "STRING_VALUE", // required
|
|
1025
1025
|
* RecipeVersion: "STRING_VALUE", // required
|
|
1026
1026
|
* },
|
|
1027
|
+
* RecipeSteps: [ // RecipeSteps
|
|
1028
|
+
* { // RecipeStep
|
|
1029
|
+
* Action: { // RecipeAction
|
|
1030
|
+
* Operation: "STRING_VALUE", // required
|
|
1031
|
+
* Parameters: { // ParameterMap
|
|
1032
|
+
* "<keys>": "STRING_VALUE",
|
|
1033
|
+
* },
|
|
1034
|
+
* },
|
|
1035
|
+
* ConditionExpressions: [ // ConditionExpressionList
|
|
1036
|
+
* { // ConditionExpression
|
|
1037
|
+
* Condition: "STRING_VALUE", // required
|
|
1038
|
+
* Value: "STRING_VALUE",
|
|
1039
|
+
* TargetColumn: "STRING_VALUE", // required
|
|
1040
|
+
* },
|
|
1041
|
+
* ],
|
|
1042
|
+
* },
|
|
1043
|
+
* ],
|
|
1027
1044
|
* },
|
|
1028
1045
|
* SnowflakeSource: { // SnowflakeSource
|
|
1029
1046
|
* Name: "STRING_VALUE", // required
|
|
@@ -1029,6 +1029,23 @@ declare const GetJobCommand_base: {
|
|
|
1029
1029
|
* // RecipeArn: "STRING_VALUE", // required
|
|
1030
1030
|
* // RecipeVersion: "STRING_VALUE", // required
|
|
1031
1031
|
* // },
|
|
1032
|
+
* // RecipeSteps: [ // RecipeSteps
|
|
1033
|
+
* // { // RecipeStep
|
|
1034
|
+
* // Action: { // RecipeAction
|
|
1035
|
+
* // Operation: "STRING_VALUE", // required
|
|
1036
|
+
* // Parameters: { // ParameterMap
|
|
1037
|
+
* // "<keys>": "STRING_VALUE",
|
|
1038
|
+
* // },
|
|
1039
|
+
* // },
|
|
1040
|
+
* // ConditionExpressions: [ // ConditionExpressionList
|
|
1041
|
+
* // { // ConditionExpression
|
|
1042
|
+
* // Condition: "STRING_VALUE", // required
|
|
1043
|
+
* // Value: "STRING_VALUE",
|
|
1044
|
+
* // TargetColumn: "STRING_VALUE", // required
|
|
1045
|
+
* // },
|
|
1046
|
+
* // ],
|
|
1047
|
+
* // },
|
|
1048
|
+
* // ],
|
|
1032
1049
|
* // },
|
|
1033
1050
|
* // SnowflakeSource: { // SnowflakeSource
|
|
1034
1051
|
* // Name: "STRING_VALUE", // required
|
|
@@ -1031,6 +1031,23 @@ declare const GetJobsCommand_base: {
|
|
|
1031
1031
|
* // RecipeArn: "STRING_VALUE", // required
|
|
1032
1032
|
* // RecipeVersion: "STRING_VALUE", // required
|
|
1033
1033
|
* // },
|
|
1034
|
+
* // RecipeSteps: [ // RecipeSteps
|
|
1035
|
+
* // { // RecipeStep
|
|
1036
|
+
* // Action: { // RecipeAction
|
|
1037
|
+
* // Operation: "STRING_VALUE", // required
|
|
1038
|
+
* // Parameters: { // ParameterMap
|
|
1039
|
+
* // "<keys>": "STRING_VALUE",
|
|
1040
|
+
* // },
|
|
1041
|
+
* // },
|
|
1042
|
+
* // ConditionExpressions: [ // ConditionExpressionList
|
|
1043
|
+
* // { // ConditionExpression
|
|
1044
|
+
* // Condition: "STRING_VALUE", // required
|
|
1045
|
+
* // Value: "STRING_VALUE",
|
|
1046
|
+
* // TargetColumn: "STRING_VALUE", // required
|
|
1047
|
+
* // },
|
|
1048
|
+
* // ],
|
|
1049
|
+
* // },
|
|
1050
|
+
* // ],
|
|
1034
1051
|
* // },
|
|
1035
1052
|
* // SnowflakeSource: { // SnowflakeSource
|
|
1036
1053
|
* // Name: "STRING_VALUE", // required
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { GetPartitionsRequest, GetPartitionsResponse } from "../models/
|
|
4
|
+
import { GetPartitionsRequest, GetPartitionsResponse } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { GetPlanRequest } from "../models/
|
|
5
|
-
import { GetPlanResponse } from "../models/models_2";
|
|
4
|
+
import { GetPlanRequest, GetPlanResponse } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -1021,6 +1021,23 @@ declare const UpdateJobCommand_base: {
|
|
|
1021
1021
|
* RecipeArn: "STRING_VALUE", // required
|
|
1022
1022
|
* RecipeVersion: "STRING_VALUE", // required
|
|
1023
1023
|
* },
|
|
1024
|
+
* RecipeSteps: [ // RecipeSteps
|
|
1025
|
+
* { // RecipeStep
|
|
1026
|
+
* Action: { // RecipeAction
|
|
1027
|
+
* Operation: "STRING_VALUE", // required
|
|
1028
|
+
* Parameters: { // ParameterMap
|
|
1029
|
+
* "<keys>": "STRING_VALUE",
|
|
1030
|
+
* },
|
|
1031
|
+
* },
|
|
1032
|
+
* ConditionExpressions: [ // ConditionExpressionList
|
|
1033
|
+
* { // ConditionExpression
|
|
1034
|
+
* Condition: "STRING_VALUE", // required
|
|
1035
|
+
* Value: "STRING_VALUE",
|
|
1036
|
+
* TargetColumn: "STRING_VALUE", // required
|
|
1037
|
+
* },
|
|
1038
|
+
* ],
|
|
1039
|
+
* },
|
|
1040
|
+
* ],
|
|
1024
1041
|
* },
|
|
1025
1042
|
* SnowflakeSource: { // SnowflakeSource
|
|
1026
1043
|
* Name: "STRING_VALUE", // required
|
|
@@ -4521,6 +4521,59 @@ export interface RecipeReference {
|
|
|
4521
4521
|
*/
|
|
4522
4522
|
RecipeVersion: string | undefined;
|
|
4523
4523
|
}
|
|
4524
|
+
/**
|
|
4525
|
+
* <p>Actions defined in the Glue Studio data preparation recipe node.</p>
|
|
4526
|
+
* @public
|
|
4527
|
+
*/
|
|
4528
|
+
export interface RecipeAction {
|
|
4529
|
+
/**
|
|
4530
|
+
* <p>The operation of the recipe action.</p>
|
|
4531
|
+
* @public
|
|
4532
|
+
*/
|
|
4533
|
+
Operation: string | undefined;
|
|
4534
|
+
/**
|
|
4535
|
+
* <p>The parameters of the recipe action.</p>
|
|
4536
|
+
* @public
|
|
4537
|
+
*/
|
|
4538
|
+
Parameters?: Record<string, string>;
|
|
4539
|
+
}
|
|
4540
|
+
/**
|
|
4541
|
+
* <p>Condition expression defined in the Glue Studio data preparation recipe node.</p>
|
|
4542
|
+
* @public
|
|
4543
|
+
*/
|
|
4544
|
+
export interface ConditionExpression {
|
|
4545
|
+
/**
|
|
4546
|
+
* <p>The condition of the condition expression.</p>
|
|
4547
|
+
* @public
|
|
4548
|
+
*/
|
|
4549
|
+
Condition: string | undefined;
|
|
4550
|
+
/**
|
|
4551
|
+
* <p>The value of the condition expression.</p>
|
|
4552
|
+
* @public
|
|
4553
|
+
*/
|
|
4554
|
+
Value?: string;
|
|
4555
|
+
/**
|
|
4556
|
+
* <p>The target column of the condition expressions.</p>
|
|
4557
|
+
* @public
|
|
4558
|
+
*/
|
|
4559
|
+
TargetColumn: string | undefined;
|
|
4560
|
+
}
|
|
4561
|
+
/**
|
|
4562
|
+
* <p>A recipe step used in a Glue Studio data preparation recipe node.</p>
|
|
4563
|
+
* @public
|
|
4564
|
+
*/
|
|
4565
|
+
export interface RecipeStep {
|
|
4566
|
+
/**
|
|
4567
|
+
* <p>The transformation action of the recipe step.</p>
|
|
4568
|
+
* @public
|
|
4569
|
+
*/
|
|
4570
|
+
Action: RecipeAction | undefined;
|
|
4571
|
+
/**
|
|
4572
|
+
* <p>The condition expressions for the recipe step.</p>
|
|
4573
|
+
* @public
|
|
4574
|
+
*/
|
|
4575
|
+
ConditionExpressions?: ConditionExpression[];
|
|
4576
|
+
}
|
|
4524
4577
|
/**
|
|
4525
4578
|
* <p>A Glue Studio node that uses a Glue DataBrew recipe in Glue jobs.</p>
|
|
4526
4579
|
* @public
|
|
@@ -4540,7 +4593,12 @@ export interface Recipe {
|
|
|
4540
4593
|
* <p>A reference to the DataBrew recipe used by the node.</p>
|
|
4541
4594
|
* @public
|
|
4542
4595
|
*/
|
|
4543
|
-
RecipeReference
|
|
4596
|
+
RecipeReference?: RecipeReference;
|
|
4597
|
+
/**
|
|
4598
|
+
* <p>Transform steps used in the recipe node.</p>
|
|
4599
|
+
* @public
|
|
4600
|
+
*/
|
|
4601
|
+
RecipeSteps?: RecipeStep[];
|
|
4544
4602
|
}
|
|
4545
4603
|
/**
|
|
4546
4604
|
* <p>Specifies an Amazon Redshift data store.</p>
|
|
@@ -7849,62 +7907,3 @@ export interface CreateJsonClassifierRequest {
|
|
|
7849
7907
|
*/
|
|
7850
7908
|
JsonPath: string | undefined;
|
|
7851
7909
|
}
|
|
7852
|
-
/**
|
|
7853
|
-
* <p>Specifies an XML classifier for <code>CreateClassifier</code> to create.</p>
|
|
7854
|
-
* @public
|
|
7855
|
-
*/
|
|
7856
|
-
export interface CreateXMLClassifierRequest {
|
|
7857
|
-
/**
|
|
7858
|
-
* <p>An identifier of the data format that the classifier matches.</p>
|
|
7859
|
-
* @public
|
|
7860
|
-
*/
|
|
7861
|
-
Classification: string | undefined;
|
|
7862
|
-
/**
|
|
7863
|
-
* <p>The name of the classifier.</p>
|
|
7864
|
-
* @public
|
|
7865
|
-
*/
|
|
7866
|
-
Name: string | undefined;
|
|
7867
|
-
/**
|
|
7868
|
-
* <p>The XML tag designating the element that contains each record in an XML document being
|
|
7869
|
-
* parsed. This can't identify a self-closing element (closed by <code>/></code>). An empty
|
|
7870
|
-
* row element that contains only attributes can be parsed as long as it ends with a closing tag
|
|
7871
|
-
* (for example, <code><row item_a="A" item_b="B"></row></code> is okay, but
|
|
7872
|
-
* <code><row item_a="A" item_b="B" /></code> is not).</p>
|
|
7873
|
-
* @public
|
|
7874
|
-
*/
|
|
7875
|
-
RowTag?: string;
|
|
7876
|
-
}
|
|
7877
|
-
/**
|
|
7878
|
-
* @public
|
|
7879
|
-
*/
|
|
7880
|
-
export interface CreateClassifierRequest {
|
|
7881
|
-
/**
|
|
7882
|
-
* <p>A <code>GrokClassifier</code> object specifying the classifier
|
|
7883
|
-
* to create.</p>
|
|
7884
|
-
* @public
|
|
7885
|
-
*/
|
|
7886
|
-
GrokClassifier?: CreateGrokClassifierRequest;
|
|
7887
|
-
/**
|
|
7888
|
-
* <p>An <code>XMLClassifier</code> object specifying the classifier
|
|
7889
|
-
* to create.</p>
|
|
7890
|
-
* @public
|
|
7891
|
-
*/
|
|
7892
|
-
XMLClassifier?: CreateXMLClassifierRequest;
|
|
7893
|
-
/**
|
|
7894
|
-
* <p>A <code>JsonClassifier</code> object specifying the classifier
|
|
7895
|
-
* to create.</p>
|
|
7896
|
-
* @public
|
|
7897
|
-
*/
|
|
7898
|
-
JsonClassifier?: CreateJsonClassifierRequest;
|
|
7899
|
-
/**
|
|
7900
|
-
* <p>A <code>CsvClassifier</code> object specifying the classifier
|
|
7901
|
-
* to create.</p>
|
|
7902
|
-
* @public
|
|
7903
|
-
*/
|
|
7904
|
-
CsvClassifier?: CreateCsvClassifierRequest;
|
|
7905
|
-
}
|
|
7906
|
-
/**
|
|
7907
|
-
* @public
|
|
7908
|
-
*/
|
|
7909
|
-
export interface CreateClassifierResponse {
|
|
7910
|
-
}
|
|
@@ -1,6 +1,65 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
|
-
import { Action, AuthenticationConfiguration, AuthenticationConfigurationInput, Blueprint, Column, ConnectionsList, Crawler, CrawlerTargets, CsvHeaderOption, CsvSerdeOption, DataFormat, DataQualityAnalyzerResult, DataQualityObservation, DataQualityRuleResult, DataSource, DevEndpoint, ErrorDetail, EventBatchingCondition, GlueTable, JobRun, LakeFormationConfiguration, LineageConfiguration, Partition, PartitionInput, PartitionValueList, Predicate, RecrawlPolicy, SchemaChangePolicy, SchemaId, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerType, TaskStatusType, TriggerType, WorkerType } from "./models_0";
|
|
3
|
+
import { Action, AuthenticationConfiguration, AuthenticationConfigurationInput, Blueprint, Column, ConnectionsList, Crawler, CrawlerTargets, CreateCsvClassifierRequest, CreateGrokClassifierRequest, CreateJsonClassifierRequest, CsvHeaderOption, CsvSerdeOption, DataFormat, DataQualityAnalyzerResult, DataQualityObservation, DataQualityRuleResult, DataSource, DevEndpoint, ErrorDetail, EventBatchingCondition, GlueTable, JobRun, LakeFormationConfiguration, LineageConfiguration, Partition, PartitionInput, PartitionValueList, Predicate, RecrawlPolicy, SchemaChangePolicy, SchemaId, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerType, TaskStatusType, TriggerType, WorkerType } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Specifies an XML classifier for <code>CreateClassifier</code> to create.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface CreateXMLClassifierRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>An identifier of the data format that the classifier matches.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
Classification: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The name of the classifier.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
Name: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The XML tag designating the element that contains each record in an XML document being
|
|
21
|
+
* parsed. This can't identify a self-closing element (closed by <code>/></code>). An empty
|
|
22
|
+
* row element that contains only attributes can be parsed as long as it ends with a closing tag
|
|
23
|
+
* (for example, <code><row item_a="A" item_b="B"></row></code> is okay, but
|
|
24
|
+
* <code><row item_a="A" item_b="B" /></code> is not).</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
RowTag?: string;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export interface CreateClassifierRequest {
|
|
33
|
+
/**
|
|
34
|
+
* <p>A <code>GrokClassifier</code> object specifying the classifier
|
|
35
|
+
* to create.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
GrokClassifier?: CreateGrokClassifierRequest;
|
|
39
|
+
/**
|
|
40
|
+
* <p>An <code>XMLClassifier</code> object specifying the classifier
|
|
41
|
+
* to create.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
XMLClassifier?: CreateXMLClassifierRequest;
|
|
45
|
+
/**
|
|
46
|
+
* <p>A <code>JsonClassifier</code> object specifying the classifier
|
|
47
|
+
* to create.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
JsonClassifier?: CreateJsonClassifierRequest;
|
|
51
|
+
/**
|
|
52
|
+
* <p>A <code>CsvClassifier</code> object specifying the classifier
|
|
53
|
+
* to create.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
CsvClassifier?: CreateCsvClassifierRequest;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export interface CreateClassifierResponse {
|
|
62
|
+
}
|
|
4
63
|
/**
|
|
5
64
|
* @public
|
|
6
65
|
* @enum
|
|
@@ -7052,225 +7111,3 @@ export interface Segment {
|
|
|
7052
7111
|
*/
|
|
7053
7112
|
TotalSegments: number | undefined;
|
|
7054
7113
|
}
|
|
7055
|
-
/**
|
|
7056
|
-
* @public
|
|
7057
|
-
*/
|
|
7058
|
-
export interface GetPartitionsRequest {
|
|
7059
|
-
/**
|
|
7060
|
-
* <p>The ID of the Data Catalog where the partitions in question reside. If none is provided,
|
|
7061
|
-
* the Amazon Web Services account ID is used by default.</p>
|
|
7062
|
-
* @public
|
|
7063
|
-
*/
|
|
7064
|
-
CatalogId?: string;
|
|
7065
|
-
/**
|
|
7066
|
-
* <p>The name of the catalog database where the partitions reside.</p>
|
|
7067
|
-
* @public
|
|
7068
|
-
*/
|
|
7069
|
-
DatabaseName: string | undefined;
|
|
7070
|
-
/**
|
|
7071
|
-
* <p>The name of the partitions' table.</p>
|
|
7072
|
-
* @public
|
|
7073
|
-
*/
|
|
7074
|
-
TableName: string | undefined;
|
|
7075
|
-
/**
|
|
7076
|
-
* <p>An expression that filters the partitions to be returned.</p>
|
|
7077
|
-
* <p>The expression uses SQL syntax similar to the SQL <code>WHERE</code> filter clause. The
|
|
7078
|
-
* SQL statement parser <a href="http://jsqlparser.sourceforge.net/home.php">JSQLParser</a> parses the expression. </p>
|
|
7079
|
-
* <p>
|
|
7080
|
-
* <i>Operators</i>: The following are the operators that you can use in the
|
|
7081
|
-
* <code>Expression</code> API call:</p>
|
|
7082
|
-
* <dl>
|
|
7083
|
-
* <dt>=</dt>
|
|
7084
|
-
* <dd>
|
|
7085
|
-
* <p>Checks whether the values of the two operands are equal; if yes, then the condition becomes
|
|
7086
|
-
* true.</p>
|
|
7087
|
-
* <p>Example: Assume 'variable a' holds 10 and 'variable b' holds 20. </p>
|
|
7088
|
-
* <p>(a = b) is not true.</p>
|
|
7089
|
-
* </dd>
|
|
7090
|
-
* <dt>< ></dt>
|
|
7091
|
-
* <dd>
|
|
7092
|
-
* <p>Checks whether the values of two operands are equal; if the values are not equal,
|
|
7093
|
-
* then the condition becomes true.</p>
|
|
7094
|
-
* <p>Example: (a < > b) is true.</p>
|
|
7095
|
-
* </dd>
|
|
7096
|
-
* <dt>></dt>
|
|
7097
|
-
* <dd>
|
|
7098
|
-
* <p>Checks whether the value of the left operand is greater than the value of the right
|
|
7099
|
-
* operand; if yes, then the condition becomes true.</p>
|
|
7100
|
-
* <p>Example: (a > b) is not true.</p>
|
|
7101
|
-
* </dd>
|
|
7102
|
-
* <dt><</dt>
|
|
7103
|
-
* <dd>
|
|
7104
|
-
* <p>Checks whether the value of the left operand is less than the value of the right
|
|
7105
|
-
* operand; if yes, then the condition becomes true.</p>
|
|
7106
|
-
* <p>Example: (a < b) is true.</p>
|
|
7107
|
-
* </dd>
|
|
7108
|
-
* <dt>>=</dt>
|
|
7109
|
-
* <dd>
|
|
7110
|
-
* <p>Checks whether the value of the left operand is greater than or equal to the value
|
|
7111
|
-
* of the right operand; if yes, then the condition becomes true.</p>
|
|
7112
|
-
* <p>Example: (a >= b) is not true.</p>
|
|
7113
|
-
* </dd>
|
|
7114
|
-
* <dt><=</dt>
|
|
7115
|
-
* <dd>
|
|
7116
|
-
* <p>Checks whether the value of the left operand is less than or equal to the value of
|
|
7117
|
-
* the right operand; if yes, then the condition becomes true.</p>
|
|
7118
|
-
* <p>Example: (a <= b) is true.</p>
|
|
7119
|
-
* </dd>
|
|
7120
|
-
* <dt>AND, OR, IN, BETWEEN, LIKE, NOT, IS NULL</dt>
|
|
7121
|
-
* <dd>
|
|
7122
|
-
* <p>Logical operators.</p>
|
|
7123
|
-
* </dd>
|
|
7124
|
-
* </dl>
|
|
7125
|
-
* <p>
|
|
7126
|
-
* <i>Supported Partition Key Types</i>: The following are the supported
|
|
7127
|
-
* partition keys.</p>
|
|
7128
|
-
* <ul>
|
|
7129
|
-
* <li>
|
|
7130
|
-
* <p>
|
|
7131
|
-
* <code>string</code>
|
|
7132
|
-
* </p>
|
|
7133
|
-
* </li>
|
|
7134
|
-
* <li>
|
|
7135
|
-
* <p>
|
|
7136
|
-
* <code>date</code>
|
|
7137
|
-
* </p>
|
|
7138
|
-
* </li>
|
|
7139
|
-
* <li>
|
|
7140
|
-
* <p>
|
|
7141
|
-
* <code>timestamp</code>
|
|
7142
|
-
* </p>
|
|
7143
|
-
* </li>
|
|
7144
|
-
* <li>
|
|
7145
|
-
* <p>
|
|
7146
|
-
* <code>int</code>
|
|
7147
|
-
* </p>
|
|
7148
|
-
* </li>
|
|
7149
|
-
* <li>
|
|
7150
|
-
* <p>
|
|
7151
|
-
* <code>bigint</code>
|
|
7152
|
-
* </p>
|
|
7153
|
-
* </li>
|
|
7154
|
-
* <li>
|
|
7155
|
-
* <p>
|
|
7156
|
-
* <code>long</code>
|
|
7157
|
-
* </p>
|
|
7158
|
-
* </li>
|
|
7159
|
-
* <li>
|
|
7160
|
-
* <p>
|
|
7161
|
-
* <code>tinyint</code>
|
|
7162
|
-
* </p>
|
|
7163
|
-
* </li>
|
|
7164
|
-
* <li>
|
|
7165
|
-
* <p>
|
|
7166
|
-
* <code>smallint</code>
|
|
7167
|
-
* </p>
|
|
7168
|
-
* </li>
|
|
7169
|
-
* <li>
|
|
7170
|
-
* <p>
|
|
7171
|
-
* <code>decimal</code>
|
|
7172
|
-
* </p>
|
|
7173
|
-
* </li>
|
|
7174
|
-
* </ul>
|
|
7175
|
-
* <p>If an type is encountered that is not valid, an exception is thrown. </p>
|
|
7176
|
-
* <p>The following list shows the valid operators on each type. When you define a crawler, the
|
|
7177
|
-
* <code>partitionKey</code> type is created as a <code>STRING</code>, to be compatible with the catalog
|
|
7178
|
-
* partitions. </p>
|
|
7179
|
-
* <p>
|
|
7180
|
-
* <i>Sample API Call</i>: </p>
|
|
7181
|
-
* @public
|
|
7182
|
-
*/
|
|
7183
|
-
Expression?: string;
|
|
7184
|
-
/**
|
|
7185
|
-
* <p>A continuation token, if this is not the first call to retrieve
|
|
7186
|
-
* these partitions.</p>
|
|
7187
|
-
* @public
|
|
7188
|
-
*/
|
|
7189
|
-
NextToken?: string;
|
|
7190
|
-
/**
|
|
7191
|
-
* <p>The segment of the table's partitions to scan in this request.</p>
|
|
7192
|
-
* @public
|
|
7193
|
-
*/
|
|
7194
|
-
Segment?: Segment;
|
|
7195
|
-
/**
|
|
7196
|
-
* <p>The maximum number of partitions to return in a single response.</p>
|
|
7197
|
-
* @public
|
|
7198
|
-
*/
|
|
7199
|
-
MaxResults?: number;
|
|
7200
|
-
/**
|
|
7201
|
-
* <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>
|
|
7202
|
-
* @public
|
|
7203
|
-
*/
|
|
7204
|
-
ExcludeColumnSchema?: boolean;
|
|
7205
|
-
/**
|
|
7206
|
-
* <p>The transaction ID at which to read the partition contents.</p>
|
|
7207
|
-
* @public
|
|
7208
|
-
*/
|
|
7209
|
-
TransactionId?: string;
|
|
7210
|
-
/**
|
|
7211
|
-
* <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>
|
|
7212
|
-
* @public
|
|
7213
|
-
*/
|
|
7214
|
-
QueryAsOfTime?: Date;
|
|
7215
|
-
}
|
|
7216
|
-
/**
|
|
7217
|
-
* @public
|
|
7218
|
-
*/
|
|
7219
|
-
export interface GetPartitionsResponse {
|
|
7220
|
-
/**
|
|
7221
|
-
* <p>A list of requested partitions.</p>
|
|
7222
|
-
* @public
|
|
7223
|
-
*/
|
|
7224
|
-
Partitions?: Partition[];
|
|
7225
|
-
/**
|
|
7226
|
-
* <p>A continuation token, if the returned list of partitions does not include the last
|
|
7227
|
-
* one.</p>
|
|
7228
|
-
* @public
|
|
7229
|
-
*/
|
|
7230
|
-
NextToken?: string;
|
|
7231
|
-
}
|
|
7232
|
-
/**
|
|
7233
|
-
* @public
|
|
7234
|
-
*/
|
|
7235
|
-
export interface GetPlanRequest {
|
|
7236
|
-
/**
|
|
7237
|
-
* <p>The list of mappings from a source table to target tables.</p>
|
|
7238
|
-
* @public
|
|
7239
|
-
*/
|
|
7240
|
-
Mapping: MappingEntry[] | undefined;
|
|
7241
|
-
/**
|
|
7242
|
-
* <p>The source table.</p>
|
|
7243
|
-
* @public
|
|
7244
|
-
*/
|
|
7245
|
-
Source: CatalogEntry | undefined;
|
|
7246
|
-
/**
|
|
7247
|
-
* <p>The target tables.</p>
|
|
7248
|
-
* @public
|
|
7249
|
-
*/
|
|
7250
|
-
Sinks?: CatalogEntry[];
|
|
7251
|
-
/**
|
|
7252
|
-
* <p>The parameters for the mapping.</p>
|
|
7253
|
-
* @public
|
|
7254
|
-
*/
|
|
7255
|
-
Location?: Location;
|
|
7256
|
-
/**
|
|
7257
|
-
* <p>The programming language of the code to perform the mapping.</p>
|
|
7258
|
-
* @public
|
|
7259
|
-
*/
|
|
7260
|
-
Language?: Language;
|
|
7261
|
-
/**
|
|
7262
|
-
* <p>A map to hold additional optional key-value parameters.</p>
|
|
7263
|
-
* <p>Currently, these key-value pairs are supported:</p>
|
|
7264
|
-
* <ul>
|
|
7265
|
-
* <li>
|
|
7266
|
-
* <p>
|
|
7267
|
-
* <code>inferSchema</code> — Specifies whether to set <code>inferSchema</code> to true or false for the default script generated by an Glue job. For example, to set <code>inferSchema</code> to true, pass the following key value pair:</p>
|
|
7268
|
-
* <p>
|
|
7269
|
-
* <code>--additional-plan-options-map '\{"inferSchema":"true"\}'</code>
|
|
7270
|
-
* </p>
|
|
7271
|
-
* </li>
|
|
7272
|
-
* </ul>
|
|
7273
|
-
* @public
|
|
7274
|
-
*/
|
|
7275
|
-
AdditionalPlanOptionsMap?: Record<string, string>;
|
|
7276
|
-
}
|
|
@@ -1,7 +1,229 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
3
|
import { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuditContext, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CrawlerTargets, CsvHeaderOption, CsvSerdeOption, CustomCode, CustomEntityType, DataFormat, DataSource, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionClass, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, JobMode, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, Partition, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RecrawlPolicy, RedshiftSource, RedshiftTarget, RelationalCatalogSource, RenameField, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlAuthStrategy, SourceControlDetails, SourceControlProvider, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, StorageDescriptor, TableOptimizer, TableOptimizerConfiguration, TableOptimizerRun, TableOptimizerType, TaskStatusType, Trigger, Union, WorkerType, Workflow, WorkflowRun } from "./models_0";
|
|
4
|
-
import { ColumnStatistics, Compatibility, ConnectionInput, DatabaseInput, DataCatalogEncryptionSettings, DataQualityEvaluationRunAdditionalRunOptions, DataQualityTargetTable, EncryptionConfiguration, JobBookmarkEntry, Permission, PrincipalType, ProfileConfiguration, RegistryId, RegistryStatus, ResourceShareType, ResourceUri, SchemaStatus, SchemaVersionStatus, Segment, Session, TableIdentifier, TableInput, TransformFilterCriteria, TransformParameters, TransformSortCriteria, UserDefinedFunctionInput, ViewDialect } from "./models_1";
|
|
4
|
+
import { CatalogEntry, ColumnStatistics, Compatibility, ConnectionInput, DatabaseInput, DataCatalogEncryptionSettings, DataQualityEvaluationRunAdditionalRunOptions, DataQualityTargetTable, EncryptionConfiguration, JobBookmarkEntry, Language, Location, MappingEntry, Permission, PrincipalType, ProfileConfiguration, RegistryId, RegistryStatus, ResourceShareType, ResourceUri, SchemaStatus, SchemaVersionStatus, Segment, Session, TableIdentifier, TableInput, TransformFilterCriteria, TransformParameters, TransformSortCriteria, UserDefinedFunctionInput, ViewDialect } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface GetPartitionsRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The ID of the Data Catalog where the partitions in question reside. If none is provided,
|
|
11
|
+
* the Amazon Web Services account ID is used by default.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
CatalogId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The name of the catalog database where the partitions reside.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
DatabaseName: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The name of the partitions' table.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
TableName: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* <p>An expression that filters the partitions to be returned.</p>
|
|
27
|
+
* <p>The expression uses SQL syntax similar to the SQL <code>WHERE</code> filter clause. The
|
|
28
|
+
* SQL statement parser <a href="http://jsqlparser.sourceforge.net/home.php">JSQLParser</a> parses the expression. </p>
|
|
29
|
+
* <p>
|
|
30
|
+
* <i>Operators</i>: The following are the operators that you can use in the
|
|
31
|
+
* <code>Expression</code> API call:</p>
|
|
32
|
+
* <dl>
|
|
33
|
+
* <dt>=</dt>
|
|
34
|
+
* <dd>
|
|
35
|
+
* <p>Checks whether the values of the two operands are equal; if yes, then the condition becomes
|
|
36
|
+
* true.</p>
|
|
37
|
+
* <p>Example: Assume 'variable a' holds 10 and 'variable b' holds 20. </p>
|
|
38
|
+
* <p>(a = b) is not true.</p>
|
|
39
|
+
* </dd>
|
|
40
|
+
* <dt>< ></dt>
|
|
41
|
+
* <dd>
|
|
42
|
+
* <p>Checks whether the values of two operands are equal; if the values are not equal,
|
|
43
|
+
* then the condition becomes true.</p>
|
|
44
|
+
* <p>Example: (a < > b) is true.</p>
|
|
45
|
+
* </dd>
|
|
46
|
+
* <dt>></dt>
|
|
47
|
+
* <dd>
|
|
48
|
+
* <p>Checks whether the value of the left operand is greater than the value of the right
|
|
49
|
+
* operand; if yes, then the condition becomes true.</p>
|
|
50
|
+
* <p>Example: (a > b) is not true.</p>
|
|
51
|
+
* </dd>
|
|
52
|
+
* <dt><</dt>
|
|
53
|
+
* <dd>
|
|
54
|
+
* <p>Checks whether the value of the left operand is less than the value of the right
|
|
55
|
+
* operand; if yes, then the condition becomes true.</p>
|
|
56
|
+
* <p>Example: (a < b) is true.</p>
|
|
57
|
+
* </dd>
|
|
58
|
+
* <dt>>=</dt>
|
|
59
|
+
* <dd>
|
|
60
|
+
* <p>Checks whether the value of the left operand is greater than or equal to the value
|
|
61
|
+
* of the right operand; if yes, then the condition becomes true.</p>
|
|
62
|
+
* <p>Example: (a >= b) is not true.</p>
|
|
63
|
+
* </dd>
|
|
64
|
+
* <dt><=</dt>
|
|
65
|
+
* <dd>
|
|
66
|
+
* <p>Checks whether the value of the left operand is less than or equal to the value of
|
|
67
|
+
* the right operand; if yes, then the condition becomes true.</p>
|
|
68
|
+
* <p>Example: (a <= b) is true.</p>
|
|
69
|
+
* </dd>
|
|
70
|
+
* <dt>AND, OR, IN, BETWEEN, LIKE, NOT, IS NULL</dt>
|
|
71
|
+
* <dd>
|
|
72
|
+
* <p>Logical operators.</p>
|
|
73
|
+
* </dd>
|
|
74
|
+
* </dl>
|
|
75
|
+
* <p>
|
|
76
|
+
* <i>Supported Partition Key Types</i>: The following are the supported
|
|
77
|
+
* partition keys.</p>
|
|
78
|
+
* <ul>
|
|
79
|
+
* <li>
|
|
80
|
+
* <p>
|
|
81
|
+
* <code>string</code>
|
|
82
|
+
* </p>
|
|
83
|
+
* </li>
|
|
84
|
+
* <li>
|
|
85
|
+
* <p>
|
|
86
|
+
* <code>date</code>
|
|
87
|
+
* </p>
|
|
88
|
+
* </li>
|
|
89
|
+
* <li>
|
|
90
|
+
* <p>
|
|
91
|
+
* <code>timestamp</code>
|
|
92
|
+
* </p>
|
|
93
|
+
* </li>
|
|
94
|
+
* <li>
|
|
95
|
+
* <p>
|
|
96
|
+
* <code>int</code>
|
|
97
|
+
* </p>
|
|
98
|
+
* </li>
|
|
99
|
+
* <li>
|
|
100
|
+
* <p>
|
|
101
|
+
* <code>bigint</code>
|
|
102
|
+
* </p>
|
|
103
|
+
* </li>
|
|
104
|
+
* <li>
|
|
105
|
+
* <p>
|
|
106
|
+
* <code>long</code>
|
|
107
|
+
* </p>
|
|
108
|
+
* </li>
|
|
109
|
+
* <li>
|
|
110
|
+
* <p>
|
|
111
|
+
* <code>tinyint</code>
|
|
112
|
+
* </p>
|
|
113
|
+
* </li>
|
|
114
|
+
* <li>
|
|
115
|
+
* <p>
|
|
116
|
+
* <code>smallint</code>
|
|
117
|
+
* </p>
|
|
118
|
+
* </li>
|
|
119
|
+
* <li>
|
|
120
|
+
* <p>
|
|
121
|
+
* <code>decimal</code>
|
|
122
|
+
* </p>
|
|
123
|
+
* </li>
|
|
124
|
+
* </ul>
|
|
125
|
+
* <p>If an type is encountered that is not valid, an exception is thrown. </p>
|
|
126
|
+
* <p>The following list shows the valid operators on each type. When you define a crawler, the
|
|
127
|
+
* <code>partitionKey</code> type is created as a <code>STRING</code>, to be compatible with the catalog
|
|
128
|
+
* partitions. </p>
|
|
129
|
+
* <p>
|
|
130
|
+
* <i>Sample API Call</i>: </p>
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
Expression?: string;
|
|
134
|
+
/**
|
|
135
|
+
* <p>A continuation token, if this is not the first call to retrieve
|
|
136
|
+
* these partitions.</p>
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
NextToken?: string;
|
|
140
|
+
/**
|
|
141
|
+
* <p>The segment of the table's partitions to scan in this request.</p>
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
Segment?: Segment;
|
|
145
|
+
/**
|
|
146
|
+
* <p>The maximum number of partitions to return in a single response.</p>
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
149
|
+
MaxResults?: number;
|
|
150
|
+
/**
|
|
151
|
+
* <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>
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
154
|
+
ExcludeColumnSchema?: boolean;
|
|
155
|
+
/**
|
|
156
|
+
* <p>The transaction ID at which to read the partition contents.</p>
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
159
|
+
TransactionId?: string;
|
|
160
|
+
/**
|
|
161
|
+
* <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>
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
164
|
+
QueryAsOfTime?: Date;
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* @public
|
|
168
|
+
*/
|
|
169
|
+
export interface GetPartitionsResponse {
|
|
170
|
+
/**
|
|
171
|
+
* <p>A list of requested partitions.</p>
|
|
172
|
+
* @public
|
|
173
|
+
*/
|
|
174
|
+
Partitions?: Partition[];
|
|
175
|
+
/**
|
|
176
|
+
* <p>A continuation token, if the returned list of partitions does not include the last
|
|
177
|
+
* one.</p>
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
NextToken?: string;
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
185
|
+
export interface GetPlanRequest {
|
|
186
|
+
/**
|
|
187
|
+
* <p>The list of mappings from a source table to target tables.</p>
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
Mapping: MappingEntry[] | undefined;
|
|
191
|
+
/**
|
|
192
|
+
* <p>The source table.</p>
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
195
|
+
Source: CatalogEntry | undefined;
|
|
196
|
+
/**
|
|
197
|
+
* <p>The target tables.</p>
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
200
|
+
Sinks?: CatalogEntry[];
|
|
201
|
+
/**
|
|
202
|
+
* <p>The parameters for the mapping.</p>
|
|
203
|
+
* @public
|
|
204
|
+
*/
|
|
205
|
+
Location?: Location;
|
|
206
|
+
/**
|
|
207
|
+
* <p>The programming language of the code to perform the mapping.</p>
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
Language?: Language;
|
|
211
|
+
/**
|
|
212
|
+
* <p>A map to hold additional optional key-value parameters.</p>
|
|
213
|
+
* <p>Currently, these key-value pairs are supported:</p>
|
|
214
|
+
* <ul>
|
|
215
|
+
* <li>
|
|
216
|
+
* <p>
|
|
217
|
+
* <code>inferSchema</code> — Specifies whether to set <code>inferSchema</code> to true or false for the default script generated by an Glue job. For example, to set <code>inferSchema</code> to true, pass the following key value pair:</p>
|
|
218
|
+
* <p>
|
|
219
|
+
* <code>--additional-plan-options-map '\{"inferSchema":"true"\}'</code>
|
|
220
|
+
* </p>
|
|
221
|
+
* </li>
|
|
222
|
+
* </ul>
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
AdditionalPlanOptionsMap?: Record<string, string>;
|
|
226
|
+
}
|
|
5
227
|
/**
|
|
6
228
|
* @public
|
|
7
229
|
*/
|
|
@@ -32,8 +32,8 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
|
32
32
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
33
|
}) => import("@smithy/types").EndpointV2;
|
|
34
34
|
tls?: boolean | undefined;
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
35
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlueHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -32,8 +32,8 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
|
32
32
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
33
|
}) => import("@smithy/types").EndpointV2;
|
|
34
34
|
tls?: boolean | undefined;
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
35
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlueHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -31,8 +31,8 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
|
31
31
|
logger?: import("@smithy/types").Logger | undefined;
|
|
32
32
|
}) => import("@smithy/types").EndpointV2;
|
|
33
33
|
tls?: boolean | undefined;
|
|
34
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
34
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
36
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
37
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlueHttpAuthSchemeProvider;
|
|
38
38
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -1393,9 +1393,9 @@ export type GlueClientConfigType = Partial<
|
|
|
1393
1393
|
ClientDefaults &
|
|
1394
1394
|
RegionInputConfig &
|
|
1395
1395
|
EndpointInputConfig<EndpointParameters> &
|
|
1396
|
-
RetryInputConfig &
|
|
1397
1396
|
HostHeaderInputConfig &
|
|
1398
1397
|
UserAgentInputConfig &
|
|
1398
|
+
RetryInputConfig &
|
|
1399
1399
|
HttpAuthSchemeInputConfig &
|
|
1400
1400
|
ClientInputEndpointParameters;
|
|
1401
1401
|
export interface GlueClientConfig extends GlueClientConfigType {}
|
|
@@ -1405,9 +1405,9 @@ export type GlueClientResolvedConfigType =
|
|
|
1405
1405
|
RuntimeExtensionsConfig &
|
|
1406
1406
|
RegionResolvedConfig &
|
|
1407
1407
|
EndpointResolvedConfig<EndpointParameters> &
|
|
1408
|
-
RetryResolvedConfig &
|
|
1409
1408
|
HostHeaderResolvedConfig &
|
|
1410
1409
|
UserAgentResolvedConfig &
|
|
1410
|
+
RetryResolvedConfig &
|
|
1411
1411
|
HttpAuthSchemeResolvedConfig &
|
|
1412
1412
|
ClientResolvedEndpointParameters;
|
|
1413
1413
|
export interface GlueClientResolvedConfig
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
CreateClassifierRequest,
|
|
10
10
|
CreateClassifierResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface CreateClassifierCommandInput extends CreateClassifierRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
GetPartitionsRequest,
|
|
10
10
|
GetPartitionsResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface GetPartitionsCommandInput extends GetPartitionsRequest {}
|
|
@@ -5,8 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GlueClient";
|
|
8
|
-
import { GetPlanRequest } from "../models/
|
|
9
|
-
import { GetPlanResponse } from "../models/models_2";
|
|
8
|
+
import { GetPlanRequest, GetPlanResponse } from "../models/models_2";
|
|
10
9
|
export { __MetadataBearer };
|
|
11
10
|
export { $Command };
|
|
12
11
|
export interface GetPlanCommandInput extends GetPlanRequest {}
|
|
@@ -1177,10 +1177,24 @@ export interface RecipeReference {
|
|
|
1177
1177
|
RecipeArn: string | undefined;
|
|
1178
1178
|
RecipeVersion: string | undefined;
|
|
1179
1179
|
}
|
|
1180
|
+
export interface RecipeAction {
|
|
1181
|
+
Operation: string | undefined;
|
|
1182
|
+
Parameters?: Record<string, string>;
|
|
1183
|
+
}
|
|
1184
|
+
export interface ConditionExpression {
|
|
1185
|
+
Condition: string | undefined;
|
|
1186
|
+
Value?: string;
|
|
1187
|
+
TargetColumn: string | undefined;
|
|
1188
|
+
}
|
|
1189
|
+
export interface RecipeStep {
|
|
1190
|
+
Action: RecipeAction | undefined;
|
|
1191
|
+
ConditionExpressions?: ConditionExpression[];
|
|
1192
|
+
}
|
|
1180
1193
|
export interface Recipe {
|
|
1181
1194
|
Name: string | undefined;
|
|
1182
1195
|
Inputs: string[] | undefined;
|
|
1183
|
-
RecipeReference
|
|
1196
|
+
RecipeReference?: RecipeReference;
|
|
1197
|
+
RecipeSteps?: RecipeStep[];
|
|
1184
1198
|
}
|
|
1185
1199
|
export interface RedshiftSource {
|
|
1186
1200
|
Name: string | undefined;
|
|
@@ -2042,15 +2056,3 @@ export interface CreateJsonClassifierRequest {
|
|
|
2042
2056
|
Name: string | undefined;
|
|
2043
2057
|
JsonPath: string | undefined;
|
|
2044
2058
|
}
|
|
2045
|
-
export interface CreateXMLClassifierRequest {
|
|
2046
|
-
Classification: string | undefined;
|
|
2047
|
-
Name: string | undefined;
|
|
2048
|
-
RowTag?: string;
|
|
2049
|
-
}
|
|
2050
|
-
export interface CreateClassifierRequest {
|
|
2051
|
-
GrokClassifier?: CreateGrokClassifierRequest;
|
|
2052
|
-
XMLClassifier?: CreateXMLClassifierRequest;
|
|
2053
|
-
JsonClassifier?: CreateJsonClassifierRequest;
|
|
2054
|
-
CsvClassifier?: CreateCsvClassifierRequest;
|
|
2055
|
-
}
|
|
2056
|
-
export interface CreateClassifierResponse {}
|
|
@@ -9,6 +9,9 @@ import {
|
|
|
9
9
|
ConnectionsList,
|
|
10
10
|
Crawler,
|
|
11
11
|
CrawlerTargets,
|
|
12
|
+
CreateCsvClassifierRequest,
|
|
13
|
+
CreateGrokClassifierRequest,
|
|
14
|
+
CreateJsonClassifierRequest,
|
|
12
15
|
CsvHeaderOption,
|
|
13
16
|
CsvSerdeOption,
|
|
14
17
|
DataFormat,
|
|
@@ -37,6 +40,18 @@ import {
|
|
|
37
40
|
TriggerType,
|
|
38
41
|
WorkerType,
|
|
39
42
|
} from "./models_0";
|
|
43
|
+
export interface CreateXMLClassifierRequest {
|
|
44
|
+
Classification: string | undefined;
|
|
45
|
+
Name: string | undefined;
|
|
46
|
+
RowTag?: string;
|
|
47
|
+
}
|
|
48
|
+
export interface CreateClassifierRequest {
|
|
49
|
+
GrokClassifier?: CreateGrokClassifierRequest;
|
|
50
|
+
XMLClassifier?: CreateXMLClassifierRequest;
|
|
51
|
+
JsonClassifier?: CreateJsonClassifierRequest;
|
|
52
|
+
CsvClassifier?: CreateCsvClassifierRequest;
|
|
53
|
+
}
|
|
54
|
+
export interface CreateClassifierResponse {}
|
|
40
55
|
export declare const ConnectionPropertyKey: {
|
|
41
56
|
readonly CONFIG_FILES: "CONFIG_FILES";
|
|
42
57
|
readonly CONNECTION_URL: "CONNECTION_URL";
|
|
@@ -1738,27 +1753,3 @@ export interface Segment {
|
|
|
1738
1753
|
SegmentNumber: number | undefined;
|
|
1739
1754
|
TotalSegments: number | undefined;
|
|
1740
1755
|
}
|
|
1741
|
-
export interface GetPartitionsRequest {
|
|
1742
|
-
CatalogId?: string;
|
|
1743
|
-
DatabaseName: string | undefined;
|
|
1744
|
-
TableName: string | undefined;
|
|
1745
|
-
Expression?: string;
|
|
1746
|
-
NextToken?: string;
|
|
1747
|
-
Segment?: Segment;
|
|
1748
|
-
MaxResults?: number;
|
|
1749
|
-
ExcludeColumnSchema?: boolean;
|
|
1750
|
-
TransactionId?: string;
|
|
1751
|
-
QueryAsOfTime?: Date;
|
|
1752
|
-
}
|
|
1753
|
-
export interface GetPartitionsResponse {
|
|
1754
|
-
Partitions?: Partition[];
|
|
1755
|
-
NextToken?: string;
|
|
1756
|
-
}
|
|
1757
|
-
export interface GetPlanRequest {
|
|
1758
|
-
Mapping: MappingEntry[] | undefined;
|
|
1759
|
-
Source: CatalogEntry | undefined;
|
|
1760
|
-
Sinks?: CatalogEntry[];
|
|
1761
|
-
Location?: Location;
|
|
1762
|
-
Language?: Language;
|
|
1763
|
-
AdditionalPlanOptionsMap?: Record<string, string>;
|
|
1764
|
-
}
|
|
@@ -111,6 +111,7 @@ import {
|
|
|
111
111
|
WorkflowRun,
|
|
112
112
|
} from "./models_0";
|
|
113
113
|
import {
|
|
114
|
+
CatalogEntry,
|
|
114
115
|
ColumnStatistics,
|
|
115
116
|
Compatibility,
|
|
116
117
|
ConnectionInput,
|
|
@@ -120,6 +121,9 @@ import {
|
|
|
120
121
|
DataQualityTargetTable,
|
|
121
122
|
EncryptionConfiguration,
|
|
122
123
|
JobBookmarkEntry,
|
|
124
|
+
Language,
|
|
125
|
+
Location,
|
|
126
|
+
MappingEntry,
|
|
123
127
|
Permission,
|
|
124
128
|
PrincipalType,
|
|
125
129
|
ProfileConfiguration,
|
|
@@ -139,6 +143,30 @@ import {
|
|
|
139
143
|
UserDefinedFunctionInput,
|
|
140
144
|
ViewDialect,
|
|
141
145
|
} from "./models_1";
|
|
146
|
+
export interface GetPartitionsRequest {
|
|
147
|
+
CatalogId?: string;
|
|
148
|
+
DatabaseName: string | undefined;
|
|
149
|
+
TableName: string | undefined;
|
|
150
|
+
Expression?: string;
|
|
151
|
+
NextToken?: string;
|
|
152
|
+
Segment?: Segment;
|
|
153
|
+
MaxResults?: number;
|
|
154
|
+
ExcludeColumnSchema?: boolean;
|
|
155
|
+
TransactionId?: string;
|
|
156
|
+
QueryAsOfTime?: Date;
|
|
157
|
+
}
|
|
158
|
+
export interface GetPartitionsResponse {
|
|
159
|
+
Partitions?: Partition[];
|
|
160
|
+
NextToken?: string;
|
|
161
|
+
}
|
|
162
|
+
export interface GetPlanRequest {
|
|
163
|
+
Mapping: MappingEntry[] | undefined;
|
|
164
|
+
Source: CatalogEntry | undefined;
|
|
165
|
+
Sinks?: CatalogEntry[];
|
|
166
|
+
Location?: Location;
|
|
167
|
+
Language?: Language;
|
|
168
|
+
AdditionalPlanOptionsMap?: Record<string, string>;
|
|
169
|
+
}
|
|
142
170
|
export interface GetPlanResponse {
|
|
143
171
|
PythonScript?: string;
|
|
144
172
|
ScalaCode?: string;
|
|
@@ -56,11 +56,11 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
|
56
56
|
}
|
|
57
57
|
) => import("@smithy/types").EndpointV2;
|
|
58
58
|
tls?: boolean | undefined;
|
|
59
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
59
60
|
retryStrategy?:
|
|
60
61
|
| import("@smithy/types").RetryStrategy
|
|
61
62
|
| import("@smithy/types").RetryStrategyV2
|
|
62
63
|
| undefined;
|
|
63
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
64
64
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
65
65
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlueHttpAuthSchemeProvider;
|
|
66
66
|
credentials?:
|
|
@@ -60,11 +60,11 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
|
60
60
|
}
|
|
61
61
|
) => import("@smithy/types").EndpointV2;
|
|
62
62
|
tls?: boolean | undefined;
|
|
63
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
63
64
|
retryStrategy?:
|
|
64
65
|
| import("@smithy/types").RetryStrategy
|
|
65
66
|
| import("@smithy/types").RetryStrategyV2
|
|
66
67
|
| undefined;
|
|
67
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
68
68
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
69
69
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlueHttpAuthSchemeProvider;
|
|
70
70
|
credentials?:
|
|
@@ -50,11 +50,11 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
|
50
50
|
}
|
|
51
51
|
) => import("@smithy/types").EndpointV2;
|
|
52
52
|
tls?: boolean | undefined;
|
|
53
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
53
54
|
retryStrategy?:
|
|
54
55
|
| import("@smithy/types").RetryStrategy
|
|
55
56
|
| import("@smithy/types").RetryStrategyV2
|
|
56
57
|
| undefined;
|
|
57
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
58
58
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
59
59
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlueHttpAuthSchemeProvider;
|
|
60
60
|
credentials?:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glue",
|
|
3
3
|
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.616.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-glue",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.616.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.616.0",
|
|
25
|
+
"@aws-sdk/core": "3.616.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.616.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.616.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.616.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.616.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
32
32
|
"@aws-sdk/types": "3.609.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.614.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.2.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.5",
|
|
37
|
+
"@smithy/core": "^2.2.7",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.2",
|
|
39
39
|
"@smithy/hash-node": "^3.0.3",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.0.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.4",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.0.5",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.10",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.3",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.3",
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.1.
|
|
48
|
-
"@smithy/protocol-http": "^4.0.
|
|
49
|
-
"@smithy/smithy-client": "^3.1.
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.4",
|
|
47
|
+
"@smithy/node-http-handler": "^3.1.3",
|
|
48
|
+
"@smithy/protocol-http": "^4.0.4",
|
|
49
|
+
"@smithy/smithy-client": "^3.1.8",
|
|
50
50
|
"@smithy/types": "^3.3.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.3",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.10",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.10",
|
|
57
|
+
"@smithy/util-endpoints": "^2.0.5",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.3",
|
|
59
59
|
"@smithy/util-retry": "^3.0.3",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|