aws-sdk-s3control 1.113.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c82687deebb21750615ce7bdd6c3230cfd8a9751dc3535db248b7c647978352
4
- data.tar.gz: 7cf9abf83113f919a9d1878b321e4b0f7da5555e83ab7578fa816cd93147dfb6
3
+ metadata.gz: 2c7854bb0076999410a5cfabe41fef653471de707b027be914b0637184cd13a5
4
+ data.tar.gz: c0eed6d9b992821f84d6fa43f35b79ec008af0a9b915cd6c72cfb864f11352f8
5
5
  SHA512:
6
- metadata.gz: cf6351057155a01fd5f7695d88a4bad25e93a47eaad22e63f6d5a8726b1ac8952b146784d81f4a8625c20c4f394da4bfc8858c14f732162172c5d29fa290eaf1
7
- data.tar.gz: '0590c66ec5e68108e6bbc7f594b51e83f56b6f2e303cea9ae706ee30111f8a87596fe7b2129e2763a7c5a415dcb681d29acad1afa0173785cf54fdf258674ac8'
6
+ metadata.gz: 041e50471bdab9c51f7d83c3ffb29828f3339f34fbb29693f60aa65b51520520b47587adc1bbc02793bc4cabef9780f3de316698730938708f692f83db417e70
7
+ data.tar.gz: e81abfdedad050feb7fc990fc167d38235895e9f288018181689682da8ccc675813cfbcd9d83bb57ee4cf606ea128a0a71254e36873304132c015e7a597479bd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.113.0 (2025-07-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.113.0
1
+ 1.114.0
@@ -975,6 +975,18 @@ module Aws::S3Control
975
975
  #
976
976
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-directory-buckets.html
977
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
+ #
978
990
  # @return [Types::CreateAccessPointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
979
991
  #
980
992
  # * {Types::CreateAccessPointResult#access_point_arn #access_point_arn} => String
@@ -1000,6 +1012,12 @@ module Aws::S3Control
1000
1012
  # prefixes: ["Prefix"],
1001
1013
  # permissions: ["GetObject"], # accepts GetObject, GetObjectAttributes, ListMultipartUploadParts, ListBucket, ListBucketMultipartUploads, PutObject, DeleteObject, AbortMultipartUpload
1002
1014
  # },
1015
+ # tags: [
1016
+ # {
1017
+ # key: "TagKeyString", # required
1018
+ # value: "TagValueString", # required
1019
+ # },
1020
+ # ],
1003
1021
  # })
1004
1022
  #
1005
1023
  # @example Response structure
@@ -8078,7 +8096,7 @@ module Aws::S3Control
8078
8096
  tracer: tracer
8079
8097
  )
8080
8098
  context[:gem_name] = 'aws-sdk-s3control'
8081
- context[:gem_version] = '1.113.0'
8099
+ context[:gem_version] = '1.114.0'
8082
8100
  Seahorse::Client::Request.new(handlers, context)
8083
8101
  end
8084
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
@@ -54,7 +54,7 @@ module Aws::S3Control
54
54
  autoload :EndpointProvider, 'aws-sdk-s3control/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-s3control/endpoints'
56
56
 
57
- GEM_VERSION = '1.113.0'
57
+ GEM_VERSION = '1.114.0'
58
58
 
59
59
  end
60
60
 
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.113.0
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.227.0
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.227.0
31
+ version: 3.228.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement