aws-sdk-s3tables 1.10.0 → 1.12.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: 2ca55b6c0623ccffc54639fefde30ed145e7f2d2ac26845d574685f0719220f1
4
- data.tar.gz: e8ff7e61e1aec6ca9c11b9dfba00f29f0a20110d43b86cf29918d7b24da26805
3
+ metadata.gz: bcffeb674bcc4ef6d3c90198e51c1b724431c27ab1f80974b67667aadcbf151b
4
+ data.tar.gz: 684b88f9cf9d29b00a943ac8eea7e03ed0a386f7f9f01aa7957a6ced359a8af4
5
5
  SHA512:
6
- metadata.gz: c93f33aadc7c8f425d2dfcc1136b44539d6bc7de70f0af8f89b4852e47815c7dbc12bb490e7c2ebd09ddccd401949e998feb6d09525e947f5b2bab4b7e525cf1
7
- data.tar.gz: b7a16c159b9a511c58cbb35ee9193da2c1d6707dc28471de7f167219d038056f4d75075d5368c21e0c8ef5e9bbcd03ee1c984534913b4434b17fe001be9b10d7
6
+ metadata.gz: 50af4bc16566ec578653c16f3635f229b20eb8cb32f993b1eff8a8d9246eeb12ebd19d9b44efa9930c0af32b7d578a0dd5cf3364375677103552fd08c79862f3
7
+ data.tar.gz: 25de95c313866669aca4429c7ccc63fe2b583b00164da88f770e62bdea81126b04d7ea697c34cebabbe3791e84acafc2f7c1e6e8d40fea9b4ad4e5ca26a3ed77
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.11.0 (2025-07-15)
10
+ ------------------
11
+
12
+ * Feature - Adds table bucket type to ListTableBucket and GetTableBucket API operations
13
+
4
14
  1.10.0 (2025-06-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.12.0
@@ -95,7 +95,7 @@ module Aws::S3Tables
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::S3Tables
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::S3Tables
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::S3Tables
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -367,7 +377,7 @@ module Aws::S3Tables
367
377
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
368
378
  #
369
379
  # @option options [Aws::TokenProvider] :token_provider
370
- # A Bearer Token Provider. This can be an instance of any one of the
380
+ # Your Bearer token used for authentication. This can be an instance of any one of the
371
381
  # following classes:
372
382
  #
373
383
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -1045,6 +1055,7 @@ module Aws::S3Tables
1045
1055
  # * {Types::GetTableBucketResponse#owner_account_id #owner_account_id} => String
1046
1056
  # * {Types::GetTableBucketResponse#created_at #created_at} => Time
1047
1057
  # * {Types::GetTableBucketResponse#table_bucket_id #table_bucket_id} => String
1058
+ # * {Types::GetTableBucketResponse#type #type} => String
1048
1059
  #
1049
1060
  # @example Request syntax with placeholder values
1050
1061
  #
@@ -1059,6 +1070,7 @@ module Aws::S3Tables
1059
1070
  # resp.owner_account_id #=> String
1060
1071
  # resp.created_at #=> Time
1061
1072
  # resp.table_bucket_id #=> String
1073
+ # resp.type #=> String, one of "customer", "aws"
1062
1074
  #
1063
1075
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucket AWS API Documentation
1064
1076
  #
@@ -1519,6 +1531,9 @@ module Aws::S3Tables
1519
1531
  # @option params [Integer] :max_buckets
1520
1532
  # The maximum number of table buckets to return in the list.
1521
1533
  #
1534
+ # @option params [String] :type
1535
+ # The type of table buckets to filter by in the list.
1536
+ #
1522
1537
  # @return [Types::ListTableBucketsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1523
1538
  #
1524
1539
  # * {Types::ListTableBucketsResponse#table_buckets #table_buckets} => Array&lt;Types::TableBucketSummary&gt;
@@ -1532,6 +1547,7 @@ module Aws::S3Tables
1532
1547
  # prefix: "ListTableBucketsRequestPrefixString",
1533
1548
  # continuation_token: "NextToken",
1534
1549
  # max_buckets: 1,
1550
+ # type: "customer", # accepts customer, aws
1535
1551
  # })
1536
1552
  #
1537
1553
  # @example Response structure
@@ -1542,6 +1558,7 @@ module Aws::S3Tables
1542
1558
  # resp.table_buckets[0].owner_account_id #=> String
1543
1559
  # resp.table_buckets[0].created_at #=> Time
1544
1560
  # resp.table_buckets[0].table_bucket_id #=> String
1561
+ # resp.table_buckets[0].type #=> String, one of "customer", "aws"
1545
1562
  # resp.continuation_token #=> String
1546
1563
  #
1547
1564
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListTableBuckets AWS API Documentation
@@ -1999,7 +2016,7 @@ module Aws::S3Tables
1999
2016
  tracer: tracer
2000
2017
  )
2001
2018
  context[:gem_name] = 'aws-sdk-s3tables'
2002
- context[:gem_version] = '1.10.0'
2019
+ context[:gem_version] = '1.12.0'
2003
2020
  Seahorse::Client::Request.new(handlers, context)
2004
2021
  end
2005
2022
 
@@ -111,6 +111,7 @@ module Aws::S3Tables
111
111
  TableBucketName = Shapes::StringShape.new(name: 'TableBucketName')
112
112
  TableBucketSummary = Shapes::StructureShape.new(name: 'TableBucketSummary')
113
113
  TableBucketSummaryList = Shapes::ListShape.new(name: 'TableBucketSummaryList')
114
+ TableBucketType = Shapes::StringShape.new(name: 'TableBucketType')
114
115
  TableMaintenanceConfiguration = Shapes::MapShape.new(name: 'TableMaintenanceConfiguration')
115
116
  TableMaintenanceConfigurationValue = Shapes::StructureShape.new(name: 'TableMaintenanceConfigurationValue')
116
117
  TableMaintenanceJobStatus = Shapes::MapShape.new(name: 'TableMaintenanceJobStatus')
@@ -237,6 +238,7 @@ module Aws::S3Tables
237
238
  GetTableBucketResponse.add_member(:owner_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "ownerAccountId"))
238
239
  GetTableBucketResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createdAt"))
239
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"))
240
242
  GetTableBucketResponse.struct_class = Types::GetTableBucketResponse
241
243
 
242
244
  GetTableEncryptionRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
@@ -341,6 +343,7 @@ module Aws::S3Tables
341
343
  ListTableBucketsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: ListTableBucketsRequestPrefixString, location: "querystring", location_name: "prefix"))
342
344
  ListTableBucketsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "continuationToken"))
343
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"))
344
347
  ListTableBucketsRequest.struct_class = Types::ListTableBucketsRequest
345
348
 
346
349
  ListTableBucketsResponse.add_member(:table_buckets, Shapes::ShapeRef.new(shape: TableBucketSummaryList, required: true, location_name: "tableBuckets"))
@@ -432,6 +435,7 @@ module Aws::S3Tables
432
435
  TableBucketSummary.add_member(:owner_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "ownerAccountId"))
433
436
  TableBucketSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createdAt"))
434
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"))
435
439
  TableBucketSummary.struct_class = Types::TableBucketSummary
436
440
 
437
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
@@ -988,12 +993,17 @@ module Aws::S3Tables
988
993
  # The maximum number of table buckets to return in the list.
989
994
  # @return [Integer]
990
995
  #
996
+ # @!attribute [rw] type
997
+ # The type of table buckets to filter by in the list.
998
+ # @return [String]
999
+ #
991
1000
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListTableBucketsRequest AWS API Documentation
992
1001
  #
993
1002
  class ListTableBucketsRequest < Struct.new(
994
1003
  :prefix,
995
1004
  :continuation_token,
996
- :max_buckets)
1005
+ :max_buckets,
1006
+ :type)
997
1007
  SENSITIVE = []
998
1008
  include Aws::Structure
999
1009
  end
@@ -1378,6 +1388,10 @@ module Aws::S3Tables
1378
1388
  # The system-assigned unique identifier for the table bucket.
1379
1389
  # @return [String]
1380
1390
  #
1391
+ # @!attribute [rw] type
1392
+ # The type of the table bucket.
1393
+ # @return [String]
1394
+ #
1381
1395
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/TableBucketSummary AWS API Documentation
1382
1396
  #
1383
1397
  class TableBucketSummary < Struct.new(
@@ -1385,7 +1399,8 @@ module Aws::S3Tables
1385
1399
  :name,
1386
1400
  :owner_account_id,
1387
1401
  :created_at,
1388
- :table_bucket_id)
1402
+ :table_bucket_id,
1403
+ :type)
1389
1404
  SENSITIVE = []
1390
1405
  include Aws::Structure
1391
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.10.0'
58
+ GEM_VERSION = '1.12.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -227,6 +228,7 @@ module Aws
227
228
  def owner_account_id: () -> ::String
228
229
  def created_at: () -> ::Time
229
230
  def table_bucket_id: () -> ::String
231
+ def type: () -> ("customer" | "aws")
230
232
  end
231
233
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_bucket-instance_method
232
234
  def get_table_bucket: (
@@ -352,7 +354,8 @@ module Aws
352
354
  def list_table_buckets: (
353
355
  ?prefix: ::String,
354
356
  ?continuation_token: ::String,
355
- ?max_buckets: ::Integer
357
+ ?max_buckets: ::Integer,
358
+ ?type: ("customer" | "aws")
356
359
  ) -> _ListTableBucketsResponseSuccess
357
360
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTableBucketsResponseSuccess
358
361
 
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
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
 
@@ -313,6 +314,7 @@ module Aws::S3Tables
313
314
  attr_accessor prefix: ::String
314
315
  attr_accessor continuation_token: ::String
315
316
  attr_accessor max_buckets: ::Integer
317
+ attr_accessor type: ("customer" | "aws")
316
318
  SENSITIVE: []
317
319
  end
318
320
 
@@ -428,6 +430,7 @@ module Aws::S3Tables
428
430
  attr_accessor owner_account_id: ::String
429
431
  attr_accessor created_at: ::Time
430
432
  attr_accessor table_bucket_id: ::String
433
+ attr_accessor type: ("customer" | "aws")
431
434
  SENSITIVE: []
432
435
  end
433
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.10.0
4
+ version: 1.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement