aws-sdk-s3control 1.57.0 → 1.59.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 +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control/client.rb +23 -13
- data/lib/aws-sdk-s3control/client_api.rb +3 -0
- data/lib/aws-sdk-s3control/endpoint_provider.rb +204 -529
- data/lib/aws-sdk-s3control/types.rb +29 -1999
- data/lib/aws-sdk-s3control.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71c8947541ccf4069af71d14b3abe2d126d1231aae32f3447c4469a9e1506809
|
4
|
+
data.tar.gz: 203f4f250f24a923822baa1ee2708ddaa329311dae179940ba8dd00b10145925
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0229c228ed318a8d21e49306a5272ba38c7eb2889641fc7d016d9395e17bdb95d22d0b265c79f10f3ba5da47bb9ebd746a0dfad54deb04cadde8d1d9e1af7f17'
|
7
|
+
data.tar.gz: df196836508c89746b34db6c8e28dc80bcf603a034ca926be648a2909ceef14ddb540035067de425eb200c0ab25cd86a447f80a35e8dcbf0fb0700caa6c07b11
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.59.0 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
10
|
+
|
11
|
+
1.58.0 (2022-11-30)
|
12
|
+
------------------
|
13
|
+
|
14
|
+
* Feature - Amazon S3 now supports cross-account access points. S3 bucket owners can now allow trusted AWS accounts to create access points associated with their bucket.
|
15
|
+
|
4
16
|
1.57.0 (2022-11-29)
|
5
17
|
------------------
|
6
18
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.59.0
|
@@ -422,8 +422,8 @@ module Aws::S3Control
|
|
422
422
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPoints.html
|
423
423
|
#
|
424
424
|
# @option params [String] :account_id
|
425
|
-
# The Amazon Web Services account ID for the
|
426
|
-
#
|
425
|
+
# The Amazon Web Services account ID for the account that owns the
|
426
|
+
# specified access point.
|
427
427
|
#
|
428
428
|
# @option params [required, String] :name
|
429
429
|
# The name you want to assign to this access point.
|
@@ -458,6 +458,10 @@ module Aws::S3Control
|
|
458
458
|
# The `PublicAccessBlock` configuration that you want to apply to the
|
459
459
|
# access point.
|
460
460
|
#
|
461
|
+
# @option params [String] :bucket_account_id
|
462
|
+
# The Amazon Web Services account ID associated with the S3 bucket
|
463
|
+
# associated with this access point.
|
464
|
+
#
|
461
465
|
# @return [Types::CreateAccessPointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
462
466
|
#
|
463
467
|
# * {Types::CreateAccessPointResult#access_point_arn #access_point_arn} => String
|
@@ -478,6 +482,7 @@ module Aws::S3Control
|
|
478
482
|
# block_public_policy: false,
|
479
483
|
# restrict_public_buckets: false,
|
480
484
|
# },
|
485
|
+
# bucket_account_id: "AccountId",
|
481
486
|
# })
|
482
487
|
#
|
483
488
|
# @example Response structure
|
@@ -1099,7 +1104,8 @@ module Aws::S3Control
|
|
1099
1104
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPoints.html
|
1100
1105
|
#
|
1101
1106
|
# @option params [String] :account_id
|
1102
|
-
# The account ID for the account that owns the
|
1107
|
+
# The Amazon Web Services account ID for the account that owns the
|
1108
|
+
# specified access point.
|
1103
1109
|
#
|
1104
1110
|
# @option params [required, String] :name
|
1105
1111
|
# The name of the access point you want to delete.
|
@@ -2092,7 +2098,8 @@ module Aws::S3Control
|
|
2092
2098
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPoints.html
|
2093
2099
|
#
|
2094
2100
|
# @option params [String] :account_id
|
2095
|
-
# The account ID for the account that owns the
|
2101
|
+
# The Amazon Web Services account ID for the account that owns the
|
2102
|
+
# specified access point.
|
2096
2103
|
#
|
2097
2104
|
# @option params [required, String] :name
|
2098
2105
|
# The name of the access point whose configuration information you want
|
@@ -2122,6 +2129,7 @@ module Aws::S3Control
|
|
2122
2129
|
# * {Types::GetAccessPointResult#alias #alias} => String
|
2123
2130
|
# * {Types::GetAccessPointResult#access_point_arn #access_point_arn} => String
|
2124
2131
|
# * {Types::GetAccessPointResult#endpoints #endpoints} => Hash<String,String>
|
2132
|
+
# * {Types::GetAccessPointResult#bucket_account_id #bucket_account_id} => String
|
2125
2133
|
#
|
2126
2134
|
# @example Request syntax with placeholder values
|
2127
2135
|
#
|
@@ -2145,6 +2153,7 @@ module Aws::S3Control
|
|
2145
2153
|
# resp.access_point_arn #=> String
|
2146
2154
|
# resp.endpoints #=> Hash
|
2147
2155
|
# resp.endpoints["NonEmptyMaxLength64String"] #=> String
|
2156
|
+
# resp.bucket_account_id #=> String
|
2148
2157
|
#
|
2149
2158
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetAccessPoint AWS API Documentation
|
2150
2159
|
#
|
@@ -3394,12 +3403,12 @@ module Aws::S3Control
|
|
3394
3403
|
req.send_request(options)
|
3395
3404
|
end
|
3396
3405
|
|
3397
|
-
# Returns a list of the access points
|
3398
|
-
# specified bucket. You can retrieve up to 1000
|
3399
|
-
# If the specified bucket has more than 1,000
|
3400
|
-
# number specified in `maxResults`, whichever is
|
3401
|
-
# will include a continuation token that you can use
|
3402
|
-
# additional access points.
|
3406
|
+
# Returns a list of the access points owned by the current account
|
3407
|
+
# associated with the specified bucket. You can retrieve up to 1000
|
3408
|
+
# access points per call. If the specified bucket has more than 1,000
|
3409
|
+
# access points (or the number specified in `maxResults`, whichever is
|
3410
|
+
# less), the response will include a continuation token that you can use
|
3411
|
+
# to list the additional access points.
|
3403
3412
|
#
|
3404
3413
|
#
|
3405
3414
|
#
|
@@ -3427,8 +3436,8 @@ module Aws::S3Control
|
|
3427
3436
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPoint.html
|
3428
3437
|
#
|
3429
3438
|
# @option params [String] :account_id
|
3430
|
-
# The Amazon Web Services account ID for
|
3431
|
-
# access points
|
3439
|
+
# The Amazon Web Services account ID for the account that owns the
|
3440
|
+
# specified access points.
|
3432
3441
|
#
|
3433
3442
|
# @option params [String] :bucket
|
3434
3443
|
# The name of the bucket whose associated access points you want to
|
@@ -3484,6 +3493,7 @@ module Aws::S3Control
|
|
3484
3493
|
# resp.access_point_list[0].bucket #=> String
|
3485
3494
|
# resp.access_point_list[0].access_point_arn #=> String
|
3486
3495
|
# resp.access_point_list[0].alias #=> String
|
3496
|
+
# resp.access_point_list[0].bucket_account_id #=> String
|
3487
3497
|
# resp.next_token #=> String
|
3488
3498
|
#
|
3489
3499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ListAccessPoints AWS API Documentation
|
@@ -5094,7 +5104,7 @@ module Aws::S3Control
|
|
5094
5104
|
params: params,
|
5095
5105
|
config: config)
|
5096
5106
|
context[:gem_name] = 'aws-sdk-s3control'
|
5097
|
-
context[:gem_version] = '1.
|
5107
|
+
context[:gem_version] = '1.59.0'
|
5098
5108
|
Seahorse::Client::Request.new(handlers, context)
|
5099
5109
|
end
|
5100
5110
|
|
@@ -388,6 +388,7 @@ module Aws::S3Control
|
|
388
388
|
AccessPoint.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "Bucket"))
|
389
389
|
AccessPoint.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, location_name: "AccessPointArn"))
|
390
390
|
AccessPoint.add_member(:alias, Shapes::ShapeRef.new(shape: Alias, location_name: "Alias"))
|
391
|
+
AccessPoint.add_member(:bucket_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "BucketAccountId"))
|
391
392
|
AccessPoint.struct_class = Types::AccessPoint
|
392
393
|
|
393
394
|
AccessPointList.member = Shapes::ShapeRef.new(shape: AccessPoint, location_name: "AccessPoint")
|
@@ -467,6 +468,7 @@ module Aws::S3Control
|
|
467
468
|
CreateAccessPointRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
468
469
|
CreateAccessPointRequest.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "VpcConfiguration"))
|
469
470
|
CreateAccessPointRequest.add_member(:public_access_block_configuration, Shapes::ShapeRef.new(shape: PublicAccessBlockConfiguration, location_name: "PublicAccessBlockConfiguration"))
|
471
|
+
CreateAccessPointRequest.add_member(:bucket_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "BucketAccountId"))
|
470
472
|
CreateAccessPointRequest.struct_class = Types::CreateAccessPointRequest
|
471
473
|
|
472
474
|
CreateAccessPointResult.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, location_name: "AccessPointArn"))
|
@@ -673,6 +675,7 @@ module Aws::S3Control
|
|
673
675
|
GetAccessPointResult.add_member(:alias, Shapes::ShapeRef.new(shape: Alias, location_name: "Alias"))
|
674
676
|
GetAccessPointResult.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, location_name: "AccessPointArn"))
|
675
677
|
GetAccessPointResult.add_member(:endpoints, Shapes::ShapeRef.new(shape: Endpoints, location_name: "Endpoints"))
|
678
|
+
GetAccessPointResult.add_member(:bucket_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "BucketAccountId"))
|
676
679
|
GetAccessPointResult.struct_class = Types::GetAccessPointResult
|
677
680
|
|
678
681
|
GetBucketLifecycleConfigurationRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-account-id", metadata: {"contextParam"=>{"name"=>"AccountId"}}))
|