@aws-sdk/client-ec2 3.932.0 → 3.933.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 +32 -0
- package/dist-cjs/index.js +371 -5
- package/dist-es/EC2.js +8 -0
- package/dist-es/commands/DescribeInstanceSqlHaHistoryStatesCommand.js +16 -0
- package/dist-es/commands/DescribeInstanceSqlHaStatesCommand.js +16 -0
- package/dist-es/commands/DisableInstanceSqlHaStandbyDetectionsCommand.js +16 -0
- package/dist-es/commands/EnableInstanceSqlHaStandbyDetectionsCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_4.js +10 -6
- package/dist-es/models/models_5.js +6 -0
- package/dist-es/models/models_6.js +0 -12
- package/dist-es/models/models_7.js +12 -11
- package/dist-es/models/models_8.js +11 -0
- package/dist-es/schemas/schemas_0.js +300 -2
- package/dist-types/EC2.d.ts +30 -0
- package/dist-types/EC2Client.d.ts +6 -2
- package/dist-types/commands/DescribeInstanceSqlHaHistoryStatesCommand.d.ts +106 -0
- package/dist-types/commands/DescribeInstanceSqlHaStatesCommand.d.ts +104 -0
- package/dist-types/commands/DescribeInstanceTopologyCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceTypeOfferingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTransitGatewayRouteTablesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTransitGatewayVpcAttachmentsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTransitGatewaysCommand.d.ts +1 -1
- package/dist-types/commands/DisableInstanceSqlHaStandbyDetectionsCommand.d.ts +95 -0
- package/dist-types/commands/EnableInstanceSqlHaStandbyDetectionsCommand.d.ts +102 -0
- package/dist-types/commands/GetDefaultCreditSpecificationCommand.d.ts +1 -1
- package/dist-types/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +1 -1
- package/dist-types/commands/GetEbsEncryptionByDefaultCommand.d.ts +1 -1
- package/dist-types/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +1 -1
- package/dist-types/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/dist-types/commands/ModifyTrafficMirrorSessionCommand.d.ts +1 -1
- package/dist-types/commands/ModifyTransitGatewayCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_4.d.ts +270 -257
- package/dist-types/models/models_5.d.ts +259 -258
- package/dist-types/models/models_6.d.ts +326 -163
- package/dist-types/models/models_7.d.ts +163 -339
- package/dist-types/models/models_8.d.ts +336 -1
- package/dist-types/schemas/schemas_0.d.ts +15 -0
- package/dist-types/ts3.4/EC2.d.ts +88 -0
- package/dist-types/ts3.4/EC2Client.d.ts +24 -0
- package/dist-types/ts3.4/commands/DescribeInstanceSqlHaHistoryStatesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeInstanceSqlHaStatesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeInstanceTopologyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeInstanceTypeOfferingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTablesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTransitGatewayVpcAttachmentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTransitGatewaysCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisableInstanceSqlHaStandbyDetectionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/EnableInstanceSqlHaStandbyDetectionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDefaultCreditSpecificationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEbsEncryptionByDefaultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyTrafficMirrorSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyTransitGatewayCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_4.d.ts +46 -44
- package/dist-types/ts3.4/models/models_5.d.ts +44 -43
- package/dist-types/ts3.4/models/models_6.d.ts +62 -53
- package/dist-types/ts3.4/models/models_7.d.ts +52 -96
- package/dist-types/ts3.4/models/models_8.d.ts +91 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
- package/package.json +3 -3
package/dist-es/EC2.js
CHANGED
|
@@ -312,6 +312,8 @@ import { DescribeInstanceEventNotificationAttributesCommand, } from "./commands/
|
|
|
312
312
|
import { DescribeInstanceEventWindowsCommand, } from "./commands/DescribeInstanceEventWindowsCommand";
|
|
313
313
|
import { DescribeInstanceImageMetadataCommand, } from "./commands/DescribeInstanceImageMetadataCommand";
|
|
314
314
|
import { DescribeInstancesCommand, } from "./commands/DescribeInstancesCommand";
|
|
315
|
+
import { DescribeInstanceSqlHaHistoryStatesCommand, } from "./commands/DescribeInstanceSqlHaHistoryStatesCommand";
|
|
316
|
+
import { DescribeInstanceSqlHaStatesCommand, } from "./commands/DescribeInstanceSqlHaStatesCommand";
|
|
315
317
|
import { DescribeInstanceStatusCommand, } from "./commands/DescribeInstanceStatusCommand";
|
|
316
318
|
import { DescribeInstanceTopologyCommand, } from "./commands/DescribeInstanceTopologyCommand";
|
|
317
319
|
import { DescribeInstanceTypeOfferingsCommand, } from "./commands/DescribeInstanceTypeOfferingsCommand";
|
|
@@ -442,6 +444,7 @@ import { DisableImageBlockPublicAccessCommand, } from "./commands/DisableImageBl
|
|
|
442
444
|
import { DisableImageCommand, } from "./commands/DisableImageCommand";
|
|
443
445
|
import { DisableImageDeprecationCommand, } from "./commands/DisableImageDeprecationCommand";
|
|
444
446
|
import { DisableImageDeregistrationProtectionCommand, } from "./commands/DisableImageDeregistrationProtectionCommand";
|
|
447
|
+
import { DisableInstanceSqlHaStandbyDetectionsCommand, } from "./commands/DisableInstanceSqlHaStandbyDetectionsCommand";
|
|
445
448
|
import { DisableIpamOrganizationAdminAccountCommand, } from "./commands/DisableIpamOrganizationAdminAccountCommand";
|
|
446
449
|
import { DisableRouteServerPropagationCommand, } from "./commands/DisableRouteServerPropagationCommand";
|
|
447
450
|
import { DisableSerialConsoleAccessCommand, } from "./commands/DisableSerialConsoleAccessCommand";
|
|
@@ -479,6 +482,7 @@ import { EnableImageBlockPublicAccessCommand, } from "./commands/EnableImageBloc
|
|
|
479
482
|
import { EnableImageCommand } from "./commands/EnableImageCommand";
|
|
480
483
|
import { EnableImageDeprecationCommand, } from "./commands/EnableImageDeprecationCommand";
|
|
481
484
|
import { EnableImageDeregistrationProtectionCommand, } from "./commands/EnableImageDeregistrationProtectionCommand";
|
|
485
|
+
import { EnableInstanceSqlHaStandbyDetectionsCommand, } from "./commands/EnableInstanceSqlHaStandbyDetectionsCommand";
|
|
482
486
|
import { EnableIpamOrganizationAdminAccountCommand, } from "./commands/EnableIpamOrganizationAdminAccountCommand";
|
|
483
487
|
import { EnableReachabilityAnalyzerOrganizationSharingCommand, } from "./commands/EnableReachabilityAnalyzerOrganizationSharingCommand";
|
|
484
488
|
import { EnableRouteServerPropagationCommand, } from "./commands/EnableRouteServerPropagationCommand";
|
|
@@ -1031,6 +1035,8 @@ const commands = {
|
|
|
1031
1035
|
DescribeInstanceEventWindowsCommand,
|
|
1032
1036
|
DescribeInstanceImageMetadataCommand,
|
|
1033
1037
|
DescribeInstancesCommand,
|
|
1038
|
+
DescribeInstanceSqlHaHistoryStatesCommand,
|
|
1039
|
+
DescribeInstanceSqlHaStatesCommand,
|
|
1034
1040
|
DescribeInstanceStatusCommand,
|
|
1035
1041
|
DescribeInstanceTopologyCommand,
|
|
1036
1042
|
DescribeInstanceTypeOfferingsCommand,
|
|
@@ -1161,6 +1167,7 @@ const commands = {
|
|
|
1161
1167
|
DisableImageBlockPublicAccessCommand,
|
|
1162
1168
|
DisableImageDeprecationCommand,
|
|
1163
1169
|
DisableImageDeregistrationProtectionCommand,
|
|
1170
|
+
DisableInstanceSqlHaStandbyDetectionsCommand,
|
|
1164
1171
|
DisableIpamOrganizationAdminAccountCommand,
|
|
1165
1172
|
DisableRouteServerPropagationCommand,
|
|
1166
1173
|
DisableSerialConsoleAccessCommand,
|
|
@@ -1198,6 +1205,7 @@ const commands = {
|
|
|
1198
1205
|
EnableImageBlockPublicAccessCommand,
|
|
1199
1206
|
EnableImageDeprecationCommand,
|
|
1200
1207
|
EnableImageDeregistrationProtectionCommand,
|
|
1208
|
+
EnableInstanceSqlHaStandbyDetectionsCommand,
|
|
1201
1209
|
EnableIpamOrganizationAdminAccountCommand,
|
|
1202
1210
|
EnableReachabilityAnalyzerOrganizationSharingCommand,
|
|
1203
1211
|
EnableRouteServerPropagationCommand,
|
|
@@ -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 { DescribeInstanceSqlHaHistoryStates } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeInstanceSqlHaHistoryStatesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonEC2", "DescribeInstanceSqlHaHistoryStates", {})
|
|
13
|
+
.n("EC2Client", "DescribeInstanceSqlHaHistoryStatesCommand")
|
|
14
|
+
.sc(DescribeInstanceSqlHaHistoryStates)
|
|
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 { DescribeInstanceSqlHaStates } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeInstanceSqlHaStatesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonEC2", "DescribeInstanceSqlHaStates", {})
|
|
13
|
+
.n("EC2Client", "DescribeInstanceSqlHaStatesCommand")
|
|
14
|
+
.sc(DescribeInstanceSqlHaStates)
|
|
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 { DisableInstanceSqlHaStandbyDetections } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DisableInstanceSqlHaStandbyDetectionsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonEC2", "DisableInstanceSqlHaStandbyDetections", {})
|
|
13
|
+
.n("EC2Client", "DisableInstanceSqlHaStandbyDetectionsCommand")
|
|
14
|
+
.sc(DisableInstanceSqlHaStandbyDetections)
|
|
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 { EnableInstanceSqlHaStandbyDetections } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class EnableInstanceSqlHaStandbyDetectionsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonEC2", "EnableInstanceSqlHaStandbyDetections", {})
|
|
13
|
+
.n("EC2Client", "EnableInstanceSqlHaStandbyDetectionsCommand")
|
|
14
|
+
.sc(EnableInstanceSqlHaStandbyDetections)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -310,6 +310,8 @@ export * from "./DescribeInstanceCreditSpecificationsCommand";
|
|
|
310
310
|
export * from "./DescribeInstanceEventNotificationAttributesCommand";
|
|
311
311
|
export * from "./DescribeInstanceEventWindowsCommand";
|
|
312
312
|
export * from "./DescribeInstanceImageMetadataCommand";
|
|
313
|
+
export * from "./DescribeInstanceSqlHaHistoryStatesCommand";
|
|
314
|
+
export * from "./DescribeInstanceSqlHaStatesCommand";
|
|
313
315
|
export * from "./DescribeInstanceStatusCommand";
|
|
314
316
|
export * from "./DescribeInstanceTopologyCommand";
|
|
315
317
|
export * from "./DescribeInstanceTypeOfferingsCommand";
|
|
@@ -441,6 +443,7 @@ export * from "./DisableImageBlockPublicAccessCommand";
|
|
|
441
443
|
export * from "./DisableImageCommand";
|
|
442
444
|
export * from "./DisableImageDeprecationCommand";
|
|
443
445
|
export * from "./DisableImageDeregistrationProtectionCommand";
|
|
446
|
+
export * from "./DisableInstanceSqlHaStandbyDetectionsCommand";
|
|
444
447
|
export * from "./DisableIpamOrganizationAdminAccountCommand";
|
|
445
448
|
export * from "./DisableRouteServerPropagationCommand";
|
|
446
449
|
export * from "./DisableSerialConsoleAccessCommand";
|
|
@@ -478,6 +481,7 @@ export * from "./EnableImageBlockPublicAccessCommand";
|
|
|
478
481
|
export * from "./EnableImageCommand";
|
|
479
482
|
export * from "./EnableImageDeprecationCommand";
|
|
480
483
|
export * from "./EnableImageDeregistrationProtectionCommand";
|
|
484
|
+
export * from "./EnableInstanceSqlHaStandbyDetectionsCommand";
|
|
481
485
|
export * from "./EnableIpamOrganizationAdminAccountCommand";
|
|
482
486
|
export * from "./EnableReachabilityAnalyzerOrganizationSharingCommand";
|
|
483
487
|
export * from "./EnableRouteServerPropagationCommand";
|
|
@@ -291,6 +291,16 @@ export const MonitoringState = {
|
|
|
291
291
|
enabled: "enabled",
|
|
292
292
|
pending: "pending",
|
|
293
293
|
};
|
|
294
|
+
export const HaStatus = {
|
|
295
|
+
active: "active",
|
|
296
|
+
invalid: "invalid",
|
|
297
|
+
processing: "processing",
|
|
298
|
+
standby: "standby",
|
|
299
|
+
};
|
|
300
|
+
export const SqlServerLicenseUsage = {
|
|
301
|
+
full: "full",
|
|
302
|
+
waived: "waived",
|
|
303
|
+
};
|
|
294
304
|
export const StatusName = {
|
|
295
305
|
reachability: "reachability",
|
|
296
306
|
};
|
|
@@ -314,9 +324,3 @@ export const EventCode = {
|
|
|
314
324
|
system_maintenance: "system-maintenance",
|
|
315
325
|
system_reboot: "system-reboot",
|
|
316
326
|
};
|
|
317
|
-
export const LocationType = {
|
|
318
|
-
availability_zone: "availability-zone",
|
|
319
|
-
availability_zone_id: "availability-zone-id",
|
|
320
|
-
outpost: "outpost",
|
|
321
|
-
region: "region",
|
|
322
|
-
};
|
|
@@ -185,15 +185,3 @@ export const CapacityTenancy = {
|
|
|
185
185
|
DEDICATED: "dedicated",
|
|
186
186
|
DEFAULT: "default",
|
|
187
187
|
};
|
|
188
|
-
export const UnlimitedSupportedInstanceFamily = {
|
|
189
|
-
t2: "t2",
|
|
190
|
-
t3: "t3",
|
|
191
|
-
t3a: "t3a",
|
|
192
|
-
t4g: "t4g",
|
|
193
|
-
};
|
|
194
|
-
export const PartitionLoadFrequency = {
|
|
195
|
-
DAILY: "daily",
|
|
196
|
-
MONTHLY: "monthly",
|
|
197
|
-
NONE: "none",
|
|
198
|
-
WEEKLY: "weekly",
|
|
199
|
-
};
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
export const UnlimitedSupportedInstanceFamily = {
|
|
2
|
+
t2: "t2",
|
|
3
|
+
t3: "t3",
|
|
4
|
+
t3a: "t3a",
|
|
5
|
+
t4g: "t4g",
|
|
6
|
+
};
|
|
7
|
+
export const PartitionLoadFrequency = {
|
|
8
|
+
DAILY: "daily",
|
|
9
|
+
MONTHLY: "monthly",
|
|
10
|
+
NONE: "none",
|
|
11
|
+
WEEKLY: "weekly",
|
|
12
|
+
};
|
|
1
13
|
export const EkPubKeyFormat = {
|
|
2
14
|
der: "der",
|
|
3
15
|
tpmt: "tpmt",
|
|
@@ -120,14 +132,3 @@ export const PublicIpDnsOption = {
|
|
|
120
132
|
export const TargetStorageTier = {
|
|
121
133
|
archive: "archive",
|
|
122
134
|
};
|
|
123
|
-
export const TrafficMirrorFilterRuleField = {
|
|
124
|
-
description: "description",
|
|
125
|
-
destination_port_range: "destination-port-range",
|
|
126
|
-
protocol: "protocol",
|
|
127
|
-
source_port_range: "source-port-range",
|
|
128
|
-
};
|
|
129
|
-
export const TrafficMirrorSessionField = {
|
|
130
|
-
description: "description",
|
|
131
|
-
packet_length: "packet-length",
|
|
132
|
-
virtual_network_id: "virtual-network-id",
|
|
133
|
-
};
|
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
export const TrafficMirrorFilterRuleField = {
|
|
2
|
+
description: "description",
|
|
3
|
+
destination_port_range: "destination-port-range",
|
|
4
|
+
protocol: "protocol",
|
|
5
|
+
source_port_range: "source-port-range",
|
|
6
|
+
};
|
|
7
|
+
export const TrafficMirrorSessionField = {
|
|
8
|
+
description: "description",
|
|
9
|
+
packet_length: "packet-length",
|
|
10
|
+
virtual_network_id: "virtual-network-id",
|
|
11
|
+
};
|
|
1
12
|
export const VpcTenancy = {
|
|
2
13
|
default: "default",
|
|
3
14
|
};
|
|
@@ -1514,6 +1514,15 @@ const _DIRescribem = "DescribeImageReferences";
|
|
|
1514
1514
|
const _DIRi = "DisableImageRequest";
|
|
1515
1515
|
const _DIRis = "DisableImageResult";
|
|
1516
1516
|
const _DIS = "DiskImageSize";
|
|
1517
|
+
const _DISHHS = "DescribeInstanceSqlHaHistoryStates";
|
|
1518
|
+
const _DISHHSR = "DescribeInstanceSqlHaHistoryStatesRequest";
|
|
1519
|
+
const _DISHHSRe = "DescribeInstanceSqlHaHistoryStatesResult";
|
|
1520
|
+
const _DISHS = "DescribeInstanceSqlHaStates";
|
|
1521
|
+
const _DISHSD = "DisableInstanceSqlHaStandbyDetections";
|
|
1522
|
+
const _DISHSDR = "DisableInstanceSqlHaStandbyDetectionsRequest";
|
|
1523
|
+
const _DISHSDRi = "DisableInstanceSqlHaStandbyDetectionsResult";
|
|
1524
|
+
const _DISHSR = "DescribeInstanceSqlHaStatesRequest";
|
|
1525
|
+
const _DISHSRe = "DescribeInstanceSqlHaStatesResult";
|
|
1517
1526
|
const _DISI = "DestinationIpamScopeId";
|
|
1518
1527
|
const _DISR = "DeleteIpamScopeRequest";
|
|
1519
1528
|
const _DISRe = "DeleteIpamScopeResult";
|
|
@@ -2316,6 +2325,9 @@ const _EIR = "EnableImageRequest";
|
|
|
2316
2325
|
const _EIRn = "EnableImageResult";
|
|
2317
2326
|
const _EIRx = "ExportImageRequest";
|
|
2318
2327
|
const _EIRxp = "ExportImageResult";
|
|
2328
|
+
const _EISHSD = "EnableInstanceSqlHaStandbyDetections";
|
|
2329
|
+
const _EISHSDR = "EnableInstanceSqlHaStandbyDetectionsRequest";
|
|
2330
|
+
const _EISHSDRn = "EnableInstanceSqlHaStandbyDetectionsResult";
|
|
2319
2331
|
const _EIT = "ExportImageTasks";
|
|
2320
2332
|
const _EITI = "ExportImageTaskIds";
|
|
2321
2333
|
const _EITIL = "ExportImageTaskIdList";
|
|
@@ -2803,6 +2815,7 @@ const _HRi = "HistoryRecords";
|
|
|
2803
2815
|
const _HRis = "HistoryRecord";
|
|
2804
2816
|
const _HRo = "HostReservation";
|
|
2805
2817
|
const _HS = "HibernationSupported";
|
|
2818
|
+
const _HSa = "HaStatus";
|
|
2806
2819
|
const _HT = "HttpTokens";
|
|
2807
2820
|
const _HTo = "HostnameType";
|
|
2808
2821
|
const _HZI = "HostedZoneId";
|
|
@@ -2984,6 +2997,7 @@ const _IIT = "ImportImageTasks";
|
|
|
2984
2997
|
const _IITD = "ImportInstanceTaskDetails";
|
|
2985
2998
|
const _IITL = "ImportImageTaskList";
|
|
2986
2999
|
const _IITm = "ImportImageTask";
|
|
3000
|
+
const _IIUSL = "InstanceIdUpdateStringList";
|
|
2987
3001
|
const _IIVDI = "ImportInstanceVolumeDetailItem";
|
|
2988
3002
|
const _IIVDS = "ImportInstanceVolumeDetailSet";
|
|
2989
3003
|
const _IIm = "ImageId";
|
|
@@ -4360,6 +4374,7 @@ const _PSr = "PreviousState";
|
|
|
4360
4374
|
const _PSre = "PreviousStatus";
|
|
4361
4375
|
const _PSri = "PriceSchedules";
|
|
4362
4376
|
const _PSric = "PriceSchedule";
|
|
4377
|
+
const _PSro = "ProcessingStatus";
|
|
4363
4378
|
const _PSu = "PurchaseSet";
|
|
4364
4379
|
const _PT = "PrincipalType";
|
|
4365
4380
|
const _PTGI = "PeerTransitGatewayId";
|
|
@@ -4525,6 +4540,7 @@ const _RILI = "ReservedInstancesListingId";
|
|
|
4525
4540
|
const _RILL = "ReservedInstancesListingList";
|
|
4526
4541
|
const _RILP = "ReservedInstanceLimitPrice";
|
|
4527
4542
|
const _RILe = "ReservedInstancesListing";
|
|
4543
|
+
const _RILeg = "RegisteredInstanceList";
|
|
4528
4544
|
const _RILes = "ReservedInstancesList";
|
|
4529
4545
|
const _RIM = "ReservedInstancesModifications";
|
|
4530
4546
|
const _RIMC = "ReservationInstanceMatchCriteria";
|
|
@@ -4570,7 +4586,8 @@ const _RIVS = "ReservedInstanceValueSet";
|
|
|
4570
4586
|
const _RIa = "RamdiskId";
|
|
4571
4587
|
const _RIe = "ReservationId";
|
|
4572
4588
|
const _RIeb = "RebootInstances";
|
|
4573
|
-
const _RIeg = "
|
|
4589
|
+
const _RIeg = "RegisteredInstance";
|
|
4590
|
+
const _RIegi = "RegisterImage";
|
|
4574
4591
|
const _RIep = "ReportIds";
|
|
4575
4592
|
const _RIeq = "RequesterId";
|
|
4576
4593
|
const _RIes = "ResourceIds";
|
|
@@ -5078,12 +5095,14 @@ const _SRt = "StateReason";
|
|
|
5078
5095
|
const _SRu = "SupportedRegions";
|
|
5079
5096
|
const _SRup = "SupportedRegion";
|
|
5080
5097
|
const _SS = "SseSpecification";
|
|
5098
|
+
const _SSC = "SqlServerCredentials";
|
|
5081
5099
|
const _SSG = "StaleSecurityGroup";
|
|
5082
5100
|
const _SSGN = "SourceSecurityGroupName";
|
|
5083
5101
|
const _SSGOI = "SourceSecurityGroupOwnerId";
|
|
5084
5102
|
const _SSGS = "StaleSecurityGroupSet";
|
|
5085
5103
|
const _SSI = "SourceSnapshotId";
|
|
5086
5104
|
const _SSIo = "SourceSnapshotIds";
|
|
5105
|
+
const _SSLU = "SqlServerLicenseUsage";
|
|
5087
5106
|
const _SSP = "SelfServicePortal";
|
|
5088
5107
|
const _SSPU = "SelfServicePortalUrl";
|
|
5089
5108
|
const _SSS = "StaticSourcesSupport";
|
|
@@ -6395,6 +6414,7 @@ const _hRI = "hostReservationId";
|
|
|
6395
6414
|
const _hRS = "historyRecordSet";
|
|
6396
6415
|
const _hRSo = "hostReservationSet";
|
|
6397
6416
|
const _hS = "hostSet";
|
|
6417
|
+
const _hSa = "haStatus";
|
|
6398
6418
|
const _hSi = "hibernationSupported";
|
|
6399
6419
|
const _hT = "httpTokens";
|
|
6400
6420
|
const _hTo = "hostnameType";
|
|
@@ -7074,6 +7094,7 @@ const _pSre = "previousStatus";
|
|
|
7074
7094
|
const _pSri = "priceSchedules";
|
|
7075
7095
|
const _pSrin = "principalSet";
|
|
7076
7096
|
const _pSro = "protocolSet";
|
|
7097
|
+
const _pSroc = "processingStatus";
|
|
7077
7098
|
const _pT = "principalType";
|
|
7078
7099
|
const _pTGI = "peerTransitGatewayId";
|
|
7079
7100
|
const _pTr = "provisionTime";
|
|
@@ -7381,9 +7402,11 @@ const _sRe = "serviceResource";
|
|
|
7381
7402
|
const _sRo = "sourceResource";
|
|
7382
7403
|
const _sRt = "stateReason";
|
|
7383
7404
|
const _sS = "snapshotSet";
|
|
7405
|
+
const _sSC = "sqlServerCredentials";
|
|
7384
7406
|
const _sSGN = "sourceSecurityGroupName";
|
|
7385
7407
|
const _sSGOI = "sourceSecurityGroupOwnerId";
|
|
7386
7408
|
const _sSGS = "staleSecurityGroupSet";
|
|
7409
|
+
const _sSLU = "sqlServerLicenseUsage";
|
|
7387
7410
|
const _sSPU = "selfServicePortalUrl";
|
|
7388
7411
|
const _sSS = "staticSourcesSupport";
|
|
7389
7412
|
const _sSSPA = "selfServiceSamlProviderArn";
|
|
@@ -24343,6 +24366,102 @@ export var DescribeInstanceImageMetadataResult = [
|
|
|
24343
24366
|
],
|
|
24344
24367
|
],
|
|
24345
24368
|
];
|
|
24369
|
+
export var DescribeInstanceSqlHaHistoryStatesRequest = [
|
|
24370
|
+
3,
|
|
24371
|
+
n0,
|
|
24372
|
+
_DISHHSR,
|
|
24373
|
+
0,
|
|
24374
|
+
[_IIn, _ST, _ETnd, _NTe, _MR, _Fi, _DR],
|
|
24375
|
+
[
|
|
24376
|
+
[
|
|
24377
|
+
() => InstanceIdStringList,
|
|
24378
|
+
{
|
|
24379
|
+
[_xN]: _II,
|
|
24380
|
+
},
|
|
24381
|
+
],
|
|
24382
|
+
4,
|
|
24383
|
+
4,
|
|
24384
|
+
0,
|
|
24385
|
+
1,
|
|
24386
|
+
[
|
|
24387
|
+
() => FilterList,
|
|
24388
|
+
{
|
|
24389
|
+
[_xN]: _Fil,
|
|
24390
|
+
},
|
|
24391
|
+
],
|
|
24392
|
+
2,
|
|
24393
|
+
],
|
|
24394
|
+
];
|
|
24395
|
+
export var DescribeInstanceSqlHaHistoryStatesResult = [
|
|
24396
|
+
3,
|
|
24397
|
+
n0,
|
|
24398
|
+
_DISHHSRe,
|
|
24399
|
+
0,
|
|
24400
|
+
[_Ins, _NTe],
|
|
24401
|
+
[
|
|
24402
|
+
[
|
|
24403
|
+
() => RegisteredInstanceList,
|
|
24404
|
+
{
|
|
24405
|
+
[_eQN]: `InstanceSet`,
|
|
24406
|
+
[_xN]: _iSns,
|
|
24407
|
+
},
|
|
24408
|
+
],
|
|
24409
|
+
[
|
|
24410
|
+
0,
|
|
24411
|
+
{
|
|
24412
|
+
[_eQN]: `NextToken`,
|
|
24413
|
+
[_xN]: _nTe,
|
|
24414
|
+
},
|
|
24415
|
+
],
|
|
24416
|
+
],
|
|
24417
|
+
];
|
|
24418
|
+
export var DescribeInstanceSqlHaStatesRequest = [
|
|
24419
|
+
3,
|
|
24420
|
+
n0,
|
|
24421
|
+
_DISHSR,
|
|
24422
|
+
0,
|
|
24423
|
+
[_IIn, _NTe, _MR, _Fi, _DR],
|
|
24424
|
+
[
|
|
24425
|
+
[
|
|
24426
|
+
() => InstanceIdStringList,
|
|
24427
|
+
{
|
|
24428
|
+
[_xN]: _II,
|
|
24429
|
+
},
|
|
24430
|
+
],
|
|
24431
|
+
0,
|
|
24432
|
+
1,
|
|
24433
|
+
[
|
|
24434
|
+
() => FilterList,
|
|
24435
|
+
{
|
|
24436
|
+
[_xN]: _Fil,
|
|
24437
|
+
},
|
|
24438
|
+
],
|
|
24439
|
+
2,
|
|
24440
|
+
],
|
|
24441
|
+
];
|
|
24442
|
+
export var DescribeInstanceSqlHaStatesResult = [
|
|
24443
|
+
3,
|
|
24444
|
+
n0,
|
|
24445
|
+
_DISHSRe,
|
|
24446
|
+
0,
|
|
24447
|
+
[_Ins, _NTe],
|
|
24448
|
+
[
|
|
24449
|
+
[
|
|
24450
|
+
() => RegisteredInstanceList,
|
|
24451
|
+
{
|
|
24452
|
+
[_eQN]: `InstanceSet`,
|
|
24453
|
+
[_xN]: _iSns,
|
|
24454
|
+
},
|
|
24455
|
+
],
|
|
24456
|
+
[
|
|
24457
|
+
0,
|
|
24458
|
+
{
|
|
24459
|
+
[_eQN]: `NextToken`,
|
|
24460
|
+
[_xN]: _nTe,
|
|
24461
|
+
},
|
|
24462
|
+
],
|
|
24463
|
+
],
|
|
24464
|
+
];
|
|
24346
24465
|
export var DescribeInstancesRequest = [
|
|
24347
24466
|
3,
|
|
24348
24467
|
n0,
|
|
@@ -30708,6 +30827,38 @@ export var DisableImageResult = [
|
|
|
30708
30827
|
],
|
|
30709
30828
|
],
|
|
30710
30829
|
];
|
|
30830
|
+
export var DisableInstanceSqlHaStandbyDetectionsRequest = [
|
|
30831
|
+
3,
|
|
30832
|
+
n0,
|
|
30833
|
+
_DISHSDR,
|
|
30834
|
+
0,
|
|
30835
|
+
[_IIn, _DR],
|
|
30836
|
+
[
|
|
30837
|
+
[
|
|
30838
|
+
() => InstanceIdUpdateStringList,
|
|
30839
|
+
{
|
|
30840
|
+
[_xN]: _II,
|
|
30841
|
+
},
|
|
30842
|
+
],
|
|
30843
|
+
2,
|
|
30844
|
+
],
|
|
30845
|
+
];
|
|
30846
|
+
export var DisableInstanceSqlHaStandbyDetectionsResult = [
|
|
30847
|
+
3,
|
|
30848
|
+
n0,
|
|
30849
|
+
_DISHSDRi,
|
|
30850
|
+
0,
|
|
30851
|
+
[_Ins],
|
|
30852
|
+
[
|
|
30853
|
+
[
|
|
30854
|
+
() => RegisteredInstanceList,
|
|
30855
|
+
{
|
|
30856
|
+
[_eQN]: `InstanceSet`,
|
|
30857
|
+
[_xN]: _iSns,
|
|
30858
|
+
},
|
|
30859
|
+
],
|
|
30860
|
+
],
|
|
30861
|
+
];
|
|
30711
30862
|
export var DisableIpamOrganizationAdminAccountRequest = [
|
|
30712
30863
|
3,
|
|
30713
30864
|
n0,
|
|
@@ -32767,6 +32918,39 @@ export var EnableImageResult = [
|
|
|
32767
32918
|
],
|
|
32768
32919
|
],
|
|
32769
32920
|
];
|
|
32921
|
+
export var EnableInstanceSqlHaStandbyDetectionsRequest = [
|
|
32922
|
+
3,
|
|
32923
|
+
n0,
|
|
32924
|
+
_EISHSDR,
|
|
32925
|
+
0,
|
|
32926
|
+
[_IIn, _SSC, _DR],
|
|
32927
|
+
[
|
|
32928
|
+
[
|
|
32929
|
+
() => InstanceIdUpdateStringList,
|
|
32930
|
+
{
|
|
32931
|
+
[_xN]: _II,
|
|
32932
|
+
},
|
|
32933
|
+
],
|
|
32934
|
+
0,
|
|
32935
|
+
2,
|
|
32936
|
+
],
|
|
32937
|
+
];
|
|
32938
|
+
export var EnableInstanceSqlHaStandbyDetectionsResult = [
|
|
32939
|
+
3,
|
|
32940
|
+
n0,
|
|
32941
|
+
_EISHSDRn,
|
|
32942
|
+
0,
|
|
32943
|
+
[_Ins],
|
|
32944
|
+
[
|
|
32945
|
+
[
|
|
32946
|
+
() => RegisteredInstanceList,
|
|
32947
|
+
{
|
|
32948
|
+
[_eQN]: `InstanceSet`,
|
|
32949
|
+
[_xN]: _iSns,
|
|
32950
|
+
},
|
|
32951
|
+
],
|
|
32952
|
+
],
|
|
32953
|
+
];
|
|
32770
32954
|
export var EnableIpamOrganizationAdminAccountRequest = [3, n0, _EIOAAR, 0, [_DR, _DAAI], [2, 0]];
|
|
32771
32955
|
export var EnableIpamOrganizationAdminAccountResult = [
|
|
32772
32956
|
3,
|
|
@@ -54735,6 +54919,64 @@ export var RegionalSummary = [
|
|
|
54735
54919
|
],
|
|
54736
54920
|
],
|
|
54737
54921
|
];
|
|
54922
|
+
export var RegisteredInstance = [
|
|
54923
|
+
3,
|
|
54924
|
+
n0,
|
|
54925
|
+
_RIeg,
|
|
54926
|
+
0,
|
|
54927
|
+
[_II, _SSLU, _HSa, _PSro, _LUTa, _SSC, _T],
|
|
54928
|
+
[
|
|
54929
|
+
[
|
|
54930
|
+
0,
|
|
54931
|
+
{
|
|
54932
|
+
[_eQN]: `InstanceId`,
|
|
54933
|
+
[_xN]: _iI,
|
|
54934
|
+
},
|
|
54935
|
+
],
|
|
54936
|
+
[
|
|
54937
|
+
0,
|
|
54938
|
+
{
|
|
54939
|
+
[_eQN]: `SqlServerLicenseUsage`,
|
|
54940
|
+
[_xN]: _sSLU,
|
|
54941
|
+
},
|
|
54942
|
+
],
|
|
54943
|
+
[
|
|
54944
|
+
0,
|
|
54945
|
+
{
|
|
54946
|
+
[_eQN]: `HaStatus`,
|
|
54947
|
+
[_xN]: _hSa,
|
|
54948
|
+
},
|
|
54949
|
+
],
|
|
54950
|
+
[
|
|
54951
|
+
0,
|
|
54952
|
+
{
|
|
54953
|
+
[_eQN]: `ProcessingStatus`,
|
|
54954
|
+
[_xN]: _pSroc,
|
|
54955
|
+
},
|
|
54956
|
+
],
|
|
54957
|
+
[
|
|
54958
|
+
4,
|
|
54959
|
+
{
|
|
54960
|
+
[_eQN]: `LastUpdatedTime`,
|
|
54961
|
+
[_xN]: _lUTa,
|
|
54962
|
+
},
|
|
54963
|
+
],
|
|
54964
|
+
[
|
|
54965
|
+
0,
|
|
54966
|
+
{
|
|
54967
|
+
[_eQN]: `SqlServerCredentials`,
|
|
54968
|
+
[_xN]: _sSC,
|
|
54969
|
+
},
|
|
54970
|
+
],
|
|
54971
|
+
[
|
|
54972
|
+
() => TagList,
|
|
54973
|
+
{
|
|
54974
|
+
[_eQN]: `TagSet`,
|
|
54975
|
+
[_xN]: _tS,
|
|
54976
|
+
},
|
|
54977
|
+
],
|
|
54978
|
+
],
|
|
54979
|
+
];
|
|
54738
54980
|
export var RegisterImageRequest = [
|
|
54739
54981
|
3,
|
|
54740
54982
|
n0,
|
|
@@ -71882,6 +72124,18 @@ export var InstanceIdStringList = [
|
|
|
71882
72124
|
},
|
|
71883
72125
|
],
|
|
71884
72126
|
];
|
|
72127
|
+
export var InstanceIdUpdateStringList = [
|
|
72128
|
+
1,
|
|
72129
|
+
n0,
|
|
72130
|
+
_IIUSL,
|
|
72131
|
+
0,
|
|
72132
|
+
[
|
|
72133
|
+
0,
|
|
72134
|
+
{
|
|
72135
|
+
[_xN]: _it,
|
|
72136
|
+
},
|
|
72137
|
+
],
|
|
72138
|
+
];
|
|
71885
72139
|
export var InstanceImageMetadataList = [
|
|
71886
72140
|
1,
|
|
71887
72141
|
n0,
|
|
@@ -74444,6 +74698,18 @@ export var RegionNameStringList = [
|
|
|
74444
74698
|
},
|
|
74445
74699
|
],
|
|
74446
74700
|
];
|
|
74701
|
+
export var RegisteredInstanceList = [
|
|
74702
|
+
1,
|
|
74703
|
+
n0,
|
|
74704
|
+
_RILeg,
|
|
74705
|
+
0,
|
|
74706
|
+
[
|
|
74707
|
+
() => RegisteredInstance,
|
|
74708
|
+
{
|
|
74709
|
+
[_xN]: _it,
|
|
74710
|
+
},
|
|
74711
|
+
],
|
|
74712
|
+
];
|
|
74447
74713
|
export var RemoveIpamOperatingRegionSet = [1, n0, _RIORS, 0, () => RemoveIpamOperatingRegion];
|
|
74448
74714
|
export var RemoveIpamOrganizationalUnitExclusionSet = [
|
|
74449
74715
|
1,
|
|
@@ -79363,6 +79629,22 @@ export var DescribeInstances = [
|
|
|
79363
79629
|
() => DescribeInstancesRequest,
|
|
79364
79630
|
() => DescribeInstancesResult,
|
|
79365
79631
|
];
|
|
79632
|
+
export var DescribeInstanceSqlHaHistoryStates = [
|
|
79633
|
+
9,
|
|
79634
|
+
n0,
|
|
79635
|
+
_DISHHS,
|
|
79636
|
+
0,
|
|
79637
|
+
() => DescribeInstanceSqlHaHistoryStatesRequest,
|
|
79638
|
+
() => DescribeInstanceSqlHaHistoryStatesResult,
|
|
79639
|
+
];
|
|
79640
|
+
export var DescribeInstanceSqlHaStates = [
|
|
79641
|
+
9,
|
|
79642
|
+
n0,
|
|
79643
|
+
_DISHS,
|
|
79644
|
+
0,
|
|
79645
|
+
() => DescribeInstanceSqlHaStatesRequest,
|
|
79646
|
+
() => DescribeInstanceSqlHaStatesResult,
|
|
79647
|
+
];
|
|
79366
79648
|
export var DescribeInstanceStatus = [
|
|
79367
79649
|
9,
|
|
79368
79650
|
n0,
|
|
@@ -80382,6 +80664,14 @@ export var DisableImageDeregistrationProtection = [
|
|
|
80382
80664
|
() => DisableImageDeregistrationProtectionRequest,
|
|
80383
80665
|
() => DisableImageDeregistrationProtectionResult,
|
|
80384
80666
|
];
|
|
80667
|
+
export var DisableInstanceSqlHaStandbyDetections = [
|
|
80668
|
+
9,
|
|
80669
|
+
n0,
|
|
80670
|
+
_DISHSD,
|
|
80671
|
+
0,
|
|
80672
|
+
() => DisableInstanceSqlHaStandbyDetectionsRequest,
|
|
80673
|
+
() => DisableInstanceSqlHaStandbyDetectionsResult,
|
|
80674
|
+
];
|
|
80385
80675
|
export var DisableIpamOrganizationAdminAccount = [
|
|
80386
80676
|
9,
|
|
80387
80677
|
n0,
|
|
@@ -80671,6 +80961,14 @@ export var EnableImageDeregistrationProtection = [
|
|
|
80671
80961
|
() => EnableImageDeregistrationProtectionRequest,
|
|
80672
80962
|
() => EnableImageDeregistrationProtectionResult,
|
|
80673
80963
|
];
|
|
80964
|
+
export var EnableInstanceSqlHaStandbyDetections = [
|
|
80965
|
+
9,
|
|
80966
|
+
n0,
|
|
80967
|
+
_EISHSD,
|
|
80968
|
+
0,
|
|
80969
|
+
() => EnableInstanceSqlHaStandbyDetectionsRequest,
|
|
80970
|
+
() => EnableInstanceSqlHaStandbyDetectionsResult,
|
|
80971
|
+
];
|
|
80674
80972
|
export var EnableIpamOrganizationAdminAccount = [
|
|
80675
80973
|
9,
|
|
80676
80974
|
n0,
|
|
@@ -81997,7 +82295,7 @@ export var RebootInstances = [9, n0, _RIeb, 0, () => RebootInstancesRequest, ()
|
|
|
81997
82295
|
export var RegisterImage = [
|
|
81998
82296
|
9,
|
|
81999
82297
|
n0,
|
|
82000
|
-
|
|
82298
|
+
_RIegi,
|
|
82001
82299
|
0,
|
|
82002
82300
|
() => RegisterImageRequest,
|
|
82003
82301
|
() => RegisterImageResult,
|