@aws-sdk/client-ec2 3.454.0 → 3.455.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/models/models_0.js +6 -2
- package/dist-cjs/protocols/Aws_ec2.js +21 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_ec2.js +21 -0
- package/dist-types/commands/AcceptTransitGatewayVpcAttachmentCommand.d.ts +1 -0
- package/dist-types/commands/AuthorizeSecurityGroupEgressCommand.d.ts +6 -0
- package/dist-types/commands/CreateCarrierGatewayCommand.d.ts +1 -2
- package/dist-types/commands/CreateTransitGatewayCommand.d.ts +2 -0
- package/dist-types/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +2 -0
- package/dist-types/commands/DeleteNatGatewayCommand.d.ts +1 -2
- package/dist-types/commands/DeleteTransitGatewayCommand.d.ts +1 -0
- package/dist-types/commands/DeleteTransitGatewayVpcAttachmentCommand.d.ts +1 -0
- package/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -2
- package/dist-types/commands/DescribeSecurityGroupReferencesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +2 -3
- package/dist-types/commands/DescribeSubnetsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTransitGatewayVpcAttachmentsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeTransitGatewaysCommand.d.ts +1 -0
- package/dist-types/commands/GetIpamPoolCidrsCommand.d.ts +2 -1
- package/dist-types/commands/ModifyTransitGatewayCommand.d.ts +2 -0
- package/dist-types/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +2 -0
- package/dist-types/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +2 -1
- package/dist-types/commands/RejectTransitGatewayVpcAttachmentCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +18 -30
- package/dist-types/models/models_1.d.ts +29 -16
- package/dist-types/models/models_2.d.ts +39 -19
- package/dist-types/models/models_3.d.ts +17 -33
- package/dist-types/models/models_4.d.ts +40 -17
- package/dist-types/models/models_5.d.ts +17 -17
- package/dist-types/models/models_6.d.ts +28 -11
- package/dist-types/models/models_7.d.ts +11 -1
- package/dist-types/ts3.4/commands/CreateCarrierGatewayCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DeleteNatGatewayCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeSubnetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetIpamPoolCidrsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +7 -6
- package/dist-types/ts3.4/models/models_1.d.ts +6 -4
- package/dist-types/ts3.4/models/models_2.d.ts +8 -5
- package/dist-types/ts3.4/models/models_3.d.ts +4 -7
- package/dist-types/ts3.4/models/models_4.d.ts +8 -5
- package/dist-types/ts3.4/models/models_5.d.ts +5 -5
- package/dist-types/ts3.4/models/models_6.d.ts +7 -3
- package/dist-types/ts3.4/models/models_7.d.ts +4 -0
- package/package.json +1 -1
|
@@ -33,6 +33,7 @@ import {
|
|
|
33
33
|
DiskImageFormat,
|
|
34
34
|
InstanceRequirementsRequest,
|
|
35
35
|
IpamResourceTag,
|
|
36
|
+
Subnet,
|
|
36
37
|
VolumeType,
|
|
37
38
|
Vpc,
|
|
38
39
|
} from "./models_1";
|
|
@@ -72,7 +73,6 @@ import {
|
|
|
72
73
|
FastLaunchStateCode,
|
|
73
74
|
FastSnapshotRestoreStateCode,
|
|
74
75
|
Filter,
|
|
75
|
-
IpamPoolCidr,
|
|
76
76
|
MetricType,
|
|
77
77
|
PaymentOption,
|
|
78
78
|
PeriodType,
|
|
@@ -81,6 +81,10 @@ import {
|
|
|
81
81
|
VirtualizationType,
|
|
82
82
|
} from "./models_3";
|
|
83
83
|
import { ArchitectureType, AttributeBooleanValue } from "./models_4";
|
|
84
|
+
export interface DescribeSubnetsResult {
|
|
85
|
+
Subnets?: Subnet[];
|
|
86
|
+
NextToken?: string;
|
|
87
|
+
}
|
|
84
88
|
export interface DescribeTagsRequest {
|
|
85
89
|
DryRun?: boolean;
|
|
86
90
|
Filters?: Filter[];
|
|
@@ -1669,10 +1673,6 @@ export interface GetIpamPoolCidrsRequest {
|
|
|
1669
1673
|
MaxResults?: number;
|
|
1670
1674
|
NextToken?: string;
|
|
1671
1675
|
}
|
|
1672
|
-
export interface GetIpamPoolCidrsResult {
|
|
1673
|
-
IpamPoolCidrs?: IpamPoolCidr[];
|
|
1674
|
-
NextToken?: string;
|
|
1675
|
-
}
|
|
1676
1676
|
export declare const DescribeVerifiedAccessTrustProvidersResultFilterSensitiveLog: (
|
|
1677
1677
|
obj: DescribeVerifiedAccessTrustProvidersResult
|
|
1678
1678
|
) => any;
|
|
@@ -19,6 +19,7 @@ import {
|
|
|
19
19
|
HostRecovery,
|
|
20
20
|
InstanceEventWindow,
|
|
21
21
|
Ipv6SupportValue,
|
|
22
|
+
SecurityGroupReferencingSupportValue,
|
|
22
23
|
SubnetAssociation,
|
|
23
24
|
Tag,
|
|
24
25
|
TagSpecification,
|
|
@@ -153,6 +154,10 @@ import {
|
|
|
153
154
|
VerifiedAccessInstanceLoggingConfiguration,
|
|
154
155
|
VolumeModification,
|
|
155
156
|
} from "./models_5";
|
|
157
|
+
export interface GetIpamPoolCidrsResult {
|
|
158
|
+
IpamPoolCidrs?: IpamPoolCidr[];
|
|
159
|
+
NextToken?: string;
|
|
160
|
+
}
|
|
156
161
|
export interface GetIpamResourceCidrsRequest {
|
|
157
162
|
DryRun?: boolean;
|
|
158
163
|
Filters?: Filter[];
|
|
@@ -1300,6 +1305,7 @@ export interface ModifyTransitGatewayOptions {
|
|
|
1300
1305
|
RemoveTransitGatewayCidrBlocks?: string[];
|
|
1301
1306
|
VpnEcmpSupport?: VpnEcmpSupportValue;
|
|
1302
1307
|
DnsSupport?: DnsSupportValue;
|
|
1308
|
+
SecurityGroupReferencingSupport?: SecurityGroupReferencingSupportValue;
|
|
1303
1309
|
AutoAcceptSharedAttachments?: AutoAcceptSharedAttachmentsValue;
|
|
1304
1310
|
DefaultRouteTableAssociation?: DefaultRouteTableAssociationValue;
|
|
1305
1311
|
AssociationDefaultRouteTableId?: string;
|
|
@@ -1328,6 +1334,7 @@ export interface ModifyTransitGatewayPrefixListReferenceResult {
|
|
|
1328
1334
|
}
|
|
1329
1335
|
export interface ModifyTransitGatewayVpcAttachmentRequestOptions {
|
|
1330
1336
|
DnsSupport?: DnsSupportValue;
|
|
1337
|
+
SecurityGroupReferencingSupport?: SecurityGroupReferencingSupportValue;
|
|
1331
1338
|
Ipv6Support?: Ipv6SupportValue;
|
|
1332
1339
|
ApplianceModeSupport?: ApplianceModeSupportValue;
|
|
1333
1340
|
}
|
|
@@ -1839,9 +1846,6 @@ export interface TransitGatewayMulticastRegisteredGroupSources {
|
|
|
1839
1846
|
RegisteredNetworkInterfaceIds?: string[];
|
|
1840
1847
|
GroupIpAddress?: string;
|
|
1841
1848
|
}
|
|
1842
|
-
export interface RegisterTransitGatewayMulticastGroupSourcesResult {
|
|
1843
|
-
RegisteredMulticastGroupSources?: TransitGatewayMulticastRegisteredGroupSources;
|
|
1844
|
-
}
|
|
1845
1849
|
export declare const GetLaunchTemplateDataResultFilterSensitiveLog: (
|
|
1846
1850
|
obj: GetLaunchTemplateDataResult
|
|
1847
1851
|
) => any;
|
|
@@ -57,7 +57,11 @@ import {
|
|
|
57
57
|
CapacityReservationSpecification,
|
|
58
58
|
InstanceMonitoring,
|
|
59
59
|
Status,
|
|
60
|
+
TransitGatewayMulticastRegisteredGroupSources,
|
|
60
61
|
} from "./models_6";
|
|
62
|
+
export interface RegisterTransitGatewayMulticastGroupSourcesResult {
|
|
63
|
+
RegisteredMulticastGroupSources?: TransitGatewayMulticastRegisteredGroupSources;
|
|
64
|
+
}
|
|
61
65
|
export interface RejectTransitGatewayMulticastDomainAssociationsRequest {
|
|
62
66
|
TransitGatewayMulticastDomainId?: string;
|
|
63
67
|
TransitGatewayAttachmentId?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.455.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|