aws-sdk-glue 1.153.0 → 1.154.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +5 -1
- data/lib/aws-sdk-glue/client_api.rb +4 -0
- data/lib/aws-sdk-glue/types.rb +27 -3
- data/lib/aws-sdk-glue.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7dd296bc486bf70887ca70e2beb88b997eafef92191f24b529dd90e5a15a12e
|
4
|
+
data.tar.gz: d7363fa3ae2a354ded5556143a30d378eca9a5d4e69d69c1e0855bb7616535aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1aa0aaf24435fc4d191b2de48847e38af615981ddf033f91120303d48a75b8fbc51b56e95cef7b7a17cf323c86d30d29de71ab76fbec7f5e2fafee4bd07005e3
|
7
|
+
data.tar.gz: '0975e403fc1d6b1c2fc65bea2db6de3f79e27110e5693064b12258b56a6a68b0c1233da53170676dd560cfe072492c808ac7dac29cd886e8e7c4fe3ea85e3129'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.154.0 (2023-08-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Glue Crawlers can now accept SerDe overrides from a custom csv classifier. The two SerDe options are LazySimpleSerDe and OpenCSVSerDe. In case, the user wants crawler to do the selection, "None" can be selected for this purpose.
|
8
|
+
|
4
9
|
1.153.0 (2023-08-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.154.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -2679,6 +2679,7 @@ module Aws::Glue
|
|
2679
2679
|
# allow_single_column: false,
|
2680
2680
|
# custom_datatype_configured: false,
|
2681
2681
|
# custom_datatypes: ["NameString"],
|
2682
|
+
# serde: "OpenCSVSerDe", # accepts OpenCSVSerDe, LazySimpleSerDe, None
|
2682
2683
|
# },
|
2683
2684
|
# })
|
2684
2685
|
#
|
@@ -5741,6 +5742,7 @@ module Aws::Glue
|
|
5741
5742
|
# resp.classifier.csv_classifier.custom_datatype_configured #=> Boolean
|
5742
5743
|
# resp.classifier.csv_classifier.custom_datatypes #=> Array
|
5743
5744
|
# resp.classifier.csv_classifier.custom_datatypes[0] #=> String
|
5745
|
+
# resp.classifier.csv_classifier.serde #=> String, one of "OpenCSVSerDe", "LazySimpleSerDe", "None"
|
5744
5746
|
#
|
5745
5747
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetClassifier AWS API Documentation
|
5746
5748
|
#
|
@@ -5808,6 +5810,7 @@ module Aws::Glue
|
|
5808
5810
|
# resp.classifiers[0].csv_classifier.custom_datatype_configured #=> Boolean
|
5809
5811
|
# resp.classifiers[0].csv_classifier.custom_datatypes #=> Array
|
5810
5812
|
# resp.classifiers[0].csv_classifier.custom_datatypes[0] #=> String
|
5813
|
+
# resp.classifiers[0].csv_classifier.serde #=> String, one of "OpenCSVSerDe", "LazySimpleSerDe", "None"
|
5811
5814
|
# resp.next_token #=> String
|
5812
5815
|
#
|
5813
5816
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetClassifiers AWS API Documentation
|
@@ -14761,6 +14764,7 @@ module Aws::Glue
|
|
14761
14764
|
# allow_single_column: false,
|
14762
14765
|
# custom_datatype_configured: false,
|
14763
14766
|
# custom_datatypes: ["NameString"],
|
14767
|
+
# serde: "OpenCSVSerDe", # accepts OpenCSVSerDe, LazySimpleSerDe, None
|
14764
14768
|
# },
|
14765
14769
|
# })
|
14766
14770
|
#
|
@@ -16284,7 +16288,7 @@ module Aws::Glue
|
|
16284
16288
|
params: params,
|
16285
16289
|
config: config)
|
16286
16290
|
context[:gem_name] = 'aws-sdk-glue'
|
16287
|
-
context[:gem_version] = '1.
|
16291
|
+
context[:gem_version] = '1.154.0'
|
16288
16292
|
Seahorse::Client::Request.new(handlers, context)
|
16289
16293
|
end
|
16290
16294
|
|
@@ -270,6 +270,7 @@ module Aws::Glue
|
|
270
270
|
CsvHeader = Shapes::ListShape.new(name: 'CsvHeader')
|
271
271
|
CsvHeaderOption = Shapes::StringShape.new(name: 'CsvHeaderOption')
|
272
272
|
CsvQuoteSymbol = Shapes::StringShape.new(name: 'CsvQuoteSymbol')
|
273
|
+
CsvSerdeOption = Shapes::StringShape.new(name: 'CsvSerdeOption')
|
273
274
|
CustomCode = Shapes::StructureShape.new(name: 'CustomCode')
|
274
275
|
CustomDatatypes = Shapes::ListShape.new(name: 'CustomDatatypes')
|
275
276
|
CustomEntityType = Shapes::StructureShape.new(name: 'CustomEntityType')
|
@@ -1945,6 +1946,7 @@ module Aws::Glue
|
|
1945
1946
|
CreateCsvClassifierRequest.add_member(:allow_single_column, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "AllowSingleColumn"))
|
1946
1947
|
CreateCsvClassifierRequest.add_member(:custom_datatype_configured, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "CustomDatatypeConfigured"))
|
1947
1948
|
CreateCsvClassifierRequest.add_member(:custom_datatypes, Shapes::ShapeRef.new(shape: CustomDatatypes, location_name: "CustomDatatypes"))
|
1949
|
+
CreateCsvClassifierRequest.add_member(:serde, Shapes::ShapeRef.new(shape: CsvSerdeOption, location_name: "Serde"))
|
1948
1950
|
CreateCsvClassifierRequest.struct_class = Types::CreateCsvClassifierRequest
|
1949
1951
|
|
1950
1952
|
CreateCustomEntityTypeRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
@@ -2215,6 +2217,7 @@ module Aws::Glue
|
|
2215
2217
|
CsvClassifier.add_member(:allow_single_column, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "AllowSingleColumn"))
|
2216
2218
|
CsvClassifier.add_member(:custom_datatype_configured, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "CustomDatatypeConfigured"))
|
2217
2219
|
CsvClassifier.add_member(:custom_datatypes, Shapes::ShapeRef.new(shape: CustomDatatypes, location_name: "CustomDatatypes"))
|
2220
|
+
CsvClassifier.add_member(:serde, Shapes::ShapeRef.new(shape: CsvSerdeOption, location_name: "Serde"))
|
2218
2221
|
CsvClassifier.struct_class = Types::CsvClassifier
|
2219
2222
|
|
2220
2223
|
CsvHeader.member = Shapes::ShapeRef.new(shape: NameString)
|
@@ -5323,6 +5326,7 @@ module Aws::Glue
|
|
5323
5326
|
UpdateCsvClassifierRequest.add_member(:allow_single_column, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "AllowSingleColumn"))
|
5324
5327
|
UpdateCsvClassifierRequest.add_member(:custom_datatype_configured, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "CustomDatatypeConfigured"))
|
5325
5328
|
UpdateCsvClassifierRequest.add_member(:custom_datatypes, Shapes::ShapeRef.new(shape: CustomDatatypes, location_name: "CustomDatatypes"))
|
5329
|
+
UpdateCsvClassifierRequest.add_member(:serde, Shapes::ShapeRef.new(shape: CsvSerdeOption, location_name: "Serde"))
|
5326
5330
|
UpdateCsvClassifierRequest.struct_class = Types::UpdateCsvClassifierRequest
|
5327
5331
|
|
5328
5332
|
UpdateDataQualityRulesetRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -3793,6 +3793,13 @@ module Aws::Glue
|
|
3793
3793
|
# Creates a list of supported custom datatypes.
|
3794
3794
|
# @return [Array<String>]
|
3795
3795
|
#
|
3796
|
+
# @!attribute [rw] serde
|
3797
|
+
# Sets the SerDe for processing CSV in the classifier, which will be
|
3798
|
+
# applied in the Data Catalog. Valid values are `OpenCSVSerDe`,
|
3799
|
+
# `LazySimpleSerDe`, and `None`. You can specify the `None` value when
|
3800
|
+
# you want the crawler to do the detection.
|
3801
|
+
# @return [String]
|
3802
|
+
#
|
3796
3803
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateCsvClassifierRequest AWS API Documentation
|
3797
3804
|
#
|
3798
3805
|
class CreateCsvClassifierRequest < Struct.new(
|
@@ -3804,7 +3811,8 @@ module Aws::Glue
|
|
3804
3811
|
:disable_value_trimming,
|
3805
3812
|
:allow_single_column,
|
3806
3813
|
:custom_datatype_configured,
|
3807
|
-
:custom_datatypes
|
3814
|
+
:custom_datatypes,
|
3815
|
+
:serde)
|
3808
3816
|
SENSITIVE = []
|
3809
3817
|
include Aws::Structure
|
3810
3818
|
end
|
@@ -5550,6 +5558,13 @@ module Aws::Glue
|
|
5550
5558
|
# "SHORT", "STRING", "TIMESTAMP".
|
5551
5559
|
# @return [Array<String>]
|
5552
5560
|
#
|
5561
|
+
# @!attribute [rw] serde
|
5562
|
+
# Sets the SerDe for processing CSV in the classifier, which will be
|
5563
|
+
# applied in the Data Catalog. Valid values are `OpenCSVSerDe`,
|
5564
|
+
# `LazySimpleSerDe`, and `None`. You can specify the `None` value when
|
5565
|
+
# you want the crawler to do the detection.
|
5566
|
+
# @return [String]
|
5567
|
+
#
|
5553
5568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CsvClassifier AWS API Documentation
|
5554
5569
|
#
|
5555
5570
|
class CsvClassifier < Struct.new(
|
@@ -5564,7 +5579,8 @@ module Aws::Glue
|
|
5564
5579
|
:disable_value_trimming,
|
5565
5580
|
:allow_single_column,
|
5566
5581
|
:custom_datatype_configured,
|
5567
|
-
:custom_datatypes
|
5582
|
+
:custom_datatypes,
|
5583
|
+
:serde)
|
5568
5584
|
SENSITIVE = []
|
5569
5585
|
include Aws::Structure
|
5570
5586
|
end
|
@@ -20874,6 +20890,13 @@ module Aws::Glue
|
|
20874
20890
|
# Specifies a list of supported custom datatypes.
|
20875
20891
|
# @return [Array<String>]
|
20876
20892
|
#
|
20893
|
+
# @!attribute [rw] serde
|
20894
|
+
# Sets the SerDe for processing CSV in the classifier, which will be
|
20895
|
+
# applied in the Data Catalog. Valid values are `OpenCSVSerDe`,
|
20896
|
+
# `LazySimpleSerDe`, and `None`. You can specify the `None` value when
|
20897
|
+
# you want the crawler to do the detection.
|
20898
|
+
# @return [String]
|
20899
|
+
#
|
20877
20900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateCsvClassifierRequest AWS API Documentation
|
20878
20901
|
#
|
20879
20902
|
class UpdateCsvClassifierRequest < Struct.new(
|
@@ -20885,7 +20908,8 @@ module Aws::Glue
|
|
20885
20908
|
:disable_value_trimming,
|
20886
20909
|
:allow_single_column,
|
20887
20910
|
:custom_datatype_configured,
|
20888
|
-
:custom_datatypes
|
20911
|
+
:custom_datatypes,
|
20912
|
+
:serde)
|
20889
20913
|
SENSITIVE = []
|
20890
20914
|
include Aws::Structure
|
20891
20915
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-glue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.154.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: 2023-08-
|
11
|
+
date: 2023-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|