@aws-sdk/client-glue 3.301.0 → 3.305.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/models/models_0.js +434 -444
- package/dist-cjs/models/models_1.js +141 -154
- package/dist-cjs/models/models_2.js +41 -48
- package/dist-cjs/protocols/Aws_json1_1.js +126 -1
- package/dist-es/models/models_0.js +429 -442
- package/dist-es/models/models_1.js +140 -153
- package/dist-es/models/models_2.js +41 -48
- package/dist-es/protocols/Aws_json1_1.js +127 -2
- package/dist-types/commands/BatchGetPartitionCommand.d.ts +5 -0
- package/dist-types/commands/CreateDatabaseCommand.d.ts +7 -0
- package/dist-types/commands/CreateRegistryCommand.d.ts +1 -1
- package/dist-types/commands/CreateSchemaCommand.d.ts +1 -2
- package/dist-types/commands/GetDatabaseCommand.d.ts +3 -0
- package/dist-types/commands/GetDatabasesCommand.d.ts +1 -1
- package/dist-types/commands/GetPartitionCommand.d.ts +5 -0
- package/dist-types/commands/GetPartitionsCommand.d.ts +5 -0
- package/dist-types/commands/GetTableCommand.d.ts +5 -0
- package/dist-types/commands/GetTablesCommand.d.ts +5 -0
- package/dist-types/commands/GetUnfilteredPartitionMetadataCommand.d.ts +6 -0
- package/dist-types/commands/GetUnfilteredPartitionsMetadataCommand.d.ts +6 -0
- package/dist-types/commands/GetUnfilteredTableMetadataCommand.d.ts +6 -0
- package/dist-types/commands/GetWorkflowRunPropertiesCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkflowRunsCommand.d.ts +1 -1
- package/dist-types/commands/ImportCatalogToGlueCommand.d.ts +1 -1
- package/dist-types/commands/SearchTablesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataQualityRulesetCommand.d.ts +0 -1
- package/dist-types/commands/UpdateDatabaseCommand.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +741 -520
- package/dist-types/models/models_1.d.ts +437 -203
- package/dist-types/models/models_2.d.ts +149 -48
- package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetWorkflowRunPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetWorkflowRunsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ImportCatalogToGlueCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +510 -413
- package/dist-types/ts3.4/models/models_1.d.ts +213 -150
- package/dist-types/ts3.4/models/models_2.d.ts +76 -44
- package/package.json +34 -34
|
@@ -1,59 +1,60 @@
|
|
|
1
1
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
2
|
+
export const Compatibility = {
|
|
3
|
+
BACKWARD: "BACKWARD",
|
|
4
|
+
BACKWARD_ALL: "BACKWARD_ALL",
|
|
5
|
+
DISABLED: "DISABLED",
|
|
6
|
+
FORWARD: "FORWARD",
|
|
7
|
+
FORWARD_ALL: "FORWARD_ALL",
|
|
8
|
+
FULL: "FULL",
|
|
9
|
+
FULL_ALL: "FULL_ALL",
|
|
10
|
+
NONE: "NONE",
|
|
11
|
+
};
|
|
12
|
+
export const SchemaStatus = {
|
|
13
|
+
AVAILABLE: "AVAILABLE",
|
|
14
|
+
DELETING: "DELETING",
|
|
15
|
+
PENDING: "PENDING",
|
|
16
|
+
};
|
|
17
|
+
export const SchemaVersionStatus = {
|
|
18
|
+
AVAILABLE: "AVAILABLE",
|
|
19
|
+
DELETING: "DELETING",
|
|
20
|
+
FAILURE: "FAILURE",
|
|
21
|
+
PENDING: "PENDING",
|
|
22
|
+
};
|
|
23
|
+
export const Language = {
|
|
24
|
+
PYTHON: "PYTHON",
|
|
25
|
+
SCALA: "SCALA",
|
|
26
|
+
};
|
|
27
|
+
export const CloudWatchEncryptionMode = {
|
|
28
|
+
DISABLED: "DISABLED",
|
|
29
|
+
SSEKMS: "SSE-KMS",
|
|
30
|
+
};
|
|
31
|
+
export const JobBookmarksEncryptionMode = {
|
|
32
|
+
CSEKMS: "CSE-KMS",
|
|
33
|
+
DISABLED: "DISABLED",
|
|
34
|
+
};
|
|
35
|
+
export const S3EncryptionMode = {
|
|
36
|
+
DISABLED: "DISABLED",
|
|
37
|
+
SSEKMS: "SSE-KMS",
|
|
38
|
+
SSES3: "SSE-S3",
|
|
39
|
+
};
|
|
40
|
+
export const SessionStatus = {
|
|
41
|
+
FAILED: "FAILED",
|
|
42
|
+
PROVISIONING: "PROVISIONING",
|
|
43
|
+
READY: "READY",
|
|
44
|
+
STOPPED: "STOPPED",
|
|
45
|
+
STOPPING: "STOPPING",
|
|
46
|
+
TIMEOUT: "TIMEOUT",
|
|
47
|
+
};
|
|
48
|
+
export const PrincipalType = {
|
|
49
|
+
GROUP: "GROUP",
|
|
50
|
+
ROLE: "ROLE",
|
|
51
|
+
USER: "USER",
|
|
52
|
+
};
|
|
53
|
+
export const ResourceType = {
|
|
54
|
+
ARCHIVE: "ARCHIVE",
|
|
55
|
+
FILE: "FILE",
|
|
56
|
+
JAR: "JAR",
|
|
57
|
+
};
|
|
57
58
|
export class CrawlerRunningException extends __BaseException {
|
|
58
59
|
constructor(opts) {
|
|
59
60
|
super({
|
|
@@ -93,11 +94,10 @@ export class ConflictException extends __BaseException {
|
|
|
93
94
|
this.Message = opts.Message;
|
|
94
95
|
}
|
|
95
96
|
}
|
|
96
|
-
export
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
})(RegistryStatus || (RegistryStatus = {}));
|
|
97
|
+
export const RegistryStatus = {
|
|
98
|
+
AVAILABLE: "AVAILABLE",
|
|
99
|
+
DELETING: "DELETING",
|
|
100
|
+
};
|
|
101
101
|
export class ConditionCheckFailureException extends __BaseException {
|
|
102
102
|
constructor(opts) {
|
|
103
103
|
super({
|
|
@@ -111,99 +111,86 @@ export class ConditionCheckFailureException extends __BaseException {
|
|
|
111
111
|
this.Message = opts.Message;
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
|
-
export
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
}
|
|
166
|
-
export
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
}
|
|
182
|
-
export
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
(function (StatementState) {
|
|
195
|
-
StatementState["AVAILABLE"] = "AVAILABLE";
|
|
196
|
-
StatementState["CANCELLED"] = "CANCELLED";
|
|
197
|
-
StatementState["CANCELLING"] = "CANCELLING";
|
|
198
|
-
StatementState["ERROR"] = "ERROR";
|
|
199
|
-
StatementState["RUNNING"] = "RUNNING";
|
|
200
|
-
StatementState["WAITING"] = "WAITING";
|
|
201
|
-
})(StatementState || (StatementState = {}));
|
|
202
|
-
export var PermissionType;
|
|
203
|
-
(function (PermissionType) {
|
|
204
|
-
PermissionType["CELL_FILTER_PERMISSION"] = "CELL_FILTER_PERMISSION";
|
|
205
|
-
PermissionType["COLUMN_PERMISSION"] = "COLUMN_PERMISSION";
|
|
206
|
-
})(PermissionType || (PermissionType = {}));
|
|
114
|
+
export const BlueprintRunState = {
|
|
115
|
+
FAILED: "FAILED",
|
|
116
|
+
ROLLING_BACK: "ROLLING_BACK",
|
|
117
|
+
RUNNING: "RUNNING",
|
|
118
|
+
SUCCEEDED: "SUCCEEDED",
|
|
119
|
+
};
|
|
120
|
+
export const ColumnStatisticsType = {
|
|
121
|
+
BINARY: "BINARY",
|
|
122
|
+
BOOLEAN: "BOOLEAN",
|
|
123
|
+
DATE: "DATE",
|
|
124
|
+
DECIMAL: "DECIMAL",
|
|
125
|
+
DOUBLE: "DOUBLE",
|
|
126
|
+
LONG: "LONG",
|
|
127
|
+
STRING: "STRING",
|
|
128
|
+
};
|
|
129
|
+
export const ResourceShareType = {
|
|
130
|
+
ALL: "ALL",
|
|
131
|
+
FEDERATED: "FEDERATED",
|
|
132
|
+
FOREIGN: "FOREIGN",
|
|
133
|
+
};
|
|
134
|
+
export const CatalogEncryptionMode = {
|
|
135
|
+
DISABLED: "DISABLED",
|
|
136
|
+
SSEKMS: "SSE-KMS",
|
|
137
|
+
};
|
|
138
|
+
export const TaskType = {
|
|
139
|
+
EVALUATION: "EVALUATION",
|
|
140
|
+
EXPORT_LABELS: "EXPORT_LABELS",
|
|
141
|
+
FIND_MATCHES: "FIND_MATCHES",
|
|
142
|
+
IMPORT_LABELS: "IMPORT_LABELS",
|
|
143
|
+
LABELING_SET_GENERATION: "LABELING_SET_GENERATION",
|
|
144
|
+
};
|
|
145
|
+
export const TaskRunSortColumnType = {
|
|
146
|
+
STARTED: "STARTED",
|
|
147
|
+
STATUS: "STATUS",
|
|
148
|
+
TASK_RUN_TYPE: "TASK_RUN_TYPE",
|
|
149
|
+
};
|
|
150
|
+
export const SortDirectionType = {
|
|
151
|
+
ASCENDING: "ASCENDING",
|
|
152
|
+
DESCENDING: "DESCENDING",
|
|
153
|
+
};
|
|
154
|
+
export const TransformStatusType = {
|
|
155
|
+
DELETING: "DELETING",
|
|
156
|
+
NOT_READY: "NOT_READY",
|
|
157
|
+
READY: "READY",
|
|
158
|
+
};
|
|
159
|
+
export const TransformSortColumnType = {
|
|
160
|
+
CREATED: "CREATED",
|
|
161
|
+
LAST_MODIFIED: "LAST_MODIFIED",
|
|
162
|
+
NAME: "NAME",
|
|
163
|
+
STATUS: "STATUS",
|
|
164
|
+
TRANSFORM_TYPE: "TRANSFORM_TYPE",
|
|
165
|
+
};
|
|
166
|
+
export const BackfillErrorCode = {
|
|
167
|
+
ENCRYPTED_PARTITION_ERROR: "ENCRYPTED_PARTITION_ERROR",
|
|
168
|
+
INTERNAL_ERROR: "INTERNAL_ERROR",
|
|
169
|
+
INVALID_PARTITION_TYPE_DATA_ERROR: "INVALID_PARTITION_TYPE_DATA_ERROR",
|
|
170
|
+
MISSING_PARTITION_VALUE_ERROR: "MISSING_PARTITION_VALUE_ERROR",
|
|
171
|
+
UNSUPPORTED_PARTITION_CHARACTER_ERROR: "UNSUPPORTED_PARTITION_CHARACTER_ERROR",
|
|
172
|
+
};
|
|
173
|
+
export const PartitionIndexStatus = {
|
|
174
|
+
ACTIVE: "ACTIVE",
|
|
175
|
+
CREATING: "CREATING",
|
|
176
|
+
DELETING: "DELETING",
|
|
177
|
+
FAILED: "FAILED",
|
|
178
|
+
};
|
|
179
|
+
export const SchemaDiffType = {
|
|
180
|
+
SYNTAX_DIFF: "SYNTAX_DIFF",
|
|
181
|
+
};
|
|
182
|
+
export const StatementState = {
|
|
183
|
+
AVAILABLE: "AVAILABLE",
|
|
184
|
+
CANCELLED: "CANCELLED",
|
|
185
|
+
CANCELLING: "CANCELLING",
|
|
186
|
+
ERROR: "ERROR",
|
|
187
|
+
RUNNING: "RUNNING",
|
|
188
|
+
WAITING: "WAITING",
|
|
189
|
+
};
|
|
190
|
+
export const PermissionType = {
|
|
191
|
+
CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION",
|
|
192
|
+
COLUMN_PERMISSION: "COLUMN_PERMISSION",
|
|
193
|
+
};
|
|
207
194
|
export class PermissionTypeMismatchException extends __BaseException {
|
|
208
195
|
constructor(opts) {
|
|
209
196
|
super({
|
|
@@ -1,40 +1,35 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
|
-
export
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
(function (ExistCondition) {
|
|
34
|
-
ExistCondition["MUST_EXIST"] = "MUST_EXIST";
|
|
35
|
-
ExistCondition["NONE"] = "NONE";
|
|
36
|
-
ExistCondition["NOT_EXIST"] = "NOT_EXIST";
|
|
37
|
-
})(ExistCondition || (ExistCondition = {}));
|
|
3
|
+
export const FieldName = {
|
|
4
|
+
CRAWL_ID: "CRAWL_ID",
|
|
5
|
+
DPU_HOUR: "DPU_HOUR",
|
|
6
|
+
END_TIME: "END_TIME",
|
|
7
|
+
START_TIME: "START_TIME",
|
|
8
|
+
STATE: "STATE",
|
|
9
|
+
};
|
|
10
|
+
export const FilterOperator = {
|
|
11
|
+
EQ: "EQ",
|
|
12
|
+
GE: "GE",
|
|
13
|
+
GT: "GT",
|
|
14
|
+
LE: "LE",
|
|
15
|
+
LT: "LT",
|
|
16
|
+
NE: "NE",
|
|
17
|
+
};
|
|
18
|
+
export const CrawlerHistoryState = {
|
|
19
|
+
COMPLETED: "COMPLETED",
|
|
20
|
+
FAILED: "FAILED",
|
|
21
|
+
RUNNING: "RUNNING",
|
|
22
|
+
STOPPED: "STOPPED",
|
|
23
|
+
};
|
|
24
|
+
export const EnableHybridValues = {
|
|
25
|
+
FALSE: "FALSE",
|
|
26
|
+
TRUE: "TRUE",
|
|
27
|
+
};
|
|
28
|
+
export const ExistCondition = {
|
|
29
|
+
MUST_EXIST: "MUST_EXIST",
|
|
30
|
+
NONE: "NONE",
|
|
31
|
+
NOT_EXIST: "NOT_EXIST",
|
|
32
|
+
};
|
|
38
33
|
export class ConcurrentRunsExceededException extends __BaseException {
|
|
39
34
|
constructor(opts) {
|
|
40
35
|
super({
|
|
@@ -61,19 +56,17 @@ export class IllegalWorkflowStateException extends __BaseException {
|
|
|
61
56
|
this.Message = opts.Message;
|
|
62
57
|
}
|
|
63
58
|
}
|
|
64
|
-
export
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
Sort["DESCENDING"] = "DESC";
|
|
76
|
-
})(Sort || (Sort = {}));
|
|
59
|
+
export const Comparator = {
|
|
60
|
+
EQUALS: "EQUALS",
|
|
61
|
+
GREATER_THAN: "GREATER_THAN",
|
|
62
|
+
GREATER_THAN_EQUALS: "GREATER_THAN_EQUALS",
|
|
63
|
+
LESS_THAN: "LESS_THAN",
|
|
64
|
+
LESS_THAN_EQUALS: "LESS_THAN_EQUALS",
|
|
65
|
+
};
|
|
66
|
+
export const Sort = {
|
|
67
|
+
ASCENDING: "ASC",
|
|
68
|
+
DESCENDING: "DESC",
|
|
69
|
+
};
|
|
77
70
|
export class IllegalBlueprintStateException extends __BaseException {
|
|
78
71
|
constructor(opts) {
|
|
79
72
|
super({
|