aws-sdk-glue 1.144.0 → 1.145.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +38 -1
- data/lib/aws-sdk-glue/client_api.rb +11 -0
- data/lib/aws-sdk-glue/types.rb +44 -1
- 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: d5232184d64ef8cb37f4ca1f69733af9352b754a040a2bd48df6cbecfde3205b
|
4
|
+
data.tar.gz: 3c906d09cc88413057eeb2d9943cc357dbfdbe80e10072873a8fcff11ab9ab71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f6eb5461da18768ab38309a6ef722e4c8616e5c5251ee8a44a2c8896badd436b0b25c77fd8996fbc108aa61c8a4c75192bb308fbeb936b75ca417e0efa8dd9c
|
7
|
+
data.tar.gz: 6c22a8930734d6e803d202c92fbf3cf0fb0a66e642dae33bf4f796861868fa624889e0a7447a01f3676217ffc72da61fe53aee3b5ce9933dd3df82f502252cef
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.145.0 (2023-06-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for AWS Glue Crawler with Iceberg Tables, allowing Crawlers to discover Iceberg Tables in S3 and register them in Glue Data Catalog for query engines to query against.
|
8
|
+
|
4
9
|
1.144.0 (2023-06-28)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.145.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -804,6 +804,13 @@ module Aws::Glue
|
|
804
804
|
# resp.crawlers[0].targets.delta_targets[0].connection_name #=> String
|
805
805
|
# resp.crawlers[0].targets.delta_targets[0].write_manifest #=> Boolean
|
806
806
|
# resp.crawlers[0].targets.delta_targets[0].create_native_delta_table #=> Boolean
|
807
|
+
# resp.crawlers[0].targets.iceberg_targets #=> Array
|
808
|
+
# resp.crawlers[0].targets.iceberg_targets[0].paths #=> Array
|
809
|
+
# resp.crawlers[0].targets.iceberg_targets[0].paths[0] #=> String
|
810
|
+
# resp.crawlers[0].targets.iceberg_targets[0].connection_name #=> String
|
811
|
+
# resp.crawlers[0].targets.iceberg_targets[0].exclusions #=> Array
|
812
|
+
# resp.crawlers[0].targets.iceberg_targets[0].exclusions[0] #=> String
|
813
|
+
# resp.crawlers[0].targets.iceberg_targets[0].maximum_traversal_depth #=> Integer
|
807
814
|
# resp.crawlers[0].database_name #=> String
|
808
815
|
# resp.crawlers[0].description #=> String
|
809
816
|
# resp.crawlers[0].classifiers #=> Array
|
@@ -2765,6 +2772,14 @@ module Aws::Glue
|
|
2765
2772
|
# create_native_delta_table: false,
|
2766
2773
|
# },
|
2767
2774
|
# ],
|
2775
|
+
# iceberg_targets: [
|
2776
|
+
# {
|
2777
|
+
# paths: ["Path"],
|
2778
|
+
# connection_name: "ConnectionName",
|
2779
|
+
# exclusions: ["Path"],
|
2780
|
+
# maximum_traversal_depth: 1,
|
2781
|
+
# },
|
2782
|
+
# ],
|
2768
2783
|
# },
|
2769
2784
|
# schedule: "CronExpression",
|
2770
2785
|
# classifiers: ["NameString"],
|
@@ -5995,6 +6010,13 @@ module Aws::Glue
|
|
5995
6010
|
# resp.crawler.targets.delta_targets[0].connection_name #=> String
|
5996
6011
|
# resp.crawler.targets.delta_targets[0].write_manifest #=> Boolean
|
5997
6012
|
# resp.crawler.targets.delta_targets[0].create_native_delta_table #=> Boolean
|
6013
|
+
# resp.crawler.targets.iceberg_targets #=> Array
|
6014
|
+
# resp.crawler.targets.iceberg_targets[0].paths #=> Array
|
6015
|
+
# resp.crawler.targets.iceberg_targets[0].paths[0] #=> String
|
6016
|
+
# resp.crawler.targets.iceberg_targets[0].connection_name #=> String
|
6017
|
+
# resp.crawler.targets.iceberg_targets[0].exclusions #=> Array
|
6018
|
+
# resp.crawler.targets.iceberg_targets[0].exclusions[0] #=> String
|
6019
|
+
# resp.crawler.targets.iceberg_targets[0].maximum_traversal_depth #=> Integer
|
5998
6020
|
# resp.crawler.database_name #=> String
|
5999
6021
|
# resp.crawler.description #=> String
|
6000
6022
|
# resp.crawler.classifiers #=> Array
|
@@ -6142,6 +6164,13 @@ module Aws::Glue
|
|
6142
6164
|
# resp.crawlers[0].targets.delta_targets[0].connection_name #=> String
|
6143
6165
|
# resp.crawlers[0].targets.delta_targets[0].write_manifest #=> Boolean
|
6144
6166
|
# resp.crawlers[0].targets.delta_targets[0].create_native_delta_table #=> Boolean
|
6167
|
+
# resp.crawlers[0].targets.iceberg_targets #=> Array
|
6168
|
+
# resp.crawlers[0].targets.iceberg_targets[0].paths #=> Array
|
6169
|
+
# resp.crawlers[0].targets.iceberg_targets[0].paths[0] #=> String
|
6170
|
+
# resp.crawlers[0].targets.iceberg_targets[0].connection_name #=> String
|
6171
|
+
# resp.crawlers[0].targets.iceberg_targets[0].exclusions #=> Array
|
6172
|
+
# resp.crawlers[0].targets.iceberg_targets[0].exclusions[0] #=> String
|
6173
|
+
# resp.crawlers[0].targets.iceberg_targets[0].maximum_traversal_depth #=> Integer
|
6145
6174
|
# resp.crawlers[0].database_name #=> String
|
6146
6175
|
# resp.crawlers[0].description #=> String
|
6147
6176
|
# resp.crawlers[0].classifiers #=> Array
|
@@ -14836,6 +14865,14 @@ module Aws::Glue
|
|
14836
14865
|
# create_native_delta_table: false,
|
14837
14866
|
# },
|
14838
14867
|
# ],
|
14868
|
+
# iceberg_targets: [
|
14869
|
+
# {
|
14870
|
+
# paths: ["Path"],
|
14871
|
+
# connection_name: "ConnectionName",
|
14872
|
+
# exclusions: ["Path"],
|
14873
|
+
# maximum_traversal_depth: 1,
|
14874
|
+
# },
|
14875
|
+
# ],
|
14839
14876
|
# },
|
14840
14877
|
# schedule: "CronExpression",
|
14841
14878
|
# classifiers: ["NameString"],
|
@@ -15892,7 +15929,7 @@ module Aws::Glue
|
|
15892
15929
|
params: params,
|
15893
15930
|
config: config)
|
15894
15931
|
context[:gem_name] = 'aws-sdk-glue'
|
15895
|
-
context[:gem_version] = '1.
|
15932
|
+
context[:gem_version] = '1.145.0'
|
15896
15933
|
Seahorse::Client::Request.new(handlers, context)
|
15897
15934
|
end
|
15898
15935
|
|
@@ -610,6 +610,8 @@ module Aws::Glue
|
|
610
610
|
GrokPattern = Shapes::StringShape.new(name: 'GrokPattern')
|
611
611
|
HashString = Shapes::StringShape.new(name: 'HashString')
|
612
612
|
HudiTargetCompressionType = Shapes::StringShape.new(name: 'HudiTargetCompressionType')
|
613
|
+
IcebergTarget = Shapes::StructureShape.new(name: 'IcebergTarget')
|
614
|
+
IcebergTargetList = Shapes::ListShape.new(name: 'IcebergTargetList')
|
613
615
|
IdString = Shapes::StringShape.new(name: 'IdString')
|
614
616
|
IdempotentParameterMismatchException = Shapes::StructureShape.new(name: 'IdempotentParameterMismatchException')
|
615
617
|
IllegalBlueprintStateException = Shapes::StructureShape.new(name: 'IllegalBlueprintStateException')
|
@@ -1866,6 +1868,7 @@ module Aws::Glue
|
|
1866
1868
|
CrawlerTargets.add_member(:dynamo_db_targets, Shapes::ShapeRef.new(shape: DynamoDBTargetList, location_name: "DynamoDBTargets"))
|
1867
1869
|
CrawlerTargets.add_member(:catalog_targets, Shapes::ShapeRef.new(shape: CatalogTargetList, location_name: "CatalogTargets"))
|
1868
1870
|
CrawlerTargets.add_member(:delta_targets, Shapes::ShapeRef.new(shape: DeltaTargetList, location_name: "DeltaTargets"))
|
1871
|
+
CrawlerTargets.add_member(:iceberg_targets, Shapes::ShapeRef.new(shape: IcebergTargetList, location_name: "IcebergTargets"))
|
1869
1872
|
CrawlerTargets.struct_class = Types::CrawlerTargets
|
1870
1873
|
|
1871
1874
|
CrawlsFilter.add_member(:field_name, Shapes::ShapeRef.new(shape: FieldName, location_name: "FieldName"))
|
@@ -3529,6 +3532,14 @@ module Aws::Glue
|
|
3529
3532
|
GrokClassifier.add_member(:custom_patterns, Shapes::ShapeRef.new(shape: CustomPatterns, location_name: "CustomPatterns"))
|
3530
3533
|
GrokClassifier.struct_class = Types::GrokClassifier
|
3531
3534
|
|
3535
|
+
IcebergTarget.add_member(:paths, Shapes::ShapeRef.new(shape: PathList, location_name: "Paths"))
|
3536
|
+
IcebergTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
|
3537
|
+
IcebergTarget.add_member(:exclusions, Shapes::ShapeRef.new(shape: PathList, location_name: "Exclusions"))
|
3538
|
+
IcebergTarget.add_member(:maximum_traversal_depth, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "MaximumTraversalDepth"))
|
3539
|
+
IcebergTarget.struct_class = Types::IcebergTarget
|
3540
|
+
|
3541
|
+
IcebergTargetList.member = Shapes::ShapeRef.new(shape: IcebergTarget)
|
3542
|
+
|
3532
3543
|
IdempotentParameterMismatchException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
3533
3544
|
IdempotentParameterMismatchException.struct_class = Types::IdempotentParameterMismatchException
|
3534
3545
|
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -3454,6 +3454,10 @@ module Aws::Glue
|
|
3454
3454
|
# Specifies Delta data store targets.
|
3455
3455
|
# @return [Array<Types::DeltaTarget>]
|
3456
3456
|
#
|
3457
|
+
# @!attribute [rw] iceberg_targets
|
3458
|
+
# Specifies Apache Iceberg data store targets.
|
3459
|
+
# @return [Array<Types::IcebergTarget>]
|
3460
|
+
#
|
3457
3461
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CrawlerTargets AWS API Documentation
|
3458
3462
|
#
|
3459
3463
|
class CrawlerTargets < Struct.new(
|
@@ -3462,7 +3466,8 @@ module Aws::Glue
|
|
3462
3466
|
:mongo_db_targets,
|
3463
3467
|
:dynamo_db_targets,
|
3464
3468
|
:catalog_targets,
|
3465
|
-
:delta_targets
|
3469
|
+
:delta_targets,
|
3470
|
+
:iceberg_targets)
|
3466
3471
|
SENSITIVE = []
|
3467
3472
|
include Aws::Structure
|
3468
3473
|
end
|
@@ -11797,6 +11802,44 @@ module Aws::Glue
|
|
11797
11802
|
include Aws::Structure
|
11798
11803
|
end
|
11799
11804
|
|
11805
|
+
# Specifies an Apache Iceberg data source where Iceberg tables are
|
11806
|
+
# stored in Amazon S3.
|
11807
|
+
#
|
11808
|
+
# @!attribute [rw] paths
|
11809
|
+
# One or more Amazon S3 paths that contains Iceberg metadata folders
|
11810
|
+
# as `s3://bucket/prefix`.
|
11811
|
+
# @return [Array<String>]
|
11812
|
+
#
|
11813
|
+
# @!attribute [rw] connection_name
|
11814
|
+
# The name of the connection to use to connect to the Iceberg target.
|
11815
|
+
# @return [String]
|
11816
|
+
#
|
11817
|
+
# @!attribute [rw] exclusions
|
11818
|
+
# A list of glob patterns used to exclude from the crawl. For more
|
11819
|
+
# information, see [Catalog Tables with a Crawler][1].
|
11820
|
+
#
|
11821
|
+
#
|
11822
|
+
#
|
11823
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/add-crawler.html
|
11824
|
+
# @return [Array<String>]
|
11825
|
+
#
|
11826
|
+
# @!attribute [rw] maximum_traversal_depth
|
11827
|
+
# The maximum depth of Amazon S3 paths that the crawler can traverse
|
11828
|
+
# to discover the Iceberg metadata folder in your Amazon S3 path. Used
|
11829
|
+
# to limit the crawler run time.
|
11830
|
+
# @return [Integer]
|
11831
|
+
#
|
11832
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IcebergTarget AWS API Documentation
|
11833
|
+
#
|
11834
|
+
class IcebergTarget < Struct.new(
|
11835
|
+
:paths,
|
11836
|
+
:connection_name,
|
11837
|
+
:exclusions,
|
11838
|
+
:maximum_traversal_depth)
|
11839
|
+
SENSITIVE = []
|
11840
|
+
include Aws::Structure
|
11841
|
+
end
|
11842
|
+
|
11800
11843
|
# The same unique identifier was associated with two different records.
|
11801
11844
|
#
|
11802
11845
|
# @!attribute [rw] message
|
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.145.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-06-
|
11
|
+
date: 2023-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|