aws-sdk-s3control 1.70.0 → 1.72.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 +586 -5
- data/lib/aws-sdk-s3control/client_api.rb +274 -0
- data/lib/aws-sdk-s3control/endpoints.rb +160 -0
- data/lib/aws-sdk-s3control/plugins/endpoints.rb +16 -0
- data/lib/aws-sdk-s3control/types.rb +620 -15
- data/lib/aws-sdk-s3control.rb +1 -1
- metadata +5 -5
@@ -112,6 +112,26 @@ module Aws::S3Control
|
|
112
112
|
end
|
113
113
|
end
|
114
114
|
|
115
|
+
class CreateStorageLensGroup
|
116
|
+
def self.build(context)
|
117
|
+
unless context.config.regional_endpoint
|
118
|
+
endpoint = context.config.endpoint.to_s
|
119
|
+
end
|
120
|
+
Aws::S3Control::EndpointParameters.new(
|
121
|
+
region: context.config.region,
|
122
|
+
use_fips: context.config.use_fips_endpoint,
|
123
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
124
|
+
endpoint: endpoint,
|
125
|
+
account_id: context.params[:account_id],
|
126
|
+
requires_account_id: true,
|
127
|
+
outpost_id: nil,
|
128
|
+
bucket: nil,
|
129
|
+
access_point_name: nil,
|
130
|
+
use_arn_region: context.config.s3_use_arn_region,
|
131
|
+
)
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
115
135
|
class DeleteAccessPoint
|
116
136
|
def self.build(context)
|
117
137
|
unless context.config.regional_endpoint
|
@@ -392,6 +412,26 @@ module Aws::S3Control
|
|
392
412
|
end
|
393
413
|
end
|
394
414
|
|
415
|
+
class DeleteStorageLensGroup
|
416
|
+
def self.build(context)
|
417
|
+
unless context.config.regional_endpoint
|
418
|
+
endpoint = context.config.endpoint.to_s
|
419
|
+
end
|
420
|
+
Aws::S3Control::EndpointParameters.new(
|
421
|
+
region: context.config.region,
|
422
|
+
use_fips: context.config.use_fips_endpoint,
|
423
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
424
|
+
endpoint: endpoint,
|
425
|
+
account_id: context.params[:account_id],
|
426
|
+
requires_account_id: true,
|
427
|
+
outpost_id: nil,
|
428
|
+
bucket: nil,
|
429
|
+
access_point_name: nil,
|
430
|
+
use_arn_region: context.config.s3_use_arn_region,
|
431
|
+
)
|
432
|
+
end
|
433
|
+
end
|
434
|
+
|
395
435
|
class DescribeJob
|
396
436
|
def self.build(context)
|
397
437
|
unless context.config.regional_endpoint
|
@@ -852,6 +892,26 @@ module Aws::S3Control
|
|
852
892
|
end
|
853
893
|
end
|
854
894
|
|
895
|
+
class GetStorageLensGroup
|
896
|
+
def self.build(context)
|
897
|
+
unless context.config.regional_endpoint
|
898
|
+
endpoint = context.config.endpoint.to_s
|
899
|
+
end
|
900
|
+
Aws::S3Control::EndpointParameters.new(
|
901
|
+
region: context.config.region,
|
902
|
+
use_fips: context.config.use_fips_endpoint,
|
903
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
904
|
+
endpoint: endpoint,
|
905
|
+
account_id: context.params[:account_id],
|
906
|
+
requires_account_id: true,
|
907
|
+
outpost_id: nil,
|
908
|
+
bucket: nil,
|
909
|
+
access_point_name: nil,
|
910
|
+
use_arn_region: context.config.s3_use_arn_region,
|
911
|
+
)
|
912
|
+
end
|
913
|
+
end
|
914
|
+
|
855
915
|
class ListAccessPoints
|
856
916
|
def self.build(context)
|
857
917
|
unless context.config.regional_endpoint
|
@@ -972,6 +1032,46 @@ module Aws::S3Control
|
|
972
1032
|
end
|
973
1033
|
end
|
974
1034
|
|
1035
|
+
class ListStorageLensGroups
|
1036
|
+
def self.build(context)
|
1037
|
+
unless context.config.regional_endpoint
|
1038
|
+
endpoint = context.config.endpoint.to_s
|
1039
|
+
end
|
1040
|
+
Aws::S3Control::EndpointParameters.new(
|
1041
|
+
region: context.config.region,
|
1042
|
+
use_fips: context.config.use_fips_endpoint,
|
1043
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
1044
|
+
endpoint: endpoint,
|
1045
|
+
account_id: context.params[:account_id],
|
1046
|
+
requires_account_id: true,
|
1047
|
+
outpost_id: nil,
|
1048
|
+
bucket: nil,
|
1049
|
+
access_point_name: nil,
|
1050
|
+
use_arn_region: context.config.s3_use_arn_region,
|
1051
|
+
)
|
1052
|
+
end
|
1053
|
+
end
|
1054
|
+
|
1055
|
+
class ListTagsForResource
|
1056
|
+
def self.build(context)
|
1057
|
+
unless context.config.regional_endpoint
|
1058
|
+
endpoint = context.config.endpoint.to_s
|
1059
|
+
end
|
1060
|
+
Aws::S3Control::EndpointParameters.new(
|
1061
|
+
region: context.config.region,
|
1062
|
+
use_fips: context.config.use_fips_endpoint,
|
1063
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
1064
|
+
endpoint: endpoint,
|
1065
|
+
account_id: context.params[:account_id],
|
1066
|
+
requires_account_id: true,
|
1067
|
+
outpost_id: nil,
|
1068
|
+
bucket: nil,
|
1069
|
+
access_point_name: nil,
|
1070
|
+
use_arn_region: context.config.s3_use_arn_region,
|
1071
|
+
)
|
1072
|
+
end
|
1073
|
+
end
|
1074
|
+
|
975
1075
|
class PutAccessPointConfigurationForObjectLambda
|
976
1076
|
def self.build(context)
|
977
1077
|
unless context.config.regional_endpoint
|
@@ -1252,6 +1352,46 @@ module Aws::S3Control
|
|
1252
1352
|
end
|
1253
1353
|
end
|
1254
1354
|
|
1355
|
+
class TagResource
|
1356
|
+
def self.build(context)
|
1357
|
+
unless context.config.regional_endpoint
|
1358
|
+
endpoint = context.config.endpoint.to_s
|
1359
|
+
end
|
1360
|
+
Aws::S3Control::EndpointParameters.new(
|
1361
|
+
region: context.config.region,
|
1362
|
+
use_fips: context.config.use_fips_endpoint,
|
1363
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
1364
|
+
endpoint: endpoint,
|
1365
|
+
account_id: context.params[:account_id],
|
1366
|
+
requires_account_id: true,
|
1367
|
+
outpost_id: nil,
|
1368
|
+
bucket: nil,
|
1369
|
+
access_point_name: nil,
|
1370
|
+
use_arn_region: context.config.s3_use_arn_region,
|
1371
|
+
)
|
1372
|
+
end
|
1373
|
+
end
|
1374
|
+
|
1375
|
+
class UntagResource
|
1376
|
+
def self.build(context)
|
1377
|
+
unless context.config.regional_endpoint
|
1378
|
+
endpoint = context.config.endpoint.to_s
|
1379
|
+
end
|
1380
|
+
Aws::S3Control::EndpointParameters.new(
|
1381
|
+
region: context.config.region,
|
1382
|
+
use_fips: context.config.use_fips_endpoint,
|
1383
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
1384
|
+
endpoint: endpoint,
|
1385
|
+
account_id: context.params[:account_id],
|
1386
|
+
requires_account_id: true,
|
1387
|
+
outpost_id: nil,
|
1388
|
+
bucket: nil,
|
1389
|
+
access_point_name: nil,
|
1390
|
+
use_arn_region: context.config.s3_use_arn_region,
|
1391
|
+
)
|
1392
|
+
end
|
1393
|
+
end
|
1394
|
+
|
1255
1395
|
class UpdateJobPriority
|
1256
1396
|
def self.build(context)
|
1257
1397
|
unless context.config.regional_endpoint
|
@@ -1292,5 +1432,25 @@ module Aws::S3Control
|
|
1292
1432
|
end
|
1293
1433
|
end
|
1294
1434
|
|
1435
|
+
class UpdateStorageLensGroup
|
1436
|
+
def self.build(context)
|
1437
|
+
unless context.config.regional_endpoint
|
1438
|
+
endpoint = context.config.endpoint.to_s
|
1439
|
+
end
|
1440
|
+
Aws::S3Control::EndpointParameters.new(
|
1441
|
+
region: context.config.region,
|
1442
|
+
use_fips: context.config.use_fips_endpoint,
|
1443
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
1444
|
+
endpoint: endpoint,
|
1445
|
+
account_id: context.params[:account_id],
|
1446
|
+
requires_account_id: true,
|
1447
|
+
outpost_id: nil,
|
1448
|
+
bucket: nil,
|
1449
|
+
access_point_name: nil,
|
1450
|
+
use_arn_region: context.config.s3_use_arn_region,
|
1451
|
+
)
|
1452
|
+
end
|
1453
|
+
end
|
1454
|
+
|
1295
1455
|
end
|
1296
1456
|
end
|
@@ -66,6 +66,8 @@ module Aws::S3Control
|
|
66
66
|
Aws::S3Control::Endpoints::CreateJob.build(context)
|
67
67
|
when :create_multi_region_access_point
|
68
68
|
Aws::S3Control::Endpoints::CreateMultiRegionAccessPoint.build(context)
|
69
|
+
when :create_storage_lens_group
|
70
|
+
Aws::S3Control::Endpoints::CreateStorageLensGroup.build(context)
|
69
71
|
when :delete_access_point
|
70
72
|
Aws::S3Control::Endpoints::DeleteAccessPoint.build(context)
|
71
73
|
when :delete_access_point_for_object_lambda
|
@@ -94,6 +96,8 @@ module Aws::S3Control
|
|
94
96
|
Aws::S3Control::Endpoints::DeleteStorageLensConfiguration.build(context)
|
95
97
|
when :delete_storage_lens_configuration_tagging
|
96
98
|
Aws::S3Control::Endpoints::DeleteStorageLensConfigurationTagging.build(context)
|
99
|
+
when :delete_storage_lens_group
|
100
|
+
Aws::S3Control::Endpoints::DeleteStorageLensGroup.build(context)
|
97
101
|
when :describe_job
|
98
102
|
Aws::S3Control::Endpoints::DescribeJob.build(context)
|
99
103
|
when :describe_multi_region_access_point_operation
|
@@ -140,6 +144,8 @@ module Aws::S3Control
|
|
140
144
|
Aws::S3Control::Endpoints::GetStorageLensConfiguration.build(context)
|
141
145
|
when :get_storage_lens_configuration_tagging
|
142
146
|
Aws::S3Control::Endpoints::GetStorageLensConfigurationTagging.build(context)
|
147
|
+
when :get_storage_lens_group
|
148
|
+
Aws::S3Control::Endpoints::GetStorageLensGroup.build(context)
|
143
149
|
when :list_access_points
|
144
150
|
Aws::S3Control::Endpoints::ListAccessPoints.build(context)
|
145
151
|
when :list_access_points_for_object_lambda
|
@@ -152,6 +158,10 @@ module Aws::S3Control
|
|
152
158
|
Aws::S3Control::Endpoints::ListRegionalBuckets.build(context)
|
153
159
|
when :list_storage_lens_configurations
|
154
160
|
Aws::S3Control::Endpoints::ListStorageLensConfigurations.build(context)
|
161
|
+
when :list_storage_lens_groups
|
162
|
+
Aws::S3Control::Endpoints::ListStorageLensGroups.build(context)
|
163
|
+
when :list_tags_for_resource
|
164
|
+
Aws::S3Control::Endpoints::ListTagsForResource.build(context)
|
155
165
|
when :put_access_point_configuration_for_object_lambda
|
156
166
|
Aws::S3Control::Endpoints::PutAccessPointConfigurationForObjectLambda.build(context)
|
157
167
|
when :put_access_point_policy
|
@@ -180,10 +190,16 @@ module Aws::S3Control
|
|
180
190
|
Aws::S3Control::Endpoints::PutStorageLensConfigurationTagging.build(context)
|
181
191
|
when :submit_multi_region_access_point_routes
|
182
192
|
Aws::S3Control::Endpoints::SubmitMultiRegionAccessPointRoutes.build(context)
|
193
|
+
when :tag_resource
|
194
|
+
Aws::S3Control::Endpoints::TagResource.build(context)
|
195
|
+
when :untag_resource
|
196
|
+
Aws::S3Control::Endpoints::UntagResource.build(context)
|
183
197
|
when :update_job_priority
|
184
198
|
Aws::S3Control::Endpoints::UpdateJobPriority.build(context)
|
185
199
|
when :update_job_status
|
186
200
|
Aws::S3Control::Endpoints::UpdateJobStatus.build(context)
|
201
|
+
when :update_storage_lens_group
|
202
|
+
Aws::S3Control::Endpoints::UpdateStorageLensGroup.build(context)
|
187
203
|
end
|
188
204
|
end
|
189
205
|
end
|