aws-sdk-s3control 1.72.0 → 1.73.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control/client.rb +1330 -87
- data/lib/aws-sdk-s3control/client_api.rb +559 -0
- data/lib/aws-sdk-s3control/endpoints.rb +400 -0
- data/lib/aws-sdk-s3control/plugins/endpoints.rb +40 -0
- data/lib/aws-sdk-s3control/types.rb +1413 -26
- 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
|
@@ -56,6 +56,14 @@ module Aws::S3Control
|
|
56
56
|
|
57
57
|
def parameters_for_operation(context)
|
58
58
|
case context.operation_name
|
59
|
+
when :associate_access_grants_identity_center
|
60
|
+
Aws::S3Control::Endpoints::AssociateAccessGrantsIdentityCenter.build(context)
|
61
|
+
when :create_access_grant
|
62
|
+
Aws::S3Control::Endpoints::CreateAccessGrant.build(context)
|
63
|
+
when :create_access_grants_instance
|
64
|
+
Aws::S3Control::Endpoints::CreateAccessGrantsInstance.build(context)
|
65
|
+
when :create_access_grants_location
|
66
|
+
Aws::S3Control::Endpoints::CreateAccessGrantsLocation.build(context)
|
59
67
|
when :create_access_point
|
60
68
|
Aws::S3Control::Endpoints::CreateAccessPoint.build(context)
|
61
69
|
when :create_access_point_for_object_lambda
|
@@ -68,6 +76,14 @@ module Aws::S3Control
|
|
68
76
|
Aws::S3Control::Endpoints::CreateMultiRegionAccessPoint.build(context)
|
69
77
|
when :create_storage_lens_group
|
70
78
|
Aws::S3Control::Endpoints::CreateStorageLensGroup.build(context)
|
79
|
+
when :delete_access_grant
|
80
|
+
Aws::S3Control::Endpoints::DeleteAccessGrant.build(context)
|
81
|
+
when :delete_access_grants_instance
|
82
|
+
Aws::S3Control::Endpoints::DeleteAccessGrantsInstance.build(context)
|
83
|
+
when :delete_access_grants_instance_resource_policy
|
84
|
+
Aws::S3Control::Endpoints::DeleteAccessGrantsInstanceResourcePolicy.build(context)
|
85
|
+
when :delete_access_grants_location
|
86
|
+
Aws::S3Control::Endpoints::DeleteAccessGrantsLocation.build(context)
|
71
87
|
when :delete_access_point
|
72
88
|
Aws::S3Control::Endpoints::DeleteAccessPoint.build(context)
|
73
89
|
when :delete_access_point_for_object_lambda
|
@@ -102,6 +118,18 @@ module Aws::S3Control
|
|
102
118
|
Aws::S3Control::Endpoints::DescribeJob.build(context)
|
103
119
|
when :describe_multi_region_access_point_operation
|
104
120
|
Aws::S3Control::Endpoints::DescribeMultiRegionAccessPointOperation.build(context)
|
121
|
+
when :dissociate_access_grants_identity_center
|
122
|
+
Aws::S3Control::Endpoints::DissociateAccessGrantsIdentityCenter.build(context)
|
123
|
+
when :get_access_grant
|
124
|
+
Aws::S3Control::Endpoints::GetAccessGrant.build(context)
|
125
|
+
when :get_access_grants_instance
|
126
|
+
Aws::S3Control::Endpoints::GetAccessGrantsInstance.build(context)
|
127
|
+
when :get_access_grants_instance_for_prefix
|
128
|
+
Aws::S3Control::Endpoints::GetAccessGrantsInstanceForPrefix.build(context)
|
129
|
+
when :get_access_grants_instance_resource_policy
|
130
|
+
Aws::S3Control::Endpoints::GetAccessGrantsInstanceResourcePolicy.build(context)
|
131
|
+
when :get_access_grants_location
|
132
|
+
Aws::S3Control::Endpoints::GetAccessGrantsLocation.build(context)
|
105
133
|
when :get_access_point
|
106
134
|
Aws::S3Control::Endpoints::GetAccessPoint.build(context)
|
107
135
|
when :get_access_point_configuration_for_object_lambda
|
@@ -128,6 +156,8 @@ module Aws::S3Control
|
|
128
156
|
Aws::S3Control::Endpoints::GetBucketTagging.build(context)
|
129
157
|
when :get_bucket_versioning
|
130
158
|
Aws::S3Control::Endpoints::GetBucketVersioning.build(context)
|
159
|
+
when :get_data_access
|
160
|
+
Aws::S3Control::Endpoints::GetDataAccess.build(context)
|
131
161
|
when :get_job_tagging
|
132
162
|
Aws::S3Control::Endpoints::GetJobTagging.build(context)
|
133
163
|
when :get_multi_region_access_point
|
@@ -146,6 +176,12 @@ module Aws::S3Control
|
|
146
176
|
Aws::S3Control::Endpoints::GetStorageLensConfigurationTagging.build(context)
|
147
177
|
when :get_storage_lens_group
|
148
178
|
Aws::S3Control::Endpoints::GetStorageLensGroup.build(context)
|
179
|
+
when :list_access_grants
|
180
|
+
Aws::S3Control::Endpoints::ListAccessGrants.build(context)
|
181
|
+
when :list_access_grants_instances
|
182
|
+
Aws::S3Control::Endpoints::ListAccessGrantsInstances.build(context)
|
183
|
+
when :list_access_grants_locations
|
184
|
+
Aws::S3Control::Endpoints::ListAccessGrantsLocations.build(context)
|
149
185
|
when :list_access_points
|
150
186
|
Aws::S3Control::Endpoints::ListAccessPoints.build(context)
|
151
187
|
when :list_access_points_for_object_lambda
|
@@ -162,6 +198,8 @@ module Aws::S3Control
|
|
162
198
|
Aws::S3Control::Endpoints::ListStorageLensGroups.build(context)
|
163
199
|
when :list_tags_for_resource
|
164
200
|
Aws::S3Control::Endpoints::ListTagsForResource.build(context)
|
201
|
+
when :put_access_grants_instance_resource_policy
|
202
|
+
Aws::S3Control::Endpoints::PutAccessGrantsInstanceResourcePolicy.build(context)
|
165
203
|
when :put_access_point_configuration_for_object_lambda
|
166
204
|
Aws::S3Control::Endpoints::PutAccessPointConfigurationForObjectLambda.build(context)
|
167
205
|
when :put_access_point_policy
|
@@ -194,6 +232,8 @@ module Aws::S3Control
|
|
194
232
|
Aws::S3Control::Endpoints::TagResource.build(context)
|
195
233
|
when :untag_resource
|
196
234
|
Aws::S3Control::Endpoints::UntagResource.build(context)
|
235
|
+
when :update_access_grants_location
|
236
|
+
Aws::S3Control::Endpoints::UpdateAccessGrantsLocation.build(context)
|
197
237
|
when :update_job_priority
|
198
238
|
Aws::S3Control::Endpoints::UpdateJobPriority.build(context)
|
199
239
|
when :update_job_status
|