@aws-sdk/client-databrew 3.58.0 → 3.72.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,33 @@
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.72.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.71.0...v3.72.0) (2022-04-15)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-databrew
9
+
10
+
11
+
12
+
13
+
14
+ # [3.67.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.66.0...v3.67.0) (2022-04-08)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-databrew
17
+
18
+
19
+
20
+
21
+
22
+ # [3.61.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.60.0...v3.61.0) (2022-03-31)
23
+
24
+
25
+ ### Features
26
+
27
+ * **client-databrew:** This AWS Glue Databrew release adds feature to support ORC as an input format. ([4ed643b](https://github.com/aws/aws-sdk-js-v3/commit/4ed643bee6af76efa1cce53743a58ec001128401))
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.58.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.57.0...v3.58.0) (2022-03-28)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-databrew
package/README.md CHANGED
@@ -118,7 +118,7 @@ but they are supported by the send operation.
118
118
  ```js
119
119
  // callbacks.
120
120
  client.send(command, (err, data) => {
121
- // proccess err and data.
121
+ // process err and data.
122
122
  });
123
123
  ```
124
124
 
@@ -152,7 +152,7 @@ client
152
152
 
153
153
  // callbacks.
154
154
  client.batchDeleteRecipeVersion(params, (err, data) => {
155
- // proccess err and data.
155
+ // process err and data.
156
156
  });
157
157
  ```
158
158
 
@@ -96,6 +96,7 @@ var InputFormat;
96
96
  InputFormat["CSV"] = "CSV";
97
97
  InputFormat["EXCEL"] = "EXCEL";
98
98
  InputFormat["JSON"] = "JSON";
99
+ InputFormat["ORC"] = "ORC";
99
100
  InputFormat["PARQUET"] = "PARQUET";
100
101
  })(InputFormat = exports.InputFormat || (exports.InputFormat = {}));
101
102
  var CsvOptions;
@@ -79,6 +79,7 @@ export var InputFormat;
79
79
  InputFormat["CSV"] = "CSV";
80
80
  InputFormat["EXCEL"] = "EXCEL";
81
81
  InputFormat["JSON"] = "JSON";
82
+ InputFormat["ORC"] = "ORC";
82
83
  InputFormat["PARQUET"] = "PARQUET";
83
84
  })(InputFormat || (InputFormat = {}));
84
85
  export var CsvOptions;
@@ -131,6 +131,7 @@ export declare enum InputFormat {
131
131
  CSV = "CSV",
132
132
  EXCEL = "EXCEL",
133
133
  JSON = "JSON",
134
+ ORC = "ORC",
134
135
  PARQUET = "PARQUET"
135
136
  }
136
137
  /**
@@ -370,8 +371,9 @@ export interface FilesLimit {
370
371
  */
371
372
  OrderedBy?: OrderedBy | string;
372
373
  /**
373
- * <p>A criteria to use for Amazon S3 files sorting before their selection. By default uses DESCENDING order,
374
- * i.e. most recent files are selected first. Anotherpossible value is ASCENDING.</p>
374
+ * <p>A criteria to use for Amazon S3 files sorting before their selection. By
375
+ * default uses DESCENDING order, i.e. most recent files are selected first. Another
376
+ * possible value is ASCENDING.</p>
375
377
  */
376
378
  Order?: Order | string;
377
379
  }
@@ -441,8 +443,8 @@ export declare enum ParameterType {
441
443
  String = "String"
442
444
  }
443
445
  /**
444
- * <p>Represents a dataset paramater that defines type and conditions for a parameter in the Amazon S3
445
- * path of the dataset.</p>
446
+ * <p>Represents a dataset parameter that defines type and conditions for a parameter in the
447
+ * Amazon S3 path of the dataset.</p>
446
448
  */
447
449
  export interface DatasetParameter {
448
450
  /**
@@ -1521,17 +1523,16 @@ export interface Rule {
1521
1523
  */
1522
1524
  Disabled?: boolean;
1523
1525
  /**
1524
- * <p>The expression which includes column references, condition names followed by
1525
- * variable references, possibly grouped and combined with other conditions. For
1526
- * example, <code>(:col1 starts_with :prefix1 or :col1 starts_with :prefix2) and
1527
- * (:col1 ends_with :suffix1 or :col1 ends_with :suffix2)</code>. Column and value
1528
- * references are substitution variables that should start with the ':' symbol.
1529
- * Depending on the context, substitution variables' values can be either an actual
1530
- * value or a column name. These values are defined in the SubstitutionMap.
1531
- * If a CheckExpression starts with a column reference, then ColumnSelectors in the
1532
- * rule should be null. If ColumnSelectors has been defined, then there should be no
1533
- * columnn reference in the left side of a condition, for example,
1534
- * <code>is_between :val1 and :val2</code>.</p>
1526
+ * <p>The expression which includes column references, condition names followed by variable
1527
+ * references, possibly grouped and combined with other conditions. For example,
1528
+ * <code>(:col1 starts_with :prefix1 or :col1 starts_with :prefix2) and (:col1
1529
+ * ends_with :suffix1 or :col1 ends_with :suffix2)</code>. Column and value references
1530
+ * are substitution variables that should start with the ':' symbol. Depending on the
1531
+ * context, substitution variables' values can be either an actual value or a column name.
1532
+ * These values are defined in the SubstitutionMap. If a CheckExpression starts with a
1533
+ * column reference, then ColumnSelectors in the rule should be null. If ColumnSelectors
1534
+ * has been defined, then there should be no column reference in the left side of a
1535
+ * condition, for example, <code>is_between :val1 and :val2</code>.</p>
1535
1536
  * <p>For more information, see <a href="https://docs.aws.amazon.com/databrew/latest/dg/profile.data-quality-available-checks.html">Available checks</a>
1536
1537
  * </p>
1537
1538
  */
@@ -82,6 +82,7 @@ export declare enum InputFormat {
82
82
  CSV = "CSV",
83
83
  EXCEL = "EXCEL",
84
84
  JSON = "JSON",
85
+ ORC = "ORC",
85
86
  PARQUET = "PARQUET"
86
87
  }
87
88
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
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.58.0",
4
+ "version": "3.72.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",
@@ -18,9 +18,9 @@
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.58.0",
21
+ "@aws-sdk/client-sts": "3.72.0",
22
22
  "@aws-sdk/config-resolver": "3.58.0",
23
- "@aws-sdk/credential-provider-node": "3.58.0",
23
+ "@aws-sdk/credential-provider-node": "3.72.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.58.0",
25
25
  "@aws-sdk/hash-node": "3.55.0",
26
26
  "@aws-sdk/invalid-dependency": "3.55.0",
@@ -35,15 +35,15 @@
35
35
  "@aws-sdk/node-config-provider": "3.58.0",
36
36
  "@aws-sdk/node-http-handler": "3.58.0",
37
37
  "@aws-sdk/protocol-http": "3.58.0",
38
- "@aws-sdk/smithy-client": "3.55.0",
38
+ "@aws-sdk/smithy-client": "3.72.0",
39
39
  "@aws-sdk/types": "3.55.0",
40
40
  "@aws-sdk/url-parser": "3.55.0",
41
41
  "@aws-sdk/util-base64-browser": "3.58.0",
42
42
  "@aws-sdk/util-base64-node": "3.55.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
44
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.58.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.72.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.72.0",
47
47
  "@aws-sdk/util-user-agent-browser": "3.58.0",
48
48
  "@aws-sdk/util-user-agent-node": "3.58.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.55.0",