aws-sdk-gluedatabrew 1.21.0 → 1.22.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e48f811b00ad81abf556ffb0c9442b0af68896a06ee38dc83a0b4b3b510eb2cb
4
- data.tar.gz: 39319ee5abc64848a1cee0a0b0b1533ea4b0442ccb2df079c1389f00fe554bcc
3
+ metadata.gz: 80083adbd88cd99edbc125b4741389c96889f1aebea17667fecbe9eb28f2f248
4
+ data.tar.gz: f966bf41df2aedd1f9a62242fb5760f3c2fb5a91efc0500f5f698fa2b41c8188
5
5
  SHA512:
6
- metadata.gz: 17448cad770c757eac67582c745d681f43bf28615effc2483ed33cfd93fa98153fb5d6267b32d7c666dfc8d58b73422b4a9ddbf96f0f03a492cc0c7b75545dda
7
- data.tar.gz: 8e1017e1172bdd6ebff455dc0ff29aa127291de2aebfce828df613146b49c6fe0da33802cdd26e0d6a9cce27357c001dc8a21209fc30ad9ad35b16333b7b2d91
6
+ metadata.gz: 828fdc95208d3cb220bee5ddfe95ac9f99377dbf5f2647c9c5660c0b3db1bff27b3c09b379c0197ba1b161175c624aaa3e87b0db2ef12824ace1ef743bc0203c
7
+ data.tar.gz: 4376e1c2dc336a3627f8d875bf424b343d3df801cea7d0ef085f2634c2d6370c1dbbbbf4dfd731feaa107fc4f576a41261e908cb3368cb04b8754775a4cf3283
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.0 (2022-03-31)
5
+ ------------------
6
+
7
+ * Feature - This AWS Glue Databrew release adds feature to support ORC as an input format.
8
+
4
9
  1.21.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.22.0
@@ -450,7 +450,7 @@ module Aws::GlueDataBrew
450
450
  #
451
451
  # resp = client.create_dataset({
452
452
  # name: "DatasetName", # required
453
- # format: "CSV", # accepts CSV, JSON, PARQUET, EXCEL
453
+ # format: "CSV", # accepts CSV, JSON, PARQUET, EXCEL, ORC
454
454
  # format_options: {
455
455
  # json: {
456
456
  # multi_line: false,
@@ -1303,7 +1303,7 @@ module Aws::GlueDataBrew
1303
1303
  # resp.created_by #=> String
1304
1304
  # resp.create_date #=> Time
1305
1305
  # resp.name #=> String
1306
- # resp.format #=> String, one of "CSV", "JSON", "PARQUET", "EXCEL"
1306
+ # resp.format #=> String, one of "CSV", "JSON", "PARQUET", "EXCEL", "ORC"
1307
1307
  # resp.format_options.json.multi_line #=> Boolean
1308
1308
  # resp.format_options.excel.sheet_names #=> Array
1309
1309
  # resp.format_options.excel.sheet_names[0] #=> String
@@ -1867,7 +1867,7 @@ module Aws::GlueDataBrew
1867
1867
  # resp.datasets[0].created_by #=> String
1868
1868
  # resp.datasets[0].create_date #=> Time
1869
1869
  # resp.datasets[0].name #=> String
1870
- # resp.datasets[0].format #=> String, one of "CSV", "JSON", "PARQUET", "EXCEL"
1870
+ # resp.datasets[0].format #=> String, one of "CSV", "JSON", "PARQUET", "EXCEL", "ORC"
1871
1871
  # resp.datasets[0].format_options.json.multi_line #=> Boolean
1872
1872
  # resp.datasets[0].format_options.excel.sheet_names #=> Array
1873
1873
  # resp.datasets[0].format_options.excel.sheet_names[0] #=> String
@@ -2737,7 +2737,7 @@ module Aws::GlueDataBrew
2737
2737
  #
2738
2738
  # resp = client.update_dataset({
2739
2739
  # name: "DatasetName", # required
2740
- # format: "CSV", # accepts CSV, JSON, PARQUET, EXCEL
2740
+ # format: "CSV", # accepts CSV, JSON, PARQUET, EXCEL, ORC
2741
2741
  # format_options: {
2742
2742
  # json: {
2743
2743
  # multi_line: false,
@@ -3317,7 +3317,7 @@ module Aws::GlueDataBrew
3317
3317
  params: params,
3318
3318
  config: config)
3319
3319
  context[:gem_name] = 'aws-sdk-gluedatabrew'
3320
- context[:gem_version] = '1.21.0'
3320
+ context[:gem_version] = '1.22.0'
3321
3321
  Seahorse::Client::Request.new(handlers, context)
3322
3322
  end
3323
3323
 
@@ -233,7 +233,7 @@ module Aws::GlueDataBrew
233
233
  #
234
234
  # {
235
235
  # name: "DatasetName", # required
236
- # format: "CSV", # accepts CSV, JSON, PARQUET, EXCEL
236
+ # format: "CSV", # accepts CSV, JSON, PARQUET, EXCEL, ORC
237
237
  # format_options: {
238
238
  # json: {
239
239
  # multi_line: false,
@@ -1402,7 +1402,7 @@ module Aws::GlueDataBrew
1402
1402
  include Aws::Structure
1403
1403
  end
1404
1404
 
1405
- # Represents a dataset paramater that defines type and conditions for a
1405
+ # Represents a dataset parameter that defines type and conditions for a
1406
1406
  # parameter in the Amazon S3 path of the dataset.
1407
1407
  #
1408
1408
  # @note When making an API call, you may pass DatasetParameter
@@ -2607,7 +2607,7 @@ module Aws::GlueDataBrew
2607
2607
  # @!attribute [rw] order
2608
2608
  # A criteria to use for Amazon S3 files sorting before their
2609
2609
  # selection. By default uses DESCENDING order, i.e. most recent files
2610
- # are selected first. Anotherpossible value is ASCENDING.
2610
+ # are selected first. Another possible value is ASCENDING.
2611
2611
  # @return [String]
2612
2612
  #
2613
2613
  # @see http://docs.aws.amazon.com/goto/WebAPI/databrew-2017-07-25/FilesLimit AWS API Documentation
@@ -4228,7 +4228,7 @@ module Aws::GlueDataBrew
4228
4228
  # value or a column name. These values are defined in the
4229
4229
  # SubstitutionMap. If a CheckExpression starts with a column
4230
4230
  # reference, then ColumnSelectors in the rule should be null. If
4231
- # ColumnSelectors has been defined, then there should be no columnn
4231
+ # ColumnSelectors has been defined, then there should be no column
4232
4232
  # reference in the left side of a condition, for example, `is_between
4233
4233
  # :val1 and :val2`.
4234
4234
  #
@@ -4887,7 +4887,7 @@ module Aws::GlueDataBrew
4887
4887
  #
4888
4888
  # {
4889
4889
  # name: "DatasetName", # required
4890
- # format: "CSV", # accepts CSV, JSON, PARQUET, EXCEL
4890
+ # format: "CSV", # accepts CSV, JSON, PARQUET, EXCEL, ORC
4891
4891
  # format_options: {
4892
4892
  # json: {
4893
4893
  # multi_line: false,
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-gluedatabrew/customizations'
48
48
  # @!group service
49
49
  module Aws::GlueDataBrew
50
50
 
51
- GEM_VERSION = '1.21.0'
51
+ GEM_VERSION = '1.22.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-gluedatabrew
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.21.0
4
+ version: 1.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core