aws-sdk-glue 1.144.0 → 1.146.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: f4bc63cf7b958e6df06454b561c1919f7f06e597bf004dab6d62ae846065ac69
4
- data.tar.gz: b566260e8a683ce735a4e2c71dcbb4b6704c30d1b1dadfb69fd205de104f789a
3
+ metadata.gz: 0d7c8eec4e855f00c5a2d6fec348fce2c9e6e469c77b23c96dd9cb98778ef4ef
4
+ data.tar.gz: a02f2909eb8e6ec9b00417b0a25b36b71dec00f5f78dae1cfb18c19dc05faa7b
5
5
  SHA512:
6
- metadata.gz: 23faed52268db9e734fb0a6c33e76146abdff9096635313f90fa4cac171926dd3b120e837d51de3ddf253689607e407ca3adf2793432f5815eb7d90ef107310b
7
- data.tar.gz: fe0dad62ceb782ecb07e6ade68d05a07e40c93840f0c5565e86cc3f26a251c8c04b48d10f6b2a634ec3daceee85097eda0e8d8c71d54c83dd5e20089dd49a89c
6
+ metadata.gz: 535d49b34a36dfb10b12ccac9095944ac89e620cebaae97baca7ad1508b020d572aa7003b341f0aaaf8cbe1e38efba9580a301e414039ac3929f9bcf8b0a1db9
7
+ data.tar.gz: 1bbbf31a37a3111eaffc9129c04b8526baa3a70c14db68d9f4e0a34378fd6e9a368d1eaef418d280e595295022bd427ae6478c6ea474857a720c2a64bafd7dfb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.146.0 (2023-07-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.145.0 (2023-06-29)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.144.0 (2023-06-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.144.0
1
+ 1.146.0
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
30
  require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
+ require 'aws-sdk-core/plugins/request_compression.rb'
31
32
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
33
  require 'aws-sdk-core/plugins/recursion_detection.rb'
33
34
  require 'aws-sdk-core/plugins/sign.rb'
@@ -77,6 +78,7 @@ module Aws::Glue
77
78
  add_plugin(Aws::Plugins::TransferEncoding)
78
79
  add_plugin(Aws::Plugins::HttpChecksum)
79
80
  add_plugin(Aws::Plugins::ChecksumAlgorithm)
81
+ add_plugin(Aws::Plugins::RequestCompression)
80
82
  add_plugin(Aws::Plugins::DefaultsMode)
81
83
  add_plugin(Aws::Plugins::RecursionDetection)
82
84
  add_plugin(Aws::Plugins::Sign)
@@ -190,6 +192,10 @@ module Aws::Glue
190
192
  # Set to true to disable SDK automatically adding host prefix
191
193
  # to default service endpoint when available.
192
194
  #
195
+ # @option options [Boolean] :disable_request_compression (false)
196
+ # When set to 'true' the request body will not be compressed
197
+ # for supported operations.
198
+ #
193
199
  # @option options [String] :endpoint
194
200
  # The client endpoint is normally constructed from the `:region`
195
201
  # option. You should only configure an `:endpoint` when connecting
@@ -230,6 +236,11 @@ module Aws::Glue
230
236
  # Used when loading credentials from the shared credentials file
231
237
  # at HOME/.aws/credentials. When not specified, 'default' is used.
232
238
  #
239
+ # @option options [Integer] :request_min_compression_size_bytes (10240)
240
+ # The minimum size in bytes that triggers compression for request
241
+ # bodies. The value must be non-negative integer value between 0
242
+ # and 10485780 bytes inclusive.
243
+ #
233
244
  # @option options [Proc] :retry_backoff
234
245
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
235
246
  # This option is only used in the `legacy` retry mode.
@@ -804,6 +815,13 @@ module Aws::Glue
804
815
  # resp.crawlers[0].targets.delta_targets[0].connection_name #=> String
805
816
  # resp.crawlers[0].targets.delta_targets[0].write_manifest #=> Boolean
806
817
  # resp.crawlers[0].targets.delta_targets[0].create_native_delta_table #=> Boolean
818
+ # resp.crawlers[0].targets.iceberg_targets #=> Array
819
+ # resp.crawlers[0].targets.iceberg_targets[0].paths #=> Array
820
+ # resp.crawlers[0].targets.iceberg_targets[0].paths[0] #=> String
821
+ # resp.crawlers[0].targets.iceberg_targets[0].connection_name #=> String
822
+ # resp.crawlers[0].targets.iceberg_targets[0].exclusions #=> Array
823
+ # resp.crawlers[0].targets.iceberg_targets[0].exclusions[0] #=> String
824
+ # resp.crawlers[0].targets.iceberg_targets[0].maximum_traversal_depth #=> Integer
807
825
  # resp.crawlers[0].database_name #=> String
808
826
  # resp.crawlers[0].description #=> String
809
827
  # resp.crawlers[0].classifiers #=> Array
@@ -2765,6 +2783,14 @@ module Aws::Glue
2765
2783
  # create_native_delta_table: false,
2766
2784
  # },
2767
2785
  # ],
2786
+ # iceberg_targets: [
2787
+ # {
2788
+ # paths: ["Path"],
2789
+ # connection_name: "ConnectionName",
2790
+ # exclusions: ["Path"],
2791
+ # maximum_traversal_depth: 1,
2792
+ # },
2793
+ # ],
2768
2794
  # },
2769
2795
  # schedule: "CronExpression",
2770
2796
  # classifiers: ["NameString"],
@@ -5995,6 +6021,13 @@ module Aws::Glue
5995
6021
  # resp.crawler.targets.delta_targets[0].connection_name #=> String
5996
6022
  # resp.crawler.targets.delta_targets[0].write_manifest #=> Boolean
5997
6023
  # resp.crawler.targets.delta_targets[0].create_native_delta_table #=> Boolean
6024
+ # resp.crawler.targets.iceberg_targets #=> Array
6025
+ # resp.crawler.targets.iceberg_targets[0].paths #=> Array
6026
+ # resp.crawler.targets.iceberg_targets[0].paths[0] #=> String
6027
+ # resp.crawler.targets.iceberg_targets[0].connection_name #=> String
6028
+ # resp.crawler.targets.iceberg_targets[0].exclusions #=> Array
6029
+ # resp.crawler.targets.iceberg_targets[0].exclusions[0] #=> String
6030
+ # resp.crawler.targets.iceberg_targets[0].maximum_traversal_depth #=> Integer
5998
6031
  # resp.crawler.database_name #=> String
5999
6032
  # resp.crawler.description #=> String
6000
6033
  # resp.crawler.classifiers #=> Array
@@ -6142,6 +6175,13 @@ module Aws::Glue
6142
6175
  # resp.crawlers[0].targets.delta_targets[0].connection_name #=> String
6143
6176
  # resp.crawlers[0].targets.delta_targets[0].write_manifest #=> Boolean
6144
6177
  # resp.crawlers[0].targets.delta_targets[0].create_native_delta_table #=> Boolean
6178
+ # resp.crawlers[0].targets.iceberg_targets #=> Array
6179
+ # resp.crawlers[0].targets.iceberg_targets[0].paths #=> Array
6180
+ # resp.crawlers[0].targets.iceberg_targets[0].paths[0] #=> String
6181
+ # resp.crawlers[0].targets.iceberg_targets[0].connection_name #=> String
6182
+ # resp.crawlers[0].targets.iceberg_targets[0].exclusions #=> Array
6183
+ # resp.crawlers[0].targets.iceberg_targets[0].exclusions[0] #=> String
6184
+ # resp.crawlers[0].targets.iceberg_targets[0].maximum_traversal_depth #=> Integer
6145
6185
  # resp.crawlers[0].database_name #=> String
6146
6186
  # resp.crawlers[0].description #=> String
6147
6187
  # resp.crawlers[0].classifiers #=> Array
@@ -14836,6 +14876,14 @@ module Aws::Glue
14836
14876
  # create_native_delta_table: false,
14837
14877
  # },
14838
14878
  # ],
14879
+ # iceberg_targets: [
14880
+ # {
14881
+ # paths: ["Path"],
14882
+ # connection_name: "ConnectionName",
14883
+ # exclusions: ["Path"],
14884
+ # maximum_traversal_depth: 1,
14885
+ # },
14886
+ # ],
14839
14887
  # },
14840
14888
  # schedule: "CronExpression",
14841
14889
  # classifiers: ["NameString"],
@@ -15892,7 +15940,7 @@ module Aws::Glue
15892
15940
  params: params,
15893
15941
  config: config)
15894
15942
  context[:gem_name] = 'aws-sdk-glue'
15895
- context[:gem_version] = '1.144.0'
15943
+ context[:gem_version] = '1.146.0'
15896
15944
  Seahorse::Client::Request.new(handlers, context)
15897
15945
  end
15898
15946
 
@@ -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
 
@@ -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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-glue/customizations'
52
52
  # @!group service
53
53
  module Aws::Glue
54
54
 
55
- GEM_VERSION = '1.144.0'
55
+ GEM_VERSION = '1.146.0'
56
56
 
57
57
  end
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.144.0
4
+ version: 1.146.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-28 00:00:00.000000000 Z
11
+ date: 2023-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.176.0
22
+ version: 3.177.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.176.0
32
+ version: 3.177.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement