@aws-sdk/client-ec2 3.1034.0 → 3.1035.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.
Files changed (61) hide show
  1. package/README.md +14 -0
  2. package/dist-cjs/index.js +33 -0
  3. package/dist-cjs/schemas/schemas_0.js +110 -57
  4. package/dist-es/EC2.js +4 -0
  5. package/dist-es/commands/GetManagedResourceVisibilityCommand.js +16 -0
  6. package/dist-es/commands/ModifyManagedResourceVisibilityCommand.js +16 -0
  7. package/dist-es/commands/index.js +2 -0
  8. package/dist-es/models/enums.js +4 -0
  9. package/dist-es/schemas/schemas_0.js +74 -21
  10. package/dist-types/EC2.d.ts +16 -0
  11. package/dist-types/EC2Client.d.ts +4 -2
  12. package/dist-types/commands/CopyVolumesCommand.d.ts +1 -0
  13. package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -0
  14. package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -0
  15. package/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +1 -0
  16. package/dist-types/commands/CreatePlacementGroupCommand.d.ts +1 -0
  17. package/dist-types/commands/CreateVolumeCommand.d.ts +1 -0
  18. package/dist-types/commands/DeleteLaunchTemplateCommand.d.ts +1 -0
  19. package/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -0
  20. package/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +1 -0
  21. package/dist-types/commands/DescribeInstanceStatusCommand.d.ts +2 -0
  22. package/dist-types/commands/DescribeInstancesCommand.d.ts +3 -0
  23. package/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +3 -0
  24. package/dist-types/commands/DescribeLaunchTemplatesCommand.d.ts +2 -0
  25. package/dist-types/commands/DescribeNetworkInterfacesCommand.d.ts +2 -0
  26. package/dist-types/commands/DescribePlacementGroupsCommand.d.ts +1 -0
  27. package/dist-types/commands/DescribeVolumeStatusCommand.d.ts +6 -0
  28. package/dist-types/commands/DescribeVolumesCommand.d.ts +2 -0
  29. package/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +5 -0
  30. package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -0
  31. package/dist-types/commands/GetManagedResourceVisibilityCommand.d.ts +77 -0
  32. package/dist-types/commands/ListVolumesInRecycleBinCommand.d.ts +1 -0
  33. package/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +1 -0
  34. package/dist-types/commands/ModifyManagedResourceVisibilityCommand.d.ts +80 -0
  35. package/dist-types/commands/ModifyRouteServerCommand.d.ts +2 -1
  36. package/dist-types/commands/ModifySecurityGroupRulesCommand.d.ts +1 -1
  37. package/dist-types/commands/ModifyVolumeCommand.d.ts +5 -0
  38. package/dist-types/commands/RunInstancesCommand.d.ts +2 -0
  39. package/dist-types/commands/index.d.ts +2 -0
  40. package/dist-types/models/enums.d.ts +12 -0
  41. package/dist-types/models/models_0.d.ts +6 -0
  42. package/dist-types/models/models_4.d.ts +31 -0
  43. package/dist-types/models/models_5.d.ts +22 -1
  44. package/dist-types/models/models_6.d.ts +66 -137
  45. package/dist-types/models/models_7.d.ts +136 -1
  46. package/dist-types/schemas/schemas_0.d.ts +7 -0
  47. package/dist-types/ts3.4/EC2.d.ts +36 -0
  48. package/dist-types/ts3.4/EC2Client.d.ts +12 -0
  49. package/dist-types/ts3.4/commands/GetManagedResourceVisibilityCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/ModifyManagedResourceVisibilityCommand.d.ts +51 -0
  51. package/dist-types/ts3.4/commands/ModifyRouteServerCommand.d.ts +2 -4
  52. package/dist-types/ts3.4/commands/ModifySecurityGroupRulesCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  54. package/dist-types/ts3.4/models/enums.d.ts +6 -0
  55. package/dist-types/ts3.4/models/models_0.d.ts +1 -0
  56. package/dist-types/ts3.4/models/models_4.d.ts +5 -0
  57. package/dist-types/ts3.4/models/models_5.d.ts +5 -0
  58. package/dist-types/ts3.4/models/models_6.d.ts +17 -26
  59. package/dist-types/ts3.4/models/models_7.d.ts +26 -0
  60. package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
  61. package/package.json +5 -5
package/dist-es/EC2.js CHANGED
@@ -566,6 +566,7 @@ import { GetIpamResourceCidrsCommand, } from "./commands/GetIpamResourceCidrsCom
566
566
  import { GetLaunchTemplateDataCommand, } from "./commands/GetLaunchTemplateDataCommand";
567
567
  import { GetManagedPrefixListAssociationsCommand, } from "./commands/GetManagedPrefixListAssociationsCommand";
568
568
  import { GetManagedPrefixListEntriesCommand, } from "./commands/GetManagedPrefixListEntriesCommand";
569
+ import { GetManagedResourceVisibilityCommand, } from "./commands/GetManagedResourceVisibilityCommand";
569
570
  import { GetNetworkInsightsAccessScopeAnalysisFindingsCommand, } from "./commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand";
570
571
  import { GetNetworkInsightsAccessScopeContentCommand, } from "./commands/GetNetworkInsightsAccessScopeContentCommand";
571
572
  import { GetPasswordDataCommand, } from "./commands/GetPasswordDataCommand";
@@ -639,6 +640,7 @@ import { ModifyIpamScopeCommand, } from "./commands/ModifyIpamScopeCommand";
639
640
  import { ModifyLaunchTemplateCommand, } from "./commands/ModifyLaunchTemplateCommand";
640
641
  import { ModifyLocalGatewayRouteCommand, } from "./commands/ModifyLocalGatewayRouteCommand";
641
642
  import { ModifyManagedPrefixListCommand, } from "./commands/ModifyManagedPrefixListCommand";
643
+ import { ModifyManagedResourceVisibilityCommand, } from "./commands/ModifyManagedResourceVisibilityCommand";
642
644
  import { ModifyNetworkInterfaceAttributeCommand, } from "./commands/ModifyNetworkInterfaceAttributeCommand";
643
645
  import { ModifyPrivateDnsNameOptionsCommand, } from "./commands/ModifyPrivateDnsNameOptionsCommand";
644
646
  import { ModifyPublicIpDnsNameOptionsCommand, } from "./commands/ModifyPublicIpDnsNameOptionsCommand";
@@ -1540,6 +1542,7 @@ const commands = {
1540
1542
  GetLaunchTemplateDataCommand,
1541
1543
  GetManagedPrefixListAssociationsCommand,
1542
1544
  GetManagedPrefixListEntriesCommand,
1545
+ GetManagedResourceVisibilityCommand,
1543
1546
  GetNetworkInsightsAccessScopeAnalysisFindingsCommand,
1544
1547
  GetNetworkInsightsAccessScopeContentCommand,
1545
1548
  GetPasswordDataCommand,
@@ -1613,6 +1616,7 @@ const commands = {
1613
1616
  ModifyLaunchTemplateCommand,
1614
1617
  ModifyLocalGatewayRouteCommand,
1615
1618
  ModifyManagedPrefixListCommand,
1619
+ ModifyManagedResourceVisibilityCommand,
1616
1620
  ModifyNetworkInterfaceAttributeCommand,
1617
1621
  ModifyPrivateDnsNameOptionsCommand,
1618
1622
  ModifyPublicIpDnsNameOptionsCommand,
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetManagedResourceVisibility$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetManagedResourceVisibilityCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonEC2", "GetManagedResourceVisibility", {})
13
+ .n("EC2Client", "GetManagedResourceVisibilityCommand")
14
+ .sc(GetManagedResourceVisibility$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ModifyManagedResourceVisibility$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ModifyManagedResourceVisibilityCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonEC2", "ModifyManagedResourceVisibility", {})
13
+ .n("EC2Client", "ModifyManagedResourceVisibilityCommand")
14
+ .sc(ModifyManagedResourceVisibility$)
15
+ .build() {
16
+ }
@@ -565,6 +565,7 @@ export * from "./GetIpamResourceCidrsCommand";
565
565
  export * from "./GetLaunchTemplateDataCommand";
566
566
  export * from "./GetManagedPrefixListAssociationsCommand";
567
567
  export * from "./GetManagedPrefixListEntriesCommand";
568
+ export * from "./GetManagedResourceVisibilityCommand";
568
569
  export * from "./GetNetworkInsightsAccessScopeAnalysisFindingsCommand";
569
570
  export * from "./GetNetworkInsightsAccessScopeContentCommand";
570
571
  export * from "./GetPasswordDataCommand";
@@ -638,6 +639,7 @@ export * from "./ModifyIpamScopeCommand";
638
639
  export * from "./ModifyLaunchTemplateCommand";
639
640
  export * from "./ModifyLocalGatewayRouteCommand";
640
641
  export * from "./ModifyManagedPrefixListCommand";
642
+ export * from "./ModifyManagedResourceVisibilityCommand";
641
643
  export * from "./ModifyNetworkInterfaceAttributeCommand";
642
644
  export * from "./ModifyPrivateDnsNameOptionsCommand";
643
645
  export * from "./ModifyPublicIpDnsNameOptionsCommand";
@@ -3774,6 +3774,10 @@ export const IpamManagementState = {
3774
3774
  managed: "managed",
3775
3775
  unmanaged: "unmanaged",
3776
3776
  };
3777
+ export const ManagedResourceDefaultVisibility = {
3778
+ hidden: "hidden",
3779
+ visible: "visible",
3780
+ };
3777
3781
  export const RouteServerRouteInstallationStatus = {
3778
3782
  INSTALLED: "installed",
3779
3783
  REJECTED: "rejected",
@@ -2308,6 +2308,7 @@ const _DVSR = "DescribeVolumeStatusRequest";
2308
2308
  const _DVSRe = "DescribeVolumeStatusResult";
2309
2309
  const _DVe = "DestinationVpc";
2310
2310
  const _DVef = "DefaultVersion";
2311
+ const _DVefa = "DefaultVisibility";
2311
2312
  const _DVel = "DeleteVolume";
2312
2313
  const _DVele = "DeleteVpc";
2313
2314
  const _DVes = "DescribeVolumes";
@@ -2845,6 +2846,9 @@ const _GMPLARe = "GetManagedPrefixListAssociationsResult";
2845
2846
  const _GMPLE = "GetManagedPrefixListEntries";
2846
2847
  const _GMPLER = "GetManagedPrefixListEntriesRequest";
2847
2848
  const _GMPLERe = "GetManagedPrefixListEntriesResult";
2849
+ const _GMRV = "GetManagedResourceVisibility";
2850
+ const _GMRVR = "GetManagedResourceVisibilityRequest";
2851
+ const _GMRVRe = "GetManagedResourceVisibilityResult";
2848
2852
  const _GN = "GroupName";
2849
2853
  const _GNIASAF = "GetNetworkInsightsAccessScopeAnalysisFindings";
2850
2854
  const _GNIASAFR = "GetNetworkInsightsAccessScopeAnalysisFindingsRequest";
@@ -2936,6 +2940,7 @@ const _Ge = "Geography";
2936
2940
  const _Gp = "Gpus";
2937
2941
  const _Gr = "Group";
2938
2942
  const _H = "Hosts";
2943
+ const _HBD = "HiddenByDefault";
2939
2944
  const _HCP = "HiveCompatiblePartitions";
2940
2945
  const _HE = "HttpEndpoint";
2941
2946
  const _HI = "HostIds";
@@ -3191,6 +3196,7 @@ const _IMORns = "InstanceMetadataOptionsRequest";
3191
3196
  const _IMORnst = "InstanceMetadataOptionsResponse";
3192
3197
  const _IMOn = "InstanceMetadataOptions";
3193
3198
  const _IMOns = "InstanceMarketOptions";
3199
+ const _IMR = "IncludeManagedResources";
3194
3200
  const _IMT = "InstanceMetadataTags";
3195
3201
  const _IMU = "ImportManifestUrl";
3196
3202
  const _IMm = "ImageMetadata";
@@ -3844,6 +3850,7 @@ const _MI = "MaximumIops";
3844
3850
  const _MIA = "ModifyImageAttribute";
3845
3851
  const _MIAR = "ModifyImageAttributeRequest";
3846
3852
  const _MIARo = "ModifyInstanceAttributeRequest";
3853
+ const _MIAV = "ModifyInstanceAttributeValue";
3847
3854
  const _MIAo = "ModifyInstanceAttribute";
3848
3855
  const _MIC = "MaxInstanceCount";
3849
3856
  const _MICE = "ModifyInstanceConnectEndpoint";
@@ -3922,6 +3929,9 @@ const _MMBR = "MemoryMiBRequest";
3922
3929
  const _MMPL = "ModifyManagedPrefixList";
3923
3930
  const _MMPLR = "ModifyManagedPrefixListRequest";
3924
3931
  const _MMPLRo = "ModifyManagedPrefixListResult";
3932
+ const _MMRV = "ModifyManagedResourceVisibility";
3933
+ const _MMRVR = "ModifyManagedResourceVisibilityRequest";
3934
+ const _MMRVRo = "ModifyManagedResourceVisibilityResult";
3925
3935
  const _MMT = "MacModificationTask";
3926
3936
  const _MMTI = "MacModificationTaskIds";
3927
3937
  const _MMTIL = "MacModificationTaskIdList";
@@ -3966,6 +3976,7 @@ const _MRIRo = "ModifyReservedInstancesResult";
3966
3976
  const _MRS = "ModifyRouteServer";
3967
3977
  const _MRSR = "ModifyRouteServerRequest";
3968
3978
  const _MRSRo = "ModifyRouteServerResult";
3979
+ const _MRVS = "ManagedResourceVisibilitySettings";
3969
3980
  const _MRo = "ModificationResults";
3970
3981
  const _MRu = "MultiRegion";
3971
3982
  const _MS = "ManagementState";
@@ -6044,6 +6055,7 @@ const _Va = "Values";
6044
6055
  const _Ve = "Versions";
6045
6056
  const _Ven = "Vendor";
6046
6057
  const _Ver = "Version";
6058
+ const _Vi = "Visibility";
6047
6059
  const _Vl = "Vlan";
6048
6060
  const _Vo = "Volumes";
6049
6061
  const _Vol = "Volume";
@@ -6542,6 +6554,7 @@ const _dVD = "deviceValidationDomain";
6542
6554
  const _dVN = "defaultVersionNumber";
6543
6555
  const _dVe = "desiredVersion";
6544
6556
  const _dVef = "defaultVersion";
6557
+ const _dVefa = "defaultVisibility";
6545
6558
  const _da = "data";
6546
6559
  const _de = "description";
6547
6560
  const _dea = "deadline";
@@ -6741,6 +6754,7 @@ const _gSro = "groupSource";
6741
6754
  const _gp = "gpus";
6742
6755
  const _gr = "groups";
6743
6756
  const _h = "hypervisor";
6757
+ const _hBD = "hiddenByDefault";
6744
6758
  const _hCP = "hiveCompatiblePartitions";
6745
6759
  const _hE = "httpEndpoint";
6746
6760
  const _hI = "hostId";
@@ -8127,6 +8141,7 @@ const _vTi = "virtualizationType";
8127
8141
  const _vU = "validUntil";
8128
8142
  const _ve = "version";
8129
8143
  const _ven = "vendor";
8144
+ const _vi = "visibility";
8130
8145
  const _vl = "vlan";
8131
8146
  const _vo = "volumes";
8132
8147
  const _vol = "volume";
@@ -8156,6 +8171,7 @@ var CopySnapshotRequestPSU = [0, n0, _CSRPSU, 8, 0];
8156
8171
  var customerGatewayConfiguration = [0, n0, _cGC, 8, 0];
8157
8172
  var EkPubKeyValue = [0, n0, _EPKV, 8, 0];
8158
8173
  var ImportManifestUrl = [0, n0, _IMU, 8, 0];
8174
+ var ModifyInstanceAttributeValue = [0, n0, _MIAV, 8, 0];
8159
8175
  var PasswordData = [0, n0, _PD, 8, 0];
8160
8176
  var preSharedKey = [0, n0, _pSK, 8, 0];
8161
8177
  var ReportInstanceStatusRequestDescription = [0, n0, _RISRD, 8, 0];
@@ -13437,8 +13453,8 @@ export var DescribeInstanceSqlHaStatesResult$ = [3, n0, _DISHSRe,
13437
13453
  ];
13438
13454
  export var DescribeInstancesRequest$ = [3, n0, _DIRescr,
13439
13455
  0,
13440
- [_IIns, _DR, _Fi, _NTe, _MR],
13441
- [[() => InstanceIdStringList, { [_xN]: _II }], [2, { [_eQN]: `DryRun`,
13456
+ [_IIns, _IMR, _DR, _Fi, _NTe, _MR],
13457
+ [[() => InstanceIdStringList, { [_xN]: _II }], 2, [2, { [_eQN]: `DryRun`,
13442
13458
  [_xN]: _dR }], [() => FilterList, { [_xN]: _Fil }], [0, { [_eQN]: `NextToken`,
13443
13459
  [_xN]: _nTe }], [1, { [_eQN]: `MaxResults`,
13444
13460
  [_xN]: _mR }]]
@@ -13452,8 +13468,8 @@ export var DescribeInstancesResult$ = [3, n0, _DIRescri,
13452
13468
  ];
13453
13469
  export var DescribeInstanceStatusRequest$ = [3, n0, _DISRes,
13454
13470
  0,
13455
- [_IIns, _MR, _NTe, _DR, _Fi, _IAI],
13456
- [[() => InstanceIdStringList, { [_xN]: _II }], 1, 0, [2, { [_eQN]: `DryRun`,
13471
+ [_IIns, _MR, _NTe, _IMR, _DR, _Fi, _IAI],
13472
+ [[() => InstanceIdStringList, { [_xN]: _II }], 1, 0, 2, [2, { [_eQN]: `DryRun`,
13457
13473
  [_xN]: _dR }], [() => FilterList, { [_xN]: _Fil }], [2, { [_eQN]: `IncludeAllInstances`,
13458
13474
  [_xN]: _iAI }]]
13459
13475
  ];
@@ -13660,8 +13676,8 @@ export var DescribeKeyPairsResult$ = [3, n0, _DKPResc,
13660
13676
  ];
13661
13677
  export var DescribeLaunchTemplatesRequest$ = [3, n0, _DLTRes,
13662
13678
  0,
13663
- [_DR, _LTIa, _LTNa, _Fi, _NTe, _MR],
13664
- [2, [() => LaunchTemplateIdStringList, { [_xN]: _LTI }], [() => LaunchTemplateNameStringList, { [_xN]: _LTN }], [() => FilterList, { [_xN]: _Fil }], 0, 1]
13679
+ [_DR, _LTIa, _LTNa, _Fi, _NTe, _MR, _IMR],
13680
+ [2, [() => LaunchTemplateIdStringList, { [_xN]: _LTI }], [() => LaunchTemplateNameStringList, { [_xN]: _LTN }], [() => FilterList, { [_xN]: _Fil }], 0, 1, 2]
13665
13681
  ];
13666
13682
  export var DescribeLaunchTemplatesResult$ = [3, n0, _DLTResc,
13667
13683
  0,
@@ -13672,8 +13688,8 @@ export var DescribeLaunchTemplatesResult$ = [3, n0, _DLTResc,
13672
13688
  ];
13673
13689
  export var DescribeLaunchTemplateVersionsRequest$ = [3, n0, _DLTVRes,
13674
13690
  0,
13675
- [_DR, _LTI, _LTN, _Ve, _MV, _MVa, _NTe, _MR, _Fi, _RAes],
13676
- [2, 0, 0, [() => VersionStringList, { [_xN]: _LTV }], 0, 0, 0, 1, [() => FilterList, { [_xN]: _Fil }], 2]
13691
+ [_DR, _LTI, _LTN, _Ve, _MV, _MVa, _NTe, _MR, _Fi, _RAes, _IMR],
13692
+ [2, 0, 0, [() => VersionStringList, { [_xN]: _LTV }], 0, 0, 0, 1, [() => FilterList, { [_xN]: _Fil }], 2, 2]
13677
13693
  ];
13678
13694
  export var DescribeLaunchTemplateVersionsResult$ = [3, n0, _DLTVResc,
13679
13695
  0,
@@ -13925,8 +13941,8 @@ export var DescribeNetworkInterfacePermissionsResult$ = [3, n0, _DNIPRescri,
13925
13941
  ];
13926
13942
  export var DescribeNetworkInterfacesRequest$ = [3, n0, _DNIRe,
13927
13943
  0,
13928
- [_NTe, _MR, _DR, _NIIe, _Fi],
13929
- [0, 1, [2, { [_eQN]: `DryRun`,
13944
+ [_NTe, _MR, _IMR, _DR, _NIIe, _Fi],
13945
+ [0, 1, 2, [2, { [_eQN]: `DryRun`,
13930
13946
  [_xN]: _dR }], [() => NetworkInterfaceIdList, { [_xN]: _NII }], [() => FilterList, { [_eQN]: `Filter`,
13931
13947
  [_xN]: _f }]]
13932
13948
  ];
@@ -14715,8 +14731,8 @@ export var DescribeVolumesModificationsResult$ = [3, n0, _DVMRe,
14715
14731
  ];
14716
14732
  export var DescribeVolumesRequest$ = [3, n0, _DVRes,
14717
14733
  0,
14718
- [_VIol, _DR, _Fi, _NTe, _MR],
14719
- [[() => VolumeIdStringList, { [_xN]: _VIo }], [2, { [_eQN]: `DryRun`,
14734
+ [_VIol, _IMR, _DR, _Fi, _NTe, _MR],
14735
+ [[() => VolumeIdStringList, { [_xN]: _VIo }], 2, [2, { [_eQN]: `DryRun`,
14720
14736
  [_xN]: _dR }], [() => FilterList, { [_xN]: _Fil }], [0, { [_eQN]: `NextToken`,
14721
14737
  [_xN]: _nTe }], [1, { [_eQN]: `MaxResults`,
14722
14738
  [_xN]: _mR }]]
@@ -14730,8 +14746,8 @@ export var DescribeVolumesResult$ = [3, n0, _DVResc,
14730
14746
  ];
14731
14747
  export var DescribeVolumeStatusRequest$ = [3, n0, _DVSR,
14732
14748
  0,
14733
- [_MR, _NTe, _VIol, _DR, _Fi],
14734
- [1, 0, [() => VolumeIdStringList, { [_xN]: _VIo }], [2, { [_eQN]: `DryRun`,
14749
+ [_MR, _NTe, _VIol, _IMR, _DR, _Fi],
14750
+ [1, 0, [() => VolumeIdStringList, { [_xN]: _VIo }], 2, [2, { [_eQN]: `DryRun`,
14735
14751
  [_xN]: _dR }], [() => FilterList, { [_xN]: _Fil }]]
14736
14752
  ];
14737
14753
  export var DescribeVolumeStatusResult$ = [3, n0, _DVSRe,
@@ -17141,6 +17157,17 @@ export var GetManagedPrefixListEntriesResult$ = [3, n0, _GMPLERe,
17141
17157
  [_xN]: _eSnt }], [0, { [_eQN]: `NextToken`,
17142
17158
  [_xN]: _nTe }]]
17143
17159
  ];
17160
+ export var GetManagedResourceVisibilityRequest$ = [3, n0, _GMRVR,
17161
+ 0,
17162
+ [_DR],
17163
+ [2]
17164
+ ];
17165
+ export var GetManagedResourceVisibilityResult$ = [3, n0, _GMRVRe,
17166
+ 0,
17167
+ [_Vi],
17168
+ [[() => ManagedResourceVisibilitySettings$, { [_eQN]: `Visibility`,
17169
+ [_xN]: _vi }]]
17170
+ ];
17144
17171
  export var GetNetworkInsightsAccessScopeAnalysisFindingsRequest$ = [3, n0, _GNIASAFR,
17145
17172
  0,
17146
17173
  [_NIASAI, _MR, _NTe, _DR],
@@ -19909,6 +19936,12 @@ export var ManagedPrefixList$ = [3, n0, _MPLa,
19909
19936
  [_xN]: _iPLRTI }], [2, { [_eQN]: `IpamPrefixListResolverSyncEnabled`,
19910
19937
  [_xN]: _iPLRSE }]]
19911
19938
  ];
19939
+ export var ManagedResourceVisibilitySettings$ = [3, n0, _MRVS,
19940
+ 0,
19941
+ [_DVefa],
19942
+ [[0, { [_eQN]: `DefaultVisibility`,
19943
+ [_xN]: _dVefa }]]
19944
+ ];
19912
19945
  export var MediaAcceleratorInfo$ = [3, n0, _MAIe,
19913
19946
  0,
19914
19947
  [_Acc, _TMMIMB],
@@ -20123,7 +20156,7 @@ export var ModifyInstanceAttributeRequest$ = [3, n0, _MIARo,
20123
20156
  [[0, { [_eQN]: `InstanceId`,
20124
20157
  [_xN]: _iI }], [() => AttributeBooleanValue$, 0], [() => AttributeBooleanValue$, 0], [2, { [_eQN]: `DryRun`,
20125
20158
  [_xN]: _dR }], [0, { [_eQN]: `Attribute`,
20126
- [_xN]: _att }], [0, { [_eQN]: `Value`,
20159
+ [_xN]: _att }], [() => ModifyInstanceAttributeValue, { [_eQN]: `Value`,
20127
20160
  [_xN]: _v }], [() => InstanceBlockDeviceMappingSpecificationList, { [_eQN]: `BlockDeviceMapping`,
20128
20161
  [_xN]: _bDM }], [() => AttributeBooleanValue$, { [_eQN]: `DisableApiTermination`,
20129
20162
  [_xN]: _dAT }], [() => AttributeValue$, { [_eQN]: `InstanceType`,
@@ -20390,6 +20423,17 @@ export var ModifyManagedPrefixListResult$ = [3, n0, _MMPLRo,
20390
20423
  [[() => ManagedPrefixList$, { [_eQN]: `PrefixList`,
20391
20424
  [_xN]: _pL }]]
20392
20425
  ];
20426
+ export var ModifyManagedResourceVisibilityRequest$ = [3, n0, _MMRVR,
20427
+ 0,
20428
+ [_DR, _DVefa],
20429
+ [2, 0]
20430
+ ];
20431
+ export var ModifyManagedResourceVisibilityResult$ = [3, n0, _MMRVRo,
20432
+ 0,
20433
+ [_Vi],
20434
+ [[() => ManagedResourceVisibilitySettings$, { [_eQN]: `Visibility`,
20435
+ [_xN]: _vi }]]
20436
+ ];
20393
20437
  export var ModifyNetworkInterfaceAttributeRequest$ = [3, n0, _MNIAR,
20394
20438
  0,
20395
20439
  [_NII, _ESS, _EPI, _CTS, _APIAss, _ASI, _DR, _De, _SDC, _G, _Att],
@@ -21362,10 +21406,11 @@ export var OperatorRequest$ = [3, n0, _ORpe,
21362
21406
  ];
21363
21407
  export var OperatorResponse$ = [3, n0, _ORper,
21364
21408
  0,
21365
- [_Mana, _P],
21409
+ [_Mana, _P, _HBD],
21366
21410
  [[2, { [_eQN]: `Managed`,
21367
21411
  [_xN]: _mana }], [0, { [_eQN]: `Principal`,
21368
- [_xN]: _p }]]
21412
+ [_xN]: _p }], [2, { [_eQN]: `HiddenByDefault`,
21413
+ [_xN]: _hBD }]]
21369
21414
  ];
21370
21415
  export var OutpostLag$ = [3, n0, _OLu,
21371
21416
  0,
@@ -25172,7 +25217,7 @@ export var VolumeDetail$ = [3, n0, _VDo,
25172
25217
  ];
25173
25218
  export var VolumeModification$ = [3, n0, _VMo,
25174
25219
  0,
25175
- [_VIo, _MSod, _SMt, _TSarg, _TIar, _TVT, _TTar, _TMAE, _OSr, _OIr, _OVT, _OTri, _OMAE, _Pro, _ST, _ETnd],
25220
+ [_VIo, _MSod, _SMt, _TSarg, _TIar, _TVT, _TTar, _TMAE, _OSr, _OIr, _OVT, _OTri, _OMAE, _Pro, _ST, _ETnd, _Op],
25176
25221
  [[0, { [_eQN]: `VolumeId`,
25177
25222
  [_xN]: _vIo }], [0, { [_eQN]: `ModificationState`,
25178
25223
  [_xN]: _mSod }], [0, { [_eQN]: `StatusMessage`,
@@ -25189,7 +25234,8 @@ export var VolumeModification$ = [3, n0, _VMo,
25189
25234
  [_xN]: _oMAE }], [1, { [_eQN]: `Progress`,
25190
25235
  [_xN]: _pro }], [4, { [_eQN]: `StartTime`,
25191
25236
  [_xN]: _sT }], [4, { [_eQN]: `EndTime`,
25192
- [_xN]: _eTn }]]
25237
+ [_xN]: _eTn }], [() => OperatorResponse$, { [_eQN]: `Operator`,
25238
+ [_xN]: _ope }]]
25193
25239
  ];
25194
25240
  export var VolumeRecycleBinInfo$ = [3, n0, _VRBI,
25195
25241
  0,
@@ -25254,7 +25300,7 @@ export var VolumeStatusInfo$ = [3, n0, _VSI,
25254
25300
  ];
25255
25301
  export var VolumeStatusItem$ = [3, n0, _VSIo,
25256
25302
  0,
25257
- [_Acti, _AZ, _OA, _Ev, _VIo, _VSol, _ASttac, _ISD, _AZI],
25303
+ [_Acti, _AZ, _OA, _Ev, _VIo, _VSol, _ASttac, _ISD, _AZI, _Op],
25258
25304
  [[() => VolumeStatusActionsList, { [_eQN]: `ActionsSet`,
25259
25305
  [_xN]: _aSct }], [0, { [_eQN]: `AvailabilityZone`,
25260
25306
  [_xN]: _aZ }], [0, { [_eQN]: `OutpostArn`,
@@ -25264,7 +25310,8 @@ export var VolumeStatusItem$ = [3, n0, _VSIo,
25264
25310
  [_xN]: _vSol }], [() => VolumeStatusAttachmentStatusList, { [_eQN]: `AttachmentStatuses`,
25265
25311
  [_xN]: _aStta }], [() => InitializationStatusDetails$, { [_eQN]: `InitializationStatusDetails`,
25266
25312
  [_xN]: _iSD }], [0, { [_eQN]: `AvailabilityZoneId`,
25267
- [_xN]: _aZI }]]
25313
+ [_xN]: _aZI }], [() => OperatorResponse$, { [_eQN]: `Operator`,
25314
+ [_xN]: _ope }]]
25268
25315
  ];
25269
25316
  export var Vpc$ = [3, n0, _Vp,
25270
25317
  0,
@@ -30180,6 +30227,9 @@ export var GetManagedPrefixListAssociations$ = [9, n0, _GMPLA,
30180
30227
  export var GetManagedPrefixListEntries$ = [9, n0, _GMPLE,
30181
30228
  0, () => GetManagedPrefixListEntriesRequest$, () => GetManagedPrefixListEntriesResult$
30182
30229
  ];
30230
+ export var GetManagedResourceVisibility$ = [9, n0, _GMRV,
30231
+ 0, () => GetManagedResourceVisibilityRequest$, () => GetManagedResourceVisibilityResult$
30232
+ ];
30183
30233
  export var GetNetworkInsightsAccessScopeAnalysisFindings$ = [9, n0, _GNIASAF,
30184
30234
  0, () => GetNetworkInsightsAccessScopeAnalysisFindingsRequest$, () => GetNetworkInsightsAccessScopeAnalysisFindingsResult$
30185
30235
  ];
@@ -30399,6 +30449,9 @@ export var ModifyLocalGatewayRoute$ = [9, n0, _MLGR,
30399
30449
  export var ModifyManagedPrefixList$ = [9, n0, _MMPL,
30400
30450
  0, () => ModifyManagedPrefixListRequest$, () => ModifyManagedPrefixListResult$
30401
30451
  ];
30452
+ export var ModifyManagedResourceVisibility$ = [9, n0, _MMRV,
30453
+ 0, () => ModifyManagedResourceVisibilityRequest$, () => ModifyManagedResourceVisibilityResult$
30454
+ ];
30402
30455
  export var ModifyNetworkInterfaceAttribute$ = [9, n0, _MNIA,
30403
30456
  0, () => ModifyNetworkInterfaceAttributeRequest$, () => __Unit
30404
30457
  ];
@@ -567,6 +567,7 @@ import { type GetIpamResourceCidrsCommandInput, type GetIpamResourceCidrsCommand
567
567
  import { type GetLaunchTemplateDataCommandInput, type GetLaunchTemplateDataCommandOutput } from "./commands/GetLaunchTemplateDataCommand";
568
568
  import { type GetManagedPrefixListAssociationsCommandInput, type GetManagedPrefixListAssociationsCommandOutput } from "./commands/GetManagedPrefixListAssociationsCommand";
569
569
  import { type GetManagedPrefixListEntriesCommandInput, type GetManagedPrefixListEntriesCommandOutput } from "./commands/GetManagedPrefixListEntriesCommand";
570
+ import { type GetManagedResourceVisibilityCommandInput, type GetManagedResourceVisibilityCommandOutput } from "./commands/GetManagedResourceVisibilityCommand";
570
571
  import { type GetNetworkInsightsAccessScopeAnalysisFindingsCommandInput, type GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput } from "./commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand";
571
572
  import { type GetNetworkInsightsAccessScopeContentCommandInput, type GetNetworkInsightsAccessScopeContentCommandOutput } from "./commands/GetNetworkInsightsAccessScopeContentCommand";
572
573
  import { type GetPasswordDataCommandInput, type GetPasswordDataCommandOutput } from "./commands/GetPasswordDataCommand";
@@ -640,6 +641,7 @@ import { type ModifyIpamScopeCommandInput, type ModifyIpamScopeCommandOutput } f
640
641
  import { type ModifyLaunchTemplateCommandInput, type ModifyLaunchTemplateCommandOutput } from "./commands/ModifyLaunchTemplateCommand";
641
642
  import { type ModifyLocalGatewayRouteCommandInput, type ModifyLocalGatewayRouteCommandOutput } from "./commands/ModifyLocalGatewayRouteCommand";
642
643
  import { type ModifyManagedPrefixListCommandInput, type ModifyManagedPrefixListCommandOutput } from "./commands/ModifyManagedPrefixListCommand";
644
+ import { type ModifyManagedResourceVisibilityCommandInput, type ModifyManagedResourceVisibilityCommandOutput } from "./commands/ModifyManagedResourceVisibilityCommand";
643
645
  import { type ModifyNetworkInterfaceAttributeCommandInput, type ModifyNetworkInterfaceAttributeCommandOutput } from "./commands/ModifyNetworkInterfaceAttributeCommand";
644
646
  import { type ModifyPrivateDnsNameOptionsCommandInput, type ModifyPrivateDnsNameOptionsCommandOutput } from "./commands/ModifyPrivateDnsNameOptionsCommand";
645
647
  import { type ModifyPublicIpDnsNameOptionsCommandInput, type ModifyPublicIpDnsNameOptionsCommandOutput } from "./commands/ModifyPublicIpDnsNameOptionsCommand";
@@ -4377,6 +4379,13 @@ export interface EC2 {
4377
4379
  getManagedPrefixListEntries(args: GetManagedPrefixListEntriesCommandInput, options?: __HttpHandlerOptions): Promise<GetManagedPrefixListEntriesCommandOutput>;
4378
4380
  getManagedPrefixListEntries(args: GetManagedPrefixListEntriesCommandInput, cb: (err: any, data?: GetManagedPrefixListEntriesCommandOutput) => void): void;
4379
4381
  getManagedPrefixListEntries(args: GetManagedPrefixListEntriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetManagedPrefixListEntriesCommandOutput) => void): void;
4382
+ /**
4383
+ * @see {@link GetManagedResourceVisibilityCommand}
4384
+ */
4385
+ getManagedResourceVisibility(): Promise<GetManagedResourceVisibilityCommandOutput>;
4386
+ getManagedResourceVisibility(args: GetManagedResourceVisibilityCommandInput, options?: __HttpHandlerOptions): Promise<GetManagedResourceVisibilityCommandOutput>;
4387
+ getManagedResourceVisibility(args: GetManagedResourceVisibilityCommandInput, cb: (err: any, data?: GetManagedResourceVisibilityCommandOutput) => void): void;
4388
+ getManagedResourceVisibility(args: GetManagedResourceVisibilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetManagedResourceVisibilityCommandOutput) => void): void;
4380
4389
  /**
4381
4390
  * @see {@link GetNetworkInsightsAccessScopeAnalysisFindingsCommand}
4382
4391
  */
@@ -4825,6 +4834,13 @@ export interface EC2 {
4825
4834
  modifyManagedPrefixList(args: ModifyManagedPrefixListCommandInput, options?: __HttpHandlerOptions): Promise<ModifyManagedPrefixListCommandOutput>;
4826
4835
  modifyManagedPrefixList(args: ModifyManagedPrefixListCommandInput, cb: (err: any, data?: ModifyManagedPrefixListCommandOutput) => void): void;
4827
4836
  modifyManagedPrefixList(args: ModifyManagedPrefixListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyManagedPrefixListCommandOutput) => void): void;
4837
+ /**
4838
+ * @see {@link ModifyManagedResourceVisibilityCommand}
4839
+ */
4840
+ modifyManagedResourceVisibility(): Promise<ModifyManagedResourceVisibilityCommandOutput>;
4841
+ modifyManagedResourceVisibility(args: ModifyManagedResourceVisibilityCommandInput, options?: __HttpHandlerOptions): Promise<ModifyManagedResourceVisibilityCommandOutput>;
4842
+ modifyManagedResourceVisibility(args: ModifyManagedResourceVisibilityCommandInput, cb: (err: any, data?: ModifyManagedResourceVisibilityCommandOutput) => void): void;
4843
+ modifyManagedResourceVisibility(args: ModifyManagedResourceVisibilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyManagedResourceVisibilityCommandOutput) => void): void;
4828
4844
  /**
4829
4845
  * @see {@link ModifyNetworkInterfaceAttributeCommand}
4830
4846
  */