@aws-sdk/client-ec2 3.988.0 → 3.990.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.
- package/dist-cjs/index.js +6 -0
- package/dist-cjs/schemas/schemas_0.js +164 -116
- package/dist-es/models/enums.js +5 -0
- package/dist-es/schemas/schemas_0.js +103 -55
- package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -0
- package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -0
- package/dist-types/commands/DescribeAvailabilityZonesCommand.d.ts +10 -0
- package/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +2 -1
- package/dist-types/commands/DescribeInstanceTypesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstancesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeRegionsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +2 -1
- package/dist-types/commands/GetDefaultCreditSpecificationCommand.d.ts +2 -1
- package/dist-types/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +1 -1
- package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -0
- package/dist-types/commands/ModifyInstanceCpuOptionsCommand.d.ts +4 -2
- package/dist-types/commands/ModifyTransitGatewayCommand.d.ts +2 -1
- package/dist-types/commands/ModifyTransitGatewayMeteringPolicyCommand.d.ts +1 -1
- package/dist-types/commands/RunInstancesCommand.d.ts +2 -0
- package/dist-types/models/enums.d.ts +13 -0
- package/dist-types/models/models_1.d.ts +13 -1
- package/dist-types/models/models_3.d.ts +34 -72
- package/dist-types/models/models_4.d.ts +95 -89
- package/dist-types/models/models_5.d.ts +88 -33
- package/dist-types/models/models_6.d.ts +47 -51
- package/dist-types/models/models_7.d.ts +56 -2
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/commands/DescribeInstanceImageMetadataCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetDefaultCreditSpecificationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyTransitGatewayCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ModifyTransitGatewayMeteringPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/models_1.d.ts +3 -0
- package/dist-types/ts3.4/models/models_3.d.ts +8 -16
- package/dist-types/ts3.4/models/models_4.d.ts +23 -23
- package/dist-types/ts3.4/models/models_5.d.ts +22 -11
- package/dist-types/ts3.4/models/models_6.d.ts +16 -16
- package/dist-types/ts3.4/models/models_7.d.ts +16 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -14996,6 +14996,10 @@ const AmdSevSnpSpecification = {
|
|
|
14996
14996
|
disabled: "disabled",
|
|
14997
14997
|
enabled: "enabled",
|
|
14998
14998
|
};
|
|
14999
|
+
const NestedVirtualizationSpecification = {
|
|
15000
|
+
disabled: "disabled",
|
|
15001
|
+
enabled: "enabled",
|
|
15002
|
+
};
|
|
14999
15003
|
const ShutdownBehavior = {
|
|
15000
15004
|
stop: "stop",
|
|
15001
15005
|
terminate: "terminate",
|
|
@@ -16062,6 +16066,7 @@ const ArchitectureType = {
|
|
|
16062
16066
|
};
|
|
16063
16067
|
const SupportedAdditionalProcessorFeature = {
|
|
16064
16068
|
AMD_SEV_SNP: "amd-sev-snp",
|
|
16069
|
+
NESTED_VIRTUALIZATION: "nested-virtualization",
|
|
16065
16070
|
};
|
|
16066
16071
|
const RebootMigrationSupport = {
|
|
16067
16072
|
SUPPORTED: "supported",
|
|
@@ -17536,6 +17541,7 @@ exports.NatGatewayApplianceModifyState = NatGatewayApplianceModifyState;
|
|
|
17536
17541
|
exports.NatGatewayApplianceState = NatGatewayApplianceState;
|
|
17537
17542
|
exports.NatGatewayApplianceType = NatGatewayApplianceType;
|
|
17538
17543
|
exports.NatGatewayState = NatGatewayState;
|
|
17544
|
+
exports.NestedVirtualizationSpecification = NestedVirtualizationSpecification;
|
|
17539
17545
|
exports.NetworkInterfaceAttribute = NetworkInterfaceAttribute;
|
|
17540
17546
|
exports.NetworkInterfaceCreationType = NetworkInterfaceCreationType;
|
|
17541
17547
|
exports.NetworkInterfacePermissionStateCode = NetworkInterfacePermissionStateCode;
|