aws-sdk-s3control 1.94.0 → 1.96.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 +1 -1
- data/lib/aws-sdk-s3control/client_api.rb +3 -3
- data/lib/aws-sdk-s3control/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-s3control/endpoints.rb +384 -724
- data/lib/aws-sdk-s3control/plugins/endpoints.rb +1 -192
- data/lib/aws-sdk-s3control/types.rb +6 -5
- data/lib/aws-sdk-s3control.rb +1 -1
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::S3Control::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,197 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :associate_access_grants_identity_center
|
74
|
-
Aws::S3Control::Endpoints::AssociateAccessGrantsIdentityCenter.build(context)
|
75
|
-
when :create_access_grant
|
76
|
-
Aws::S3Control::Endpoints::CreateAccessGrant.build(context)
|
77
|
-
when :create_access_grants_instance
|
78
|
-
Aws::S3Control::Endpoints::CreateAccessGrantsInstance.build(context)
|
79
|
-
when :create_access_grants_location
|
80
|
-
Aws::S3Control::Endpoints::CreateAccessGrantsLocation.build(context)
|
81
|
-
when :create_access_point
|
82
|
-
Aws::S3Control::Endpoints::CreateAccessPoint.build(context)
|
83
|
-
when :create_access_point_for_object_lambda
|
84
|
-
Aws::S3Control::Endpoints::CreateAccessPointForObjectLambda.build(context)
|
85
|
-
when :create_bucket
|
86
|
-
Aws::S3Control::Endpoints::CreateBucket.build(context)
|
87
|
-
when :create_job
|
88
|
-
Aws::S3Control::Endpoints::CreateJob.build(context)
|
89
|
-
when :create_multi_region_access_point
|
90
|
-
Aws::S3Control::Endpoints::CreateMultiRegionAccessPoint.build(context)
|
91
|
-
when :create_storage_lens_group
|
92
|
-
Aws::S3Control::Endpoints::CreateStorageLensGroup.build(context)
|
93
|
-
when :delete_access_grant
|
94
|
-
Aws::S3Control::Endpoints::DeleteAccessGrant.build(context)
|
95
|
-
when :delete_access_grants_instance
|
96
|
-
Aws::S3Control::Endpoints::DeleteAccessGrantsInstance.build(context)
|
97
|
-
when :delete_access_grants_instance_resource_policy
|
98
|
-
Aws::S3Control::Endpoints::DeleteAccessGrantsInstanceResourcePolicy.build(context)
|
99
|
-
when :delete_access_grants_location
|
100
|
-
Aws::S3Control::Endpoints::DeleteAccessGrantsLocation.build(context)
|
101
|
-
when :delete_access_point
|
102
|
-
Aws::S3Control::Endpoints::DeleteAccessPoint.build(context)
|
103
|
-
when :delete_access_point_for_object_lambda
|
104
|
-
Aws::S3Control::Endpoints::DeleteAccessPointForObjectLambda.build(context)
|
105
|
-
when :delete_access_point_policy
|
106
|
-
Aws::S3Control::Endpoints::DeleteAccessPointPolicy.build(context)
|
107
|
-
when :delete_access_point_policy_for_object_lambda
|
108
|
-
Aws::S3Control::Endpoints::DeleteAccessPointPolicyForObjectLambda.build(context)
|
109
|
-
when :delete_bucket
|
110
|
-
Aws::S3Control::Endpoints::DeleteBucket.build(context)
|
111
|
-
when :delete_bucket_lifecycle_configuration
|
112
|
-
Aws::S3Control::Endpoints::DeleteBucketLifecycleConfiguration.build(context)
|
113
|
-
when :delete_bucket_policy
|
114
|
-
Aws::S3Control::Endpoints::DeleteBucketPolicy.build(context)
|
115
|
-
when :delete_bucket_replication
|
116
|
-
Aws::S3Control::Endpoints::DeleteBucketReplication.build(context)
|
117
|
-
when :delete_bucket_tagging
|
118
|
-
Aws::S3Control::Endpoints::DeleteBucketTagging.build(context)
|
119
|
-
when :delete_job_tagging
|
120
|
-
Aws::S3Control::Endpoints::DeleteJobTagging.build(context)
|
121
|
-
when :delete_multi_region_access_point
|
122
|
-
Aws::S3Control::Endpoints::DeleteMultiRegionAccessPoint.build(context)
|
123
|
-
when :delete_public_access_block
|
124
|
-
Aws::S3Control::Endpoints::DeletePublicAccessBlock.build(context)
|
125
|
-
when :delete_storage_lens_configuration
|
126
|
-
Aws::S3Control::Endpoints::DeleteStorageLensConfiguration.build(context)
|
127
|
-
when :delete_storage_lens_configuration_tagging
|
128
|
-
Aws::S3Control::Endpoints::DeleteStorageLensConfigurationTagging.build(context)
|
129
|
-
when :delete_storage_lens_group
|
130
|
-
Aws::S3Control::Endpoints::DeleteStorageLensGroup.build(context)
|
131
|
-
when :describe_job
|
132
|
-
Aws::S3Control::Endpoints::DescribeJob.build(context)
|
133
|
-
when :describe_multi_region_access_point_operation
|
134
|
-
Aws::S3Control::Endpoints::DescribeMultiRegionAccessPointOperation.build(context)
|
135
|
-
when :dissociate_access_grants_identity_center
|
136
|
-
Aws::S3Control::Endpoints::DissociateAccessGrantsIdentityCenter.build(context)
|
137
|
-
when :get_access_grant
|
138
|
-
Aws::S3Control::Endpoints::GetAccessGrant.build(context)
|
139
|
-
when :get_access_grants_instance
|
140
|
-
Aws::S3Control::Endpoints::GetAccessGrantsInstance.build(context)
|
141
|
-
when :get_access_grants_instance_for_prefix
|
142
|
-
Aws::S3Control::Endpoints::GetAccessGrantsInstanceForPrefix.build(context)
|
143
|
-
when :get_access_grants_instance_resource_policy
|
144
|
-
Aws::S3Control::Endpoints::GetAccessGrantsInstanceResourcePolicy.build(context)
|
145
|
-
when :get_access_grants_location
|
146
|
-
Aws::S3Control::Endpoints::GetAccessGrantsLocation.build(context)
|
147
|
-
when :get_access_point
|
148
|
-
Aws::S3Control::Endpoints::GetAccessPoint.build(context)
|
149
|
-
when :get_access_point_configuration_for_object_lambda
|
150
|
-
Aws::S3Control::Endpoints::GetAccessPointConfigurationForObjectLambda.build(context)
|
151
|
-
when :get_access_point_for_object_lambda
|
152
|
-
Aws::S3Control::Endpoints::GetAccessPointForObjectLambda.build(context)
|
153
|
-
when :get_access_point_policy
|
154
|
-
Aws::S3Control::Endpoints::GetAccessPointPolicy.build(context)
|
155
|
-
when :get_access_point_policy_for_object_lambda
|
156
|
-
Aws::S3Control::Endpoints::GetAccessPointPolicyForObjectLambda.build(context)
|
157
|
-
when :get_access_point_policy_status
|
158
|
-
Aws::S3Control::Endpoints::GetAccessPointPolicyStatus.build(context)
|
159
|
-
when :get_access_point_policy_status_for_object_lambda
|
160
|
-
Aws::S3Control::Endpoints::GetAccessPointPolicyStatusForObjectLambda.build(context)
|
161
|
-
when :get_bucket
|
162
|
-
Aws::S3Control::Endpoints::GetBucket.build(context)
|
163
|
-
when :get_bucket_lifecycle_configuration
|
164
|
-
Aws::S3Control::Endpoints::GetBucketLifecycleConfiguration.build(context)
|
165
|
-
when :get_bucket_policy
|
166
|
-
Aws::S3Control::Endpoints::GetBucketPolicy.build(context)
|
167
|
-
when :get_bucket_replication
|
168
|
-
Aws::S3Control::Endpoints::GetBucketReplication.build(context)
|
169
|
-
when :get_bucket_tagging
|
170
|
-
Aws::S3Control::Endpoints::GetBucketTagging.build(context)
|
171
|
-
when :get_bucket_versioning
|
172
|
-
Aws::S3Control::Endpoints::GetBucketVersioning.build(context)
|
173
|
-
when :get_data_access
|
174
|
-
Aws::S3Control::Endpoints::GetDataAccess.build(context)
|
175
|
-
when :get_job_tagging
|
176
|
-
Aws::S3Control::Endpoints::GetJobTagging.build(context)
|
177
|
-
when :get_multi_region_access_point
|
178
|
-
Aws::S3Control::Endpoints::GetMultiRegionAccessPoint.build(context)
|
179
|
-
when :get_multi_region_access_point_policy
|
180
|
-
Aws::S3Control::Endpoints::GetMultiRegionAccessPointPolicy.build(context)
|
181
|
-
when :get_multi_region_access_point_policy_status
|
182
|
-
Aws::S3Control::Endpoints::GetMultiRegionAccessPointPolicyStatus.build(context)
|
183
|
-
when :get_multi_region_access_point_routes
|
184
|
-
Aws::S3Control::Endpoints::GetMultiRegionAccessPointRoutes.build(context)
|
185
|
-
when :get_public_access_block
|
186
|
-
Aws::S3Control::Endpoints::GetPublicAccessBlock.build(context)
|
187
|
-
when :get_storage_lens_configuration
|
188
|
-
Aws::S3Control::Endpoints::GetStorageLensConfiguration.build(context)
|
189
|
-
when :get_storage_lens_configuration_tagging
|
190
|
-
Aws::S3Control::Endpoints::GetStorageLensConfigurationTagging.build(context)
|
191
|
-
when :get_storage_lens_group
|
192
|
-
Aws::S3Control::Endpoints::GetStorageLensGroup.build(context)
|
193
|
-
when :list_access_grants
|
194
|
-
Aws::S3Control::Endpoints::ListAccessGrants.build(context)
|
195
|
-
when :list_access_grants_instances
|
196
|
-
Aws::S3Control::Endpoints::ListAccessGrantsInstances.build(context)
|
197
|
-
when :list_access_grants_locations
|
198
|
-
Aws::S3Control::Endpoints::ListAccessGrantsLocations.build(context)
|
199
|
-
when :list_access_points
|
200
|
-
Aws::S3Control::Endpoints::ListAccessPoints.build(context)
|
201
|
-
when :list_access_points_for_object_lambda
|
202
|
-
Aws::S3Control::Endpoints::ListAccessPointsForObjectLambda.build(context)
|
203
|
-
when :list_caller_access_grants
|
204
|
-
Aws::S3Control::Endpoints::ListCallerAccessGrants.build(context)
|
205
|
-
when :list_jobs
|
206
|
-
Aws::S3Control::Endpoints::ListJobs.build(context)
|
207
|
-
when :list_multi_region_access_points
|
208
|
-
Aws::S3Control::Endpoints::ListMultiRegionAccessPoints.build(context)
|
209
|
-
when :list_regional_buckets
|
210
|
-
Aws::S3Control::Endpoints::ListRegionalBuckets.build(context)
|
211
|
-
when :list_storage_lens_configurations
|
212
|
-
Aws::S3Control::Endpoints::ListStorageLensConfigurations.build(context)
|
213
|
-
when :list_storage_lens_groups
|
214
|
-
Aws::S3Control::Endpoints::ListStorageLensGroups.build(context)
|
215
|
-
when :list_tags_for_resource
|
216
|
-
Aws::S3Control::Endpoints::ListTagsForResource.build(context)
|
217
|
-
when :put_access_grants_instance_resource_policy
|
218
|
-
Aws::S3Control::Endpoints::PutAccessGrantsInstanceResourcePolicy.build(context)
|
219
|
-
when :put_access_point_configuration_for_object_lambda
|
220
|
-
Aws::S3Control::Endpoints::PutAccessPointConfigurationForObjectLambda.build(context)
|
221
|
-
when :put_access_point_policy
|
222
|
-
Aws::S3Control::Endpoints::PutAccessPointPolicy.build(context)
|
223
|
-
when :put_access_point_policy_for_object_lambda
|
224
|
-
Aws::S3Control::Endpoints::PutAccessPointPolicyForObjectLambda.build(context)
|
225
|
-
when :put_bucket_lifecycle_configuration
|
226
|
-
Aws::S3Control::Endpoints::PutBucketLifecycleConfiguration.build(context)
|
227
|
-
when :put_bucket_policy
|
228
|
-
Aws::S3Control::Endpoints::PutBucketPolicy.build(context)
|
229
|
-
when :put_bucket_replication
|
230
|
-
Aws::S3Control::Endpoints::PutBucketReplication.build(context)
|
231
|
-
when :put_bucket_tagging
|
232
|
-
Aws::S3Control::Endpoints::PutBucketTagging.build(context)
|
233
|
-
when :put_bucket_versioning
|
234
|
-
Aws::S3Control::Endpoints::PutBucketVersioning.build(context)
|
235
|
-
when :put_job_tagging
|
236
|
-
Aws::S3Control::Endpoints::PutJobTagging.build(context)
|
237
|
-
when :put_multi_region_access_point_policy
|
238
|
-
Aws::S3Control::Endpoints::PutMultiRegionAccessPointPolicy.build(context)
|
239
|
-
when :put_public_access_block
|
240
|
-
Aws::S3Control::Endpoints::PutPublicAccessBlock.build(context)
|
241
|
-
when :put_storage_lens_configuration
|
242
|
-
Aws::S3Control::Endpoints::PutStorageLensConfiguration.build(context)
|
243
|
-
when :put_storage_lens_configuration_tagging
|
244
|
-
Aws::S3Control::Endpoints::PutStorageLensConfigurationTagging.build(context)
|
245
|
-
when :submit_multi_region_access_point_routes
|
246
|
-
Aws::S3Control::Endpoints::SubmitMultiRegionAccessPointRoutes.build(context)
|
247
|
-
when :tag_resource
|
248
|
-
Aws::S3Control::Endpoints::TagResource.build(context)
|
249
|
-
when :untag_resource
|
250
|
-
Aws::S3Control::Endpoints::UntagResource.build(context)
|
251
|
-
when :update_access_grants_location
|
252
|
-
Aws::S3Control::Endpoints::UpdateAccessGrantsLocation.build(context)
|
253
|
-
when :update_job_priority
|
254
|
-
Aws::S3Control::Endpoints::UpdateJobPriority.build(context)
|
255
|
-
when :update_job_status
|
256
|
-
Aws::S3Control::Endpoints::UpdateJobStatus.build(context)
|
257
|
-
when :update_storage_lens_group
|
258
|
-
Aws::S3Control::Endpoints::UpdateStorageLensGroup.build(context)
|
259
|
-
end
|
260
|
-
end
|
261
70
|
end
|
262
71
|
|
263
72
|
def add_handlers(handlers, _config)
|
@@ -93,8 +93,8 @@ module Aws::S3Control
|
|
93
93
|
# if one exists.
|
94
94
|
#
|
95
95
|
# <note markdown="1"> This element is empty if this access point is an Amazon S3 on
|
96
|
-
# Outposts access point that is used by other Amazon Web
|
97
|
-
#
|
96
|
+
# Outposts access point that is used by other Amazon Web Services
|
97
|
+
# services.
|
98
98
|
#
|
99
99
|
# </note>
|
100
100
|
# @return [Types::VpcConfiguration]
|
@@ -2766,8 +2766,8 @@ module Aws::S3Control
|
|
2766
2766
|
# specified access point.
|
2767
2767
|
#
|
2768
2768
|
# <note markdown="1"> This element is empty if this access point is an Amazon S3 on
|
2769
|
-
# Outposts access point that is used by other Amazon Web
|
2770
|
-
#
|
2769
|
+
# Outposts access point that is used by other Amazon Web Services
|
2770
|
+
# services.
|
2771
2771
|
#
|
2772
2772
|
# </note>
|
2773
2773
|
# @return [Types::VpcConfiguration]
|
@@ -5967,7 +5967,8 @@ module Aws::S3Control
|
|
5967
5967
|
# Specifies whether Amazon S3 should restrict public bucket policies
|
5968
5968
|
# for buckets in this account. Setting this element to `TRUE`
|
5969
5969
|
# restricts access to buckets with public policies to only Amazon Web
|
5970
|
-
#
|
5970
|
+
# Services service principals and authorized users within this
|
5971
|
+
# account.
|
5971
5972
|
#
|
5972
5973
|
# Enabling this setting doesn't affect previously stored bucket
|
5973
5974
|
# policies, except that public and cross-account access within any
|
data/lib/aws-sdk-s3control.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.96.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|