aws-sdk-s3control 1.113.0 → 1.115.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control/client.rb +28 -13
- data/lib/aws-sdk-s3control/client_api.rb +1 -0
- data/lib/aws-sdk-s3control/types.rb +15 -1
- data/lib/aws-sdk-s3control.rb +1 -1
- data/sig/client.rbs +7 -1
- data/sig/types.rbs +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '096f586b6f7cd202de61a7f1311227b40db330bed0ae07cb52efbb297dab48b9'
|
4
|
+
data.tar.gz: '0427877c55352cf9c6d02424c50c50d98ab2ba1fde8ba9e2a1721b16a8bdc823'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d1411f2019b8ae9ab6b5b99f39379fcaf31de004ea605bd765329f55fb31aa03b461485e80a68a71e9d1253b2faf0f27c2630ad335f1f25c9b866072a5fb521
|
7
|
+
data.tar.gz: 811dfffe59b57f78da1f5532de1384c17f9e6b69c87402efd516b4fcf700b59fc0b2c7ae83a2b36869475221b0949c4ed7d5815cf0d0e130649a75df054d1c50
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.115.0 (2025-08-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.114.0 (2025-07-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add Tags field to CreateAccessPoint
|
13
|
+
|
4
14
|
1.113.0 (2025-07-21)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.115.0
|
@@ -101,8 +101,8 @@ module Aws::S3Control
|
|
101
101
|
# class name or an instance of a plugin class.
|
102
102
|
#
|
103
103
|
# @option options [required, Aws::CredentialProvider] :credentials
|
104
|
-
# Your AWS credentials used for authentication. This can be
|
105
|
-
# following classes:
|
104
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
105
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
106
106
|
#
|
107
107
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
108
108
|
# credentials.
|
@@ -130,8 +130,7 @@ module Aws::S3Control
|
|
130
130
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
131
131
|
# from the Cognito Identity service.
|
132
132
|
#
|
133
|
-
# When `:credentials` are not configured directly, the following
|
134
|
-
# locations will be searched for credentials:
|
133
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
135
134
|
#
|
136
135
|
# * `Aws.config[:credentials]`
|
137
136
|
#
|
@@ -145,12 +144,10 @@ module Aws::S3Control
|
|
145
144
|
#
|
146
145
|
# * `~/.aws/config`
|
147
146
|
#
|
148
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
149
|
-
#
|
150
|
-
#
|
151
|
-
#
|
152
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
153
|
-
# to `true`.
|
147
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
148
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
149
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
150
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
154
151
|
#
|
155
152
|
# @option options [required, String] :region
|
156
153
|
# The AWS region to connect to. The configured `:region` is
|
@@ -389,8 +386,8 @@ module Aws::S3Control
|
|
389
386
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
390
387
|
#
|
391
388
|
# @option options [Aws::TokenProvider] :token_provider
|
392
|
-
# Your Bearer token used for authentication. This can be
|
393
|
-
# following classes:
|
389
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
390
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
394
391
|
#
|
395
392
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
396
393
|
# tokens.
|
@@ -975,6 +972,18 @@ module Aws::S3Control
|
|
975
972
|
#
|
976
973
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-directory-buckets.html
|
977
974
|
#
|
975
|
+
# @option params [Array<Types::Tag>] :tags
|
976
|
+
# An array of tags that you can apply to an access point. Tags are
|
977
|
+
# key-value pairs of metadata used to control access to your access
|
978
|
+
# points. For more information about tags, see [Using tags with Amazon
|
979
|
+
# S3][1]. For information about tagging access points, see [Using tags
|
980
|
+
# for attribute-based access control (ABAC)][2].
|
981
|
+
#
|
982
|
+
#
|
983
|
+
#
|
984
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/tagging.html
|
985
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/tagging.html#using-tags-for-abac
|
986
|
+
#
|
978
987
|
# @return [Types::CreateAccessPointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
979
988
|
#
|
980
989
|
# * {Types::CreateAccessPointResult#access_point_arn #access_point_arn} => String
|
@@ -1000,6 +1009,12 @@ module Aws::S3Control
|
|
1000
1009
|
# prefixes: ["Prefix"],
|
1001
1010
|
# permissions: ["GetObject"], # accepts GetObject, GetObjectAttributes, ListMultipartUploadParts, ListBucket, ListBucketMultipartUploads, PutObject, DeleteObject, AbortMultipartUpload
|
1002
1011
|
# },
|
1012
|
+
# tags: [
|
1013
|
+
# {
|
1014
|
+
# key: "TagKeyString", # required
|
1015
|
+
# value: "TagValueString", # required
|
1016
|
+
# },
|
1017
|
+
# ],
|
1003
1018
|
# })
|
1004
1019
|
#
|
1005
1020
|
# @example Response structure
|
@@ -8078,7 +8093,7 @@ module Aws::S3Control
|
|
8078
8093
|
tracer: tracer
|
8079
8094
|
)
|
8080
8095
|
context[:gem_name] = 'aws-sdk-s3control'
|
8081
|
-
context[:gem_version] = '1.
|
8096
|
+
context[:gem_version] = '1.115.0'
|
8082
8097
|
Seahorse::Client::Request.new(handlers, context)
|
8083
8098
|
end
|
8084
8099
|
|
@@ -700,6 +700,7 @@ module Aws::S3Control
|
|
700
700
|
CreateAccessPointRequest.add_member(:public_access_block_configuration, Shapes::ShapeRef.new(shape: PublicAccessBlockConfiguration, location_name: "PublicAccessBlockConfiguration"))
|
701
701
|
CreateAccessPointRequest.add_member(:bucket_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "BucketAccountId"))
|
702
702
|
CreateAccessPointRequest.add_member(:scope, Shapes::ShapeRef.new(shape: Scope, location_name: "Scope"))
|
703
|
+
CreateAccessPointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
703
704
|
CreateAccessPointRequest.struct_class = Types::CreateAccessPointRequest
|
704
705
|
|
705
706
|
CreateAccessPointResult.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, location_name: "AccessPointArn"))
|
@@ -1011,6 +1011,19 @@ module Aws::S3Control
|
|
1011
1011
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-directory-buckets.html
|
1012
1012
|
# @return [Types::Scope]
|
1013
1013
|
#
|
1014
|
+
# @!attribute [rw] tags
|
1015
|
+
# An array of tags that you can apply to an access point. Tags are
|
1016
|
+
# key-value pairs of metadata used to control access to your access
|
1017
|
+
# points. For more information about tags, see [Using tags with Amazon
|
1018
|
+
# S3][1]. For information about tagging access points, see [Using tags
|
1019
|
+
# for attribute-based access control (ABAC)][2].
|
1020
|
+
#
|
1021
|
+
#
|
1022
|
+
#
|
1023
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/tagging.html
|
1024
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/tagging.html#using-tags-for-abac
|
1025
|
+
# @return [Array<Types::Tag>]
|
1026
|
+
#
|
1014
1027
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/CreateAccessPointRequest AWS API Documentation
|
1015
1028
|
#
|
1016
1029
|
class CreateAccessPointRequest < Struct.new(
|
@@ -1020,7 +1033,8 @@ module Aws::S3Control
|
|
1020
1033
|
:vpc_configuration,
|
1021
1034
|
:public_access_block_configuration,
|
1022
1035
|
:bucket_account_id,
|
1023
|
-
:scope
|
1036
|
+
:scope,
|
1037
|
+
:tags)
|
1024
1038
|
SENSITIVE = []
|
1025
1039
|
include Aws::Structure
|
1026
1040
|
end
|
data/lib/aws-sdk-s3control.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -188,7 +188,13 @@ module Aws
|
|
188
188
|
?scope: {
|
189
189
|
prefixes: Array[::String]?,
|
190
190
|
permissions: Array[("GetObject" | "GetObjectAttributes" | "ListMultipartUploadParts" | "ListBucket" | "ListBucketMultipartUploads" | "PutObject" | "DeleteObject" | "AbortMultipartUpload")]?
|
191
|
-
}
|
191
|
+
},
|
192
|
+
?tags: Array[
|
193
|
+
{
|
194
|
+
key: ::String,
|
195
|
+
value: ::String
|
196
|
+
},
|
197
|
+
]
|
192
198
|
) -> _CreateAccessPointResponseSuccess
|
193
199
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccessPointResponseSuccess
|
194
200
|
|
data/sig/types.rbs
CHANGED
@@ -209,6 +209,7 @@ module Aws::S3Control
|
|
209
209
|
attr_accessor public_access_block_configuration: Types::PublicAccessBlockConfiguration
|
210
210
|
attr_accessor bucket_account_id: ::String
|
211
211
|
attr_accessor scope: Types::Scope
|
212
|
+
attr_accessor tags: ::Array[Types::Tag]
|
212
213
|
SENSITIVE: []
|
213
214
|
end
|
214
215
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-s3control
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.115.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.
|
21
|
+
version: 3.228.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.
|
31
|
+
version: 3.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|