@@ -88,6 +88,11 @@ import {
8888 DeleteAccessPointPolicyForObjectLambdaCommandInput ,
8989 DeleteAccessPointPolicyForObjectLambdaCommandOutput ,
9090} from "./commands/DeleteAccessPointPolicyForObjectLambdaCommand" ;
91+ import {
92+ DeleteAccessPointScopeCommand ,
93+ DeleteAccessPointScopeCommandInput ,
94+ DeleteAccessPointScopeCommandOutput ,
95+ } from "./commands/DeleteAccessPointScopeCommand" ;
9196import {
9297 DeleteBucketCommand ,
9398 DeleteBucketCommandInput ,
@@ -214,6 +219,11 @@ import {
214219 GetAccessPointPolicyStatusForObjectLambdaCommandInput ,
215220 GetAccessPointPolicyStatusForObjectLambdaCommandOutput ,
216221} from "./commands/GetAccessPointPolicyStatusForObjectLambdaCommand" ;
222+ import {
223+ GetAccessPointScopeCommand ,
224+ GetAccessPointScopeCommandInput ,
225+ GetAccessPointScopeCommandOutput ,
226+ } from "./commands/GetAccessPointScopeCommand" ;
217227import { GetBucketCommand , GetBucketCommandInput , GetBucketCommandOutput } from "./commands/GetBucketCommand" ;
218228import {
219229 GetBucketLifecycleConfigurationCommand ,
@@ -310,6 +320,11 @@ import {
310320 ListAccessPointsCommandInput ,
311321 ListAccessPointsCommandOutput ,
312322} from "./commands/ListAccessPointsCommand" ;
323+ import {
324+ ListAccessPointsForDirectoryBucketsCommand ,
325+ ListAccessPointsForDirectoryBucketsCommandInput ,
326+ ListAccessPointsForDirectoryBucketsCommandOutput ,
327+ } from "./commands/ListAccessPointsForDirectoryBucketsCommand" ;
313328import {
314329 ListAccessPointsForObjectLambdaCommand ,
315330 ListAccessPointsForObjectLambdaCommandInput ,
@@ -366,6 +381,11 @@ import {
366381 PutAccessPointPolicyForObjectLambdaCommandInput ,
367382 PutAccessPointPolicyForObjectLambdaCommandOutput ,
368383} from "./commands/PutAccessPointPolicyForObjectLambdaCommand" ;
384+ import {
385+ PutAccessPointScopeCommand ,
386+ PutAccessPointScopeCommandInput ,
387+ PutAccessPointScopeCommandOutput ,
388+ } from "./commands/PutAccessPointScopeCommand" ;
369389import {
370390 PutBucketLifecycleConfigurationCommand ,
371391 PutBucketLifecycleConfigurationCommandInput ,
@@ -468,6 +488,7 @@ const commands = {
468488 DeleteAccessPointForObjectLambdaCommand,
469489 DeleteAccessPointPolicyCommand,
470490 DeleteAccessPointPolicyForObjectLambdaCommand,
491+ DeleteAccessPointScopeCommand,
471492 DeleteBucketCommand,
472493 DeleteBucketLifecycleConfigurationCommand,
473494 DeleteBucketPolicyCommand,
@@ -494,6 +515,7 @@ const commands = {
494515 GetAccessPointPolicyForObjectLambdaCommand,
495516 GetAccessPointPolicyStatusCommand,
496517 GetAccessPointPolicyStatusForObjectLambdaCommand,
518+ GetAccessPointScopeCommand,
497519 GetBucketCommand,
498520 GetBucketLifecycleConfigurationCommand,
499521 GetBucketPolicyCommand,
@@ -514,6 +536,7 @@ const commands = {
514536 ListAccessGrantsInstancesCommand,
515537 ListAccessGrantsLocationsCommand,
516538 ListAccessPointsCommand,
539+ ListAccessPointsForDirectoryBucketsCommand,
517540 ListAccessPointsForObjectLambdaCommand,
518541 ListCallerAccessGrantsCommand,
519542 ListJobsCommand,
@@ -526,6 +549,7 @@ const commands = {
526549 PutAccessPointConfigurationForObjectLambdaCommand,
527550 PutAccessPointPolicyCommand,
528551 PutAccessPointPolicyForObjectLambdaCommand,
552+ PutAccessPointScopeCommand,
529553 PutBucketLifecycleConfigurationCommand,
530554 PutBucketPolicyCommand,
531555 PutBucketReplicationCommand,
@@ -843,6 +867,23 @@ export interface S3Control {
843867 cb : ( err : any , data ?: DeleteAccessPointPolicyForObjectLambdaCommandOutput ) => void
844868 ) : void ;
845869
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+
846887 /**
847888 * @see {@link DeleteBucketCommand }
848889 */
@@ -1271,6 +1312,23 @@ export interface S3Control {
12711312 cb : ( err : any , data ?: GetAccessPointPolicyStatusForObjectLambdaCommandOutput ) => void
12721313 ) : void ;
12731314
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+
12741332 /**
12751333 * @see {@link GetBucketCommand }
12761334 */
@@ -1595,6 +1653,24 @@ export interface S3Control {
15951653 cb : ( err : any , data ?: ListAccessPointsCommandOutput ) => void
15961654 ) : void ;
15971655
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+
15981674 /**
15991675 * @see {@link ListAccessPointsForObjectLambdaCommand }
16001676 */
@@ -1800,6 +1876,23 @@ export interface S3Control {
18001876 cb : ( err : any , data ?: PutAccessPointPolicyForObjectLambdaCommandOutput ) => void
18011877 ) : void ;
18021878
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+
18031896 /**
18041897 * @see {@link PutBucketLifecycleConfigurationCommand }
18051898 */
0 commit comments