aws-sdk-s3tables 1.9.0 → 1.11.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: 34182cfd7dbfa1ab386c66f1f62565f383180561f68ddf618a13e49361a512bb
4
+ data.tar.gz: c414b36804fac55803b856787d0fadecce2212a4d1a8d402bffec711ac78e024
5
5
  SHA512:
6
- metadata.gz: 2d11ab3ebf9d6ed51bd127087ddd6b80f6201be120d88877e4aacdadb68643f6e2caa1a4a2cbde8dd5ebdbdb41fff5aac0b3e10d209259f7d96bf80b82585a2f
7
- data.tar.gz: 8b0798e6c150894099f41f91370ecb59482c1244da5724edbd54968e8f771c3e6ab9a2d28f4d8607327f281aa2bc9a0c0a997cbcebdb3d3875463437a14e68d0
6
+ metadata.gz: 873a212799b9704aa51280fe591ae8b984a33caa541540d3d9974657f360af581626eca75d8e8763544d2f37163328e8babf2afca20a191ca59c4417a994bc3b
7
+ data.tar.gz: 06b33484841af29231cf1f3bf62ed56b0669c7ff1c5c6d001d3410c5b0119542d82fa3537feb5b992c3ade42568a1332d9ee165d8af1d0eca7674a03c72826d7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2025-07-15)
5
+ ------------------
6
+
7
+ * Feature - Adds table bucket type to ListTableBucket and GetTableBucket API operations
8
+
9
+ 1.10.0 (2025-06-23)
10
+ ------------------
11
+
12
+ * Feature - S3 Tables now supports sort and z-order compaction strategies for Iceberg tables in addition to binpack.
13
+
4
14
  1.9.0 (2025-06-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.11.0
@@ -1045,6 +1045,7 @@ module Aws::S3Tables
1045
1045
  # * {Types::GetTableBucketResponse#owner_account_id #owner_account_id} => String
1046
1046
  # * {Types::GetTableBucketResponse#created_at #created_at} => Time
1047
1047
  # * {Types::GetTableBucketResponse#table_bucket_id #table_bucket_id} => String
1048
+ # * {Types::GetTableBucketResponse#type #type} => String
1048
1049
  #
1049
1050
  # @example Request syntax with placeholder values
1050
1051
  #
@@ -1059,6 +1060,7 @@ module Aws::S3Tables
1059
1060
  # resp.owner_account_id #=> String
1060
1061
  # resp.created_at #=> Time
1061
1062
  # resp.table_bucket_id #=> String
1063
+ # resp.type #=> String, one of "customer", "aws"
1062
1064
  #
1063
1065
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucket AWS API Documentation
1064
1066
  #
@@ -1235,9 +1237,11 @@ module Aws::S3Tables
1235
1237
  # Storage Service User Guide*.
1236
1238
  #
1237
1239
  # Permissions
1240
+ # : * You must have the `s3tables:GetTableMaintenanceConfiguration`
1241
+ # permission to use this operation.
1238
1242
  #
1239
- # : You must have the `s3tables:GetTableMaintenanceConfiguration`
1240
- # permission to use this operation.
1243
+ # * You must have the `s3tables:GetTableData` permission to use set
1244
+ # the compaction strategy to `sort` or `zorder`.
1241
1245
  #
1242
1246
  #
1243
1247
  #
@@ -1271,6 +1275,7 @@ module Aws::S3Tables
1271
1275
  # resp.configuration #=> Hash
1272
1276
  # resp.configuration["TableMaintenanceType"].status #=> String, one of "enabled", "disabled"
1273
1277
  # resp.configuration["TableMaintenanceType"].settings.iceberg_compaction.target_file_size_mb #=> Integer
1278
+ # resp.configuration["TableMaintenanceType"].settings.iceberg_compaction.strategy #=> String, one of "auto", "binpack", "sort", "z-order"
1274
1279
  # resp.configuration["TableMaintenanceType"].settings.iceberg_snapshot_management.min_snapshots_to_keep #=> Integer
1275
1280
  # resp.configuration["TableMaintenanceType"].settings.iceberg_snapshot_management.max_snapshot_age_hours #=> Integer
1276
1281
  #
@@ -1516,6 +1521,9 @@ module Aws::S3Tables
1516
1521
  # @option params [Integer] :max_buckets
1517
1522
  # The maximum number of table buckets to return in the list.
1518
1523
  #
1524
+ # @option params [String] :type
1525
+ # The type of table buckets to filter by in the list.
1526
+ #
1519
1527
  # @return [Types::ListTableBucketsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1520
1528
  #
1521
1529
  # * {Types::ListTableBucketsResponse#table_buckets #table_buckets} => Array<Types::TableBucketSummary>
@@ -1529,6 +1537,7 @@ module Aws::S3Tables
1529
1537
  # prefix: "ListTableBucketsRequestPrefixString",
1530
1538
  # continuation_token: "NextToken",
1531
1539
  # max_buckets: 1,
1540
+ # type: "customer", # accepts customer, aws
1532
1541
  # })
1533
1542
  #
1534
1543
  # @example Response structure
@@ -1539,6 +1548,7 @@ module Aws::S3Tables
1539
1548
  # resp.table_buckets[0].owner_account_id #=> String
1540
1549
  # resp.table_buckets[0].created_at #=> Time
1541
1550
  # resp.table_buckets[0].table_bucket_id #=> String
1551
+ # resp.table_buckets[0].type #=> String, one of "customer", "aws"
1542
1552
  # resp.continuation_token #=> String
1543
1553
  #
1544
1554
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListTableBuckets AWS API Documentation
@@ -1799,6 +1809,7 @@ module Aws::S3Tables
1799
1809
  # settings: {
1800
1810
  # iceberg_compaction: {
1801
1811
  # target_file_size_mb: 1,
1812
+ # strategy: "auto", # accepts auto, binpack, sort, z-order
1802
1813
  # },
1803
1814
  # iceberg_snapshot_management: {
1804
1815
  # min_snapshots_to_keep: 1,
@@ -1995,7 +2006,7 @@ module Aws::S3Tables
1995
2006
  tracer: tracer
1996
2007
  )
1997
2008
  context[:gem_name] = 'aws-sdk-s3tables'
1998
- context[:gem_version] = '1.9.0'
2009
+ context[:gem_version] = '1.11.0'
1999
2010
  Seahorse::Client::Request.new(handlers, context)
2000
2011
  end
2001
2012
 
@@ -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')
@@ -110,6 +111,7 @@ module Aws::S3Tables
110
111
  TableBucketName = Shapes::StringShape.new(name: 'TableBucketName')
111
112
  TableBucketSummary = Shapes::StructureShape.new(name: 'TableBucketSummary')
112
113
  TableBucketSummaryList = Shapes::ListShape.new(name: 'TableBucketSummaryList')
114
+ TableBucketType = Shapes::StringShape.new(name: 'TableBucketType')
113
115
  TableMaintenanceConfiguration = Shapes::MapShape.new(name: 'TableMaintenanceConfiguration')
114
116
  TableMaintenanceConfigurationValue = Shapes::StructureShape.new(name: 'TableMaintenanceConfigurationValue')
115
117
  TableMaintenanceJobStatus = Shapes::MapShape.new(name: 'TableMaintenanceJobStatus')
@@ -236,6 +238,7 @@ module Aws::S3Tables
236
238
  GetTableBucketResponse.add_member(:owner_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "ownerAccountId"))
237
239
  GetTableBucketResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createdAt"))
238
240
  GetTableBucketResponse.add_member(:table_bucket_id, Shapes::ShapeRef.new(shape: TableBucketId, location_name: "tableBucketId"))
241
+ GetTableBucketResponse.add_member(:type, Shapes::ShapeRef.new(shape: TableBucketType, location_name: "type"))
239
242
  GetTableBucketResponse.struct_class = Types::GetTableBucketResponse
240
243
 
241
244
  GetTableEncryptionRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
@@ -307,6 +310,7 @@ module Aws::S3Tables
307
310
  GetTableResponse.struct_class = Types::GetTableResponse
308
311
 
309
312
  IcebergCompactionSettings.add_member(:target_file_size_mb, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "targetFileSizeMB"))
313
+ IcebergCompactionSettings.add_member(:strategy, Shapes::ShapeRef.new(shape: IcebergCompactionStrategy, location_name: "strategy"))
310
314
  IcebergCompactionSettings.struct_class = Types::IcebergCompactionSettings
311
315
 
312
316
  IcebergMetadata.add_member(:schema, Shapes::ShapeRef.new(shape: IcebergSchema, required: true, location_name: "schema"))
@@ -339,6 +343,7 @@ module Aws::S3Tables
339
343
  ListTableBucketsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: ListTableBucketsRequestPrefixString, location: "querystring", location_name: "prefix"))
340
344
  ListTableBucketsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "continuationToken"))
341
345
  ListTableBucketsRequest.add_member(:max_buckets, Shapes::ShapeRef.new(shape: ListTableBucketsLimit, location: "querystring", location_name: "maxBuckets"))
346
+ ListTableBucketsRequest.add_member(:type, Shapes::ShapeRef.new(shape: TableBucketType, location: "querystring", location_name: "type"))
342
347
  ListTableBucketsRequest.struct_class = Types::ListTableBucketsRequest
343
348
 
344
349
  ListTableBucketsResponse.add_member(:table_buckets, Shapes::ShapeRef.new(shape: TableBucketSummaryList, required: true, location_name: "tableBuckets"))
@@ -430,6 +435,7 @@ module Aws::S3Tables
430
435
  TableBucketSummary.add_member(:owner_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "ownerAccountId"))
431
436
  TableBucketSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createdAt"))
432
437
  TableBucketSummary.add_member(:table_bucket_id, Shapes::ShapeRef.new(shape: TableBucketId, location_name: "tableBucketId"))
438
+ TableBucketSummary.add_member(:type, Shapes::ShapeRef.new(shape: TableBucketType, location_name: "type"))
433
439
  TableBucketSummary.struct_class = Types::TableBucketSummary
434
440
 
435
441
  TableBucketSummaryList.member = Shapes::ShapeRef.new(shape: TableBucketSummary)
@@ -501,6 +501,10 @@ module Aws::S3Tables
501
501
  # The unique identifier of the table bucket.
502
502
  # @return [String]
503
503
  #
504
+ # @!attribute [rw] type
505
+ # The type of the table bucket.
506
+ # @return [String]
507
+ #
504
508
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketResponse AWS API Documentation
505
509
  #
506
510
  class GetTableBucketResponse < Struct.new(
@@ -508,7 +512,8 @@ module Aws::S3Tables
508
512
  :name,
509
513
  :owner_account_id,
510
514
  :created_at,
511
- :table_bucket_id)
515
+ :table_bucket_id,
516
+ :type)
512
517
  SENSITIVE = []
513
518
  include Aws::Structure
514
519
  end
@@ -826,10 +831,16 @@ module Aws::S3Tables
826
831
  # The target file size for the table in MB.
827
832
  # @return [Integer]
828
833
  #
834
+ # @!attribute [rw] strategy
835
+ # The compaction strategy to use for the table. This determines how
836
+ # files are selected and combined during compaction operations.
837
+ # @return [String]
838
+ #
829
839
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/IcebergCompactionSettings AWS API Documentation
830
840
  #
831
841
  class IcebergCompactionSettings < Struct.new(
832
- :target_file_size_mb)
842
+ :target_file_size_mb,
843
+ :strategy)
833
844
  SENSITIVE = []
834
845
  include Aws::Structure
835
846
  end
@@ -982,12 +993,17 @@ module Aws::S3Tables
982
993
  # The maximum number of table buckets to return in the list.
983
994
  # @return [Integer]
984
995
  #
996
+ # @!attribute [rw] type
997
+ # The type of table buckets to filter by in the list.
998
+ # @return [String]
999
+ #
985
1000
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListTableBucketsRequest AWS API Documentation
986
1001
  #
987
1002
  class ListTableBucketsRequest < Struct.new(
988
1003
  :prefix,
989
1004
  :continuation_token,
990
- :max_buckets)
1005
+ :max_buckets,
1006
+ :type)
991
1007
  SENSITIVE = []
992
1008
  include Aws::Structure
993
1009
  end
@@ -1372,6 +1388,10 @@ module Aws::S3Tables
1372
1388
  # The system-assigned unique identifier for the table bucket.
1373
1389
  # @return [String]
1374
1390
  #
1391
+ # @!attribute [rw] type
1392
+ # The type of the table bucket.
1393
+ # @return [String]
1394
+ #
1375
1395
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/TableBucketSummary AWS API Documentation
1376
1396
  #
1377
1397
  class TableBucketSummary < Struct.new(
@@ -1379,7 +1399,8 @@ module Aws::S3Tables
1379
1399
  :name,
1380
1400
  :owner_account_id,
1381
1401
  :created_at,
1382
- :table_bucket_id)
1402
+ :table_bucket_id,
1403
+ :type)
1383
1404
  SENSITIVE = []
1384
1405
  include Aws::Structure
1385
1406
  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.11.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -227,6 +227,7 @@ module Aws
227
227
  def owner_account_id: () -> ::String
228
228
  def created_at: () -> ::Time
229
229
  def table_bucket_id: () -> ::String
230
+ def type: () -> ("customer" | "aws")
230
231
  end
231
232
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_bucket-instance_method
232
233
  def get_table_bucket: (
@@ -352,7 +353,8 @@ module Aws
352
353
  def list_table_buckets: (
353
354
  ?prefix: ::String,
354
355
  ?continuation_token: ::String,
355
- ?max_buckets: ::Integer
356
+ ?max_buckets: ::Integer,
357
+ ?type: ("customer" | "aws")
356
358
  ) -> _ListTableBucketsResponseSuccess
357
359
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTableBucketsResponseSuccess
358
360
 
@@ -414,7 +416,8 @@ module Aws
414
416
  status: ("enabled" | "disabled")?,
415
417
  settings: {
416
418
  iceberg_compaction: {
417
- target_file_size_mb: ::Integer?
419
+ target_file_size_mb: ::Integer?,
420
+ strategy: ("auto" | "binpack" | "sort" | "z-order")?
418
421
  }?,
419
422
  iceberg_snapshot_management: {
420
423
  min_snapshots_to_keep: ::Integer?,
data/sig/types.rbs CHANGED
@@ -167,6 +167,7 @@ module Aws::S3Tables
167
167
  attr_accessor owner_account_id: ::String
168
168
  attr_accessor created_at: ::Time
169
169
  attr_accessor table_bucket_id: ::String
170
+ attr_accessor type: ("customer" | "aws")
170
171
  SENSITIVE: []
171
172
  end
172
173
 
@@ -264,6 +265,7 @@ module Aws::S3Tables
264
265
 
265
266
  class IcebergCompactionSettings
266
267
  attr_accessor target_file_size_mb: ::Integer
268
+ attr_accessor strategy: ("auto" | "binpack" | "sort" | "z-order")
267
269
  SENSITIVE: []
268
270
  end
269
271
 
@@ -312,6 +314,7 @@ module Aws::S3Tables
312
314
  attr_accessor prefix: ::String
313
315
  attr_accessor continuation_token: ::String
314
316
  attr_accessor max_buckets: ::Integer
317
+ attr_accessor type: ("customer" | "aws")
315
318
  SENSITIVE: []
316
319
  end
317
320
 
@@ -427,6 +430,7 @@ module Aws::S3Tables
427
430
  attr_accessor owner_account_id: ::String
428
431
  attr_accessor created_at: ::Time
429
432
  attr_accessor table_bucket_id: ::String
433
+ attr_accessor type: ("customer" | "aws")
430
434
  SENSITIVE: []
431
435
  end
432
436
 
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.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services