Package not found. Please check the package name and try again.
aws-sdk-glue 1.123.0 → 1.124.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 +11 -3
- data/lib/aws-sdk-glue/client_api.rb +5 -0
- data/lib/aws-sdk-glue/types.rb +19 -5
- 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: ccea4573da0ad171431398bb3a9555afdbbed65f54d884f8e354a3144ddadc51
|
|
4
|
+
data.tar.gz: a9250b0903f37c368283ec939e740ad7e884d37b35cf1c08432c6956004f8a1b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b6afb31ac9fd242287e1cfb1e8e579c757d4683016403a43eeb032533fc5af46749995f4f5cfb0011dc20cbcfa0aed709ca174c7dae65e35e847b55fab50e22
|
|
7
|
+
data.tar.gz: aa1fd33aaee331dcaa34907147736aeaf5de6a3eee876bec3e5dfc9cf593d3f055fd96ac6b90690bbc961c8f155112294fc3ba1839f6884af96a8d54d8fba39f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.124.0 (2022-11-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWSGlue Crawler - Adding support for Table and Column level Comments with database level datatypes for JDBC based crawler.
|
|
8
|
+
|
|
4
9
|
1.123.0 (2022-11-11)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.124.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -776,6 +776,8 @@ module Aws::Glue
|
|
|
776
776
|
# resp.crawlers[0].targets.jdbc_targets[0].path #=> String
|
|
777
777
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions #=> Array
|
|
778
778
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions[0] #=> String
|
|
779
|
+
# resp.crawlers[0].targets.jdbc_targets[0].enable_additional_metadata #=> Array
|
|
780
|
+
# resp.crawlers[0].targets.jdbc_targets[0].enable_additional_metadata[0] #=> String, one of "COMMENTS", "RAWTYPES"
|
|
779
781
|
# resp.crawlers[0].targets.mongo_db_targets #=> Array
|
|
780
782
|
# resp.crawlers[0].targets.mongo_db_targets[0].connection_name #=> String
|
|
781
783
|
# resp.crawlers[0].targets.mongo_db_targets[0].path #=> String
|
|
@@ -2304,7 +2306,7 @@ module Aws::Glue
|
|
|
2304
2306
|
# @option params [String] :configuration
|
|
2305
2307
|
# Crawler configuration information. This versioned JSON string allows
|
|
2306
2308
|
# users to specify aspects of a crawler's behavior. For more
|
|
2307
|
-
# information, see [
|
|
2309
|
+
# information, see [Setting crawler configuration options][1].
|
|
2308
2310
|
#
|
|
2309
2311
|
#
|
|
2310
2312
|
#
|
|
@@ -2348,6 +2350,7 @@ module Aws::Glue
|
|
|
2348
2350
|
# connection_name: "ConnectionName",
|
|
2349
2351
|
# path: "Path",
|
|
2350
2352
|
# exclusions: ["Path"],
|
|
2353
|
+
# enable_additional_metadata: ["COMMENTS"], # accepts COMMENTS, RAWTYPES
|
|
2351
2354
|
# },
|
|
2352
2355
|
# ],
|
|
2353
2356
|
# mongo_db_targets: [
|
|
@@ -6188,6 +6191,8 @@ module Aws::Glue
|
|
|
6188
6191
|
# resp.crawler.targets.jdbc_targets[0].path #=> String
|
|
6189
6192
|
# resp.crawler.targets.jdbc_targets[0].exclusions #=> Array
|
|
6190
6193
|
# resp.crawler.targets.jdbc_targets[0].exclusions[0] #=> String
|
|
6194
|
+
# resp.crawler.targets.jdbc_targets[0].enable_additional_metadata #=> Array
|
|
6195
|
+
# resp.crawler.targets.jdbc_targets[0].enable_additional_metadata[0] #=> String, one of "COMMENTS", "RAWTYPES"
|
|
6191
6196
|
# resp.crawler.targets.mongo_db_targets #=> Array
|
|
6192
6197
|
# resp.crawler.targets.mongo_db_targets[0].connection_name #=> String
|
|
6193
6198
|
# resp.crawler.targets.mongo_db_targets[0].path #=> String
|
|
@@ -6332,6 +6337,8 @@ module Aws::Glue
|
|
|
6332
6337
|
# resp.crawlers[0].targets.jdbc_targets[0].path #=> String
|
|
6333
6338
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions #=> Array
|
|
6334
6339
|
# resp.crawlers[0].targets.jdbc_targets[0].exclusions[0] #=> String
|
|
6340
|
+
# resp.crawlers[0].targets.jdbc_targets[0].enable_additional_metadata #=> Array
|
|
6341
|
+
# resp.crawlers[0].targets.jdbc_targets[0].enable_additional_metadata[0] #=> String, one of "COMMENTS", "RAWTYPES"
|
|
6335
6342
|
# resp.crawlers[0].targets.mongo_db_targets #=> Array
|
|
6336
6343
|
# resp.crawlers[0].targets.mongo_db_targets[0].connection_name #=> String
|
|
6337
6344
|
# resp.crawlers[0].targets.mongo_db_targets[0].path #=> String
|
|
@@ -13596,7 +13603,7 @@ module Aws::Glue
|
|
|
13596
13603
|
# @option params [String] :configuration
|
|
13597
13604
|
# Crawler configuration information. This versioned JSON string allows
|
|
13598
13605
|
# users to specify aspects of a crawler's behavior. For more
|
|
13599
|
-
# information, see [
|
|
13606
|
+
# information, see [Setting crawler configuration options][1].
|
|
13600
13607
|
#
|
|
13601
13608
|
#
|
|
13602
13609
|
#
|
|
@@ -13631,6 +13638,7 @@ module Aws::Glue
|
|
|
13631
13638
|
# connection_name: "ConnectionName",
|
|
13632
13639
|
# path: "Path",
|
|
13633
13640
|
# exclusions: ["Path"],
|
|
13641
|
+
# enable_additional_metadata: ["COMMENTS"], # accepts COMMENTS, RAWTYPES
|
|
13634
13642
|
# },
|
|
13635
13643
|
# ],
|
|
13636
13644
|
# mongo_db_targets: [
|
|
@@ -15390,7 +15398,7 @@ module Aws::Glue
|
|
|
15390
15398
|
params: params,
|
|
15391
15399
|
config: config)
|
|
15392
15400
|
context[:gem_name] = 'aws-sdk-glue'
|
|
15393
|
-
context[:gem_version] = '1.
|
|
15401
|
+
context[:gem_version] = '1.124.0'
|
|
15394
15402
|
Seahorse::Client::Request.new(handlers, context)
|
|
15395
15403
|
end
|
|
15396
15404
|
|
|
@@ -348,6 +348,7 @@ module Aws::Glue
|
|
|
348
348
|
DynamoDBTargetList = Shapes::ListShape.new(name: 'DynamoDBTargetList')
|
|
349
349
|
Edge = Shapes::StructureShape.new(name: 'Edge')
|
|
350
350
|
EdgeList = Shapes::ListShape.new(name: 'EdgeList')
|
|
351
|
+
EnableAdditionalMetadata = Shapes::ListShape.new(name: 'EnableAdditionalMetadata')
|
|
351
352
|
EnableHybridValues = Shapes::StringShape.new(name: 'EnableHybridValues')
|
|
352
353
|
EnclosedInStringProperties = Shapes::ListShape.new(name: 'EnclosedInStringProperties')
|
|
353
354
|
EnclosedInStringPropertiesMinOne = Shapes::ListShape.new(name: 'EnclosedInStringPropertiesMinOne')
|
|
@@ -557,6 +558,7 @@ module Aws::Glue
|
|
|
557
558
|
JDBCConnectorTarget = Shapes::StructureShape.new(name: 'JDBCConnectorTarget')
|
|
558
559
|
JDBCDataType = Shapes::StringShape.new(name: 'JDBCDataType')
|
|
559
560
|
JDBCDataTypeMapping = Shapes::MapShape.new(name: 'JDBCDataTypeMapping')
|
|
561
|
+
JdbcMetadataEntry = Shapes::StringShape.new(name: 'JdbcMetadataEntry')
|
|
560
562
|
JdbcTarget = Shapes::StructureShape.new(name: 'JdbcTarget')
|
|
561
563
|
JdbcTargetList = Shapes::ListShape.new(name: 'JdbcTargetList')
|
|
562
564
|
Job = Shapes::StructureShape.new(name: 'Job')
|
|
@@ -2332,6 +2334,8 @@ module Aws::Glue
|
|
|
2332
2334
|
|
|
2333
2335
|
EdgeList.member = Shapes::ShapeRef.new(shape: Edge)
|
|
2334
2336
|
|
|
2337
|
+
EnableAdditionalMetadata.member = Shapes::ShapeRef.new(shape: JdbcMetadataEntry)
|
|
2338
|
+
|
|
2335
2339
|
EnclosedInStringProperties.member = Shapes::ShapeRef.new(shape: EnclosedInStringProperty)
|
|
2336
2340
|
|
|
2337
2341
|
EnclosedInStringPropertiesMinOne.member = Shapes::ShapeRef.new(shape: EnclosedInStringProperty)
|
|
@@ -3128,6 +3132,7 @@ module Aws::Glue
|
|
|
3128
3132
|
JdbcTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
|
|
3129
3133
|
JdbcTarget.add_member(:path, Shapes::ShapeRef.new(shape: Path, location_name: "Path"))
|
|
3130
3134
|
JdbcTarget.add_member(:exclusions, Shapes::ShapeRef.new(shape: PathList, location_name: "Exclusions"))
|
|
3135
|
+
JdbcTarget.add_member(:enable_additional_metadata, Shapes::ShapeRef.new(shape: EnableAdditionalMetadata, location_name: "EnableAdditionalMetadata"))
|
|
3131
3136
|
JdbcTarget.struct_class = Types::JdbcTarget
|
|
3132
3137
|
|
|
3133
3138
|
JdbcTargetList.member = Shapes::ShapeRef.new(shape: JdbcTarget)
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -4164,11 +4164,11 @@ module Aws::Glue
|
|
|
4164
4164
|
# @!attribute [rw] configuration
|
|
4165
4165
|
# Crawler configuration information. This versioned JSON string allows
|
|
4166
4166
|
# users to specify aspects of a crawler's behavior. For more
|
|
4167
|
-
# information, see [
|
|
4167
|
+
# information, see [Setting crawler configuration options][1].
|
|
4168
4168
|
#
|
|
4169
4169
|
#
|
|
4170
4170
|
#
|
|
4171
|
-
# [1]: https://docs.aws.amazon.com/glue/latest/dg/
|
|
4171
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html
|
|
4172
4172
|
# @return [String]
|
|
4173
4173
|
#
|
|
4174
4174
|
# @!attribute [rw] crawler_security_configuration
|
|
@@ -4397,6 +4397,7 @@ module Aws::Glue
|
|
|
4397
4397
|
# connection_name: "ConnectionName",
|
|
4398
4398
|
# path: "Path",
|
|
4399
4399
|
# exclusions: ["Path"],
|
|
4400
|
+
# enable_additional_metadata: ["COMMENTS"], # accepts COMMENTS, RAWTYPES
|
|
4400
4401
|
# },
|
|
4401
4402
|
# ],
|
|
4402
4403
|
# mongo_db_targets: [
|
|
@@ -4716,6 +4717,7 @@ module Aws::Glue
|
|
|
4716
4717
|
# connection_name: "ConnectionName",
|
|
4717
4718
|
# path: "Path",
|
|
4718
4719
|
# exclusions: ["Path"],
|
|
4720
|
+
# enable_additional_metadata: ["COMMENTS"], # accepts COMMENTS, RAWTYPES
|
|
4719
4721
|
# },
|
|
4720
4722
|
# ],
|
|
4721
4723
|
# mongo_db_targets: [
|
|
@@ -4836,7 +4838,7 @@ module Aws::Glue
|
|
|
4836
4838
|
# @!attribute [rw] configuration
|
|
4837
4839
|
# Crawler configuration information. This versioned JSON string allows
|
|
4838
4840
|
# users to specify aspects of a crawler's behavior. For more
|
|
4839
|
-
# information, see [
|
|
4841
|
+
# information, see [Setting crawler configuration options][1].
|
|
4840
4842
|
#
|
|
4841
4843
|
#
|
|
4842
4844
|
#
|
|
@@ -14618,6 +14620,7 @@ module Aws::Glue
|
|
|
14618
14620
|
# connection_name: "ConnectionName",
|
|
14619
14621
|
# path: "Path",
|
|
14620
14622
|
# exclusions: ["Path"],
|
|
14623
|
+
# enable_additional_metadata: ["COMMENTS"], # accepts COMMENTS, RAWTYPES
|
|
14621
14624
|
# }
|
|
14622
14625
|
#
|
|
14623
14626
|
# @!attribute [rw] connection_name
|
|
@@ -14637,12 +14640,22 @@ module Aws::Glue
|
|
|
14637
14640
|
# [1]: https://docs.aws.amazon.com/glue/latest/dg/add-crawler.html
|
|
14638
14641
|
# @return [Array<String>]
|
|
14639
14642
|
#
|
|
14643
|
+
# @!attribute [rw] enable_additional_metadata
|
|
14644
|
+
# Specify a value of `RAWTYPES` or `COMMENTS` to enable additional
|
|
14645
|
+
# metadata in table responses. `RAWTYPES` provides the native-level
|
|
14646
|
+
# datatype. `COMMENTS` provides comments associated with a column or
|
|
14647
|
+
# table in the database.
|
|
14648
|
+
#
|
|
14649
|
+
# If you do not need additional metadata, keep the field empty.
|
|
14650
|
+
# @return [Array<String>]
|
|
14651
|
+
#
|
|
14640
14652
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/JdbcTarget AWS API Documentation
|
|
14641
14653
|
#
|
|
14642
14654
|
class JdbcTarget < Struct.new(
|
|
14643
14655
|
:connection_name,
|
|
14644
14656
|
:path,
|
|
14645
|
-
:exclusions
|
|
14657
|
+
:exclusions,
|
|
14658
|
+
:enable_additional_metadata)
|
|
14646
14659
|
SENSITIVE = []
|
|
14647
14660
|
include Aws::Structure
|
|
14648
14661
|
end
|
|
@@ -24454,6 +24467,7 @@ module Aws::Glue
|
|
|
24454
24467
|
# connection_name: "ConnectionName",
|
|
24455
24468
|
# path: "Path",
|
|
24456
24469
|
# exclusions: ["Path"],
|
|
24470
|
+
# enable_additional_metadata: ["COMMENTS"], # accepts COMMENTS, RAWTYPES
|
|
24457
24471
|
# },
|
|
24458
24472
|
# ],
|
|
24459
24473
|
# mongo_db_targets: [
|
|
@@ -24571,7 +24585,7 @@ module Aws::Glue
|
|
|
24571
24585
|
# @!attribute [rw] configuration
|
|
24572
24586
|
# Crawler configuration information. This versioned JSON string allows
|
|
24573
24587
|
# users to specify aspects of a crawler's behavior. For more
|
|
24574
|
-
# information, see [
|
|
24588
|
+
# information, see [Setting crawler configuration options][1].
|
|
24575
24589
|
#
|
|
24576
24590
|
#
|
|
24577
24591
|
#
|
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.124.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-11-
|
|
11
|
+
date: 2022-11-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|