@aws-sdk/client-glue 3.51.0 → 3.52.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 2022/02/18 ([#3335](https://github.com/aws/aws-sdk-js-v3/issues/3335)) ([717b06f](https://github.com/aws/aws-sdk-js-v3/commit/717b06fc43e9876a6f8040147b75ad5da38b1e0f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-glue
|
|
@@ -17763,6 +17763,7 @@ const serializeAws_json1_1UpdateTableRequest = (input, context) => {
|
|
|
17763
17763
|
...(input.TableInput !== undefined &&
|
|
17764
17764
|
input.TableInput !== null && { TableInput: serializeAws_json1_1TableInput(input.TableInput, context) }),
|
|
17765
17765
|
...(input.TransactionId !== undefined && input.TransactionId !== null && { TransactionId: input.TransactionId }),
|
|
17766
|
+
...(input.VersionId !== undefined && input.VersionId !== null && { VersionId: input.VersionId }),
|
|
17766
17767
|
};
|
|
17767
17768
|
};
|
|
17768
17769
|
const serializeAws_json1_1UpdateTriggerRequest = (input, context) => {
|
|
@@ -21157,6 +21158,7 @@ const deserializeAws_json1_1Table = (output, context) => {
|
|
|
21157
21158
|
UpdateTime: output.UpdateTime !== undefined && output.UpdateTime !== null
|
|
21158
21159
|
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.UpdateTime)))
|
|
21159
21160
|
: undefined,
|
|
21161
|
+
VersionId: smithy_client_1.expectString(output.VersionId),
|
|
21160
21162
|
ViewExpandedText: smithy_client_1.expectString(output.ViewExpandedText),
|
|
21161
21163
|
ViewOriginalText: smithy_client_1.expectString(output.ViewOriginalText),
|
|
21162
21164
|
};
|
|
@@ -18245,8 +18245,8 @@ var serializeAws_json1_1UpdateSchemaInput = function (input, context) {
|
|
|
18245
18245
|
}));
|
|
18246
18246
|
};
|
|
18247
18247
|
var serializeAws_json1_1UpdateTableRequest = function (input, context) {
|
|
18248
|
-
return __assign(__assign(__assign(__assign(__assign({}, (input.CatalogId !== undefined && input.CatalogId !== null && { CatalogId: input.CatalogId })), (input.DatabaseName !== undefined && input.DatabaseName !== null && { DatabaseName: input.DatabaseName })), (input.SkipArchive !== undefined && input.SkipArchive !== null && { SkipArchive: input.SkipArchive })), (input.TableInput !== undefined &&
|
|
18249
|
-
input.TableInput !== null && { TableInput: serializeAws_json1_1TableInput(input.TableInput, context) })), (input.TransactionId !== undefined && input.TransactionId !== null && { TransactionId: input.TransactionId }));
|
|
18248
|
+
return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.CatalogId !== undefined && input.CatalogId !== null && { CatalogId: input.CatalogId })), (input.DatabaseName !== undefined && input.DatabaseName !== null && { DatabaseName: input.DatabaseName })), (input.SkipArchive !== undefined && input.SkipArchive !== null && { SkipArchive: input.SkipArchive })), (input.TableInput !== undefined &&
|
|
18249
|
+
input.TableInput !== null && { TableInput: serializeAws_json1_1TableInput(input.TableInput, context) })), (input.TransactionId !== undefined && input.TransactionId !== null && { TransactionId: input.TransactionId })), (input.VersionId !== undefined && input.VersionId !== null && { VersionId: input.VersionId }));
|
|
18250
18250
|
};
|
|
18251
18251
|
var serializeAws_json1_1UpdateTriggerRequest = function (input, context) {
|
|
18252
18252
|
return __assign(__assign({}, (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.TriggerUpdate !== undefined &&
|
|
@@ -21609,6 +21609,7 @@ var deserializeAws_json1_1Table = function (output, context) {
|
|
|
21609
21609
|
UpdateTime: output.UpdateTime !== undefined && output.UpdateTime !== null
|
|
21610
21610
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.UpdateTime)))
|
|
21611
21611
|
: undefined,
|
|
21612
|
+
VersionId: __expectString(output.VersionId),
|
|
21612
21613
|
ViewExpandedText: __expectString(output.ViewExpandedText),
|
|
21613
21614
|
ViewOriginalText: __expectString(output.ViewOriginalText),
|
|
21614
21615
|
};
|
|
@@ -2596,6 +2596,7 @@ export interface Table {
|
|
|
2596
2596
|
* <p>The ID of the Data Catalog in which the table resides.</p>
|
|
2597
2597
|
*/
|
|
2598
2598
|
CatalogId?: string;
|
|
2599
|
+
VersionId?: string;
|
|
2599
2600
|
}
|
|
2600
2601
|
export declare namespace Table {
|
|
2601
2602
|
/**
|
|
@@ -5873,6 +5874,7 @@ export interface UpdateTableRequest {
|
|
|
5873
5874
|
* <p>The transaction ID at which to update the table contents. </p>
|
|
5874
5875
|
*/
|
|
5875
5876
|
TransactionId?: string;
|
|
5877
|
+
VersionId?: string;
|
|
5876
5878
|
}
|
|
5877
5879
|
export declare namespace UpdateTableRequest {
|
|
5878
5880
|
/**
|
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.52.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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,40 +18,40 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.52.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.52.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.52.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.52.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.52.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.52.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.52.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.52.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.52.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.52.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.52.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.52.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.52.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.52.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.52.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.52.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.52.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.52.0",
|
|
39
|
+
"@aws-sdk/types": "3.52.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.52.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.52.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.52.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.52.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.52.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
55
55
|
"@tsconfig/recommended": "1.0.1",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"concurrently": "7.0.0",
|