aws-sdk-s3control 1.72.0 → 1.74.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 +1522 -92
- data/lib/aws-sdk-s3control/client_api.rb +567 -1
- data/lib/aws-sdk-s3control/endpoints.rb +400 -0
- data/lib/aws-sdk-s3control/plugins/endpoints.rb +43 -2
- data/lib/aws-sdk-s3control/types.rb +1710 -141
- data/lib/aws-sdk-s3control.rb +2 -2
- metadata +2 -2
@@ -12,6 +12,86 @@ module Aws::S3Control
|
|
12
12
|
# @api private
|
13
13
|
module Endpoints
|
14
14
|
|
15
|
+
class AssociateAccessGrantsIdentityCenter
|
16
|
+
def self.build(context)
|
17
|
+
unless context.config.regional_endpoint
|
18
|
+
endpoint = context.config.endpoint.to_s
|
19
|
+
end
|
20
|
+
Aws::S3Control::EndpointParameters.new(
|
21
|
+
region: context.config.region,
|
22
|
+
use_fips: context.config.use_fips_endpoint,
|
23
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
24
|
+
endpoint: endpoint,
|
25
|
+
account_id: context.params[:account_id],
|
26
|
+
requires_account_id: true,
|
27
|
+
outpost_id: nil,
|
28
|
+
bucket: nil,
|
29
|
+
access_point_name: nil,
|
30
|
+
use_arn_region: context.config.s3_use_arn_region,
|
31
|
+
)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
class CreateAccessGrant
|
36
|
+
def self.build(context)
|
37
|
+
unless context.config.regional_endpoint
|
38
|
+
endpoint = context.config.endpoint.to_s
|
39
|
+
end
|
40
|
+
Aws::S3Control::EndpointParameters.new(
|
41
|
+
region: context.config.region,
|
42
|
+
use_fips: context.config.use_fips_endpoint,
|
43
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
44
|
+
endpoint: endpoint,
|
45
|
+
account_id: context.params[:account_id],
|
46
|
+
requires_account_id: true,
|
47
|
+
outpost_id: nil,
|
48
|
+
bucket: nil,
|
49
|
+
access_point_name: nil,
|
50
|
+
use_arn_region: context.config.s3_use_arn_region,
|
51
|
+
)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
class CreateAccessGrantsInstance
|
56
|
+
def self.build(context)
|
57
|
+
unless context.config.regional_endpoint
|
58
|
+
endpoint = context.config.endpoint.to_s
|
59
|
+
end
|
60
|
+
Aws::S3Control::EndpointParameters.new(
|
61
|
+
region: context.config.region,
|
62
|
+
use_fips: context.config.use_fips_endpoint,
|
63
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
64
|
+
endpoint: endpoint,
|
65
|
+
account_id: context.params[:account_id],
|
66
|
+
requires_account_id: true,
|
67
|
+
outpost_id: nil,
|
68
|
+
bucket: nil,
|
69
|
+
access_point_name: nil,
|
70
|
+
use_arn_region: context.config.s3_use_arn_region,
|
71
|
+
)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
class CreateAccessGrantsLocation
|
76
|
+
def self.build(context)
|
77
|
+
unless context.config.regional_endpoint
|
78
|
+
endpoint = context.config.endpoint.to_s
|
79
|
+
end
|
80
|
+
Aws::S3Control::EndpointParameters.new(
|
81
|
+
region: context.config.region,
|
82
|
+
use_fips: context.config.use_fips_endpoint,
|
83
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
84
|
+
endpoint: endpoint,
|
85
|
+
account_id: context.params[:account_id],
|
86
|
+
requires_account_id: true,
|
87
|
+
outpost_id: nil,
|
88
|
+
bucket: nil,
|
89
|
+
access_point_name: nil,
|
90
|
+
use_arn_region: context.config.s3_use_arn_region,
|
91
|
+
)
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
15
95
|
class CreateAccessPoint
|
16
96
|
def self.build(context)
|
17
97
|
unless context.config.regional_endpoint
|
@@ -132,6 +212,86 @@ module Aws::S3Control
|
|
132
212
|
end
|
133
213
|
end
|
134
214
|
|
215
|
+
class DeleteAccessGrant
|
216
|
+
def self.build(context)
|
217
|
+
unless context.config.regional_endpoint
|
218
|
+
endpoint = context.config.endpoint.to_s
|
219
|
+
end
|
220
|
+
Aws::S3Control::EndpointParameters.new(
|
221
|
+
region: context.config.region,
|
222
|
+
use_fips: context.config.use_fips_endpoint,
|
223
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
224
|
+
endpoint: endpoint,
|
225
|
+
account_id: context.params[:account_id],
|
226
|
+
requires_account_id: true,
|
227
|
+
outpost_id: nil,
|
228
|
+
bucket: nil,
|
229
|
+
access_point_name: nil,
|
230
|
+
use_arn_region: context.config.s3_use_arn_region,
|
231
|
+
)
|
232
|
+
end
|
233
|
+
end
|
234
|
+
|
235
|
+
class DeleteAccessGrantsInstance
|
236
|
+
def self.build(context)
|
237
|
+
unless context.config.regional_endpoint
|
238
|
+
endpoint = context.config.endpoint.to_s
|
239
|
+
end
|
240
|
+
Aws::S3Control::EndpointParameters.new(
|
241
|
+
region: context.config.region,
|
242
|
+
use_fips: context.config.use_fips_endpoint,
|
243
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
244
|
+
endpoint: endpoint,
|
245
|
+
account_id: context.params[:account_id],
|
246
|
+
requires_account_id: true,
|
247
|
+
outpost_id: nil,
|
248
|
+
bucket: nil,
|
249
|
+
access_point_name: nil,
|
250
|
+
use_arn_region: context.config.s3_use_arn_region,
|
251
|
+
)
|
252
|
+
end
|
253
|
+
end
|
254
|
+
|
255
|
+
class DeleteAccessGrantsInstanceResourcePolicy
|
256
|
+
def self.build(context)
|
257
|
+
unless context.config.regional_endpoint
|
258
|
+
endpoint = context.config.endpoint.to_s
|
259
|
+
end
|
260
|
+
Aws::S3Control::EndpointParameters.new(
|
261
|
+
region: context.config.region,
|
262
|
+
use_fips: context.config.use_fips_endpoint,
|
263
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
264
|
+
endpoint: endpoint,
|
265
|
+
account_id: context.params[:account_id],
|
266
|
+
requires_account_id: true,
|
267
|
+
outpost_id: nil,
|
268
|
+
bucket: nil,
|
269
|
+
access_point_name: nil,
|
270
|
+
use_arn_region: context.config.s3_use_arn_region,
|
271
|
+
)
|
272
|
+
end
|
273
|
+
end
|
274
|
+
|
275
|
+
class DeleteAccessGrantsLocation
|
276
|
+
def self.build(context)
|
277
|
+
unless context.config.regional_endpoint
|
278
|
+
endpoint = context.config.endpoint.to_s
|
279
|
+
end
|
280
|
+
Aws::S3Control::EndpointParameters.new(
|
281
|
+
region: context.config.region,
|
282
|
+
use_fips: context.config.use_fips_endpoint,
|
283
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
284
|
+
endpoint: endpoint,
|
285
|
+
account_id: context.params[:account_id],
|
286
|
+
requires_account_id: true,
|
287
|
+
outpost_id: nil,
|
288
|
+
bucket: nil,
|
289
|
+
access_point_name: nil,
|
290
|
+
use_arn_region: context.config.s3_use_arn_region,
|
291
|
+
)
|
292
|
+
end
|
293
|
+
end
|
294
|
+
|
135
295
|
class DeleteAccessPoint
|
136
296
|
def self.build(context)
|
137
297
|
unless context.config.regional_endpoint
|
@@ -472,6 +632,126 @@ module Aws::S3Control
|
|
472
632
|
end
|
473
633
|
end
|
474
634
|
|
635
|
+
class DissociateAccessGrantsIdentityCenter
|
636
|
+
def self.build(context)
|
637
|
+
unless context.config.regional_endpoint
|
638
|
+
endpoint = context.config.endpoint.to_s
|
639
|
+
end
|
640
|
+
Aws::S3Control::EndpointParameters.new(
|
641
|
+
region: context.config.region,
|
642
|
+
use_fips: context.config.use_fips_endpoint,
|
643
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
644
|
+
endpoint: endpoint,
|
645
|
+
account_id: context.params[:account_id],
|
646
|
+
requires_account_id: true,
|
647
|
+
outpost_id: nil,
|
648
|
+
bucket: nil,
|
649
|
+
access_point_name: nil,
|
650
|
+
use_arn_region: context.config.s3_use_arn_region,
|
651
|
+
)
|
652
|
+
end
|
653
|
+
end
|
654
|
+
|
655
|
+
class GetAccessGrant
|
656
|
+
def self.build(context)
|
657
|
+
unless context.config.regional_endpoint
|
658
|
+
endpoint = context.config.endpoint.to_s
|
659
|
+
end
|
660
|
+
Aws::S3Control::EndpointParameters.new(
|
661
|
+
region: context.config.region,
|
662
|
+
use_fips: context.config.use_fips_endpoint,
|
663
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
664
|
+
endpoint: endpoint,
|
665
|
+
account_id: context.params[:account_id],
|
666
|
+
requires_account_id: true,
|
667
|
+
outpost_id: nil,
|
668
|
+
bucket: nil,
|
669
|
+
access_point_name: nil,
|
670
|
+
use_arn_region: context.config.s3_use_arn_region,
|
671
|
+
)
|
672
|
+
end
|
673
|
+
end
|
674
|
+
|
675
|
+
class GetAccessGrantsInstance
|
676
|
+
def self.build(context)
|
677
|
+
unless context.config.regional_endpoint
|
678
|
+
endpoint = context.config.endpoint.to_s
|
679
|
+
end
|
680
|
+
Aws::S3Control::EndpointParameters.new(
|
681
|
+
region: context.config.region,
|
682
|
+
use_fips: context.config.use_fips_endpoint,
|
683
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
684
|
+
endpoint: endpoint,
|
685
|
+
account_id: context.params[:account_id],
|
686
|
+
requires_account_id: true,
|
687
|
+
outpost_id: nil,
|
688
|
+
bucket: nil,
|
689
|
+
access_point_name: nil,
|
690
|
+
use_arn_region: context.config.s3_use_arn_region,
|
691
|
+
)
|
692
|
+
end
|
693
|
+
end
|
694
|
+
|
695
|
+
class GetAccessGrantsInstanceForPrefix
|
696
|
+
def self.build(context)
|
697
|
+
unless context.config.regional_endpoint
|
698
|
+
endpoint = context.config.endpoint.to_s
|
699
|
+
end
|
700
|
+
Aws::S3Control::EndpointParameters.new(
|
701
|
+
region: context.config.region,
|
702
|
+
use_fips: context.config.use_fips_endpoint,
|
703
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
704
|
+
endpoint: endpoint,
|
705
|
+
account_id: context.params[:account_id],
|
706
|
+
requires_account_id: true,
|
707
|
+
outpost_id: nil,
|
708
|
+
bucket: nil,
|
709
|
+
access_point_name: nil,
|
710
|
+
use_arn_region: context.config.s3_use_arn_region,
|
711
|
+
)
|
712
|
+
end
|
713
|
+
end
|
714
|
+
|
715
|
+
class GetAccessGrantsInstanceResourcePolicy
|
716
|
+
def self.build(context)
|
717
|
+
unless context.config.regional_endpoint
|
718
|
+
endpoint = context.config.endpoint.to_s
|
719
|
+
end
|
720
|
+
Aws::S3Control::EndpointParameters.new(
|
721
|
+
region: context.config.region,
|
722
|
+
use_fips: context.config.use_fips_endpoint,
|
723
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
724
|
+
endpoint: endpoint,
|
725
|
+
account_id: context.params[:account_id],
|
726
|
+
requires_account_id: true,
|
727
|
+
outpost_id: nil,
|
728
|
+
bucket: nil,
|
729
|
+
access_point_name: nil,
|
730
|
+
use_arn_region: context.config.s3_use_arn_region,
|
731
|
+
)
|
732
|
+
end
|
733
|
+
end
|
734
|
+
|
735
|
+
class GetAccessGrantsLocation
|
736
|
+
def self.build(context)
|
737
|
+
unless context.config.regional_endpoint
|
738
|
+
endpoint = context.config.endpoint.to_s
|
739
|
+
end
|
740
|
+
Aws::S3Control::EndpointParameters.new(
|
741
|
+
region: context.config.region,
|
742
|
+
use_fips: context.config.use_fips_endpoint,
|
743
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
744
|
+
endpoint: endpoint,
|
745
|
+
account_id: context.params[:account_id],
|
746
|
+
requires_account_id: true,
|
747
|
+
outpost_id: nil,
|
748
|
+
bucket: nil,
|
749
|
+
access_point_name: nil,
|
750
|
+
use_arn_region: context.config.s3_use_arn_region,
|
751
|
+
)
|
752
|
+
end
|
753
|
+
end
|
754
|
+
|
475
755
|
class GetAccessPoint
|
476
756
|
def self.build(context)
|
477
757
|
unless context.config.regional_endpoint
|
@@ -732,6 +1012,26 @@ module Aws::S3Control
|
|
732
1012
|
end
|
733
1013
|
end
|
734
1014
|
|
1015
|
+
class GetDataAccess
|
1016
|
+
def self.build(context)
|
1017
|
+
unless context.config.regional_endpoint
|
1018
|
+
endpoint = context.config.endpoint.to_s
|
1019
|
+
end
|
1020
|
+
Aws::S3Control::EndpointParameters.new(
|
1021
|
+
region: context.config.region,
|
1022
|
+
use_fips: context.config.use_fips_endpoint,
|
1023
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
1024
|
+
endpoint: endpoint,
|
1025
|
+
account_id: context.params[:account_id],
|
1026
|
+
requires_account_id: true,
|
1027
|
+
outpost_id: nil,
|
1028
|
+
bucket: nil,
|
1029
|
+
access_point_name: nil,
|
1030
|
+
use_arn_region: context.config.s3_use_arn_region,
|
1031
|
+
)
|
1032
|
+
end
|
1033
|
+
end
|
1034
|
+
|
735
1035
|
class GetJobTagging
|
736
1036
|
def self.build(context)
|
737
1037
|
unless context.config.regional_endpoint
|
@@ -912,6 +1212,66 @@ module Aws::S3Control
|
|
912
1212
|
end
|
913
1213
|
end
|
914
1214
|
|
1215
|
+
class ListAccessGrants
|
1216
|
+
def self.build(context)
|
1217
|
+
unless context.config.regional_endpoint
|
1218
|
+
endpoint = context.config.endpoint.to_s
|
1219
|
+
end
|
1220
|
+
Aws::S3Control::EndpointParameters.new(
|
1221
|
+
region: context.config.region,
|
1222
|
+
use_fips: context.config.use_fips_endpoint,
|
1223
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
1224
|
+
endpoint: endpoint,
|
1225
|
+
account_id: context.params[:account_id],
|
1226
|
+
requires_account_id: true,
|
1227
|
+
outpost_id: nil,
|
1228
|
+
bucket: nil,
|
1229
|
+
access_point_name: nil,
|
1230
|
+
use_arn_region: context.config.s3_use_arn_region,
|
1231
|
+
)
|
1232
|
+
end
|
1233
|
+
end
|
1234
|
+
|
1235
|
+
class ListAccessGrantsInstances
|
1236
|
+
def self.build(context)
|
1237
|
+
unless context.config.regional_endpoint
|
1238
|
+
endpoint = context.config.endpoint.to_s
|
1239
|
+
end
|
1240
|
+
Aws::S3Control::EndpointParameters.new(
|
1241
|
+
region: context.config.region,
|
1242
|
+
use_fips: context.config.use_fips_endpoint,
|
1243
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
1244
|
+
endpoint: endpoint,
|
1245
|
+
account_id: context.params[:account_id],
|
1246
|
+
requires_account_id: true,
|
1247
|
+
outpost_id: nil,
|
1248
|
+
bucket: nil,
|
1249
|
+
access_point_name: nil,
|
1250
|
+
use_arn_region: context.config.s3_use_arn_region,
|
1251
|
+
)
|
1252
|
+
end
|
1253
|
+
end
|
1254
|
+
|
1255
|
+
class ListAccessGrantsLocations
|
1256
|
+
def self.build(context)
|
1257
|
+
unless context.config.regional_endpoint
|
1258
|
+
endpoint = context.config.endpoint.to_s
|
1259
|
+
end
|
1260
|
+
Aws::S3Control::EndpointParameters.new(
|
1261
|
+
region: context.config.region,
|
1262
|
+
use_fips: context.config.use_fips_endpoint,
|
1263
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
1264
|
+
endpoint: endpoint,
|
1265
|
+
account_id: context.params[:account_id],
|
1266
|
+
requires_account_id: true,
|
1267
|
+
outpost_id: nil,
|
1268
|
+
bucket: nil,
|
1269
|
+
access_point_name: nil,
|
1270
|
+
use_arn_region: context.config.s3_use_arn_region,
|
1271
|
+
)
|
1272
|
+
end
|
1273
|
+
end
|
1274
|
+
|
915
1275
|
class ListAccessPoints
|
916
1276
|
def self.build(context)
|
917
1277
|
unless context.config.regional_endpoint
|
@@ -1072,6 +1432,26 @@ module Aws::S3Control
|
|
1072
1432
|
end
|
1073
1433
|
end
|
1074
1434
|
|
1435
|
+
class PutAccessGrantsInstanceResourcePolicy
|
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
|
+
|
1075
1455
|
class PutAccessPointConfigurationForObjectLambda
|
1076
1456
|
def self.build(context)
|
1077
1457
|
unless context.config.regional_endpoint
|
@@ -1392,6 +1772,26 @@ module Aws::S3Control
|
|
1392
1772
|
end
|
1393
1773
|
end
|
1394
1774
|
|
1775
|
+
class UpdateAccessGrantsLocation
|
1776
|
+
def self.build(context)
|
1777
|
+
unless context.config.regional_endpoint
|
1778
|
+
endpoint = context.config.endpoint.to_s
|
1779
|
+
end
|
1780
|
+
Aws::S3Control::EndpointParameters.new(
|
1781
|
+
region: context.config.region,
|
1782
|
+
use_fips: context.config.use_fips_endpoint,
|
1783
|
+
use_dual_stack: context[:use_dualstack_endpoint],
|
1784
|
+
endpoint: endpoint,
|
1785
|
+
account_id: context.params[:account_id],
|
1786
|
+
requires_account_id: true,
|
1787
|
+
outpost_id: nil,
|
1788
|
+
bucket: nil,
|
1789
|
+
access_point_name: nil,
|
1790
|
+
use_arn_region: context.config.s3_use_arn_region,
|
1791
|
+
)
|
1792
|
+
end
|
1793
|
+
end
|
1794
|
+
|
1395
1795
|
class UpdateJobPriority
|
1396
1796
|
def self.build(context)
|
1397
1797
|
unless context.config.regional_endpoint
|
@@ -25,16 +25,17 @@ module Aws::S3Control
|
|
25
25
|
# @api private
|
26
26
|
class Handler < Seahorse::Client::Handler
|
27
27
|
def call(context)
|
28
|
-
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
28
|
unless context[:discovered_endpoint]
|
30
29
|
params = parameters_for_operation(context)
|
31
30
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
31
|
|
33
32
|
context.http_request.endpoint = endpoint.url
|
34
33
|
apply_endpoint_headers(context, endpoint.headers)
|
34
|
+
|
35
|
+
context[:endpoint_params] = params
|
36
|
+
context[:endpoint_properties] = endpoint.properties
|
35
37
|
end
|
36
38
|
|
37
|
-
context[:endpoint_params] = params
|
38
39
|
context[:auth_scheme] =
|
39
40
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
41
|
|
@@ -56,6 +57,14 @@ module Aws::S3Control
|
|
56
57
|
|
57
58
|
def parameters_for_operation(context)
|
58
59
|
case context.operation_name
|
60
|
+
when :associate_access_grants_identity_center
|
61
|
+
Aws::S3Control::Endpoints::AssociateAccessGrantsIdentityCenter.build(context)
|
62
|
+
when :create_access_grant
|
63
|
+
Aws::S3Control::Endpoints::CreateAccessGrant.build(context)
|
64
|
+
when :create_access_grants_instance
|
65
|
+
Aws::S3Control::Endpoints::CreateAccessGrantsInstance.build(context)
|
66
|
+
when :create_access_grants_location
|
67
|
+
Aws::S3Control::Endpoints::CreateAccessGrantsLocation.build(context)
|
59
68
|
when :create_access_point
|
60
69
|
Aws::S3Control::Endpoints::CreateAccessPoint.build(context)
|
61
70
|
when :create_access_point_for_object_lambda
|
@@ -68,6 +77,14 @@ module Aws::S3Control
|
|
68
77
|
Aws::S3Control::Endpoints::CreateMultiRegionAccessPoint.build(context)
|
69
78
|
when :create_storage_lens_group
|
70
79
|
Aws::S3Control::Endpoints::CreateStorageLensGroup.build(context)
|
80
|
+
when :delete_access_grant
|
81
|
+
Aws::S3Control::Endpoints::DeleteAccessGrant.build(context)
|
82
|
+
when :delete_access_grants_instance
|
83
|
+
Aws::S3Control::Endpoints::DeleteAccessGrantsInstance.build(context)
|
84
|
+
when :delete_access_grants_instance_resource_policy
|
85
|
+
Aws::S3Control::Endpoints::DeleteAccessGrantsInstanceResourcePolicy.build(context)
|
86
|
+
when :delete_access_grants_location
|
87
|
+
Aws::S3Control::Endpoints::DeleteAccessGrantsLocation.build(context)
|
71
88
|
when :delete_access_point
|
72
89
|
Aws::S3Control::Endpoints::DeleteAccessPoint.build(context)
|
73
90
|
when :delete_access_point_for_object_lambda
|
@@ -102,6 +119,18 @@ module Aws::S3Control
|
|
102
119
|
Aws::S3Control::Endpoints::DescribeJob.build(context)
|
103
120
|
when :describe_multi_region_access_point_operation
|
104
121
|
Aws::S3Control::Endpoints::DescribeMultiRegionAccessPointOperation.build(context)
|
122
|
+
when :dissociate_access_grants_identity_center
|
123
|
+
Aws::S3Control::Endpoints::DissociateAccessGrantsIdentityCenter.build(context)
|
124
|
+
when :get_access_grant
|
125
|
+
Aws::S3Control::Endpoints::GetAccessGrant.build(context)
|
126
|
+
when :get_access_grants_instance
|
127
|
+
Aws::S3Control::Endpoints::GetAccessGrantsInstance.build(context)
|
128
|
+
when :get_access_grants_instance_for_prefix
|
129
|
+
Aws::S3Control::Endpoints::GetAccessGrantsInstanceForPrefix.build(context)
|
130
|
+
when :get_access_grants_instance_resource_policy
|
131
|
+
Aws::S3Control::Endpoints::GetAccessGrantsInstanceResourcePolicy.build(context)
|
132
|
+
when :get_access_grants_location
|
133
|
+
Aws::S3Control::Endpoints::GetAccessGrantsLocation.build(context)
|
105
134
|
when :get_access_point
|
106
135
|
Aws::S3Control::Endpoints::GetAccessPoint.build(context)
|
107
136
|
when :get_access_point_configuration_for_object_lambda
|
@@ -128,6 +157,8 @@ module Aws::S3Control
|
|
128
157
|
Aws::S3Control::Endpoints::GetBucketTagging.build(context)
|
129
158
|
when :get_bucket_versioning
|
130
159
|
Aws::S3Control::Endpoints::GetBucketVersioning.build(context)
|
160
|
+
when :get_data_access
|
161
|
+
Aws::S3Control::Endpoints::GetDataAccess.build(context)
|
131
162
|
when :get_job_tagging
|
132
163
|
Aws::S3Control::Endpoints::GetJobTagging.build(context)
|
133
164
|
when :get_multi_region_access_point
|
@@ -146,6 +177,12 @@ module Aws::S3Control
|
|
146
177
|
Aws::S3Control::Endpoints::GetStorageLensConfigurationTagging.build(context)
|
147
178
|
when :get_storage_lens_group
|
148
179
|
Aws::S3Control::Endpoints::GetStorageLensGroup.build(context)
|
180
|
+
when :list_access_grants
|
181
|
+
Aws::S3Control::Endpoints::ListAccessGrants.build(context)
|
182
|
+
when :list_access_grants_instances
|
183
|
+
Aws::S3Control::Endpoints::ListAccessGrantsInstances.build(context)
|
184
|
+
when :list_access_grants_locations
|
185
|
+
Aws::S3Control::Endpoints::ListAccessGrantsLocations.build(context)
|
149
186
|
when :list_access_points
|
150
187
|
Aws::S3Control::Endpoints::ListAccessPoints.build(context)
|
151
188
|
when :list_access_points_for_object_lambda
|
@@ -162,6 +199,8 @@ module Aws::S3Control
|
|
162
199
|
Aws::S3Control::Endpoints::ListStorageLensGroups.build(context)
|
163
200
|
when :list_tags_for_resource
|
164
201
|
Aws::S3Control::Endpoints::ListTagsForResource.build(context)
|
202
|
+
when :put_access_grants_instance_resource_policy
|
203
|
+
Aws::S3Control::Endpoints::PutAccessGrantsInstanceResourcePolicy.build(context)
|
165
204
|
when :put_access_point_configuration_for_object_lambda
|
166
205
|
Aws::S3Control::Endpoints::PutAccessPointConfigurationForObjectLambda.build(context)
|
167
206
|
when :put_access_point_policy
|
@@ -194,6 +233,8 @@ module Aws::S3Control
|
|
194
233
|
Aws::S3Control::Endpoints::TagResource.build(context)
|
195
234
|
when :untag_resource
|
196
235
|
Aws::S3Control::Endpoints::UntagResource.build(context)
|
236
|
+
when :update_access_grants_location
|
237
|
+
Aws::S3Control::Endpoints::UpdateAccessGrantsLocation.build(context)
|
197
238
|
when :update_job_priority
|
198
239
|
Aws::S3Control::Endpoints::UpdateJobPriority.build(context)
|
199
240
|
when :update_job_status
|