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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3tables/client.rb +7 -3
- data/lib/aws-sdk-s3tables/client_api.rb +2 -0
- data/lib/aws-sdk-s3tables/types.rb +7 -1
- data/lib/aws-sdk-s3tables.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ca55b6c0623ccffc54639fefde30ed145e7f2d2ac26845d574685f0719220f1
|
4
|
+
data.tar.gz: e8ff7e61e1aec6ca9c11b9dfba00f29f0a20110d43b86cf29918d7b24da26805
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c93f33aadc7c8f425d2dfcc1136b44539d6bc7de70f0af8f89b4852e47815c7dbc12bb490e7c2ebd09ddccd401949e998feb6d09525e947f5b2bab4b7e525cf1
|
7
|
+
data.tar.gz: b7a16c159b9a511c58cbb35ee9193da2c1d6707dc28471de7f167219d038056f4d75075d5368c21e0c8ef5e9bbcd03ee1c984534913b4434b17fe001be9b10d7
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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
|
-
#
|
1240
|
-
#
|
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.
|
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
|
data/lib/aws-sdk-s3tables.rb
CHANGED
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