@aws-sdk/client-glue 3.216.0 → 3.219.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/commands/CreateUserDefinedFunctionCommand.js +3 -3
- package/dist-cjs/commands/PutSchemaVersionMetadataCommand.js +3 -3
- package/dist-cjs/commands/PutWorkflowRunPropertiesCommand.js +1 -2
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +24 -18
- package/dist-cjs/models/models_1.js +18 -18
- package/dist-cjs/models/models_2.js +15 -3
- package/dist-cjs/protocols/Aws_json1_1.js +72 -0
- package/dist-es/commands/CreateUserDefinedFunctionCommand.js +1 -1
- package/dist-es/commands/PutSchemaVersionMetadataCommand.js +1 -1
- package/dist-es/commands/PutWorkflowRunPropertiesCommand.js +1 -2
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +16 -9
- package/dist-es/models/models_1.js +9 -9
- package/dist-es/models/models_2.js +9 -0
- package/dist-es/protocols/Aws_json1_1.js +72 -0
- package/dist-types/Glue.d.ts +22 -52
- package/dist-types/commands/CreateCustomEntityTypeCommand.d.ts +1 -2
- package/dist-types/commands/CreateMLTransformCommand.d.ts +1 -3
- package/dist-types/commands/CreateUserDefinedFunctionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteColumnStatisticsForPartitionCommand.d.ts +1 -2
- package/dist-types/commands/DeleteColumnStatisticsForTableCommand.d.ts +1 -2
- package/dist-types/commands/GetColumnStatisticsForPartitionCommand.d.ts +1 -2
- package/dist-types/commands/GetColumnStatisticsForTableCommand.d.ts +0 -1
- package/dist-types/commands/GetJobBookmarkCommand.d.ts +2 -4
- package/dist-types/commands/GetMLTaskRunsCommand.d.ts +1 -2
- package/dist-types/commands/ListCrawlersCommand.d.ts +0 -1
- package/dist-types/commands/ListCrawlsCommand.d.ts +2 -3
- package/dist-types/commands/ListDevEndpointsCommand.d.ts +0 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -2
- package/dist-types/commands/ListTriggersCommand.d.ts +0 -1
- package/dist-types/commands/PutSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/commands/PutWorkflowRunPropertiesCommand.d.ts +1 -2
- package/dist-types/commands/RegisterSchemaVersionCommand.d.ts +1 -1
- package/dist-types/commands/ResetJobBookmarkCommand.d.ts +2 -4
- package/dist-types/commands/StartImportLabelsTaskRunCommand.d.ts +0 -3
- package/dist-types/commands/StartMLEvaluationTaskRunCommand.d.ts +2 -4
- package/dist-types/commands/StartMLLabelingSetGenerationTaskRunCommand.d.ts +1 -4
- package/dist-types/commands/UpdateColumnStatisticsForPartitionCommand.d.ts +0 -1
- package/dist-types/commands/UpdateColumnStatisticsForTableCommand.d.ts +1 -2
- package/dist-types/commands/UpdateJobFromSourceControlCommand.d.ts +1 -2
- package/dist-types/commands/UpdateMLTransformCommand.d.ts +0 -1
- package/dist-types/commands/UpdateSchemaCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSourceControlFromJobCommand.d.ts +1 -2
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +132 -161
- package/dist-types/models/models_1.d.ts +89 -132
- package/dist-types/models/models_2.d.ts +111 -67
- package/dist-types/ts3.4/commands/CreateUserDefinedFunctionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutWorkflowRunPropertiesCommand.d.ts +4 -2
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +33 -22
- package/dist-types/ts3.4/models/models_1.d.ts +22 -30
- package/dist-types/ts3.4/models/models_2.d.ts +33 -1
- package/package.json +3 -3
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
DropDuplicates,
|
|
21
21
|
DropFields,
|
|
22
22
|
DropNullFields,
|
|
23
|
+
DynamicTransform,
|
|
23
24
|
DynamoDBCatalogSource,
|
|
24
25
|
ErrorDetail,
|
|
25
26
|
EventBatchingCondition,
|
|
@@ -78,7 +79,6 @@ import {
|
|
|
78
79
|
TransformParameters,
|
|
79
80
|
Trigger,
|
|
80
81
|
Union,
|
|
81
|
-
UserDefinedFunctionInput,
|
|
82
82
|
WorkerType,
|
|
83
83
|
} from "./models_0";
|
|
84
84
|
import {
|
|
@@ -88,7 +88,29 @@ import {
|
|
|
88
88
|
ResourceShareType,
|
|
89
89
|
SchemaVersionNumber,
|
|
90
90
|
Table,
|
|
91
|
+
UserDefinedFunctionInput,
|
|
91
92
|
} from "./models_1";
|
|
93
|
+
export interface PutSchemaVersionMetadataInput {
|
|
94
|
+
SchemaId?: SchemaId;
|
|
95
|
+
SchemaVersionNumber?: SchemaVersionNumber;
|
|
96
|
+
SchemaVersionId?: string;
|
|
97
|
+
MetadataKeyValue: MetadataKeyValuePair | undefined;
|
|
98
|
+
}
|
|
99
|
+
export interface PutSchemaVersionMetadataResponse {
|
|
100
|
+
SchemaArn?: string;
|
|
101
|
+
SchemaName?: string;
|
|
102
|
+
RegistryName?: string;
|
|
103
|
+
LatestVersion?: boolean;
|
|
104
|
+
VersionNumber?: number;
|
|
105
|
+
SchemaVersionId?: string;
|
|
106
|
+
MetadataKey?: string;
|
|
107
|
+
MetadataValue?: string;
|
|
108
|
+
}
|
|
109
|
+
export interface PutWorkflowRunPropertiesRequest {
|
|
110
|
+
Name: string | undefined;
|
|
111
|
+
RunId: string | undefined;
|
|
112
|
+
RunProperties: Record<string, string> | undefined;
|
|
113
|
+
}
|
|
92
114
|
export interface PutWorkflowRunPropertiesResponse {}
|
|
93
115
|
export interface QuerySchemaVersionMetadataInput {
|
|
94
116
|
SchemaId?: SchemaId;
|
|
@@ -677,6 +699,7 @@ export interface CodeGenConfigurationNode {
|
|
|
677
699
|
MySQLCatalogTarget?: MySQLCatalogTarget;
|
|
678
700
|
OracleSQLCatalogTarget?: OracleSQLCatalogTarget;
|
|
679
701
|
PostgreSQLCatalogTarget?: PostgreSQLCatalogTarget;
|
|
702
|
+
DynamicTransform?: DynamicTransform;
|
|
680
703
|
}
|
|
681
704
|
export interface CreateJobRequest {
|
|
682
705
|
Name: string | undefined;
|
|
@@ -764,6 +787,15 @@ export interface GetJobsResponse {
|
|
|
764
787
|
Jobs?: Job[];
|
|
765
788
|
NextToken?: string;
|
|
766
789
|
}
|
|
790
|
+
export declare const PutSchemaVersionMetadataInputFilterSensitiveLog: (
|
|
791
|
+
obj: PutSchemaVersionMetadataInput
|
|
792
|
+
) => any;
|
|
793
|
+
export declare const PutSchemaVersionMetadataResponseFilterSensitiveLog: (
|
|
794
|
+
obj: PutSchemaVersionMetadataResponse
|
|
795
|
+
) => any;
|
|
796
|
+
export declare const PutWorkflowRunPropertiesRequestFilterSensitiveLog: (
|
|
797
|
+
obj: PutWorkflowRunPropertiesRequest
|
|
798
|
+
) => any;
|
|
767
799
|
export declare const PutWorkflowRunPropertiesResponseFilterSensitiveLog: (
|
|
768
800
|
obj: PutWorkflowRunPropertiesResponse
|
|
769
801
|
) => any;
|
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.219.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",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.218.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.215.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.218.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.215.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.215.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.215.0",
|