aws-sdk-s3tables 1.8.0 → 1.9.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: 5cc8808fdb134ab34798ff8f3141c510272f8183674e5ca0020f36881a90d9d2
4
- data.tar.gz: 42a6d2f57cc07e7dc82a169b933aaa22f7f0d0b26edc6d3c1454f4421c7bd9ae
3
+ metadata.gz: 8dd80be5f6de15e8d6c6c772b90889bfe31bc69493f496d27c601580a2abe85d
4
+ data.tar.gz: 01f24b76968b4844d91c96d938807af5066c951314be65528656f6b70203f204
5
5
  SHA512:
6
- metadata.gz: b74518dd8c15a7ab63fbcd916ba51eb5cf6a24eec0c2629c8365d428ed56a4bfd64243e1118c65fcb2015c0f21ca509b1a83b8cb7b1f15e742431c320a1b1188
7
- data.tar.gz: 4f88c1b954a2ef90f6f139adcd97cf6c396dd4e8282497badcf96b56125d8c66c12175785933d1fd644693d376bdffbab09a0a38596d4c678c18ea09e98533cf
6
+ metadata.gz: 2d11ab3ebf9d6ed51bd127087ddd6b80f6201be120d88877e4aacdadb68643f6e2caa1a4a2cbde8dd5ebdbdb41fff5aac0b3e10d209259f7d96bf80b82585a2f
7
+ data.tar.gz: 8b0798e6c150894099f41f91370ecb59482c1244da5724edbd54968e8f771c3e6ab9a2d28f4d8607327f281aa2bc9a0c0a997cbcebdb3d3875463437a14e68d0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2025-06-06)
5
+ ------------------
6
+
7
+ * Feature - S3 Tables now supports getting details about a table via its table ARN.
8
+
4
9
  1.8.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.9.0
@@ -532,13 +532,17 @@ module Aws::S3Tables
532
532
  # `encryptionConfiguration` request parameter you must have the
533
533
  # `s3tables:PutTableEncryption` permission.
534
534
  #
535
- # <note markdown="1"> Additionally,
535
+ # <note markdown="1"> Additionally, If you choose SSE-KMS encryption you must grant the S3
536
+ # Tables maintenance principal access to your KMS key. For more
537
+ # information, see [Permissions requirements for S3 Tables SSE-KMS
538
+ # encryption][2].
536
539
  #
537
540
  # </note>
538
541
  #
539
542
  #
540
543
  #
541
544
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-create.html
545
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html
542
546
  #
543
547
  # @option params [required, String] :table_bucket_arn
544
548
  # The Amazon Resource Name (ARN) of the table bucket to create the table
@@ -948,16 +952,19 @@ module Aws::S3Tables
948
952
  #
949
953
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-tables.html
950
954
  #
951
- # @option params [required, String] :table_bucket_arn
955
+ # @option params [String] :table_bucket_arn
952
956
  # The Amazon Resource Name (ARN) of the table bucket associated with the
953
957
  # table.
954
958
  #
955
- # @option params [required, String] :namespace
959
+ # @option params [String] :namespace
956
960
  # The name of the namespace the table is associated with.
957
961
  #
958
- # @option params [required, String] :name
962
+ # @option params [String] :name
959
963
  # The name of the table.
960
964
  #
965
+ # @option params [String] :table_arn
966
+ # The Amazon Resource Name (ARN) of the table.
967
+ #
961
968
  # @return [Types::GetTableResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
962
969
  #
963
970
  # * {Types::GetTableResponse#name #name} => String
@@ -980,9 +987,10 @@ module Aws::S3Tables
980
987
  # @example Request syntax with placeholder values
981
988
  #
982
989
  # resp = client.get_table({
983
- # table_bucket_arn: "TableBucketARN", # required
984
- # namespace: "NamespaceName", # required
985
- # name: "TableName", # required
990
+ # table_bucket_arn: "TableBucketARN",
991
+ # namespace: "NamespaceName",
992
+ # name: "TableName",
993
+ # table_arn: "TableARN",
986
994
  # })
987
995
  #
988
996
  # @example Response structure
@@ -1292,7 +1300,7 @@ module Aws::S3Tables
1292
1300
  # The Amazon Resource Name (ARN) of the table bucket.
1293
1301
  #
1294
1302
  # @option params [required, String] :namespace
1295
- # The name of the namespace the table is associated with. </p>
1303
+ # The name of the namespace the table is associated with.
1296
1304
  #
1297
1305
  # @option params [required, String] :name
1298
1306
  # The name of the maintenance job.
@@ -1621,11 +1629,15 @@ module Aws::S3Tables
1621
1629
  #
1622
1630
  # <note markdown="1"> If you choose SSE-KMS encryption you must grant the S3 Tables
1623
1631
  # maintenance principal access to your KMS key. For more information,
1624
- # see [Permissions requirements for S3 Tables SSE-KMS
1625
- # encryption](AmazonS3/latest/userguide/s3-tables-kms-permissions.html)
1632
+ # see [Permissions requirements for S3 Tables SSE-KMS encryption][1]
1633
+ # in the *Amazon Simple Storage Service User Guide*.
1626
1634
  #
1627
1635
  # </note>
1628
1636
  #
1637
+ #
1638
+ #
1639
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html
1640
+ #
1629
1641
  # @option params [required, String] :table_bucket_arn
1630
1642
  # The Amazon Resource Name (ARN) of the table bucket.
1631
1643
  #
@@ -1983,7 +1995,7 @@ module Aws::S3Tables
1983
1995
  tracer: tracer
1984
1996
  )
1985
1997
  context[:gem_name] = 'aws-sdk-s3tables'
1986
- context[:gem_version] = '1.8.0'
1998
+ context[:gem_version] = '1.9.0'
1987
1999
  Seahorse::Client::Request.new(handlers, context)
1988
2000
  end
1989
2001
 
@@ -282,9 +282,10 @@ module Aws::S3Tables
282
282
  GetTablePolicyResponse.add_member(:resource_policy, Shapes::ShapeRef.new(shape: ResourcePolicy, required: true, location_name: "resourcePolicy"))
283
283
  GetTablePolicyResponse.struct_class = Types::GetTablePolicyResponse
284
284
 
285
- GetTableRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
286
- GetTableRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: NamespaceName, required: true, location: "uri", location_name: "namespace"))
287
- GetTableRequest.add_member(:name, Shapes::ShapeRef.new(shape: TableName, required: true, location: "uri", location_name: "name"))
285
+ GetTableRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, location: "querystring", location_name: "tableBucketARN"))
286
+ GetTableRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: NamespaceName, location: "querystring", location_name: "namespace"))
287
+ GetTableRequest.add_member(:name, Shapes::ShapeRef.new(shape: TableName, location: "querystring", location_name: "name"))
288
+ GetTableRequest.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableARN, location: "querystring", location_name: "tableArn"))
288
289
  GetTableRequest.struct_class = Types::GetTableRequest
289
290
 
290
291
  GetTableResponse.add_member(:name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "name"))
@@ -654,7 +655,7 @@ module Aws::S3Tables
654
655
  api.add_operation(:get_table, Seahorse::Model::Operation.new.tap do |o|
655
656
  o.name = "GetTable"
656
657
  o.http_method = "GET"
657
- o.http_request_uri = "/tables/{tableBucketARN}/{namespace}/{name}"
658
+ o.http_request_uri = "/get-table"
658
659
  o.input = Shapes::ShapeRef.new(shape: GetTableRequest)
659
660
  o.output = Shapes::ShapeRef.new(shape: GetTableResponse)
660
661
  o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
@@ -592,7 +592,7 @@ module Aws::S3Tables
592
592
  # @return [String]
593
593
  #
594
594
  # @!attribute [rw] namespace
595
- # The name of the namespace the table is associated with. </p>
595
+ # The name of the namespace the table is associated with.
596
596
  # @return [String]
597
597
  #
598
598
  # @!attribute [rw] name
@@ -718,12 +718,17 @@ module Aws::S3Tables
718
718
  # The name of the table.
719
719
  # @return [String]
720
720
  #
721
+ # @!attribute [rw] table_arn
722
+ # The Amazon Resource Name (ARN) of the table.
723
+ # @return [String]
724
+ #
721
725
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableRequest AWS API Documentation
722
726
  #
723
727
  class GetTableRequest < Struct.new(
724
728
  :table_bucket_arn,
725
729
  :namespace,
726
- :name)
730
+ :name,
731
+ :table_arn)
727
732
  SENSITIVE = []
728
733
  include Aws::Structure
729
734
  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.8.0'
58
+ GEM_VERSION = '1.9.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -213,11 +213,12 @@ module Aws
213
213
  end
214
214
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table-instance_method
215
215
  def get_table: (
216
- table_bucket_arn: ::String,
217
- namespace: ::String,
218
- name: ::String
216
+ ?table_bucket_arn: ::String,
217
+ ?namespace: ::String,
218
+ ?name: ::String,
219
+ ?table_arn: ::String
219
220
  ) -> _GetTableResponseSuccess
220
- | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableResponseSuccess
221
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableResponseSuccess
221
222
 
222
223
  interface _GetTableBucketResponseSuccess
223
224
  include ::Seahorse::Client::_ResponseSuccess[Types::GetTableBucketResponse]
data/sig/types.rbs CHANGED
@@ -238,6 +238,7 @@ module Aws::S3Tables
238
238
  attr_accessor table_bucket_arn: ::String
239
239
  attr_accessor namespace: ::String
240
240
  attr_accessor name: ::String
241
+ attr_accessor table_arn: ::String
241
242
  SENSITIVE: []
242
243
  end
243
244
 
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.8.0
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services