aws-sdk-s3tables 1.10.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3tables/client.rb +8 -1
- data/lib/aws-sdk-s3tables/client_api.rb +4 -0
- data/lib/aws-sdk-s3tables/types.rb +18 -3
- data/lib/aws-sdk-s3tables.rb +1 -1
- data/sig/client.rbs +3 -1
- data/sig/types.rbs +3 -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: 34182cfd7dbfa1ab386c66f1f62565f383180561f68ddf618a13e49361a512bb
|
4
|
+
data.tar.gz: c414b36804fac55803b856787d0fadecce2212a4d1a8d402bffec711ac78e024
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 873a212799b9704aa51280fe591ae8b984a33caa541540d3d9974657f360af581626eca75d8e8763544d2f37163328e8babf2afca20a191ca59c4417a994bc3b
|
7
|
+
data.tar.gz: 06b33484841af29231cf1f3bf62ed56b0669c7ff1c5c6d001d3410c5b0119542d82fa3537feb5b992c3ade42568a1332d9ee165d8af1d0eca7674a03c72826d7
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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
|
#
|
@@ -1519,6 +1521,9 @@ module Aws::S3Tables
|
|
1519
1521
|
# @option params [Integer] :max_buckets
|
1520
1522
|
# The maximum number of table buckets to return in the list.
|
1521
1523
|
#
|
1524
|
+
# @option params [String] :type
|
1525
|
+
# The type of table buckets to filter by in the list.
|
1526
|
+
#
|
1522
1527
|
# @return [Types::ListTableBucketsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1523
1528
|
#
|
1524
1529
|
# * {Types::ListTableBucketsResponse#table_buckets #table_buckets} => Array<Types::TableBucketSummary>
|
@@ -1532,6 +1537,7 @@ module Aws::S3Tables
|
|
1532
1537
|
# prefix: "ListTableBucketsRequestPrefixString",
|
1533
1538
|
# continuation_token: "NextToken",
|
1534
1539
|
# max_buckets: 1,
|
1540
|
+
# type: "customer", # accepts customer, aws
|
1535
1541
|
# })
|
1536
1542
|
#
|
1537
1543
|
# @example Response structure
|
@@ -1542,6 +1548,7 @@ module Aws::S3Tables
|
|
1542
1548
|
# resp.table_buckets[0].owner_account_id #=> String
|
1543
1549
|
# resp.table_buckets[0].created_at #=> Time
|
1544
1550
|
# resp.table_buckets[0].table_bucket_id #=> String
|
1551
|
+
# resp.table_buckets[0].type #=> String, one of "customer", "aws"
|
1545
1552
|
# resp.continuation_token #=> String
|
1546
1553
|
#
|
1547
1554
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListTableBuckets AWS API Documentation
|
@@ -1999,7 +2006,7 @@ module Aws::S3Tables
|
|
1999
2006
|
tracer: tracer
|
2000
2007
|
)
|
2001
2008
|
context[:gem_name] = 'aws-sdk-s3tables'
|
2002
|
-
context[:gem_version] = '1.
|
2009
|
+
context[:gem_version] = '1.11.0'
|
2003
2010
|
Seahorse::Client::Request.new(handlers, context)
|
2004
2011
|
end
|
2005
2012
|
|
@@ -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
|
data/lib/aws-sdk-s3tables.rb
CHANGED
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
|
|
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
|
|