aws-sdk-s3tables 1.9.0 → 1.10.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: 8dd80be5f6de15e8d6c6c772b90889bfe31bc69493f496d27c601580a2abe85d
4
- data.tar.gz: 01f24b76968b4844d91c96d938807af5066c951314be65528656f6b70203f204
3
+ metadata.gz: 2ca55b6c0623ccffc54639fefde30ed145e7f2d2ac26845d574685f0719220f1
4
+ data.tar.gz: e8ff7e61e1aec6ca9c11b9dfba00f29f0a20110d43b86cf29918d7b24da26805
5
5
  SHA512:
6
- metadata.gz: 2d11ab3ebf9d6ed51bd127087ddd6b80f6201be120d88877e4aacdadb68643f6e2caa1a4a2cbde8dd5ebdbdb41fff5aac0b3e10d209259f7d96bf80b82585a2f
7
- data.tar.gz: 8b0798e6c150894099f41f91370ecb59482c1244da5724edbd54968e8f771c3e6ab9a2d28f4d8607327f281aa2bc9a0c0a997cbcebdb3d3875463437a14e68d0
6
+ metadata.gz: c93f33aadc7c8f425d2dfcc1136b44539d6bc7de70f0af8f89b4852e47815c7dbc12bb490e7c2ebd09ddccd401949e998feb6d09525e947f5b2bab4b7e525cf1
7
+ data.tar.gz: b7a16c159b9a511c58cbb35ee9193da2c1d6707dc28471de7f167219d038056f4d75075d5368c21e0c8ef5e9bbcd03ee1c984534913b4434b17fe001be9b10d7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2025-06-23)
5
+ ------------------
6
+
7
+ * Feature - S3 Tables now supports sort and z-order compaction strategies for Iceberg tables in addition to binpack.
8
+
4
9
  1.9.0 (2025-06-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.10.0
@@ -1235,9 +1235,11 @@ module Aws::S3Tables
1235
1235
  # Storage Service User Guide*.
1236
1236
  #
1237
1237
  # Permissions
1238
+ # : * You must have the `s3tables:GetTableMaintenanceConfiguration`
1239
+ # permission to use this operation.
1238
1240
  #
1239
- # : You must have the `s3tables:GetTableMaintenanceConfiguration`
1240
- # permission to use this operation.
1241
+ # * You must have the `s3tables:GetTableData` permission to use set
1242
+ # the compaction strategy to `sort` or `zorder`.
1241
1243
  #
1242
1244
  #
1243
1245
  #
@@ -1271,6 +1273,7 @@ module Aws::S3Tables
1271
1273
  # resp.configuration #=> Hash
1272
1274
  # resp.configuration["TableMaintenanceType"].status #=> String, one of "enabled", "disabled"
1273
1275
  # resp.configuration["TableMaintenanceType"].settings.iceberg_compaction.target_file_size_mb #=> Integer
1276
+ # resp.configuration["TableMaintenanceType"].settings.iceberg_compaction.strategy #=> String, one of "auto", "binpack", "sort", "z-order"
1274
1277
  # resp.configuration["TableMaintenanceType"].settings.iceberg_snapshot_management.min_snapshots_to_keep #=> Integer
1275
1278
  # resp.configuration["TableMaintenanceType"].settings.iceberg_snapshot_management.max_snapshot_age_hours #=> Integer
1276
1279
  #
@@ -1799,6 +1802,7 @@ module Aws::S3Tables
1799
1802
  # settings: {
1800
1803
  # iceberg_compaction: {
1801
1804
  # target_file_size_mb: 1,
1805
+ # strategy: "auto", # accepts auto, binpack, sort, z-order
1802
1806
  # },
1803
1807
  # iceberg_snapshot_management: {
1804
1808
  # min_snapshots_to_keep: 1,
@@ -1995,7 +1999,7 @@ module Aws::S3Tables
1995
1999
  tracer: tracer
1996
2000
  )
1997
2001
  context[:gem_name] = 'aws-sdk-s3tables'
1998
- context[:gem_version] = '1.9.0'
2002
+ context[:gem_version] = '1.10.0'
1999
2003
  Seahorse::Client::Request.new(handlers, context)
2000
2004
  end
2001
2005
 
@@ -59,6 +59,7 @@ module Aws::S3Tables
59
59
  GetTableRequest = Shapes::StructureShape.new(name: 'GetTableRequest')
60
60
  GetTableResponse = Shapes::StructureShape.new(name: 'GetTableResponse')
61
61
  IcebergCompactionSettings = Shapes::StructureShape.new(name: 'IcebergCompactionSettings')
62
+ IcebergCompactionStrategy = Shapes::StringShape.new(name: 'IcebergCompactionStrategy')
62
63
  IcebergMetadata = Shapes::StructureShape.new(name: 'IcebergMetadata')
63
64
  IcebergSchema = Shapes::StructureShape.new(name: 'IcebergSchema')
64
65
  IcebergSnapshotManagementSettings = Shapes::StructureShape.new(name: 'IcebergSnapshotManagementSettings')
@@ -307,6 +308,7 @@ module Aws::S3Tables
307
308
  GetTableResponse.struct_class = Types::GetTableResponse
308
309
 
309
310
  IcebergCompactionSettings.add_member(:target_file_size_mb, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "targetFileSizeMB"))
311
+ IcebergCompactionSettings.add_member(:strategy, Shapes::ShapeRef.new(shape: IcebergCompactionStrategy, location_name: "strategy"))
310
312
  IcebergCompactionSettings.struct_class = Types::IcebergCompactionSettings
311
313
 
312
314
  IcebergMetadata.add_member(:schema, Shapes::ShapeRef.new(shape: IcebergSchema, required: true, location_name: "schema"))
@@ -826,10 +826,16 @@ module Aws::S3Tables
826
826
  # The target file size for the table in MB.
827
827
  # @return [Integer]
828
828
  #
829
+ # @!attribute [rw] strategy
830
+ # The compaction strategy to use for the table. This determines how
831
+ # files are selected and combined during compaction operations.
832
+ # @return [String]
833
+ #
829
834
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/IcebergCompactionSettings AWS API Documentation
830
835
  #
831
836
  class IcebergCompactionSettings < Struct.new(
832
- :target_file_size_mb)
837
+ :target_file_size_mb,
838
+ :strategy)
833
839
  SENSITIVE = []
834
840
  include Aws::Structure
835
841
  end
@@ -55,7 +55,7 @@ module Aws::S3Tables
55
55
  autoload :EndpointProvider, 'aws-sdk-s3tables/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-s3tables/endpoints'
57
57
 
58
- GEM_VERSION = '1.9.0'
58
+ GEM_VERSION = '1.10.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -414,7 +414,8 @@ module Aws
414
414
  status: ("enabled" | "disabled")?,
415
415
  settings: {
416
416
  iceberg_compaction: {
417
- target_file_size_mb: ::Integer?
417
+ target_file_size_mb: ::Integer?,
418
+ strategy: ("auto" | "binpack" | "sort" | "z-order")?
418
419
  }?,
419
420
  iceberg_snapshot_management: {
420
421
  min_snapshots_to_keep: ::Integer?,
data/sig/types.rbs CHANGED
@@ -264,6 +264,7 @@ module Aws::S3Tables
264
264
 
265
265
  class IcebergCompactionSettings
266
266
  attr_accessor target_file_size_mb: ::Integer
267
+ attr_accessor strategy: ("auto" | "binpack" | "sort" | "z-order")
267
268
  SENSITIVE: []
268
269
  end
269
270
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3tables
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services