@@ -1823,6 +1823,11 @@ import {
1823
1823
DisableFastSnapshotRestoresCommandInput ,
1824
1824
DisableFastSnapshotRestoresCommandOutput ,
1825
1825
} from "./commands/DisableFastSnapshotRestoresCommand" ;
1826
+ import {
1827
+ DisableImageBlockPublicAccessCommand ,
1828
+ DisableImageBlockPublicAccessCommandInput ,
1829
+ DisableImageBlockPublicAccessCommandOutput ,
1830
+ } from "./commands/DisableImageBlockPublicAccessCommand" ;
1826
1831
import {
1827
1832
DisableImageDeprecationCommand ,
1828
1833
DisableImageDeprecationCommandInput ,
@@ -1953,6 +1958,11 @@ import {
1953
1958
EnableFastSnapshotRestoresCommandInput ,
1954
1959
EnableFastSnapshotRestoresCommandOutput ,
1955
1960
} from "./commands/EnableFastSnapshotRestoresCommand" ;
1961
+ import {
1962
+ EnableImageBlockPublicAccessCommand ,
1963
+ EnableImageBlockPublicAccessCommandInput ,
1964
+ EnableImageBlockPublicAccessCommandOutput ,
1965
+ } from "./commands/EnableImageBlockPublicAccessCommand" ;
1956
1966
import {
1957
1967
EnableImageDeprecationCommand ,
1958
1968
EnableImageDeprecationCommandInput ,
@@ -2079,6 +2089,11 @@ import {
2079
2089
GetHostReservationPurchasePreviewCommandInput ,
2080
2090
GetHostReservationPurchasePreviewCommandOutput ,
2081
2091
} from "./commands/GetHostReservationPurchasePreviewCommand" ;
2092
+ import {
2093
+ GetImageBlockPublicAccessStateCommand ,
2094
+ GetImageBlockPublicAccessStateCommandInput ,
2095
+ GetImageBlockPublicAccessStateCommandOutput ,
2096
+ } from "./commands/GetImageBlockPublicAccessStateCommand" ;
2082
2097
import {
2083
2098
GetInstanceTypesFromInstanceRequirementsCommand ,
2084
2099
GetInstanceTypesFromInstanceRequirementsCommandInput ,
@@ -3284,6 +3299,7 @@ const commands = {
3284
3299
DisableEbsEncryptionByDefaultCommand,
3285
3300
DisableFastLaunchCommand,
3286
3301
DisableFastSnapshotRestoresCommand,
3302
+ DisableImageBlockPublicAccessCommand,
3287
3303
DisableImageDeprecationCommand,
3288
3304
DisableIpamOrganizationAdminAccountCommand,
3289
3305
DisableSerialConsoleAccessCommand,
@@ -3310,6 +3326,7 @@ const commands = {
3310
3326
EnableEbsEncryptionByDefaultCommand,
3311
3327
EnableFastLaunchCommand,
3312
3328
EnableFastSnapshotRestoresCommand,
3329
+ EnableImageBlockPublicAccessCommand,
3313
3330
EnableImageDeprecationCommand,
3314
3331
EnableIpamOrganizationAdminAccountCommand,
3315
3332
EnableReachabilityAnalyzerOrganizationSharingCommand,
@@ -3336,6 +3353,7 @@ const commands = {
3336
3353
GetFlowLogsIntegrationTemplateCommand,
3337
3354
GetGroupsForCapacityReservationCommand,
3338
3355
GetHostReservationPurchasePreviewCommand,
3356
+ GetImageBlockPublicAccessStateCommand,
3339
3357
GetInstanceTypesFromInstanceRequirementsCommand,
3340
3358
GetInstanceUefiDataCommand,
3341
3359
GetIpamAddressHistoryCommand,
@@ -9618,6 +9636,23 @@ export interface EC2 {
9618
9636
cb : ( err : any , data ?: DisableFastSnapshotRestoresCommandOutput ) => void
9619
9637
) : void ;
9620
9638
9639
+ /**
9640
+ * @see {@link DisableImageBlockPublicAccessCommand }
9641
+ */
9642
+ disableImageBlockPublicAccess (
9643
+ args : DisableImageBlockPublicAccessCommandInput ,
9644
+ options ?: __HttpHandlerOptions
9645
+ ) : Promise < DisableImageBlockPublicAccessCommandOutput > ;
9646
+ disableImageBlockPublicAccess (
9647
+ args : DisableImageBlockPublicAccessCommandInput ,
9648
+ cb : ( err : any , data ?: DisableImageBlockPublicAccessCommandOutput ) => void
9649
+ ) : void ;
9650
+ disableImageBlockPublicAccess (
9651
+ args : DisableImageBlockPublicAccessCommandInput ,
9652
+ options : __HttpHandlerOptions ,
9653
+ cb : ( err : any , data ?: DisableImageBlockPublicAccessCommandOutput ) => void
9654
+ ) : void ;
9655
+
9621
9656
/**
9622
9657
* @see {@link DisableImageDeprecationCommand }
9623
9658
*/
@@ -10060,6 +10095,23 @@ export interface EC2 {
10060
10095
cb : ( err : any , data ?: EnableFastSnapshotRestoresCommandOutput ) => void
10061
10096
) : void ;
10062
10097
10098
+ /**
10099
+ * @see {@link EnableImageBlockPublicAccessCommand }
10100
+ */
10101
+ enableImageBlockPublicAccess (
10102
+ args : EnableImageBlockPublicAccessCommandInput ,
10103
+ options ?: __HttpHandlerOptions
10104
+ ) : Promise < EnableImageBlockPublicAccessCommandOutput > ;
10105
+ enableImageBlockPublicAccess (
10106
+ args : EnableImageBlockPublicAccessCommandInput ,
10107
+ cb : ( err : any , data ?: EnableImageBlockPublicAccessCommandOutput ) => void
10108
+ ) : void ;
10109
+ enableImageBlockPublicAccess (
10110
+ args : EnableImageBlockPublicAccessCommandInput ,
10111
+ options : __HttpHandlerOptions ,
10112
+ cb : ( err : any , data ?: EnableImageBlockPublicAccessCommandOutput ) => void
10113
+ ) : void ;
10114
+
10063
10115
/**
10064
10116
* @see {@link EnableImageDeprecationCommand }
10065
10117
*/
@@ -10493,6 +10545,23 @@ export interface EC2 {
10493
10545
cb : ( err : any , data ?: GetHostReservationPurchasePreviewCommandOutput ) => void
10494
10546
) : void ;
10495
10547
10548
+ /**
10549
+ * @see {@link GetImageBlockPublicAccessStateCommand }
10550
+ */
10551
+ getImageBlockPublicAccessState (
10552
+ args : GetImageBlockPublicAccessStateCommandInput ,
10553
+ options ?: __HttpHandlerOptions
10554
+ ) : Promise < GetImageBlockPublicAccessStateCommandOutput > ;
10555
+ getImageBlockPublicAccessState (
10556
+ args : GetImageBlockPublicAccessStateCommandInput ,
10557
+ cb : ( err : any , data ?: GetImageBlockPublicAccessStateCommandOutput ) => void
10558
+ ) : void ;
10559
+ getImageBlockPublicAccessState (
10560
+ args : GetImageBlockPublicAccessStateCommandInput ,
10561
+ options : __HttpHandlerOptions ,
10562
+ cb : ( err : any , data ?: GetImageBlockPublicAccessStateCommandOutput ) => void
10563
+ ) : void ;
10564
+
10496
10565
/**
10497
10566
* @see {@link GetInstanceTypesFromInstanceRequirementsCommand }
10498
10567
*/
0 commit comments