aws-sdk-s3tables 1.19.0 → 1.20.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 +90 -1
- data/lib/aws-sdk-s3tables/client_api.rb +59 -0
- data/lib/aws-sdk-s3tables/types.rb +53 -0
- data/lib/aws-sdk-s3tables.rb +1 -1
- data/sig/client.rbs +23 -0
- data/sig/types.rbs +21 -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: 0f558d0d8e5cfb9597493100d51999a621020a68e24eb716d70934dcdd71e1e7
|
|
4
|
+
data.tar.gz: f01a45f7cfe86dfeceed10e964a5b2feb98f1fd05484816e044e9826644fda2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d2574f0d3b69e5a7a7481411f881539934e4bfd9bbb567f1ac30de97c42b466ff878da3988f70fb0bd469e8bb56b1ef6cb83c93aaa12aa78c0abd59c029206b1
|
|
7
|
+
data.tar.gz: f365b748ab50785a0bfa4661e4407826ec25ccc959a482c3ddd4792ab035ce1245226deca4d2477408c6a31c24de2bf1451817823e4c5df0b17289414fd67cc2
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.20.0
|
|
@@ -866,6 +866,33 @@ module Aws::S3Tables
|
|
|
866
866
|
req.send_request(options)
|
|
867
867
|
end
|
|
868
868
|
|
|
869
|
+
# Deletes the metrics configuration for a table bucket.
|
|
870
|
+
#
|
|
871
|
+
# Permissions
|
|
872
|
+
#
|
|
873
|
+
# : You must have the `s3tables:DeleteTableBucketMetricsConfiguration`
|
|
874
|
+
# permission to use this operation.
|
|
875
|
+
#
|
|
876
|
+
# @option params [required, String] :table_bucket_arn
|
|
877
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
|
878
|
+
#
|
|
879
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
880
|
+
#
|
|
881
|
+
# @example Request syntax with placeholder values
|
|
882
|
+
#
|
|
883
|
+
# resp = client.delete_table_bucket_metrics_configuration({
|
|
884
|
+
# table_bucket_arn: "TableBucketARN", # required
|
|
885
|
+
# })
|
|
886
|
+
#
|
|
887
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/DeleteTableBucketMetricsConfiguration AWS API Documentation
|
|
888
|
+
#
|
|
889
|
+
# @overload delete_table_bucket_metrics_configuration(params = {})
|
|
890
|
+
# @param [Hash] params ({})
|
|
891
|
+
def delete_table_bucket_metrics_configuration(params = {}, options = {})
|
|
892
|
+
req = build_request(:delete_table_bucket_metrics_configuration, params)
|
|
893
|
+
req.send_request(options)
|
|
894
|
+
end
|
|
895
|
+
|
|
869
896
|
# Deletes a table bucket policy. For more information, see [Deleting a
|
|
870
897
|
# table bucket policy][1] in the *Amazon Simple Storage Service User
|
|
871
898
|
# Guide*.
|
|
@@ -1203,6 +1230,41 @@ module Aws::S3Tables
|
|
|
1203
1230
|
req.send_request(options)
|
|
1204
1231
|
end
|
|
1205
1232
|
|
|
1233
|
+
# Gets the metrics configuration for a table bucket.
|
|
1234
|
+
#
|
|
1235
|
+
# Permissions
|
|
1236
|
+
#
|
|
1237
|
+
# : You must have the `s3tables:GetTableBucketMetricsConfiguration`
|
|
1238
|
+
# permission to use this operation.
|
|
1239
|
+
#
|
|
1240
|
+
# @option params [required, String] :table_bucket_arn
|
|
1241
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
|
1242
|
+
#
|
|
1243
|
+
# @return [Types::GetTableBucketMetricsConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1244
|
+
#
|
|
1245
|
+
# * {Types::GetTableBucketMetricsConfigurationResponse#table_bucket_arn #table_bucket_arn} => String
|
|
1246
|
+
# * {Types::GetTableBucketMetricsConfigurationResponse#id #id} => String
|
|
1247
|
+
#
|
|
1248
|
+
# @example Request syntax with placeholder values
|
|
1249
|
+
#
|
|
1250
|
+
# resp = client.get_table_bucket_metrics_configuration({
|
|
1251
|
+
# table_bucket_arn: "TableBucketARN", # required
|
|
1252
|
+
# })
|
|
1253
|
+
#
|
|
1254
|
+
# @example Response structure
|
|
1255
|
+
#
|
|
1256
|
+
# resp.table_bucket_arn #=> String
|
|
1257
|
+
# resp.id #=> String
|
|
1258
|
+
#
|
|
1259
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketMetricsConfiguration AWS API Documentation
|
|
1260
|
+
#
|
|
1261
|
+
# @overload get_table_bucket_metrics_configuration(params = {})
|
|
1262
|
+
# @param [Hash] params ({})
|
|
1263
|
+
def get_table_bucket_metrics_configuration(params = {}, options = {})
|
|
1264
|
+
req = build_request(:get_table_bucket_metrics_configuration, params)
|
|
1265
|
+
req.send_request(options)
|
|
1266
|
+
end
|
|
1267
|
+
|
|
1206
1268
|
# Gets details about a table bucket policy. For more information, see
|
|
1207
1269
|
# [Viewing a table bucket policy][1] in the *Amazon Simple Storage
|
|
1208
1270
|
# Service User Guide*.
|
|
@@ -1834,6 +1896,33 @@ module Aws::S3Tables
|
|
|
1834
1896
|
req.send_request(options)
|
|
1835
1897
|
end
|
|
1836
1898
|
|
|
1899
|
+
# Sets the metrics configuration for a table bucket.
|
|
1900
|
+
#
|
|
1901
|
+
# Permissions
|
|
1902
|
+
#
|
|
1903
|
+
# : You must have the `s3tables:PutTableBucketMetricsConfiguration`
|
|
1904
|
+
# permission to use this operation.
|
|
1905
|
+
#
|
|
1906
|
+
# @option params [required, String] :table_bucket_arn
|
|
1907
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
|
1908
|
+
#
|
|
1909
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1910
|
+
#
|
|
1911
|
+
# @example Request syntax with placeholder values
|
|
1912
|
+
#
|
|
1913
|
+
# resp = client.put_table_bucket_metrics_configuration({
|
|
1914
|
+
# table_bucket_arn: "TableBucketARN", # required
|
|
1915
|
+
# })
|
|
1916
|
+
#
|
|
1917
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/PutTableBucketMetricsConfiguration AWS API Documentation
|
|
1918
|
+
#
|
|
1919
|
+
# @overload put_table_bucket_metrics_configuration(params = {})
|
|
1920
|
+
# @param [Hash] params ({})
|
|
1921
|
+
def put_table_bucket_metrics_configuration(params = {}, options = {})
|
|
1922
|
+
req = build_request(:put_table_bucket_metrics_configuration, params)
|
|
1923
|
+
req.send_request(options)
|
|
1924
|
+
end
|
|
1925
|
+
|
|
1837
1926
|
# Creates a new table bucket policy or replaces an existing table bucket
|
|
1838
1927
|
# policy for a table bucket. For more information, see [Adding a table
|
|
1839
1928
|
# bucket policy][1] in the *Amazon Simple Storage Service User Guide*.
|
|
@@ -2225,7 +2314,7 @@ module Aws::S3Tables
|
|
|
2225
2314
|
tracer: tracer
|
|
2226
2315
|
)
|
|
2227
2316
|
context[:gem_name] = 'aws-sdk-s3tables'
|
|
2228
|
-
context[:gem_version] = '1.
|
|
2317
|
+
context[:gem_version] = '1.20.0'
|
|
2229
2318
|
Seahorse::Client::Request.new(handlers, context)
|
|
2230
2319
|
end
|
|
2231
2320
|
|
|
@@ -28,6 +28,7 @@ module Aws::S3Tables
|
|
|
28
28
|
CreateTableResponse = Shapes::StructureShape.new(name: 'CreateTableResponse')
|
|
29
29
|
DeleteNamespaceRequest = Shapes::StructureShape.new(name: 'DeleteNamespaceRequest')
|
|
30
30
|
DeleteTableBucketEncryptionRequest = Shapes::StructureShape.new(name: 'DeleteTableBucketEncryptionRequest')
|
|
31
|
+
DeleteTableBucketMetricsConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteTableBucketMetricsConfigurationRequest')
|
|
31
32
|
DeleteTableBucketPolicyRequest = Shapes::StructureShape.new(name: 'DeleteTableBucketPolicyRequest')
|
|
32
33
|
DeleteTableBucketRequest = Shapes::StructureShape.new(name: 'DeleteTableBucketRequest')
|
|
33
34
|
DeleteTablePolicyRequest = Shapes::StructureShape.new(name: 'DeleteTablePolicyRequest')
|
|
@@ -42,6 +43,8 @@ module Aws::S3Tables
|
|
|
42
43
|
GetTableBucketEncryptionResponse = Shapes::StructureShape.new(name: 'GetTableBucketEncryptionResponse')
|
|
43
44
|
GetTableBucketMaintenanceConfigurationRequest = Shapes::StructureShape.new(name: 'GetTableBucketMaintenanceConfigurationRequest')
|
|
44
45
|
GetTableBucketMaintenanceConfigurationResponse = Shapes::StructureShape.new(name: 'GetTableBucketMaintenanceConfigurationResponse')
|
|
46
|
+
GetTableBucketMetricsConfigurationRequest = Shapes::StructureShape.new(name: 'GetTableBucketMetricsConfigurationRequest')
|
|
47
|
+
GetTableBucketMetricsConfigurationResponse = Shapes::StructureShape.new(name: 'GetTableBucketMetricsConfigurationResponse')
|
|
45
48
|
GetTableBucketPolicyRequest = Shapes::StructureShape.new(name: 'GetTableBucketPolicyRequest')
|
|
46
49
|
GetTableBucketPolicyResponse = Shapes::StructureShape.new(name: 'GetTableBucketPolicyResponse')
|
|
47
50
|
GetTableBucketRequest = Shapes::StructureShape.new(name: 'GetTableBucketRequest')
|
|
@@ -93,6 +96,7 @@ module Aws::S3Tables
|
|
|
93
96
|
PositiveInteger = Shapes::IntegerShape.new(name: 'PositiveInteger')
|
|
94
97
|
PutTableBucketEncryptionRequest = Shapes::StructureShape.new(name: 'PutTableBucketEncryptionRequest')
|
|
95
98
|
PutTableBucketMaintenanceConfigurationRequest = Shapes::StructureShape.new(name: 'PutTableBucketMaintenanceConfigurationRequest')
|
|
99
|
+
PutTableBucketMetricsConfigurationRequest = Shapes::StructureShape.new(name: 'PutTableBucketMetricsConfigurationRequest')
|
|
96
100
|
PutTableBucketPolicyRequest = Shapes::StructureShape.new(name: 'PutTableBucketPolicyRequest')
|
|
97
101
|
PutTableMaintenanceConfigurationRequest = Shapes::StructureShape.new(name: 'PutTableMaintenanceConfigurationRequest')
|
|
98
102
|
PutTablePolicyRequest = Shapes::StructureShape.new(name: 'PutTablePolicyRequest')
|
|
@@ -188,6 +192,9 @@ module Aws::S3Tables
|
|
|
188
192
|
DeleteTableBucketEncryptionRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
|
|
189
193
|
DeleteTableBucketEncryptionRequest.struct_class = Types::DeleteTableBucketEncryptionRequest
|
|
190
194
|
|
|
195
|
+
DeleteTableBucketMetricsConfigurationRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
|
|
196
|
+
DeleteTableBucketMetricsConfigurationRequest.struct_class = Types::DeleteTableBucketMetricsConfigurationRequest
|
|
197
|
+
|
|
191
198
|
DeleteTableBucketPolicyRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
|
|
192
199
|
DeleteTableBucketPolicyRequest.struct_class = Types::DeleteTableBucketPolicyRequest
|
|
193
200
|
|
|
@@ -237,6 +244,13 @@ module Aws::S3Tables
|
|
|
237
244
|
GetTableBucketMaintenanceConfigurationResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: TableBucketMaintenanceConfiguration, required: true, location_name: "configuration"))
|
|
238
245
|
GetTableBucketMaintenanceConfigurationResponse.struct_class = Types::GetTableBucketMaintenanceConfigurationResponse
|
|
239
246
|
|
|
247
|
+
GetTableBucketMetricsConfigurationRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
|
|
248
|
+
GetTableBucketMetricsConfigurationRequest.struct_class = Types::GetTableBucketMetricsConfigurationRequest
|
|
249
|
+
|
|
250
|
+
GetTableBucketMetricsConfigurationResponse.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location_name: "tableBucketARN"))
|
|
251
|
+
GetTableBucketMetricsConfigurationResponse.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "id"))
|
|
252
|
+
GetTableBucketMetricsConfigurationResponse.struct_class = Types::GetTableBucketMetricsConfigurationResponse
|
|
253
|
+
|
|
240
254
|
GetTableBucketPolicyRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
|
|
241
255
|
GetTableBucketPolicyRequest.struct_class = Types::GetTableBucketPolicyRequest
|
|
242
256
|
|
|
@@ -404,6 +418,9 @@ module Aws::S3Tables
|
|
|
404
418
|
PutTableBucketMaintenanceConfigurationRequest.add_member(:value, Shapes::ShapeRef.new(shape: TableBucketMaintenanceConfigurationValue, required: true, location_name: "value"))
|
|
405
419
|
PutTableBucketMaintenanceConfigurationRequest.struct_class = Types::PutTableBucketMaintenanceConfigurationRequest
|
|
406
420
|
|
|
421
|
+
PutTableBucketMetricsConfigurationRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
|
|
422
|
+
PutTableBucketMetricsConfigurationRequest.struct_class = Types::PutTableBucketMetricsConfigurationRequest
|
|
423
|
+
|
|
407
424
|
PutTableBucketPolicyRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
|
|
408
425
|
PutTableBucketPolicyRequest.add_member(:resource_policy, Shapes::ShapeRef.new(shape: ResourcePolicy, required: true, location_name: "resourcePolicy"))
|
|
409
426
|
PutTableBucketPolicyRequest.struct_class = Types::PutTableBucketPolicyRequest
|
|
@@ -651,6 +668,20 @@ module Aws::S3Tables
|
|
|
651
668
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
652
669
|
end)
|
|
653
670
|
|
|
671
|
+
api.add_operation(:delete_table_bucket_metrics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
672
|
+
o.name = "DeleteTableBucketMetricsConfiguration"
|
|
673
|
+
o.http_method = "DELETE"
|
|
674
|
+
o.http_request_uri = "/buckets/{tableBucketARN}/metrics"
|
|
675
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteTableBucketMetricsConfigurationRequest)
|
|
676
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
677
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
678
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
679
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
680
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
681
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
682
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
683
|
+
end)
|
|
684
|
+
|
|
654
685
|
api.add_operation(:delete_table_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
|
|
655
686
|
o.name = "DeleteTableBucketPolicy"
|
|
656
687
|
o.http_method = "DELETE"
|
|
@@ -752,6 +783,20 @@ module Aws::S3Tables
|
|
|
752
783
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
753
784
|
end)
|
|
754
785
|
|
|
786
|
+
api.add_operation(:get_table_bucket_metrics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
787
|
+
o.name = "GetTableBucketMetricsConfiguration"
|
|
788
|
+
o.http_method = "GET"
|
|
789
|
+
o.http_request_uri = "/buckets/{tableBucketARN}/metrics"
|
|
790
|
+
o.input = Shapes::ShapeRef.new(shape: GetTableBucketMetricsConfigurationRequest)
|
|
791
|
+
o.output = Shapes::ShapeRef.new(shape: GetTableBucketMetricsConfigurationResponse)
|
|
792
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
793
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
794
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
795
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
796
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
797
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
798
|
+
end)
|
|
799
|
+
|
|
755
800
|
api.add_operation(:get_table_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
|
|
756
801
|
o.name = "GetTableBucketPolicy"
|
|
757
802
|
o.http_method = "GET"
|
|
@@ -940,6 +985,20 @@ module Aws::S3Tables
|
|
|
940
985
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
941
986
|
end)
|
|
942
987
|
|
|
988
|
+
api.add_operation(:put_table_bucket_metrics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
989
|
+
o.name = "PutTableBucketMetricsConfiguration"
|
|
990
|
+
o.http_method = "PUT"
|
|
991
|
+
o.http_request_uri = "/buckets/{tableBucketARN}/metrics"
|
|
992
|
+
o.input = Shapes::ShapeRef.new(shape: PutTableBucketMetricsConfigurationRequest)
|
|
993
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
994
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
995
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
|
996
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
997
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
998
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
999
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
|
1000
|
+
end)
|
|
1001
|
+
|
|
943
1002
|
api.add_operation(:put_table_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
|
|
944
1003
|
o.name = "PutTableBucketPolicy"
|
|
945
1004
|
o.http_method = "PUT"
|
|
@@ -254,6 +254,18 @@ module Aws::S3Tables
|
|
|
254
254
|
include Aws::Structure
|
|
255
255
|
end
|
|
256
256
|
|
|
257
|
+
# @!attribute [rw] table_bucket_arn
|
|
258
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
|
259
|
+
# @return [String]
|
|
260
|
+
#
|
|
261
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/DeleteTableBucketMetricsConfigurationRequest AWS API Documentation
|
|
262
|
+
#
|
|
263
|
+
class DeleteTableBucketMetricsConfigurationRequest < Struct.new(
|
|
264
|
+
:table_bucket_arn)
|
|
265
|
+
SENSITIVE = []
|
|
266
|
+
include Aws::Structure
|
|
267
|
+
end
|
|
268
|
+
|
|
257
269
|
# @!attribute [rw] table_bucket_arn
|
|
258
270
|
# The Amazon Resource Name (ARN) of the table bucket.
|
|
259
271
|
# @return [String]
|
|
@@ -482,6 +494,35 @@ module Aws::S3Tables
|
|
|
482
494
|
include Aws::Structure
|
|
483
495
|
end
|
|
484
496
|
|
|
497
|
+
# @!attribute [rw] table_bucket_arn
|
|
498
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
|
499
|
+
# @return [String]
|
|
500
|
+
#
|
|
501
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketMetricsConfigurationRequest AWS API Documentation
|
|
502
|
+
#
|
|
503
|
+
class GetTableBucketMetricsConfigurationRequest < Struct.new(
|
|
504
|
+
:table_bucket_arn)
|
|
505
|
+
SENSITIVE = []
|
|
506
|
+
include Aws::Structure
|
|
507
|
+
end
|
|
508
|
+
|
|
509
|
+
# @!attribute [rw] table_bucket_arn
|
|
510
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
|
511
|
+
# @return [String]
|
|
512
|
+
#
|
|
513
|
+
# @!attribute [rw] id
|
|
514
|
+
# The unique identifier of the metrics configuration.
|
|
515
|
+
# @return [String]
|
|
516
|
+
#
|
|
517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketMetricsConfigurationResponse AWS API Documentation
|
|
518
|
+
#
|
|
519
|
+
class GetTableBucketMetricsConfigurationResponse < Struct.new(
|
|
520
|
+
:table_bucket_arn,
|
|
521
|
+
:id)
|
|
522
|
+
SENSITIVE = []
|
|
523
|
+
include Aws::Structure
|
|
524
|
+
end
|
|
525
|
+
|
|
485
526
|
# @!attribute [rw] table_bucket_arn
|
|
486
527
|
# The Amazon Resource Name (ARN) of the table bucket.
|
|
487
528
|
# @return [String]
|
|
@@ -1249,6 +1290,18 @@ module Aws::S3Tables
|
|
|
1249
1290
|
include Aws::Structure
|
|
1250
1291
|
end
|
|
1251
1292
|
|
|
1293
|
+
# @!attribute [rw] table_bucket_arn
|
|
1294
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
|
1295
|
+
# @return [String]
|
|
1296
|
+
#
|
|
1297
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/PutTableBucketMetricsConfigurationRequest AWS API Documentation
|
|
1298
|
+
#
|
|
1299
|
+
class PutTableBucketMetricsConfigurationRequest < Struct.new(
|
|
1300
|
+
:table_bucket_arn)
|
|
1301
|
+
SENSITIVE = []
|
|
1302
|
+
include Aws::Structure
|
|
1303
|
+
end
|
|
1304
|
+
|
|
1252
1305
|
# @!attribute [rw] table_bucket_arn
|
|
1253
1306
|
# The Amazon Resource Name (ARN) of the table bucket.
|
|
1254
1307
|
# @return [String]
|
data/lib/aws-sdk-s3tables.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -165,6 +165,12 @@ module Aws
|
|
|
165
165
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
166
166
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
167
167
|
|
|
168
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#delete_table_bucket_metrics_configuration-instance_method
|
|
169
|
+
def delete_table_bucket_metrics_configuration: (
|
|
170
|
+
table_bucket_arn: ::String
|
|
171
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
172
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
173
|
+
|
|
168
174
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#delete_table_bucket_policy-instance_method
|
|
169
175
|
def delete_table_bucket_policy: (
|
|
170
176
|
table_bucket_arn: ::String
|
|
@@ -259,6 +265,17 @@ module Aws
|
|
|
259
265
|
) -> _GetTableBucketMaintenanceConfigurationResponseSuccess
|
|
260
266
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableBucketMaintenanceConfigurationResponseSuccess
|
|
261
267
|
|
|
268
|
+
interface _GetTableBucketMetricsConfigurationResponseSuccess
|
|
269
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableBucketMetricsConfigurationResponse]
|
|
270
|
+
def table_bucket_arn: () -> ::String
|
|
271
|
+
def id: () -> ::String
|
|
272
|
+
end
|
|
273
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_bucket_metrics_configuration-instance_method
|
|
274
|
+
def get_table_bucket_metrics_configuration: (
|
|
275
|
+
table_bucket_arn: ::String
|
|
276
|
+
) -> _GetTableBucketMetricsConfigurationResponseSuccess
|
|
277
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableBucketMetricsConfigurationResponseSuccess
|
|
278
|
+
|
|
262
279
|
interface _GetTableBucketPolicyResponseSuccess
|
|
263
280
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableBucketPolicyResponse]
|
|
264
281
|
def resource_policy: () -> ::String
|
|
@@ -412,6 +429,12 @@ module Aws
|
|
|
412
429
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
413
430
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
414
431
|
|
|
432
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#put_table_bucket_metrics_configuration-instance_method
|
|
433
|
+
def put_table_bucket_metrics_configuration: (
|
|
434
|
+
table_bucket_arn: ::String
|
|
435
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
436
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
437
|
+
|
|
415
438
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#put_table_bucket_policy-instance_method
|
|
416
439
|
def put_table_bucket_policy: (
|
|
417
440
|
table_bucket_arn: ::String,
|
data/sig/types.rbs
CHANGED
|
@@ -75,6 +75,11 @@ module Aws::S3Tables
|
|
|
75
75
|
SENSITIVE: []
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
+
class DeleteTableBucketMetricsConfigurationRequest
|
|
79
|
+
attr_accessor table_bucket_arn: ::String
|
|
80
|
+
SENSITIVE: []
|
|
81
|
+
end
|
|
82
|
+
|
|
78
83
|
class DeleteTableBucketPolicyRequest
|
|
79
84
|
attr_accessor table_bucket_arn: ::String
|
|
80
85
|
SENSITIVE: []
|
|
@@ -148,6 +153,17 @@ module Aws::S3Tables
|
|
|
148
153
|
SENSITIVE: []
|
|
149
154
|
end
|
|
150
155
|
|
|
156
|
+
class GetTableBucketMetricsConfigurationRequest
|
|
157
|
+
attr_accessor table_bucket_arn: ::String
|
|
158
|
+
SENSITIVE: []
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
class GetTableBucketMetricsConfigurationResponse
|
|
162
|
+
attr_accessor table_bucket_arn: ::String
|
|
163
|
+
attr_accessor id: ::String
|
|
164
|
+
SENSITIVE: []
|
|
165
|
+
end
|
|
166
|
+
|
|
151
167
|
class GetTableBucketPolicyRequest
|
|
152
168
|
attr_accessor table_bucket_arn: ::String
|
|
153
169
|
SENSITIVE: []
|
|
@@ -379,6 +395,11 @@ module Aws::S3Tables
|
|
|
379
395
|
SENSITIVE: []
|
|
380
396
|
end
|
|
381
397
|
|
|
398
|
+
class PutTableBucketMetricsConfigurationRequest
|
|
399
|
+
attr_accessor table_bucket_arn: ::String
|
|
400
|
+
SENSITIVE: []
|
|
401
|
+
end
|
|
402
|
+
|
|
382
403
|
class PutTableBucketPolicyRequest
|
|
383
404
|
attr_accessor table_bucket_arn: ::String
|
|
384
405
|
attr_accessor resource_policy: ::String
|