@aws-sdk/client-glue 3.329.0 → 3.332.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/protocols/Aws_json1_1.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +4 -0
- package/dist-types/commands/BatchGetJobsCommand.d.ts +102 -0
- package/dist-types/commands/CreateJobCommand.d.ts +102 -0
- package/dist-types/commands/CreatePartitionCommand.d.ts +1 -1
- package/dist-types/commands/CreatePartitionIndexCommand.d.ts +1 -1
- package/dist-types/commands/GetJobCommand.d.ts +102 -0
- package/dist-types/commands/GetJobsCommand.d.ts +102 -0
- package/dist-types/commands/GetUserDefinedFunctionsCommand.d.ts +2 -1
- package/dist-types/commands/GetWorkflowCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkflowRunCommand.d.ts +1 -1
- package/dist-types/commands/UpdateJobCommand.d.ts +102 -0
- package/dist-types/models/models_0.d.ts +178 -68
- package/dist-types/models/models_1.d.ts +69 -63
- package/dist-types/models/models_2.d.ts +72 -2
- package/dist-types/ts3.4/commands/CreatePartitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreatePartitionIndexCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetUserDefinedFunctionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +47 -18
- package/dist-types/ts3.4/models/models_1.d.ts +19 -22
- package/dist-types/ts3.4/models/models_2.d.ts +25 -0
- package/package.json +5 -5
|
@@ -55,6 +55,52 @@ export declare class AlreadyExistsException extends __BaseException {
|
|
|
55
55
|
opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
|
|
56
56
|
);
|
|
57
57
|
}
|
|
58
|
+
export interface AmazonRedshiftAdvancedOption {
|
|
59
|
+
Key?: string;
|
|
60
|
+
Value?: string;
|
|
61
|
+
}
|
|
62
|
+
export interface Option {
|
|
63
|
+
Value?: string;
|
|
64
|
+
Label?: string;
|
|
65
|
+
Description?: string;
|
|
66
|
+
}
|
|
67
|
+
export interface AmazonRedshiftNodeData {
|
|
68
|
+
AccessType?: string;
|
|
69
|
+
SourceType?: string;
|
|
70
|
+
Connection?: Option;
|
|
71
|
+
Schema?: Option;
|
|
72
|
+
Table?: Option;
|
|
73
|
+
CatalogDatabase?: Option;
|
|
74
|
+
CatalogTable?: Option;
|
|
75
|
+
CatalogRedshiftSchema?: string;
|
|
76
|
+
CatalogRedshiftTable?: string;
|
|
77
|
+
TempDir?: string;
|
|
78
|
+
IamRole?: Option;
|
|
79
|
+
AdvancedOptions?: AmazonRedshiftAdvancedOption[];
|
|
80
|
+
SampleQuery?: string;
|
|
81
|
+
PreAction?: string;
|
|
82
|
+
PostAction?: string;
|
|
83
|
+
Action?: string;
|
|
84
|
+
TablePrefix?: string;
|
|
85
|
+
Upsert?: boolean;
|
|
86
|
+
MergeAction?: string;
|
|
87
|
+
MergeWhenMatched?: string;
|
|
88
|
+
MergeWhenNotMatched?: string;
|
|
89
|
+
MergeClause?: string;
|
|
90
|
+
CrawlerConnection?: string;
|
|
91
|
+
TableSchema?: Option[];
|
|
92
|
+
StagingTable?: string;
|
|
93
|
+
SelectedColumns?: Option[];
|
|
94
|
+
}
|
|
95
|
+
export interface AmazonRedshiftSource {
|
|
96
|
+
Name?: string;
|
|
97
|
+
Data?: AmazonRedshiftNodeData;
|
|
98
|
+
}
|
|
99
|
+
export interface AmazonRedshiftTarget {
|
|
100
|
+
Name?: string;
|
|
101
|
+
Data?: AmazonRedshiftNodeData;
|
|
102
|
+
Inputs?: string[];
|
|
103
|
+
}
|
|
58
104
|
export interface GlueStudioSchemaColumn {
|
|
59
105
|
Name: string | undefined;
|
|
60
106
|
Type?: string;
|
|
@@ -732,6 +778,7 @@ export interface DynamicTransform {
|
|
|
732
778
|
FunctionName: string | undefined;
|
|
733
779
|
Path: string | undefined;
|
|
734
780
|
Version?: string;
|
|
781
|
+
OutputSchemas?: GlueSchema[];
|
|
735
782
|
}
|
|
736
783
|
export interface DynamoDBCatalogSource {
|
|
737
784
|
Name: string | undefined;
|
|
@@ -2040,21 +2087,3 @@ export interface CreateMLTransformRequest {
|
|
|
2040
2087
|
export interface CreateMLTransformResponse {
|
|
2041
2088
|
TransformId?: string;
|
|
2042
2089
|
}
|
|
2043
|
-
export interface CreatePartitionRequest {
|
|
2044
|
-
CatalogId?: string;
|
|
2045
|
-
DatabaseName: string | undefined;
|
|
2046
|
-
TableName: string | undefined;
|
|
2047
|
-
PartitionInput: PartitionInput | undefined;
|
|
2048
|
-
}
|
|
2049
|
-
export interface CreatePartitionResponse {}
|
|
2050
|
-
export interface PartitionIndex {
|
|
2051
|
-
Keys: string[] | undefined;
|
|
2052
|
-
IndexName: string | undefined;
|
|
2053
|
-
}
|
|
2054
|
-
export interface CreatePartitionIndexRequest {
|
|
2055
|
-
CatalogId?: string;
|
|
2056
|
-
DatabaseName: string | undefined;
|
|
2057
|
-
TableName: string | undefined;
|
|
2058
|
-
PartitionIndex: PartitionIndex | undefined;
|
|
2059
|
-
}
|
|
2060
|
-
export interface CreatePartitionIndexResponse {}
|
|
@@ -21,7 +21,7 @@ import {
|
|
|
21
21
|
GlueTable,
|
|
22
22
|
JobRun,
|
|
23
23
|
Partition,
|
|
24
|
-
|
|
24
|
+
PartitionInput,
|
|
25
25
|
PartitionValueList,
|
|
26
26
|
PhysicalConnectionRequirements,
|
|
27
27
|
Predicate,
|
|
@@ -35,9 +35,25 @@ import {
|
|
|
35
35
|
Trigger,
|
|
36
36
|
TriggerType,
|
|
37
37
|
WorkerType,
|
|
38
|
-
Workflow,
|
|
39
|
-
WorkflowRun,
|
|
40
38
|
} from "./models_0";
|
|
39
|
+
export interface CreatePartitionRequest {
|
|
40
|
+
CatalogId?: string;
|
|
41
|
+
DatabaseName: string | undefined;
|
|
42
|
+
TableName: string | undefined;
|
|
43
|
+
PartitionInput: PartitionInput | undefined;
|
|
44
|
+
}
|
|
45
|
+
export interface CreatePartitionResponse {}
|
|
46
|
+
export interface PartitionIndex {
|
|
47
|
+
Keys: string[] | undefined;
|
|
48
|
+
IndexName: string | undefined;
|
|
49
|
+
}
|
|
50
|
+
export interface CreatePartitionIndexRequest {
|
|
51
|
+
CatalogId?: string;
|
|
52
|
+
DatabaseName: string | undefined;
|
|
53
|
+
TableName: string | undefined;
|
|
54
|
+
PartitionIndex: PartitionIndex | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface CreatePartitionIndexResponse {}
|
|
41
57
|
export interface CreateRegistryInput {
|
|
42
58
|
RegistryName: string | undefined;
|
|
43
59
|
Description?: string;
|
|
@@ -1635,22 +1651,3 @@ export interface GetUserDefinedFunctionsRequest {
|
|
|
1635
1651
|
NextToken?: string;
|
|
1636
1652
|
MaxResults?: number;
|
|
1637
1653
|
}
|
|
1638
|
-
export interface GetUserDefinedFunctionsResponse {
|
|
1639
|
-
UserDefinedFunctions?: UserDefinedFunction[];
|
|
1640
|
-
NextToken?: string;
|
|
1641
|
-
}
|
|
1642
|
-
export interface GetWorkflowRequest {
|
|
1643
|
-
Name: string | undefined;
|
|
1644
|
-
IncludeGraph?: boolean;
|
|
1645
|
-
}
|
|
1646
|
-
export interface GetWorkflowResponse {
|
|
1647
|
-
Workflow?: Workflow;
|
|
1648
|
-
}
|
|
1649
|
-
export interface GetWorkflowRunRequest {
|
|
1650
|
-
Name: string | undefined;
|
|
1651
|
-
RunId: string | undefined;
|
|
1652
|
-
IncludeGraph?: boolean;
|
|
1653
|
-
}
|
|
1654
|
-
export interface GetWorkflowRunResponse {
|
|
1655
|
-
Run?: WorkflowRun;
|
|
1656
|
-
}
|
|
@@ -3,6 +3,8 @@ import { GlueServiceException as __BaseException } from "./GlueServiceException"
|
|
|
3
3
|
import {
|
|
4
4
|
Action,
|
|
5
5
|
Aggregate,
|
|
6
|
+
AmazonRedshiftSource,
|
|
7
|
+
AmazonRedshiftTarget,
|
|
6
8
|
AthenaConnectorSource,
|
|
7
9
|
BasicCatalogTarget,
|
|
8
10
|
CatalogDeltaSource,
|
|
@@ -92,6 +94,7 @@ import {
|
|
|
92
94
|
Trigger,
|
|
93
95
|
Union,
|
|
94
96
|
WorkerType,
|
|
97
|
+
Workflow,
|
|
95
98
|
WorkflowRun,
|
|
96
99
|
} from "./models_0";
|
|
97
100
|
import {
|
|
@@ -112,8 +115,28 @@ import {
|
|
|
112
115
|
TableInput,
|
|
113
116
|
TransformFilterCriteria,
|
|
114
117
|
TransformSortCriteria,
|
|
118
|
+
UserDefinedFunction,
|
|
115
119
|
UserDefinedFunctionInput,
|
|
116
120
|
} from "./models_1";
|
|
121
|
+
export interface GetUserDefinedFunctionsResponse {
|
|
122
|
+
UserDefinedFunctions?: UserDefinedFunction[];
|
|
123
|
+
NextToken?: string;
|
|
124
|
+
}
|
|
125
|
+
export interface GetWorkflowRequest {
|
|
126
|
+
Name: string | undefined;
|
|
127
|
+
IncludeGraph?: boolean;
|
|
128
|
+
}
|
|
129
|
+
export interface GetWorkflowResponse {
|
|
130
|
+
Workflow?: Workflow;
|
|
131
|
+
}
|
|
132
|
+
export interface GetWorkflowRunRequest {
|
|
133
|
+
Name: string | undefined;
|
|
134
|
+
RunId: string | undefined;
|
|
135
|
+
IncludeGraph?: boolean;
|
|
136
|
+
}
|
|
137
|
+
export interface GetWorkflowRunResponse {
|
|
138
|
+
Run?: WorkflowRun;
|
|
139
|
+
}
|
|
117
140
|
export interface GetWorkflowRunPropertiesRequest {
|
|
118
141
|
Name: string | undefined;
|
|
119
142
|
RunId: string | undefined;
|
|
@@ -1111,6 +1134,8 @@ export interface CodeGenConfigurationNode {
|
|
|
1111
1134
|
S3DeltaSource?: S3DeltaSource;
|
|
1112
1135
|
S3DeltaCatalogTarget?: S3DeltaCatalogTarget;
|
|
1113
1136
|
S3DeltaDirectTarget?: S3DeltaDirectTarget;
|
|
1137
|
+
AmazonRedshiftSource?: AmazonRedshiftSource;
|
|
1138
|
+
AmazonRedshiftTarget?: AmazonRedshiftTarget;
|
|
1114
1139
|
}
|
|
1115
1140
|
export interface CreateJobRequest {
|
|
1116
1141
|
Name: string | undefined;
|
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.332.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.332.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.329.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.332.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.329.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.329.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.329.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.329.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.329.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.329.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.332.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.329.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.329.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.329.0",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.329.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.329.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.332.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.329.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.329.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.329.0",
|