aws-sdk-glue 1.145.0 → 1.147.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5232184d64ef8cb37f4ca1f69733af9352b754a040a2bd48df6cbecfde3205b
4
- data.tar.gz: 3c906d09cc88413057eeb2d9943cc357dbfdbe80e10072873a8fcff11ab9ab71
3
+ metadata.gz: b31beb6412823187f8dde112f9662265f2879e7d28dfe3e51c71776cc7cf77a2
4
+ data.tar.gz: 126143050e70c749fcef2be1cb1dfcfed7ae9af1959344573b0926538897829a
5
5
  SHA512:
6
- metadata.gz: 9f6eb5461da18768ab38309a6ef722e4c8616e5c5251ee8a44a2c8896badd436b0b25c77fd8996fbc108aa61c8a4c75192bb308fbeb936b75ca417e0efa8dd9c
7
- data.tar.gz: 6c22a8930734d6e803d202c92fbf3cf0fb0a66e642dae33bf4f796861868fa624889e0a7447a01f3676217ffc72da61fe53aee3b5ce9933dd3df82f502252cef
6
+ metadata.gz: bf425cc59d9b638e2f73cce6a4d2c0f5b61b92bc443787494be95710fff0f329f4b676bd088cd4d3bede493268d4de1b7c9778ba5054e5c427ed5064a3943967
7
+ data.tar.gz: be1ba4de0a9e56c19afb0b8c782c413952cb5a5d30b921a7a9b461eb5ddb635b3796377dc7139aa50a45430783080c83d2523a89c3976b7b35d92acef1eff0a3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.147.0 (2023-07-07)
5
+ ------------------
6
+
7
+ * Feature - This release enables customers to create new Apache Iceberg tables and associated metadata in Amazon S3 by using native AWS Glue CreateTable operation.
8
+
9
+ 1.146.0 (2023-07-06)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.145.0 (2023-06-29)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.145.0
1
+ 1.147.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.
@@ -4214,6 +4225,10 @@ module Aws::Glue
4214
4225
  # @option params [String] :transaction_id
4215
4226
  # The ID of the transaction.
4216
4227
  #
4228
+ # @option params [Types::OpenTableFormatInput] :open_table_format_input
4229
+ # Specifies an `OpenTableFormatInput` structure when creating an open
4230
+ # format table.
4231
+ #
4217
4232
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4218
4233
  #
4219
4234
  # @example Request syntax with placeholder values
@@ -4310,6 +4325,12 @@ module Aws::Glue
4310
4325
  # },
4311
4326
  # ],
4312
4327
  # transaction_id: "TransactionIdString",
4328
+ # open_table_format_input: {
4329
+ # iceberg_input: {
4330
+ # metadata_operation: "CREATE", # required, accepts CREATE
4331
+ # version: "VersionString",
4332
+ # },
4333
+ # },
4313
4334
  # })
4314
4335
  #
4315
4336
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateTable AWS API Documentation
@@ -15929,7 +15950,7 @@ module Aws::Glue
15929
15950
  params: params,
15930
15951
  config: config)
15931
15952
  context[:gem_name] = 'aws-sdk-glue'
15932
- context[:gem_version] = '1.145.0'
15953
+ context[:gem_version] = '1.147.0'
15933
15954
  Seahorse::Client::Request.new(handlers, context)
15934
15955
  end
15935
15956
 
@@ -610,6 +610,7 @@ 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
+ IcebergInput = Shapes::StructureShape.new(name: 'IcebergInput')
613
614
  IcebergTarget = Shapes::StructureShape.new(name: 'IcebergTarget')
614
615
  IcebergTargetList = Shapes::ListShape.new(name: 'IcebergTargetList')
615
616
  IdString = Shapes::StringShape.new(name: 'IdString')
@@ -745,6 +746,7 @@ module Aws::Glue
745
746
  MetadataKeyString = Shapes::StringShape.new(name: 'MetadataKeyString')
746
747
  MetadataKeyValuePair = Shapes::StructureShape.new(name: 'MetadataKeyValuePair')
747
748
  MetadataList = Shapes::ListShape.new(name: 'MetadataList')
749
+ MetadataOperation = Shapes::StringShape.new(name: 'MetadataOperation')
748
750
  MetadataValueString = Shapes::StringShape.new(name: 'MetadataValueString')
749
751
  MicrosoftSQLServerCatalogSource = Shapes::StructureShape.new(name: 'MicrosoftSQLServerCatalogSource')
750
752
  MicrosoftSQLServerCatalogTarget = Shapes::StructureShape.new(name: 'MicrosoftSQLServerCatalogTarget')
@@ -775,6 +777,7 @@ module Aws::Glue
775
777
  NullableDouble = Shapes::FloatShape.new(name: 'NullableDouble')
776
778
  NullableInteger = Shapes::IntegerShape.new(name: 'NullableInteger')
777
779
  OneInput = Shapes::ListShape.new(name: 'OneInput')
780
+ OpenTableFormatInput = Shapes::StructureShape.new(name: 'OpenTableFormatInput')
778
781
  OperationTimeoutException = Shapes::StructureShape.new(name: 'OperationTimeoutException')
779
782
  Option = Shapes::StructureShape.new(name: 'Option')
780
783
  OptionList = Shapes::ListShape.new(name: 'OptionList')
@@ -2146,6 +2149,7 @@ module Aws::Glue
2146
2149
  CreateTableRequest.add_member(:table_input, Shapes::ShapeRef.new(shape: TableInput, required: true, location_name: "TableInput"))
2147
2150
  CreateTableRequest.add_member(:partition_indexes, Shapes::ShapeRef.new(shape: PartitionIndexList, location_name: "PartitionIndexes"))
2148
2151
  CreateTableRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
2152
+ CreateTableRequest.add_member(:open_table_format_input, Shapes::ShapeRef.new(shape: OpenTableFormatInput, location_name: "OpenTableFormatInput"))
2149
2153
  CreateTableRequest.struct_class = Types::CreateTableRequest
2150
2154
 
2151
2155
  CreateTableResponse.struct_class = Types::CreateTableResponse
@@ -3532,6 +3536,10 @@ module Aws::Glue
3532
3536
  GrokClassifier.add_member(:custom_patterns, Shapes::ShapeRef.new(shape: CustomPatterns, location_name: "CustomPatterns"))
3533
3537
  GrokClassifier.struct_class = Types::GrokClassifier
3534
3538
 
3539
+ IcebergInput.add_member(:metadata_operation, Shapes::ShapeRef.new(shape: MetadataOperation, required: true, location_name: "MetadataOperation"))
3540
+ IcebergInput.add_member(:version, Shapes::ShapeRef.new(shape: VersionString, location_name: "Version"))
3541
+ IcebergInput.struct_class = Types::IcebergInput
3542
+
3535
3543
  IcebergTarget.add_member(:paths, Shapes::ShapeRef.new(shape: PathList, location_name: "Paths"))
3536
3544
  IcebergTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
3537
3545
  IcebergTarget.add_member(:exclusions, Shapes::ShapeRef.new(shape: PathList, location_name: "Exclusions"))
@@ -4133,6 +4141,9 @@ module Aws::Glue
4133
4141
 
4134
4142
  OneInput.member = Shapes::ShapeRef.new(shape: NodeId)
4135
4143
 
4144
+ OpenTableFormatInput.add_member(:iceberg_input, Shapes::ShapeRef.new(shape: IcebergInput, location_name: "IcebergInput"))
4145
+ OpenTableFormatInput.struct_class = Types::OpenTableFormatInput
4146
+
4136
4147
  OperationTimeoutException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
4137
4148
  OperationTimeoutException.struct_class = Types::OperationTimeoutException
4138
4149
 
@@ -5214,6 +5214,11 @@ module Aws::Glue
5214
5214
  # The ID of the transaction.
5215
5215
  # @return [String]
5216
5216
  #
5217
+ # @!attribute [rw] open_table_format_input
5218
+ # Specifies an `OpenTableFormatInput` structure when creating an open
5219
+ # format table.
5220
+ # @return [Types::OpenTableFormatInput]
5221
+ #
5217
5222
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateTableRequest AWS API Documentation
5218
5223
  #
5219
5224
  class CreateTableRequest < Struct.new(
@@ -5221,7 +5226,8 @@ module Aws::Glue
5221
5226
  :database_name,
5222
5227
  :table_input,
5223
5228
  :partition_indexes,
5224
- :transaction_id)
5229
+ :transaction_id,
5230
+ :open_table_format_input)
5225
5231
  SENSITIVE = []
5226
5232
  include Aws::Structure
5227
5233
  end
@@ -11802,6 +11808,26 @@ module Aws::Glue
11802
11808
  include Aws::Structure
11803
11809
  end
11804
11810
 
11811
+ # A structure that defines an Apache Iceberg metadata table to create in
11812
+ # the catalog.
11813
+ #
11814
+ # @!attribute [rw] metadata_operation
11815
+ # A required metadata operation. Can only be set to `CREATE`.
11816
+ # @return [String]
11817
+ #
11818
+ # @!attribute [rw] version
11819
+ # The table version for the Iceberg table. Defaults to 2.
11820
+ # @return [String]
11821
+ #
11822
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IcebergInput AWS API Documentation
11823
+ #
11824
+ class IcebergInput < Struct.new(
11825
+ :metadata_operation,
11826
+ :version)
11827
+ SENSITIVE = []
11828
+ include Aws::Structure
11829
+ end
11830
+
11805
11831
  # Specifies an Apache Iceberg data source where Iceberg tables are
11806
11832
  # stored in Amazon S3.
11807
11833
  #
@@ -15124,6 +15150,21 @@ module Aws::Glue
15124
15150
  include Aws::Structure
15125
15151
  end
15126
15152
 
15153
+ # A structure representing an open format table.
15154
+ #
15155
+ # @!attribute [rw] iceberg_input
15156
+ # Specifies an `IcebergInput` structure that defines an Apache Iceberg
15157
+ # metadata table.
15158
+ # @return [Types::IcebergInput]
15159
+ #
15160
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/OpenTableFormatInput AWS API Documentation
15161
+ #
15162
+ class OpenTableFormatInput < Struct.new(
15163
+ :iceberg_input)
15164
+ SENSITIVE = []
15165
+ include Aws::Structure
15166
+ end
15167
+
15127
15168
  # The operation timed out.
15128
15169
  #
15129
15170
  # @!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.145.0'
55
+ GEM_VERSION = '1.147.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.145.0
4
+ version: 1.147.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-29 00:00:00.000000000 Z
11
+ date: 2023-07-07 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