@@ -353,6 +353,11 @@ import {
353
353
CreateDefaultVpcCommandInput,
354
354
CreateDefaultVpcCommandOutput,
355
355
} from "./commands/CreateDefaultVpcCommand";
356
+ import {
357
+ CreateDelegateMacVolumeOwnershipTaskCommand,
358
+ CreateDelegateMacVolumeOwnershipTaskCommandInput,
359
+ CreateDelegateMacVolumeOwnershipTaskCommandOutput,
360
+ } from "./commands/CreateDelegateMacVolumeOwnershipTaskCommand";
356
361
import {
357
362
CreateDhcpOptionsCommand,
358
363
CreateDhcpOptionsCommandInput,
@@ -461,6 +466,11 @@ import {
461
466
CreateLocalGatewayVirtualInterfaceGroupCommandInput,
462
467
CreateLocalGatewayVirtualInterfaceGroupCommandOutput,
463
468
} from "./commands/CreateLocalGatewayVirtualInterfaceGroupCommand";
469
+ import {
470
+ CreateMacSystemIntegrityProtectionModificationTaskCommand,
471
+ CreateMacSystemIntegrityProtectionModificationTaskCommandInput,
472
+ CreateMacSystemIntegrityProtectionModificationTaskCommandOutput,
473
+ } from "./commands/CreateMacSystemIntegrityProtectionModificationTaskCommand";
464
474
import {
465
475
CreateManagedPrefixListCommand,
466
476
CreateManagedPrefixListCommandInput,
@@ -1553,6 +1563,11 @@ import {
1553
1563
DescribeMacHostsCommandInput,
1554
1564
DescribeMacHostsCommandOutput,
1555
1565
} from "./commands/DescribeMacHostsCommand";
1566
+ import {
1567
+ DescribeMacModificationTasksCommand,
1568
+ DescribeMacModificationTasksCommandInput,
1569
+ DescribeMacModificationTasksCommandOutput,
1570
+ } from "./commands/DescribeMacModificationTasksCommand";
1556
1571
import {
1557
1572
DescribeManagedPrefixListsCommand,
1558
1573
DescribeManagedPrefixListsCommandInput,
@@ -3413,6 +3428,7 @@ const commands = {
3413
3428
CreateCustomerGatewayCommand,
3414
3429
CreateDefaultSubnetCommand,
3415
3430
CreateDefaultVpcCommand,
3431
+ CreateDelegateMacVolumeOwnershipTaskCommand,
3416
3432
CreateDhcpOptionsCommand,
3417
3433
CreateEgressOnlyInternetGatewayCommand,
3418
3434
CreateFleetCommand,
@@ -3437,6 +3453,7 @@ const commands = {
3437
3453
CreateLocalGatewayRouteTableVpcAssociationCommand,
3438
3454
CreateLocalGatewayVirtualInterfaceCommand,
3439
3455
CreateLocalGatewayVirtualInterfaceGroupCommand,
3456
+ CreateMacSystemIntegrityProtectionModificationTaskCommand,
3440
3457
CreateManagedPrefixListCommand,
3441
3458
CreateNatGatewayCommand,
3442
3459
CreateNetworkAclCommand,
@@ -3661,6 +3678,7 @@ const commands = {
3661
3678
DescribeLocalGatewayVirtualInterfacesCommand,
3662
3679
DescribeLockedSnapshotsCommand,
3663
3680
DescribeMacHostsCommand,
3681
+ DescribeMacModificationTasksCommand,
3664
3682
DescribeManagedPrefixListsCommand,
3665
3683
DescribeMovingAddressesCommand,
3666
3684
DescribeNatGatewaysCommand,
@@ -5198,6 +5216,23 @@ export interface EC2 {
5198
5216
cb: (err: any, data?: CreateDefaultVpcCommandOutput) => void
5199
5217
): void;
5200
5218
5219
+ /**
5220
+ * @see {@link CreateDelegateMacVolumeOwnershipTaskCommand}
5221
+ */
5222
+ createDelegateMacVolumeOwnershipTask(
5223
+ args: CreateDelegateMacVolumeOwnershipTaskCommandInput,
5224
+ options?: __HttpHandlerOptions
5225
+ ): Promise<CreateDelegateMacVolumeOwnershipTaskCommandOutput>;
5226
+ createDelegateMacVolumeOwnershipTask(
5227
+ args: CreateDelegateMacVolumeOwnershipTaskCommandInput,
5228
+ cb: (err: any, data?: CreateDelegateMacVolumeOwnershipTaskCommandOutput) => void
5229
+ ): void;
5230
+ createDelegateMacVolumeOwnershipTask(
5231
+ args: CreateDelegateMacVolumeOwnershipTaskCommandInput,
5232
+ options: __HttpHandlerOptions,
5233
+ cb: (err: any, data?: CreateDelegateMacVolumeOwnershipTaskCommandOutput) => void
5234
+ ): void;
5235
+
5201
5236
/**
5202
5237
* @see {@link CreateDhcpOptionsCommand}
5203
5238
*/
@@ -5574,6 +5609,23 @@ export interface EC2 {
5574
5609
cb: (err: any, data?: CreateLocalGatewayVirtualInterfaceGroupCommandOutput) => void
5575
5610
): void;
5576
5611
5612
+ /**
5613
+ * @see {@link CreateMacSystemIntegrityProtectionModificationTaskCommand}
5614
+ */
5615
+ createMacSystemIntegrityProtectionModificationTask(
5616
+ args: CreateMacSystemIntegrityProtectionModificationTaskCommandInput,
5617
+ options?: __HttpHandlerOptions
5618
+ ): Promise<CreateMacSystemIntegrityProtectionModificationTaskCommandOutput>;
5619
+ createMacSystemIntegrityProtectionModificationTask(
5620
+ args: CreateMacSystemIntegrityProtectionModificationTaskCommandInput,
5621
+ cb: (err: any, data?: CreateMacSystemIntegrityProtectionModificationTaskCommandOutput) => void
5622
+ ): void;
5623
+ createMacSystemIntegrityProtectionModificationTask(
5624
+ args: CreateMacSystemIntegrityProtectionModificationTaskCommandInput,
5625
+ options: __HttpHandlerOptions,
5626
+ cb: (err: any, data?: CreateMacSystemIntegrityProtectionModificationTaskCommandOutput) => void
5627
+ ): void;
5628
+
5577
5629
/**
5578
5630
* @see {@link CreateManagedPrefixListCommand}
5579
5631
*/
@@ -9336,6 +9388,24 @@ export interface EC2 {
9336
9388
cb: (err: any, data?: DescribeMacHostsCommandOutput) => void
9337
9389
): void;
9338
9390
9391
+ /**
9392
+ * @see {@link DescribeMacModificationTasksCommand}
9393
+ */
9394
+ describeMacModificationTasks(): Promise<DescribeMacModificationTasksCommandOutput>;
9395
+ describeMacModificationTasks(
9396
+ args: DescribeMacModificationTasksCommandInput,
9397
+ options?: __HttpHandlerOptions
9398
+ ): Promise<DescribeMacModificationTasksCommandOutput>;
9399
+ describeMacModificationTasks(
9400
+ args: DescribeMacModificationTasksCommandInput,
9401
+ cb: (err: any, data?: DescribeMacModificationTasksCommandOutput) => void
9402
+ ): void;
9403
+ describeMacModificationTasks(
9404
+ args: DescribeMacModificationTasksCommandInput,
9405
+ options: __HttpHandlerOptions,
9406
+ cb: (err: any, data?: DescribeMacModificationTasksCommandOutput) => void
9407
+ ): void;
9408
+
9339
9409
/**
9340
9410
* @see {@link DescribeManagedPrefixListsCommand}
9341
9411
*/
0 commit comments