aws-sdk-s3control 1.112.0 → 1.114.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 +37 -9
- 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 +8 -1
- data/sig/resource.rbs +1 -0
- 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: 2c7854bb0076999410a5cfabe41fef653471de707b027be914b0637184cd13a5
|
4
|
+
data.tar.gz: c0eed6d9b992821f84d6fa43f35b79ec008af0a9b915cd6c72cfb864f11352f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 041e50471bdab9c51f7d83c3ffb29828f3339f34fbb29693f60aa65b51520520b47587adc1bbc02793bc4cabef9780f3de316698730938708f692f83db417e70
|
7
|
+
data.tar.gz: e81abfdedad050feb7fc990fc167d38235895e9f288018181689682da8ccc675813cfbcd9d83bb57ee4cf606ea128a0a71254e36873304132c015e7a597479bd
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.114.0 (2025-07-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add Tags field to CreateAccessPoint
|
8
|
+
|
9
|
+
1.113.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.112.0 (2025-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.114.0
|
@@ -101,7 +101,7 @@ 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. This can be an instance of any one of the
|
104
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
105
105
|
# following classes:
|
106
106
|
#
|
107
107
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -134,18 +134,23 @@ module Aws::S3Control
|
|
134
134
|
# locations will be searched for credentials:
|
135
135
|
#
|
136
136
|
# * `Aws.config[:credentials]`
|
137
|
+
#
|
137
138
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
138
139
|
# `:account_id` options.
|
139
|
-
#
|
140
|
-
#
|
140
|
+
#
|
141
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
142
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
143
|
+
#
|
141
144
|
# * `~/.aws/credentials`
|
145
|
+
#
|
142
146
|
# * `~/.aws/config`
|
147
|
+
#
|
143
148
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
144
149
|
# are very aggressive. Construct and pass an instance of
|
145
150
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
146
151
|
# enable retries and extended timeouts. Instance profile credential
|
147
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
148
|
-
# to true
|
152
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
153
|
+
# to `true`.
|
149
154
|
#
|
150
155
|
# @option options [required, String] :region
|
151
156
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +178,11 @@ module Aws::S3Control
|
|
173
178
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
174
179
|
# not retry instead of sleeping.
|
175
180
|
#
|
181
|
+
# @option options [Array<String>] :auth_scheme_preference
|
182
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
183
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
184
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :client_side_monitoring (false)
|
177
187
|
# When `true`, client-side metrics will be collected for all API requests from
|
178
188
|
# this client.
|
@@ -259,8 +269,8 @@ module Aws::S3Control
|
|
259
269
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
260
270
|
#
|
261
271
|
# @option options [String] :profile ("default")
|
262
|
-
# Used when loading credentials from the shared credentials file
|
263
|
-
#
|
272
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
273
|
+
# When not specified, 'default' is used.
|
264
274
|
#
|
265
275
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
266
276
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -379,7 +389,7 @@ module Aws::S3Control
|
|
379
389
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
380
390
|
#
|
381
391
|
# @option options [Aws::TokenProvider] :token_provider
|
382
|
-
#
|
392
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
383
393
|
# following classes:
|
384
394
|
#
|
385
395
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -965,6 +975,18 @@ module Aws::S3Control
|
|
965
975
|
#
|
966
976
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-directory-buckets.html
|
967
977
|
#
|
978
|
+
# @option params [Array<Types::Tag>] :tags
|
979
|
+
# An array of tags that you can apply to an access point. Tags are
|
980
|
+
# key-value pairs of metadata used to control access to your access
|
981
|
+
# points. For more information about tags, see [Using tags with Amazon
|
982
|
+
# S3][1]. For information about tagging access points, see [Using tags
|
983
|
+
# for attribute-based access control (ABAC)][2].
|
984
|
+
#
|
985
|
+
#
|
986
|
+
#
|
987
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/tagging.html
|
988
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/tagging.html#using-tags-for-abac
|
989
|
+
#
|
968
990
|
# @return [Types::CreateAccessPointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
969
991
|
#
|
970
992
|
# * {Types::CreateAccessPointResult#access_point_arn #access_point_arn} => String
|
@@ -990,6 +1012,12 @@ module Aws::S3Control
|
|
990
1012
|
# prefixes: ["Prefix"],
|
991
1013
|
# permissions: ["GetObject"], # accepts GetObject, GetObjectAttributes, ListMultipartUploadParts, ListBucket, ListBucketMultipartUploads, PutObject, DeleteObject, AbortMultipartUpload
|
992
1014
|
# },
|
1015
|
+
# tags: [
|
1016
|
+
# {
|
1017
|
+
# key: "TagKeyString", # required
|
1018
|
+
# value: "TagValueString", # required
|
1019
|
+
# },
|
1020
|
+
# ],
|
993
1021
|
# })
|
994
1022
|
#
|
995
1023
|
# @example Response structure
|
@@ -8068,7 +8096,7 @@ module Aws::S3Control
|
|
8068
8096
|
tracer: tracer
|
8069
8097
|
)
|
8070
8098
|
context[:gem_name] = 'aws-sdk-s3control'
|
8071
|
-
context[:gem_version] = '1.
|
8099
|
+
context[:gem_version] = '1.114.0'
|
8072
8100
|
Seahorse::Client::Request.new(handlers, context)
|
8073
8101
|
end
|
8074
8102
|
|
@@ -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
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -187,7 +188,13 @@ module Aws
|
|
187
188
|
?scope: {
|
188
189
|
prefixes: Array[::String]?,
|
189
190
|
permissions: Array[("GetObject" | "GetObjectAttributes" | "ListMultipartUploadParts" | "ListBucket" | "ListBucketMultipartUploads" | "PutObject" | "DeleteObject" | "AbortMultipartUpload")]?
|
190
|
-
}
|
191
|
+
},
|
192
|
+
?tags: Array[
|
193
|
+
{
|
194
|
+
key: ::String,
|
195
|
+
value: ::String
|
196
|
+
},
|
197
|
+
]
|
191
198
|
) -> _CreateAccessPointResponseSuccess
|
192
199
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccessPointResponseSuccess
|
193
200
|
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
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.114.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
|