@aws-sdk/client-databrew 3.47.0 → 3.49.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,41 @@
|
|
|
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.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-databrew
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.48.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.2...v3.48.0) (2022-01-22)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** update clients as of 2022/01/21 ([#3228](https://github.com/aws/aws-sdk-js-v3/issues/3228)) ([fa713ef](https://github.com/aws/aws-sdk-js-v3/commit/fa713efca6b2f424c27535d000359f08830960b1))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [3.47.2](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.1...v3.47.2) (2022-01-21)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-databrew
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [3.47.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.0-release-test-1...v3.47.1) (2022-01-20)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @aws-sdk/client-databrew
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
# [3.47.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.46.0...v3.47.0) (2022-01-15)
|
|
7
42
|
|
|
8
43
|
|
|
@@ -4974,6 +4974,7 @@ const serializeAws_restJson1RuleList = (input, context) => {
|
|
|
4974
4974
|
const serializeAws_restJson1S3Location = (input, context) => {
|
|
4975
4975
|
return {
|
|
4976
4976
|
...(input.Bucket !== undefined && input.Bucket !== null && { Bucket: input.Bucket }),
|
|
4977
|
+
...(input.BucketOwner !== undefined && input.BucketOwner !== null && { BucketOwner: input.BucketOwner }),
|
|
4977
4978
|
...(input.Key !== undefined && input.Key !== null && { Key: input.Key }),
|
|
4978
4979
|
};
|
|
4979
4980
|
};
|
|
@@ -5802,6 +5803,7 @@ const deserializeAws_restJson1RulesetItemList = (output, context) => {
|
|
|
5802
5803
|
const deserializeAws_restJson1S3Location = (output, context) => {
|
|
5803
5804
|
return {
|
|
5804
5805
|
Bucket: smithy_client_1.expectString(output.Bucket),
|
|
5806
|
+
BucketOwner: smithy_client_1.expectString(output.BucketOwner),
|
|
5805
5807
|
Key: smithy_client_1.expectString(output.Key),
|
|
5806
5808
|
};
|
|
5807
5809
|
};
|
|
@@ -5553,7 +5553,7 @@ var serializeAws_restJson1RuleList = function (input, context) {
|
|
|
5553
5553
|
});
|
|
5554
5554
|
};
|
|
5555
5555
|
var serializeAws_restJson1S3Location = function (input, context) {
|
|
5556
|
-
return __assign(__assign({}, (input.Bucket !== undefined && input.Bucket !== null && { Bucket: input.Bucket })), (input.Key !== undefined && input.Key !== null && { Key: input.Key }));
|
|
5556
|
+
return __assign(__assign(__assign({}, (input.Bucket !== undefined && input.Bucket !== null && { Bucket: input.Bucket })), (input.BucketOwner !== undefined && input.BucketOwner !== null && { BucketOwner: input.BucketOwner })), (input.Key !== undefined && input.Key !== null && { Key: input.Key }));
|
|
5557
5557
|
};
|
|
5558
5558
|
var serializeAws_restJson1S3TableOutputOptions = function (input, context) {
|
|
5559
5559
|
return __assign({}, (input.Location !== undefined &&
|
|
@@ -6351,6 +6351,7 @@ var deserializeAws_restJson1RulesetItemList = function (output, context) {
|
|
|
6351
6351
|
var deserializeAws_restJson1S3Location = function (output, context) {
|
|
6352
6352
|
return {
|
|
6353
6353
|
Bucket: __expectString(output.Bucket),
|
|
6354
|
+
BucketOwner: __expectString(output.BucketOwner),
|
|
6354
6355
|
Key: __expectString(output.Key),
|
|
6355
6356
|
};
|
|
6356
6357
|
};
|
|
@@ -204,7 +204,7 @@ export declare namespace FormatOptions {
|
|
|
204
204
|
const filterSensitiveLog: (obj: FormatOptions) => any;
|
|
205
205
|
}
|
|
206
206
|
/**
|
|
207
|
-
* <p>Represents an Amazon S3 location (bucket name and object key) where DataBrew can read
|
|
207
|
+
* <p>Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read
|
|
208
208
|
* input data, or write output from a job.</p>
|
|
209
209
|
*/
|
|
210
210
|
export interface S3Location {
|
|
@@ -216,6 +216,10 @@ export interface S3Location {
|
|
|
216
216
|
* <p>The unique name of the object in the bucket.</p>
|
|
217
217
|
*/
|
|
218
218
|
Key?: string;
|
|
219
|
+
/**
|
|
220
|
+
* <p>The Amazon Web Services account ID of the bucket owner.</p>
|
|
221
|
+
*/
|
|
222
|
+
BucketOwner?: string;
|
|
219
223
|
}
|
|
220
224
|
export declare namespace S3Location {
|
|
221
225
|
/**
|
|
@@ -237,7 +241,7 @@ export interface DatabaseInputDefinition {
|
|
|
237
241
|
*/
|
|
238
242
|
DatabaseTableName?: string;
|
|
239
243
|
/**
|
|
240
|
-
* <p>Represents an Amazon S3 location (bucket name and object key) where DataBrew can read
|
|
244
|
+
* <p>Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read
|
|
241
245
|
* input data, or write output from a job.</p>
|
|
242
246
|
*/
|
|
243
247
|
TempDirectory?: S3Location;
|
|
@@ -864,7 +868,7 @@ export interface CreateProfileJobRequest {
|
|
|
864
868
|
*/
|
|
865
869
|
MaxRetries?: number;
|
|
866
870
|
/**
|
|
867
|
-
* <p>Represents an Amazon S3 location (bucket name and object key) where DataBrew can read
|
|
871
|
+
* <p>Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read
|
|
868
872
|
* input data, or write output from a job.</p>
|
|
869
873
|
*/
|
|
870
874
|
OutputLocation: S3Location | undefined;
|
|
@@ -1498,6 +1502,8 @@ export interface Rule {
|
|
|
1498
1502
|
* rule should be null. If ColumnSelectors has been defined, then there should be no
|
|
1499
1503
|
* columnn reference in the left side of a condition, for example,
|
|
1500
1504
|
* <code>is_between :val1 and :val2</code>.</p>
|
|
1505
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/databrew/latest/dg/profile.data-quality-available-checks.html">Available checks</a>
|
|
1506
|
+
* </p>
|
|
1501
1507
|
*/
|
|
1502
1508
|
CheckExpression: string | undefined;
|
|
1503
1509
|
/**
|
|
@@ -3668,7 +3674,7 @@ export interface UpdateProfileJobRequest {
|
|
|
3668
3674
|
*/
|
|
3669
3675
|
MaxRetries?: number;
|
|
3670
3676
|
/**
|
|
3671
|
-
* <p>Represents an Amazon S3 location (bucket name and object key) where DataBrew can read
|
|
3677
|
+
* <p>Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read
|
|
3672
3678
|
* input data, or write output from a job.</p>
|
|
3673
3679
|
*/
|
|
3674
3680
|
OutputLocation: S3Location | undefined;
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-databrew",
|
|
3
3
|
"description": "AWS SDK for JavaScript Databrew Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.49.0",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "yarn
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
8
|
"build:docs": "typedoc",
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
@@ -18,41 +18,47 @@
|
|
|
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.49.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.49.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.49.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.49.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.49.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.49.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.49.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.49.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.49.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.49.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.49.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.49.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.49.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.49.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.49.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.49.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.49.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.49.0",
|
|
39
|
+
"@aws-sdk/types": "3.49.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.49.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.49.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.49.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.49.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.49.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.49.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.49.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
-
"@
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.49.0",
|
|
55
|
+
"@tsconfig/recommended": "1.0.1",
|
|
56
|
+
"@types/node": "^12.7.5",
|
|
57
|
+
"concurrently": "7.0.0",
|
|
58
|
+
"downlevel-dts": "0.7.0",
|
|
59
|
+
"rimraf": "3.0.2",
|
|
60
|
+
"typedoc": "0.19.2",
|
|
61
|
+
"typescript": "~4.3.5"
|
|
56
62
|
},
|
|
57
63
|
"engines": {
|
|
58
64
|
"node": ">=12.0.0"
|