@aws-sdk/client-ec2 3.301.0 → 3.304.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/README.md +16 -0
- package/dist-cjs/EC2.js +30 -0
- package/dist-cjs/commands/GetVpnTunnelReplacementStatusCommand.js +45 -0
- package/dist-cjs/commands/ReplaceVpnTunnelCommand.js +45 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +1126 -1192
- package/dist-cjs/models/models_1.js +397 -469
- package/dist-cjs/models/models_2.js +280 -336
- package/dist-cjs/models/models_3.js +241 -286
- package/dist-cjs/models/models_4.js +197 -235
- package/dist-cjs/models/models_5.js +77 -91
- package/dist-cjs/models/models_6.js +65 -79
- package/dist-cjs/protocols/Aws_ec2.js +180 -15
- package/dist-es/EC2.js +30 -0
- package/dist-es/commands/GetVpnTunnelReplacementStatusCommand.js +41 -0
- package/dist-es/commands/ReplaceVpnTunnelCommand.js +41 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +1126 -1192
- package/dist-es/models/models_1.js +397 -469
- package/dist-es/models/models_2.js +280 -336
- package/dist-es/models/models_3.js +241 -286
- package/dist-es/models/models_4.js +197 -235
- package/dist-es/models/models_5.js +77 -91
- package/dist-es/models/models_6.js +65 -79
- package/dist-es/protocols/Aws_ec2.js +161 -0
- package/dist-types/EC2.d.ts +16 -0
- package/dist-types/EC2Client.d.ts +4 -2
- package/dist-types/commands/CreateVpnConnectionCommand.d.ts +1 -0
- package/dist-types/commands/GetVpnTunnelReplacementStatusCommand.d.ts +65 -0
- package/dist-types/commands/ImportSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVpnTunnelOptionsCommand.d.ts +2 -0
- package/dist-types/commands/ReplaceVpnTunnelCommand.d.ts +66 -0
- package/dist-types/commands/StartInstancesCommand.d.ts +2 -1
- package/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
- package/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +1464 -1134
- package/dist-types/models/models_1.d.ts +757 -397
- package/dist-types/models/models_2.d.ts +568 -280
- package/dist-types/models/models_3.d.ts +466 -241
- package/dist-types/models/models_4.d.ts +388 -198
- package/dist-types/models/models_5.d.ts +214 -192
- package/dist-types/models/models_6.d.ts +299 -159
- package/dist-types/models/models_7.d.ts +95 -3
- package/dist-types/protocols/Aws_ec2.d.ts +6 -0
- package/dist-types/ts3.4/EC2.d.ts +34 -0
- package/dist-types/ts3.4/EC2Client.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetVpnTunnelReplacementStatusCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ImportSnapshotCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ReplaceVpnTunnelCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/StartInstancesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartNetworkInsightsAnalysisCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1244 -1126
- package/dist-types/ts3.4/models/models_1.d.ts +523 -397
- package/dist-types/ts3.4/models/models_2.d.ts +381 -280
- package/dist-types/ts3.4/models/models_3.d.ts +324 -241
- package/dist-types/ts3.4/models/models_4.d.ts +261 -197
- package/dist-types/ts3.4/models/models_5.d.ts +123 -101
- package/dist-types/ts3.4/models/models_6.d.ts +126 -91
- package/dist-types/ts3.4/models/models_7.d.ts +37 -3
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +24 -0
- package/package.json +36 -36
|
@@ -1,7 +1,99 @@
|
|
|
1
|
-
import { ByoipCidr, IpPermission, NatGatewayAddress } from "./models_0";
|
|
1
|
+
import { ByoipCidr, IpPermission, NatGatewayAddress, TagSpecification } from "./models_0";
|
|
2
2
|
import { ClientVpnConnectionStatus } from "./models_3";
|
|
3
|
-
import { NetworkInsightsAnalysis } from "./models_4";
|
|
4
|
-
import { InstanceMonitoring
|
|
3
|
+
import { InstanceState, NetworkInsightsAccessScopeAnalysis, NetworkInsightsAnalysis } from "./models_4";
|
|
4
|
+
import { InstanceMonitoring } from "./models_6";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
* <p>Describes an instance state change.</p>
|
|
8
|
+
*/
|
|
9
|
+
export interface InstanceStateChange {
|
|
10
|
+
/**
|
|
11
|
+
* <p>The current state of the instance.</p>
|
|
12
|
+
*/
|
|
13
|
+
CurrentState?: InstanceState;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The ID of the instance.</p>
|
|
16
|
+
*/
|
|
17
|
+
InstanceId?: string;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The previous state of the instance.</p>
|
|
20
|
+
*/
|
|
21
|
+
PreviousState?: InstanceState;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export interface StartInstancesResult {
|
|
27
|
+
/**
|
|
28
|
+
* <p>Information about the started instances.</p>
|
|
29
|
+
*/
|
|
30
|
+
StartingInstances?: InstanceStateChange[];
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export interface StartNetworkInsightsAccessScopeAnalysisRequest {
|
|
36
|
+
/**
|
|
37
|
+
* <p>The ID of the Network Access Scope.</p>
|
|
38
|
+
*/
|
|
39
|
+
NetworkInsightsAccessScopeId: string | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
42
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
43
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
44
|
+
*/
|
|
45
|
+
DryRun?: boolean;
|
|
46
|
+
/**
|
|
47
|
+
* <p>The tags to apply.</p>
|
|
48
|
+
*/
|
|
49
|
+
TagSpecifications?: TagSpecification[];
|
|
50
|
+
/**
|
|
51
|
+
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information,
|
|
52
|
+
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">How to ensure idempotency</a>.</p>
|
|
53
|
+
*/
|
|
54
|
+
ClientToken?: string;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export interface StartNetworkInsightsAccessScopeAnalysisResult {
|
|
60
|
+
/**
|
|
61
|
+
* <p>The Network Access Scope analysis.</p>
|
|
62
|
+
*/
|
|
63
|
+
NetworkInsightsAccessScopeAnalysis?: NetworkInsightsAccessScopeAnalysis;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export interface StartNetworkInsightsAnalysisRequest {
|
|
69
|
+
/**
|
|
70
|
+
* <p>The ID of the path.</p>
|
|
71
|
+
*/
|
|
72
|
+
NetworkInsightsPathId: string | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* <p>The member accounts that contain resources that the path can traverse.</p>
|
|
75
|
+
*/
|
|
76
|
+
AdditionalAccounts?: string[];
|
|
77
|
+
/**
|
|
78
|
+
* <p>The Amazon Resource Names (ARN) of the resources that the path must traverse.</p>
|
|
79
|
+
*/
|
|
80
|
+
FilterInArns?: string[];
|
|
81
|
+
/**
|
|
82
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
83
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
84
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
85
|
+
*/
|
|
86
|
+
DryRun?: boolean;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The tags to apply.</p>
|
|
89
|
+
*/
|
|
90
|
+
TagSpecifications?: TagSpecification[];
|
|
91
|
+
/**
|
|
92
|
+
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information,
|
|
93
|
+
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">How to ensure idempotency</a>.</p>
|
|
94
|
+
*/
|
|
95
|
+
ClientToken?: string;
|
|
96
|
+
}
|
|
5
97
|
/**
|
|
6
98
|
* @public
|
|
7
99
|
*/
|
|
@@ -451,6 +451,7 @@ import { GetVerifiedAccessEndpointPolicyCommandInput, GetVerifiedAccessEndpointP
|
|
|
451
451
|
import { GetVerifiedAccessGroupPolicyCommandInput, GetVerifiedAccessGroupPolicyCommandOutput } from "../commands/GetVerifiedAccessGroupPolicyCommand";
|
|
452
452
|
import { GetVpnConnectionDeviceSampleConfigurationCommandInput, GetVpnConnectionDeviceSampleConfigurationCommandOutput } from "../commands/GetVpnConnectionDeviceSampleConfigurationCommand";
|
|
453
453
|
import { GetVpnConnectionDeviceTypesCommandInput, GetVpnConnectionDeviceTypesCommandOutput } from "../commands/GetVpnConnectionDeviceTypesCommand";
|
|
454
|
+
import { GetVpnTunnelReplacementStatusCommandInput, GetVpnTunnelReplacementStatusCommandOutput } from "../commands/GetVpnTunnelReplacementStatusCommand";
|
|
454
455
|
import { ImportClientVpnClientCertificateRevocationListCommandInput, ImportClientVpnClientCertificateRevocationListCommandOutput } from "../commands/ImportClientVpnClientCertificateRevocationListCommand";
|
|
455
456
|
import { ImportImageCommandInput, ImportImageCommandOutput } from "../commands/ImportImageCommand";
|
|
456
457
|
import { ImportInstanceCommandInput, ImportInstanceCommandOutput } from "../commands/ImportInstanceCommand";
|
|
@@ -551,6 +552,7 @@ import { ReplaceNetworkAclEntryCommandInput, ReplaceNetworkAclEntryCommandOutput
|
|
|
551
552
|
import { ReplaceRouteCommandInput, ReplaceRouteCommandOutput } from "../commands/ReplaceRouteCommand";
|
|
552
553
|
import { ReplaceRouteTableAssociationCommandInput, ReplaceRouteTableAssociationCommandOutput } from "../commands/ReplaceRouteTableAssociationCommand";
|
|
553
554
|
import { ReplaceTransitGatewayRouteCommandInput, ReplaceTransitGatewayRouteCommandOutput } from "../commands/ReplaceTransitGatewayRouteCommand";
|
|
555
|
+
import { ReplaceVpnTunnelCommandInput, ReplaceVpnTunnelCommandOutput } from "../commands/ReplaceVpnTunnelCommand";
|
|
554
556
|
import { ReportInstanceStatusCommandInput, ReportInstanceStatusCommandOutput } from "../commands/ReportInstanceStatusCommand";
|
|
555
557
|
import { RequestSpotFleetCommandInput, RequestSpotFleetCommandOutput } from "../commands/RequestSpotFleetCommand";
|
|
556
558
|
import { RequestSpotInstancesCommandInput, RequestSpotInstancesCommandOutput } from "../commands/RequestSpotInstancesCommand";
|
|
@@ -1040,6 +1042,7 @@ export declare const serializeAws_ec2GetVerifiedAccessEndpointPolicyCommand: (in
|
|
|
1040
1042
|
export declare const serializeAws_ec2GetVerifiedAccessGroupPolicyCommand: (input: GetVerifiedAccessGroupPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1041
1043
|
export declare const serializeAws_ec2GetVpnConnectionDeviceSampleConfigurationCommand: (input: GetVpnConnectionDeviceSampleConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1042
1044
|
export declare const serializeAws_ec2GetVpnConnectionDeviceTypesCommand: (input: GetVpnConnectionDeviceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1045
|
+
export declare const serializeAws_ec2GetVpnTunnelReplacementStatusCommand: (input: GetVpnTunnelReplacementStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1043
1046
|
export declare const serializeAws_ec2ImportClientVpnClientCertificateRevocationListCommand: (input: ImportClientVpnClientCertificateRevocationListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1044
1047
|
export declare const serializeAws_ec2ImportImageCommand: (input: ImportImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1045
1048
|
export declare const serializeAws_ec2ImportInstanceCommand: (input: ImportInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -1140,6 +1143,7 @@ export declare const serializeAws_ec2ReplaceNetworkAclEntryCommand: (input: Repl
|
|
|
1140
1143
|
export declare const serializeAws_ec2ReplaceRouteCommand: (input: ReplaceRouteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1141
1144
|
export declare const serializeAws_ec2ReplaceRouteTableAssociationCommand: (input: ReplaceRouteTableAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1142
1145
|
export declare const serializeAws_ec2ReplaceTransitGatewayRouteCommand: (input: ReplaceTransitGatewayRouteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1146
|
+
export declare const serializeAws_ec2ReplaceVpnTunnelCommand: (input: ReplaceVpnTunnelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1143
1147
|
export declare const serializeAws_ec2ReportInstanceStatusCommand: (input: ReportInstanceStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1144
1148
|
export declare const serializeAws_ec2RequestSpotFleetCommand: (input: RequestSpotFleetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1145
1149
|
export declare const serializeAws_ec2RequestSpotInstancesCommand: (input: RequestSpotInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -1629,6 +1633,7 @@ export declare const deserializeAws_ec2GetVerifiedAccessEndpointPolicyCommand: (
|
|
|
1629
1633
|
export declare const deserializeAws_ec2GetVerifiedAccessGroupPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVerifiedAccessGroupPolicyCommandOutput>;
|
|
1630
1634
|
export declare const deserializeAws_ec2GetVpnConnectionDeviceSampleConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVpnConnectionDeviceSampleConfigurationCommandOutput>;
|
|
1631
1635
|
export declare const deserializeAws_ec2GetVpnConnectionDeviceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVpnConnectionDeviceTypesCommandOutput>;
|
|
1636
|
+
export declare const deserializeAws_ec2GetVpnTunnelReplacementStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVpnTunnelReplacementStatusCommandOutput>;
|
|
1632
1637
|
export declare const deserializeAws_ec2ImportClientVpnClientCertificateRevocationListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportClientVpnClientCertificateRevocationListCommandOutput>;
|
|
1633
1638
|
export declare const deserializeAws_ec2ImportImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportImageCommandOutput>;
|
|
1634
1639
|
export declare const deserializeAws_ec2ImportInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportInstanceCommandOutput>;
|
|
@@ -1729,6 +1734,7 @@ export declare const deserializeAws_ec2ReplaceNetworkAclEntryCommand: (output: _
|
|
|
1729
1734
|
export declare const deserializeAws_ec2ReplaceRouteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReplaceRouteCommandOutput>;
|
|
1730
1735
|
export declare const deserializeAws_ec2ReplaceRouteTableAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReplaceRouteTableAssociationCommandOutput>;
|
|
1731
1736
|
export declare const deserializeAws_ec2ReplaceTransitGatewayRouteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReplaceTransitGatewayRouteCommandOutput>;
|
|
1737
|
+
export declare const deserializeAws_ec2ReplaceVpnTunnelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReplaceVpnTunnelCommandOutput>;
|
|
1732
1738
|
export declare const deserializeAws_ec2ReportInstanceStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReportInstanceStatusCommandOutput>;
|
|
1733
1739
|
export declare const deserializeAws_ec2RequestSpotFleetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RequestSpotFleetCommandOutput>;
|
|
1734
1740
|
export declare const deserializeAws_ec2RequestSpotInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RequestSpotInstancesCommandOutput>;
|
|
@@ -1803,6 +1803,10 @@ import {
|
|
|
1803
1803
|
GetVpnConnectionDeviceTypesCommandInput,
|
|
1804
1804
|
GetVpnConnectionDeviceTypesCommandOutput,
|
|
1805
1805
|
} from "./commands/GetVpnConnectionDeviceTypesCommand";
|
|
1806
|
+
import {
|
|
1807
|
+
GetVpnTunnelReplacementStatusCommandInput,
|
|
1808
|
+
GetVpnTunnelReplacementStatusCommandOutput,
|
|
1809
|
+
} from "./commands/GetVpnTunnelReplacementStatusCommand";
|
|
1806
1810
|
import {
|
|
1807
1811
|
ImportClientVpnClientCertificateRevocationListCommandInput,
|
|
1808
1812
|
ImportClientVpnClientCertificateRevocationListCommandOutput,
|
|
@@ -2203,6 +2207,10 @@ import {
|
|
|
2203
2207
|
ReplaceTransitGatewayRouteCommandInput,
|
|
2204
2208
|
ReplaceTransitGatewayRouteCommandOutput,
|
|
2205
2209
|
} from "./commands/ReplaceTransitGatewayRouteCommand";
|
|
2210
|
+
import {
|
|
2211
|
+
ReplaceVpnTunnelCommandInput,
|
|
2212
|
+
ReplaceVpnTunnelCommandOutput,
|
|
2213
|
+
} from "./commands/ReplaceVpnTunnelCommand";
|
|
2206
2214
|
import {
|
|
2207
2215
|
ReportInstanceStatusCommandInput,
|
|
2208
2216
|
ReportInstanceStatusCommandOutput,
|
|
@@ -8808,6 +8816,19 @@ export declare class EC2 extends EC2Client {
|
|
|
8808
8816
|
options: __HttpHandlerOptions,
|
|
8809
8817
|
cb: (err: any, data?: GetVpnConnectionDeviceTypesCommandOutput) => void
|
|
8810
8818
|
): void;
|
|
8819
|
+
getVpnTunnelReplacementStatus(
|
|
8820
|
+
args: GetVpnTunnelReplacementStatusCommandInput,
|
|
8821
|
+
options?: __HttpHandlerOptions
|
|
8822
|
+
): Promise<GetVpnTunnelReplacementStatusCommandOutput>;
|
|
8823
|
+
getVpnTunnelReplacementStatus(
|
|
8824
|
+
args: GetVpnTunnelReplacementStatusCommandInput,
|
|
8825
|
+
cb: (err: any, data?: GetVpnTunnelReplacementStatusCommandOutput) => void
|
|
8826
|
+
): void;
|
|
8827
|
+
getVpnTunnelReplacementStatus(
|
|
8828
|
+
args: GetVpnTunnelReplacementStatusCommandInput,
|
|
8829
|
+
options: __HttpHandlerOptions,
|
|
8830
|
+
cb: (err: any, data?: GetVpnTunnelReplacementStatusCommandOutput) => void
|
|
8831
|
+
): void;
|
|
8811
8832
|
importClientVpnClientCertificateRevocationList(
|
|
8812
8833
|
args: ImportClientVpnClientCertificateRevocationListCommandInput,
|
|
8813
8834
|
options?: __HttpHandlerOptions
|
|
@@ -10240,6 +10261,19 @@ export declare class EC2 extends EC2Client {
|
|
|
10240
10261
|
options: __HttpHandlerOptions,
|
|
10241
10262
|
cb: (err: any, data?: ReplaceTransitGatewayRouteCommandOutput) => void
|
|
10242
10263
|
): void;
|
|
10264
|
+
replaceVpnTunnel(
|
|
10265
|
+
args: ReplaceVpnTunnelCommandInput,
|
|
10266
|
+
options?: __HttpHandlerOptions
|
|
10267
|
+
): Promise<ReplaceVpnTunnelCommandOutput>;
|
|
10268
|
+
replaceVpnTunnel(
|
|
10269
|
+
args: ReplaceVpnTunnelCommandInput,
|
|
10270
|
+
cb: (err: any, data?: ReplaceVpnTunnelCommandOutput) => void
|
|
10271
|
+
): void;
|
|
10272
|
+
replaceVpnTunnel(
|
|
10273
|
+
args: ReplaceVpnTunnelCommandInput,
|
|
10274
|
+
options: __HttpHandlerOptions,
|
|
10275
|
+
cb: (err: any, data?: ReplaceVpnTunnelCommandOutput) => void
|
|
10276
|
+
): void;
|
|
10243
10277
|
reportInstanceStatus(
|
|
10244
10278
|
args: ReportInstanceStatusCommandInput,
|
|
10245
10279
|
options?: __HttpHandlerOptions
|
|
@@ -1848,6 +1848,10 @@ import {
|
|
|
1848
1848
|
GetVpnConnectionDeviceTypesCommandInput,
|
|
1849
1849
|
GetVpnConnectionDeviceTypesCommandOutput,
|
|
1850
1850
|
} from "./commands/GetVpnConnectionDeviceTypesCommand";
|
|
1851
|
+
import {
|
|
1852
|
+
GetVpnTunnelReplacementStatusCommandInput,
|
|
1853
|
+
GetVpnTunnelReplacementStatusCommandOutput,
|
|
1854
|
+
} from "./commands/GetVpnTunnelReplacementStatusCommand";
|
|
1851
1855
|
import {
|
|
1852
1856
|
ImportClientVpnClientCertificateRevocationListCommandInput,
|
|
1853
1857
|
ImportClientVpnClientCertificateRevocationListCommandOutput,
|
|
@@ -2248,6 +2252,10 @@ import {
|
|
|
2248
2252
|
ReplaceTransitGatewayRouteCommandInput,
|
|
2249
2253
|
ReplaceTransitGatewayRouteCommandOutput,
|
|
2250
2254
|
} from "./commands/ReplaceTransitGatewayRouteCommand";
|
|
2255
|
+
import {
|
|
2256
|
+
ReplaceVpnTunnelCommandInput,
|
|
2257
|
+
ReplaceVpnTunnelCommandOutput,
|
|
2258
|
+
} from "./commands/ReplaceVpnTunnelCommand";
|
|
2251
2259
|
import {
|
|
2252
2260
|
ReportInstanceStatusCommandInput,
|
|
2253
2261
|
ReportInstanceStatusCommandOutput,
|
|
@@ -2857,6 +2865,7 @@ export type ServiceInputTypes =
|
|
|
2857
2865
|
| GetVerifiedAccessGroupPolicyCommandInput
|
|
2858
2866
|
| GetVpnConnectionDeviceSampleConfigurationCommandInput
|
|
2859
2867
|
| GetVpnConnectionDeviceTypesCommandInput
|
|
2868
|
+
| GetVpnTunnelReplacementStatusCommandInput
|
|
2860
2869
|
| ImportClientVpnClientCertificateRevocationListCommandInput
|
|
2861
2870
|
| ImportImageCommandInput
|
|
2862
2871
|
| ImportInstanceCommandInput
|
|
@@ -2957,6 +2966,7 @@ export type ServiceInputTypes =
|
|
|
2957
2966
|
| ReplaceRouteCommandInput
|
|
2958
2967
|
| ReplaceRouteTableAssociationCommandInput
|
|
2959
2968
|
| ReplaceTransitGatewayRouteCommandInput
|
|
2969
|
+
| ReplaceVpnTunnelCommandInput
|
|
2960
2970
|
| ReportInstanceStatusCommandInput
|
|
2961
2971
|
| RequestSpotFleetCommandInput
|
|
2962
2972
|
| RequestSpotInstancesCommandInput
|
|
@@ -3447,6 +3457,7 @@ export type ServiceOutputTypes =
|
|
|
3447
3457
|
| GetVerifiedAccessGroupPolicyCommandOutput
|
|
3448
3458
|
| GetVpnConnectionDeviceSampleConfigurationCommandOutput
|
|
3449
3459
|
| GetVpnConnectionDeviceTypesCommandOutput
|
|
3460
|
+
| GetVpnTunnelReplacementStatusCommandOutput
|
|
3450
3461
|
| ImportClientVpnClientCertificateRevocationListCommandOutput
|
|
3451
3462
|
| ImportImageCommandOutput
|
|
3452
3463
|
| ImportInstanceCommandOutput
|
|
@@ -3547,6 +3558,7 @@ export type ServiceOutputTypes =
|
|
|
3547
3558
|
| ReplaceRouteCommandOutput
|
|
3548
3559
|
| ReplaceRouteTableAssociationCommandOutput
|
|
3549
3560
|
| ReplaceTransitGatewayRouteCommandOutput
|
|
3561
|
+
| ReplaceVpnTunnelCommandOutput
|
|
3550
3562
|
| ReportInstanceStatusCommandOutput
|
|
3551
3563
|
| RequestSpotFleetCommandOutput
|
|
3552
3564
|
| RequestSpotInstancesCommandOutput
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
EC2ClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../EC2Client";
|
|
14
|
+
import {
|
|
15
|
+
GetVpnTunnelReplacementStatusRequest,
|
|
16
|
+
GetVpnTunnelReplacementStatusResult,
|
|
17
|
+
} from "../models/models_5";
|
|
18
|
+
export interface GetVpnTunnelReplacementStatusCommandInput
|
|
19
|
+
extends GetVpnTunnelReplacementStatusRequest {}
|
|
20
|
+
export interface GetVpnTunnelReplacementStatusCommandOutput
|
|
21
|
+
extends GetVpnTunnelReplacementStatusResult,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetVpnTunnelReplacementStatusCommand extends $Command<
|
|
24
|
+
GetVpnTunnelReplacementStatusCommandInput,
|
|
25
|
+
GetVpnTunnelReplacementStatusCommandOutput,
|
|
26
|
+
EC2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetVpnTunnelReplacementStatusCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetVpnTunnelReplacementStatusCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: EC2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetVpnTunnelReplacementStatusCommandInput,
|
|
37
|
+
GetVpnTunnelReplacementStatusCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
ImportSnapshotRequest,
|
|
16
16
|
ImportSnapshotResult,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_6";
|
|
18
18
|
export interface ImportSnapshotCommandInput extends ImportSnapshotRequest {}
|
|
19
19
|
export interface ImportSnapshotCommandOutput
|
|
20
20
|
extends ImportSnapshotResult,
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
EC2ClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../EC2Client";
|
|
14
|
+
import {
|
|
15
|
+
ReplaceVpnTunnelRequest,
|
|
16
|
+
ReplaceVpnTunnelResult,
|
|
17
|
+
} from "../models/models_6";
|
|
18
|
+
export interface ReplaceVpnTunnelCommandInput extends ReplaceVpnTunnelRequest {}
|
|
19
|
+
export interface ReplaceVpnTunnelCommandOutput
|
|
20
|
+
extends ReplaceVpnTunnelResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ReplaceVpnTunnelCommand extends $Command<
|
|
23
|
+
ReplaceVpnTunnelCommandInput,
|
|
24
|
+
ReplaceVpnTunnelCommandOutput,
|
|
25
|
+
EC2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ReplaceVpnTunnelCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: ReplaceVpnTunnelCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: EC2ClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ReplaceVpnTunnelCommandInput, ReplaceVpnTunnelCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -11,10 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../EC2Client";
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
StartInstancesResult,
|
|
17
|
-
} from "../models/models_6";
|
|
14
|
+
import { StartInstancesRequest } from "../models/models_6";
|
|
15
|
+
import { StartInstancesResult } from "../models/models_7";
|
|
18
16
|
export interface StartInstancesCommandInput extends StartInstancesRequest {}
|
|
19
17
|
export interface StartInstancesCommandOutput
|
|
20
18
|
extends StartInstancesResult,
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
StartNetworkInsightsAccessScopeAnalysisRequest,
|
|
16
16
|
StartNetworkInsightsAccessScopeAnalysisResult,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_7";
|
|
18
18
|
export interface StartNetworkInsightsAccessScopeAnalysisCommandInput
|
|
19
19
|
extends StartNetworkInsightsAccessScopeAnalysisRequest {}
|
|
20
20
|
export interface StartNetworkInsightsAccessScopeAnalysisCommandOutput
|
|
@@ -11,8 +11,10 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../EC2Client";
|
|
14
|
-
import {
|
|
15
|
-
|
|
14
|
+
import {
|
|
15
|
+
StartNetworkInsightsAnalysisRequest,
|
|
16
|
+
StartNetworkInsightsAnalysisResult,
|
|
17
|
+
} from "../models/models_7";
|
|
16
18
|
export interface StartNetworkInsightsAnalysisCommandInput
|
|
17
19
|
extends StartNetworkInsightsAnalysisRequest {}
|
|
18
20
|
export interface StartNetworkInsightsAnalysisCommandOutput
|
|
@@ -449,6 +449,7 @@ export * from "./GetVerifiedAccessEndpointPolicyCommand";
|
|
|
449
449
|
export * from "./GetVerifiedAccessGroupPolicyCommand";
|
|
450
450
|
export * from "./GetVpnConnectionDeviceSampleConfigurationCommand";
|
|
451
451
|
export * from "./GetVpnConnectionDeviceTypesCommand";
|
|
452
|
+
export * from "./GetVpnTunnelReplacementStatusCommand";
|
|
452
453
|
export * from "./ImportClientVpnClientCertificateRevocationListCommand";
|
|
453
454
|
export * from "./ImportImageCommand";
|
|
454
455
|
export * from "./ImportInstanceCommand";
|
|
@@ -549,6 +550,7 @@ export * from "./ReplaceNetworkAclEntryCommand";
|
|
|
549
550
|
export * from "./ReplaceRouteCommand";
|
|
550
551
|
export * from "./ReplaceRouteTableAssociationCommand";
|
|
551
552
|
export * from "./ReplaceTransitGatewayRouteCommand";
|
|
553
|
+
export * from "./ReplaceVpnTunnelCommand";
|
|
552
554
|
export * from "./ReportInstanceStatusCommand";
|
|
553
555
|
export * from "./RequestSpotFleetCommand";
|
|
554
556
|
export * from "./RequestSpotInstancesCommand";
|