@aws-sdk/client-glue 3.983.0 → 3.985.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/README.md +14 -0
- package/dist-cjs/index.js +338 -70
- package/dist-es/Glue.js +4 -0
- package/dist-es/commands/DeleteConnectionTypeCommand.js +16 -0
- package/dist-es/commands/RegisterConnectionTypeCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +24 -0
- package/dist-es/schemas/schemas_0.js +256 -70
- package/dist-types/Glue.d.ts +14 -0
- package/dist-types/GlueClient.d.ts +4 -2
- package/dist-types/commands/DeleteConnectionTypeCommand.d.ts +91 -0
- package/dist-types/commands/DescribeConnectionTypeCommand.d.ts +156 -1
- package/dist-types/commands/DescribeEntityCommand.d.ts +1 -1
- package/dist-types/commands/GetMLTaskRunCommand.d.ts +2 -1
- package/dist-types/commands/GetMLTaskRunsCommand.d.ts +1 -1
- package/dist-types/commands/GetMLTransformCommand.d.ts +1 -2
- package/dist-types/commands/ListConnectionTypesCommand.d.ts +3 -1
- package/dist-types/commands/RegisterConnectionTypeCommand.d.ts +284 -0
- package/dist-types/commands/UpdateDevEndpointCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGlueIdentityCenterConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIntegrationResourcePropertyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIntegrationTablePropertiesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateJobCommand.d.ts +1 -2
- package/dist-types/commands/UpdateJobFromSourceControlCommand.d.ts +1 -1
- package/dist-types/commands/UpdateMLTransformCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePartitionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRegistryCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSchemaCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSourceControlFromJobCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +64 -0
- package/dist-types/models/models_0.d.ts +11 -1
- package/dist-types/models/models_1.d.ts +252 -368
- package/dist-types/models/models_2.d.ts +664 -599
- package/dist-types/models/models_3.d.ts +585 -4
- package/dist-types/schemas/schemas_0.d.ts +25 -0
- package/dist-types/ts3.4/Glue.d.ts +34 -0
- package/dist-types/ts3.4/GlueClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DeleteConnectionTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetMLTaskRunCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetMLTaskRunsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetMLTransformCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/RegisterConnectionTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDevEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateGlueIdentityCenterConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateIntegrationResourcePropertyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateIntegrationTablePropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/UpdateJobFromSourceControlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateMLTransformCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePartitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSourceControlFromJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +32 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/models/models_1.d.ts +63 -85
- package/dist-types/ts3.4/models/models_2.d.ts +161 -134
- package/dist-types/ts3.4/models/models_3.d.ts +141 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +25 -0
- package/package.json +13 -13
package/dist-es/Glue.js
CHANGED
|
@@ -58,6 +58,7 @@ import { DeleteColumnStatisticsForPartitionCommand, } from "./commands/DeleteCol
|
|
|
58
58
|
import { DeleteColumnStatisticsForTableCommand, } from "./commands/DeleteColumnStatisticsForTableCommand";
|
|
59
59
|
import { DeleteColumnStatisticsTaskSettingsCommand, } from "./commands/DeleteColumnStatisticsTaskSettingsCommand";
|
|
60
60
|
import { DeleteConnectionCommand, } from "./commands/DeleteConnectionCommand";
|
|
61
|
+
import { DeleteConnectionTypeCommand, } from "./commands/DeleteConnectionTypeCommand";
|
|
61
62
|
import { DeleteCrawlerCommand, } from "./commands/DeleteCrawlerCommand";
|
|
62
63
|
import { DeleteCustomEntityTypeCommand, } from "./commands/DeleteCustomEntityTypeCommand";
|
|
63
64
|
import { DeleteDatabaseCommand, } from "./commands/DeleteDatabaseCommand";
|
|
@@ -202,6 +203,7 @@ import { PutResourcePolicyCommand, } from "./commands/PutResourcePolicyCommand";
|
|
|
202
203
|
import { PutSchemaVersionMetadataCommand, } from "./commands/PutSchemaVersionMetadataCommand";
|
|
203
204
|
import { PutWorkflowRunPropertiesCommand, } from "./commands/PutWorkflowRunPropertiesCommand";
|
|
204
205
|
import { QuerySchemaVersionMetadataCommand, } from "./commands/QuerySchemaVersionMetadataCommand";
|
|
206
|
+
import { RegisterConnectionTypeCommand, } from "./commands/RegisterConnectionTypeCommand";
|
|
205
207
|
import { RegisterSchemaVersionCommand, } from "./commands/RegisterSchemaVersionCommand";
|
|
206
208
|
import { RemoveSchemaVersionMetadataCommand, } from "./commands/RemoveSchemaVersionMetadataCommand";
|
|
207
209
|
import { ResetJobBookmarkCommand, } from "./commands/ResetJobBookmarkCommand";
|
|
@@ -369,6 +371,7 @@ const commands = {
|
|
|
369
371
|
DeleteColumnStatisticsForTableCommand,
|
|
370
372
|
DeleteColumnStatisticsTaskSettingsCommand,
|
|
371
373
|
DeleteConnectionCommand,
|
|
374
|
+
DeleteConnectionTypeCommand,
|
|
372
375
|
DeleteCrawlerCommand,
|
|
373
376
|
DeleteCustomEntityTypeCommand,
|
|
374
377
|
DeleteDatabaseCommand,
|
|
@@ -513,6 +516,7 @@ const commands = {
|
|
|
513
516
|
PutSchemaVersionMetadataCommand,
|
|
514
517
|
PutWorkflowRunPropertiesCommand,
|
|
515
518
|
QuerySchemaVersionMetadataCommand,
|
|
519
|
+
RegisterConnectionTypeCommand,
|
|
516
520
|
RegisterSchemaVersionCommand,
|
|
517
521
|
RemoveSchemaVersionMetadataCommand,
|
|
518
522
|
ResetJobBookmarkCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteConnectionType$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteConnectionTypeCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGlue", "DeleteConnectionType", {})
|
|
13
|
+
.n("GlueClient", "DeleteConnectionTypeCommand")
|
|
14
|
+
.sc(DeleteConnectionType$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { RegisterConnectionType$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class RegisterConnectionTypeCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSGlue", "RegisterConnectionType", {})
|
|
13
|
+
.n("GlueClient", "RegisterConnectionTypeCommand")
|
|
14
|
+
.sc(RegisterConnectionType$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -57,6 +57,7 @@ export * from "./DeleteColumnStatisticsForPartitionCommand";
|
|
|
57
57
|
export * from "./DeleteColumnStatisticsForTableCommand";
|
|
58
58
|
export * from "./DeleteColumnStatisticsTaskSettingsCommand";
|
|
59
59
|
export * from "./DeleteConnectionCommand";
|
|
60
|
+
export * from "./DeleteConnectionTypeCommand";
|
|
60
61
|
export * from "./DeleteCrawlerCommand";
|
|
61
62
|
export * from "./DeleteCustomEntityTypeCommand";
|
|
62
63
|
export * from "./DeleteDataQualityRulesetCommand";
|
|
@@ -201,6 +202,7 @@ export * from "./PutResourcePolicyCommand";
|
|
|
201
202
|
export * from "./PutSchemaVersionMetadataCommand";
|
|
202
203
|
export * from "./PutWorkflowRunPropertiesCommand";
|
|
203
204
|
export * from "./QuerySchemaVersionMetadataCommand";
|
|
205
|
+
export * from "./RegisterConnectionTypeCommand";
|
|
204
206
|
export * from "./RegisterSchemaVersionCommand";
|
|
205
207
|
export * from "./RemoveSchemaVersionMetadataCommand";
|
|
206
208
|
export * from "./ResetJobBookmarkCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -32,6 +32,12 @@ export const DataOperation = {
|
|
|
32
32
|
READ: "READ",
|
|
33
33
|
WRITE: "WRITE",
|
|
34
34
|
};
|
|
35
|
+
export const PropertyLocation = {
|
|
36
|
+
BODY: "BODY",
|
|
37
|
+
HEADER: "HEADER",
|
|
38
|
+
PATH: "PATH",
|
|
39
|
+
QUERY_PARAM: "QUERY_PARAM",
|
|
40
|
+
};
|
|
35
41
|
export const PropertyType = {
|
|
36
42
|
READ_ONLY: "READ_ONLY",
|
|
37
43
|
SECRET: "SECRET",
|
|
@@ -705,6 +711,7 @@ export const RegistryStatus = {
|
|
|
705
711
|
export const FieldDataType = {
|
|
706
712
|
ARRAY: "ARRAY",
|
|
707
713
|
BIGINT: "BIGINT",
|
|
714
|
+
BINARY: "BINARY",
|
|
708
715
|
BOOLEAN: "BOOLEAN",
|
|
709
716
|
BYTE: "BYTE",
|
|
710
717
|
DATE: "DATE",
|
|
@@ -719,6 +726,11 @@ export const FieldDataType = {
|
|
|
719
726
|
STRING: "STRING",
|
|
720
727
|
STRUCT: "STRUCT",
|
|
721
728
|
TIMESTAMP: "TIMESTAMP",
|
|
729
|
+
UNION: "UNION",
|
|
730
|
+
};
|
|
731
|
+
export const HTTPMethod = {
|
|
732
|
+
GET: "GET",
|
|
733
|
+
POST: "POST",
|
|
722
734
|
};
|
|
723
735
|
export const FieldFilterOperator = {
|
|
724
736
|
BETWEEN: "BETWEEN",
|
|
@@ -911,6 +923,18 @@ export const ExistCondition = {
|
|
|
911
923
|
NONE: "NONE",
|
|
912
924
|
NOT_EXIST: "NOT_EXIST",
|
|
913
925
|
};
|
|
926
|
+
export const ContentType = {
|
|
927
|
+
APPLICATION_JSON: "APPLICATION_JSON",
|
|
928
|
+
URL_ENCODED: "URL_ENCODED",
|
|
929
|
+
};
|
|
930
|
+
export const ConnectorOAuth2GrantType = {
|
|
931
|
+
AUTHORIZATION_CODE: "AUTHORIZATION_CODE",
|
|
932
|
+
CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS",
|
|
933
|
+
JWT_BEARER: "JWT_BEARER",
|
|
934
|
+
};
|
|
935
|
+
export const IntegrationType = {
|
|
936
|
+
REST: "REST",
|
|
937
|
+
};
|
|
914
938
|
export const Comparator = {
|
|
915
939
|
EQUALS: "EQUALS",
|
|
916
940
|
GREATER_THAN: "GREATER_THAN",
|