@@ -88,6 +88,11 @@ import {
88
88
DeleteAccessPointPolicyForObjectLambdaCommandInput ,
89
89
DeleteAccessPointPolicyForObjectLambdaCommandOutput ,
90
90
} from "./commands/DeleteAccessPointPolicyForObjectLambdaCommand" ;
91
+ import {
92
+ DeleteAccessPointScopeCommand ,
93
+ DeleteAccessPointScopeCommandInput ,
94
+ DeleteAccessPointScopeCommandOutput ,
95
+ } from "./commands/DeleteAccessPointScopeCommand" ;
91
96
import {
92
97
DeleteBucketCommand ,
93
98
DeleteBucketCommandInput ,
@@ -214,6 +219,11 @@ import {
214
219
GetAccessPointPolicyStatusForObjectLambdaCommandInput ,
215
220
GetAccessPointPolicyStatusForObjectLambdaCommandOutput ,
216
221
} from "./commands/GetAccessPointPolicyStatusForObjectLambdaCommand" ;
222
+ import {
223
+ GetAccessPointScopeCommand ,
224
+ GetAccessPointScopeCommandInput ,
225
+ GetAccessPointScopeCommandOutput ,
226
+ } from "./commands/GetAccessPointScopeCommand" ;
217
227
import { GetBucketCommand , GetBucketCommandInput , GetBucketCommandOutput } from "./commands/GetBucketCommand" ;
218
228
import {
219
229
GetBucketLifecycleConfigurationCommand ,
@@ -310,6 +320,11 @@ import {
310
320
ListAccessPointsCommandInput ,
311
321
ListAccessPointsCommandOutput ,
312
322
} from "./commands/ListAccessPointsCommand" ;
323
+ import {
324
+ ListAccessPointsForDirectoryBucketsCommand ,
325
+ ListAccessPointsForDirectoryBucketsCommandInput ,
326
+ ListAccessPointsForDirectoryBucketsCommandOutput ,
327
+ } from "./commands/ListAccessPointsForDirectoryBucketsCommand" ;
313
328
import {
314
329
ListAccessPointsForObjectLambdaCommand ,
315
330
ListAccessPointsForObjectLambdaCommandInput ,
@@ -366,6 +381,11 @@ import {
366
381
PutAccessPointPolicyForObjectLambdaCommandInput ,
367
382
PutAccessPointPolicyForObjectLambdaCommandOutput ,
368
383
} from "./commands/PutAccessPointPolicyForObjectLambdaCommand" ;
384
+ import {
385
+ PutAccessPointScopeCommand ,
386
+ PutAccessPointScopeCommandInput ,
387
+ PutAccessPointScopeCommandOutput ,
388
+ } from "./commands/PutAccessPointScopeCommand" ;
369
389
import {
370
390
PutBucketLifecycleConfigurationCommand ,
371
391
PutBucketLifecycleConfigurationCommandInput ,
@@ -468,6 +488,7 @@ const commands = {
468
488
DeleteAccessPointForObjectLambdaCommand,
469
489
DeleteAccessPointPolicyCommand,
470
490
DeleteAccessPointPolicyForObjectLambdaCommand,
491
+ DeleteAccessPointScopeCommand,
471
492
DeleteBucketCommand,
472
493
DeleteBucketLifecycleConfigurationCommand,
473
494
DeleteBucketPolicyCommand,
@@ -494,6 +515,7 @@ const commands = {
494
515
GetAccessPointPolicyForObjectLambdaCommand,
495
516
GetAccessPointPolicyStatusCommand,
496
517
GetAccessPointPolicyStatusForObjectLambdaCommand,
518
+ GetAccessPointScopeCommand,
497
519
GetBucketCommand,
498
520
GetBucketLifecycleConfigurationCommand,
499
521
GetBucketPolicyCommand,
@@ -514,6 +536,7 @@ const commands = {
514
536
ListAccessGrantsInstancesCommand,
515
537
ListAccessGrantsLocationsCommand,
516
538
ListAccessPointsCommand,
539
+ ListAccessPointsForDirectoryBucketsCommand,
517
540
ListAccessPointsForObjectLambdaCommand,
518
541
ListCallerAccessGrantsCommand,
519
542
ListJobsCommand,
@@ -526,6 +549,7 @@ const commands = {
526
549
PutAccessPointConfigurationForObjectLambdaCommand,
527
550
PutAccessPointPolicyCommand,
528
551
PutAccessPointPolicyForObjectLambdaCommand,
552
+ PutAccessPointScopeCommand,
529
553
PutBucketLifecycleConfigurationCommand,
530
554
PutBucketPolicyCommand,
531
555
PutBucketReplicationCommand,
@@ -843,6 +867,23 @@ export interface S3Control {
843
867
cb : ( err : any , data ?: DeleteAccessPointPolicyForObjectLambdaCommandOutput ) => void
844
868
) : void ;
845
869
870
+ /**
871
+ * @see {@link DeleteAccessPointScopeCommand }
872
+ */
873
+ deleteAccessPointScope (
874
+ args : DeleteAccessPointScopeCommandInput ,
875
+ options ?: __HttpHandlerOptions
876
+ ) : Promise < DeleteAccessPointScopeCommandOutput > ;
877
+ deleteAccessPointScope (
878
+ args : DeleteAccessPointScopeCommandInput ,
879
+ cb : ( err : any , data ?: DeleteAccessPointScopeCommandOutput ) => void
880
+ ) : void ;
881
+ deleteAccessPointScope (
882
+ args : DeleteAccessPointScopeCommandInput ,
883
+ options : __HttpHandlerOptions ,
884
+ cb : ( err : any , data ?: DeleteAccessPointScopeCommandOutput ) => void
885
+ ) : void ;
886
+
846
887
/**
847
888
* @see {@link DeleteBucketCommand }
848
889
*/
@@ -1271,6 +1312,23 @@ export interface S3Control {
1271
1312
cb : ( err : any , data ?: GetAccessPointPolicyStatusForObjectLambdaCommandOutput ) => void
1272
1313
) : void ;
1273
1314
1315
+ /**
1316
+ * @see {@link GetAccessPointScopeCommand }
1317
+ */
1318
+ getAccessPointScope (
1319
+ args : GetAccessPointScopeCommandInput ,
1320
+ options ?: __HttpHandlerOptions
1321
+ ) : Promise < GetAccessPointScopeCommandOutput > ;
1322
+ getAccessPointScope (
1323
+ args : GetAccessPointScopeCommandInput ,
1324
+ cb : ( err : any , data ?: GetAccessPointScopeCommandOutput ) => void
1325
+ ) : void ;
1326
+ getAccessPointScope (
1327
+ args : GetAccessPointScopeCommandInput ,
1328
+ options : __HttpHandlerOptions ,
1329
+ cb : ( err : any , data ?: GetAccessPointScopeCommandOutput ) => void
1330
+ ) : void ;
1331
+
1274
1332
/**
1275
1333
* @see {@link GetBucketCommand }
1276
1334
*/
@@ -1595,6 +1653,24 @@ export interface S3Control {
1595
1653
cb : ( err : any , data ?: ListAccessPointsCommandOutput ) => void
1596
1654
) : void ;
1597
1655
1656
+ /**
1657
+ * @see {@link ListAccessPointsForDirectoryBucketsCommand }
1658
+ */
1659
+ listAccessPointsForDirectoryBuckets ( ) : Promise < ListAccessPointsForDirectoryBucketsCommandOutput > ;
1660
+ listAccessPointsForDirectoryBuckets (
1661
+ args : ListAccessPointsForDirectoryBucketsCommandInput ,
1662
+ options ?: __HttpHandlerOptions
1663
+ ) : Promise < ListAccessPointsForDirectoryBucketsCommandOutput > ;
1664
+ listAccessPointsForDirectoryBuckets (
1665
+ args : ListAccessPointsForDirectoryBucketsCommandInput ,
1666
+ cb : ( err : any , data ?: ListAccessPointsForDirectoryBucketsCommandOutput ) => void
1667
+ ) : void ;
1668
+ listAccessPointsForDirectoryBuckets (
1669
+ args : ListAccessPointsForDirectoryBucketsCommandInput ,
1670
+ options : __HttpHandlerOptions ,
1671
+ cb : ( err : any , data ?: ListAccessPointsForDirectoryBucketsCommandOutput ) => void
1672
+ ) : void ;
1673
+
1598
1674
/**
1599
1675
* @see {@link ListAccessPointsForObjectLambdaCommand }
1600
1676
*/
@@ -1800,6 +1876,23 @@ export interface S3Control {
1800
1876
cb : ( err : any , data ?: PutAccessPointPolicyForObjectLambdaCommandOutput ) => void
1801
1877
) : void ;
1802
1878
1879
+ /**
1880
+ * @see {@link PutAccessPointScopeCommand }
1881
+ */
1882
+ putAccessPointScope (
1883
+ args : PutAccessPointScopeCommandInput ,
1884
+ options ?: __HttpHandlerOptions
1885
+ ) : Promise < PutAccessPointScopeCommandOutput > ;
1886
+ putAccessPointScope (
1887
+ args : PutAccessPointScopeCommandInput ,
1888
+ cb : ( err : any , data ?: PutAccessPointScopeCommandOutput ) => void
1889
+ ) : void ;
1890
+ putAccessPointScope (
1891
+ args : PutAccessPointScopeCommandInput ,
1892
+ options : __HttpHandlerOptions ,
1893
+ cb : ( err : any , data ?: PutAccessPointScopeCommandOutput ) => void
1894
+ ) : void ;
1895
+
1803
1896
/**
1804
1897
* @see {@link PutBucketLifecycleConfigurationCommand }
1805
1898
*/
0 commit comments