@aws-sdk/client-auto-scaling 3.933.0 → 3.934.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 +8 -0
- package/dist-cjs/index.js +107 -0
- package/dist-es/AutoScaling.js +2 -0
- package/dist-es/commands/LaunchInstancesCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +18 -0
- package/dist-es/schemas/schemas_0.js +77 -1
- package/dist-types/AutoScaling.d.ts +7 -0
- package/dist-types/AutoScalingClient.d.ts +3 -2
- package/dist-types/commands/LaunchInstancesCommand.d.ts +120 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +222 -2
- package/dist-types/schemas/schemas_0.d.ts +11 -0
- package/dist-types/ts3.4/AutoScaling.d.ts +17 -0
- package/dist-types/ts3.4/AutoScalingClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/LaunchInstancesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +48 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -608,6 +608,14 @@ GetPredictiveScalingForecast
|
|
|
608
608
|
|
|
609
609
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/auto-scaling/command/GetPredictiveScalingForecastCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-auto-scaling/Interface/GetPredictiveScalingForecastCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-auto-scaling/Interface/GetPredictiveScalingForecastCommandOutput/)
|
|
610
610
|
|
|
611
|
+
</details>
|
|
612
|
+
<details>
|
|
613
|
+
<summary>
|
|
614
|
+
LaunchInstances
|
|
615
|
+
</summary>
|
|
616
|
+
|
|
617
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/auto-scaling/command/LaunchInstancesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-auto-scaling/Interface/LaunchInstancesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-auto-scaling/Interface/LaunchInstancesCommandOutput/)
|
|
618
|
+
|
|
611
619
|
</details>
|
|
612
620
|
<details>
|
|
613
621
|
<summary>
|
package/dist-cjs/index.js
CHANGED
|
@@ -394,6 +394,24 @@ const MetricType = {
|
|
|
394
394
|
ASGAverageNetworkIn: "ASGAverageNetworkIn",
|
|
395
395
|
ASGAverageNetworkOut: "ASGAverageNetworkOut",
|
|
396
396
|
};
|
|
397
|
+
let IdempotentParameterMismatchError$1 = class IdempotentParameterMismatchError extends AutoScalingServiceException$1 {
|
|
398
|
+
name = "IdempotentParameterMismatchError";
|
|
399
|
+
$fault = "client";
|
|
400
|
+
Message;
|
|
401
|
+
constructor(opts) {
|
|
402
|
+
super({
|
|
403
|
+
name: "IdempotentParameterMismatchError",
|
|
404
|
+
$fault: "client",
|
|
405
|
+
...opts,
|
|
406
|
+
});
|
|
407
|
+
Object.setPrototypeOf(this, IdempotentParameterMismatchError.prototype);
|
|
408
|
+
this.Message = opts.Message;
|
|
409
|
+
}
|
|
410
|
+
};
|
|
411
|
+
const RetryStrategy = {
|
|
412
|
+
NONE: "none",
|
|
413
|
+
RETRY_WITH_GROUP_CONFIGURATION: "retry-with-group-configuration",
|
|
414
|
+
};
|
|
397
415
|
let IrreversibleInstanceRefreshFault$1 = class IrreversibleInstanceRefreshFault extends AutoScalingServiceException$1 {
|
|
398
416
|
name = "IrreversibleInstanceRefreshFault";
|
|
399
417
|
$fault = "client";
|
|
@@ -469,7 +487,9 @@ const _ATd = "AdjustmentType";
|
|
|
469
487
|
const _ATdj = "AdjustmentTypes";
|
|
470
488
|
const _AZ = "AvailabilityZones";
|
|
471
489
|
const _AZD = "AvailabilityZoneDistribution";
|
|
490
|
+
const _AZI = "AvailabilityZoneId";
|
|
472
491
|
const _AZIP = "AvailabilityZoneImpairmentPolicy";
|
|
492
|
+
const _AZIv = "AvailabilityZoneIds";
|
|
473
493
|
const _AZv = "AvailabilityZone";
|
|
474
494
|
const _Ac = "Activity";
|
|
475
495
|
const _Al = "Alarm";
|
|
@@ -522,6 +542,7 @@ const _CRS = "CapacityReservationSpecification";
|
|
|
522
542
|
const _CRT = "CapacityReservationTarget";
|
|
523
543
|
const _CSMS = "CustomizedScalingMetricSpecification";
|
|
524
544
|
const _CT = "CreatedTime";
|
|
545
|
+
const _CTl = "ClientToken";
|
|
525
546
|
const _Co = "Context";
|
|
526
547
|
const _Coo = "Cooldown";
|
|
527
548
|
const _Cp = "Cpu";
|
|
@@ -635,6 +656,7 @@ const _ESx = "ExitStandby";
|
|
|
635
656
|
const _ET = "EndTime";
|
|
636
657
|
const _En = "Encrypted";
|
|
637
658
|
const _Ena = "Enabled";
|
|
659
|
+
const _Er = "Errors";
|
|
638
660
|
const _Ex = "Expression";
|
|
639
661
|
const _F = "Filters";
|
|
640
662
|
const _FD = "ForceDelete";
|
|
@@ -658,6 +680,8 @@ const _HS = "HealthStatus";
|
|
|
658
680
|
const _HT = "HttpTokens";
|
|
659
681
|
const _HTe = "HeartbeatTimeout";
|
|
660
682
|
const _I = "Instances";
|
|
683
|
+
const _IC = "InstanceCollection";
|
|
684
|
+
const _ICn = "InstanceCollections";
|
|
661
685
|
const _ID = "InstancesDistribution";
|
|
662
686
|
const _IDG = "IncludeDeletedGroups";
|
|
663
687
|
const _IF = "InstanceFamily";
|
|
@@ -672,6 +696,7 @@ const _IM = "InstanceMonitoring";
|
|
|
672
696
|
const _IMO = "InstanceMetadataOptions";
|
|
673
697
|
const _IMP = "InstanceMaintenancePolicy";
|
|
674
698
|
const _INT = "InvalidNextToken";
|
|
699
|
+
const _IPME = "IdempotentParameterMismatchError";
|
|
675
700
|
const _IR = "InstanceRefreshes";
|
|
676
701
|
const _IRI = "InstanceRefreshId";
|
|
677
702
|
const _IRIPF = "InstanceRefreshInProgressFault";
|
|
@@ -725,6 +750,11 @@ const _LHSL = "LifecycleHookSpecificationList";
|
|
|
725
750
|
const _LHSi = "LifecycleHookSpecifications";
|
|
726
751
|
const _LHT = "LifecycleHookTypes";
|
|
727
752
|
const _LHi = "LifecycleHook";
|
|
753
|
+
const _LI = "LaunchInstances";
|
|
754
|
+
const _LIE = "LaunchInstancesError";
|
|
755
|
+
const _LIEa = "LaunchInstancesErrors";
|
|
756
|
+
const _LIR = "LaunchInstancesRequest";
|
|
757
|
+
const _LIRa = "LaunchInstancesResult";
|
|
728
758
|
const _LPP = "LivePoolProgress";
|
|
729
759
|
const _LS = "LifecycleState";
|
|
730
760
|
const _LST = "LocalStorageTypes";
|
|
@@ -771,9 +801,11 @@ const _MSa = "MaxSize";
|
|
|
771
801
|
const _MSe = "MetricSpecification";
|
|
772
802
|
const _MSet = "MetricStat";
|
|
773
803
|
const _MSetr = "MetricSpecifications";
|
|
804
|
+
const _MT = "MarketType";
|
|
774
805
|
const _MV = "MetricValue";
|
|
775
806
|
const _Ma = "Max";
|
|
776
807
|
const _Me = "Metrics";
|
|
808
|
+
const _Mes = "Message";
|
|
777
809
|
const _Met = "Metric";
|
|
778
810
|
const _Mo = "Mode";
|
|
779
811
|
const _N = "Namespace";
|
|
@@ -852,6 +884,7 @@ const _Pr = "Preferences";
|
|
|
852
884
|
const _Pro = "Processes";
|
|
853
885
|
const _R = "References";
|
|
854
886
|
const _RARN = "RoleARN";
|
|
887
|
+
const _RC = "RequestedCapacity";
|
|
855
888
|
const _RCF = "ResourceContentionFault";
|
|
856
889
|
const _RD = "RollbackDetails";
|
|
857
890
|
const _RDe = "ReturnData";
|
|
@@ -870,6 +903,7 @@ const _ROSI = "ReuseOnScaleIn";
|
|
|
870
903
|
const _RP = "RefreshPreferences";
|
|
871
904
|
const _RPe = "ResumeProcesses";
|
|
872
905
|
const _RR = "RollbackReason";
|
|
906
|
+
const _RS = "RetryStrategy";
|
|
873
907
|
const _RST = "RollbackStartTime";
|
|
874
908
|
const _RT = "ResourceType";
|
|
875
909
|
const _Re = "Reference";
|
|
@@ -902,6 +936,8 @@ const _SIR = "StartInstanceRefresh";
|
|
|
902
936
|
const _SIRA = "StartInstanceRefreshAnswer";
|
|
903
937
|
const _SIRT = "StartInstanceRefreshType";
|
|
904
938
|
const _SIt = "StandbyInstances";
|
|
939
|
+
const _SIu = "SubnetId";
|
|
940
|
+
const _SIub = "SubnetIds";
|
|
905
941
|
const _SLRARN = "ServiceLinkedRoleARN";
|
|
906
942
|
const _SLRF = "ServiceLinkedRoleFailure";
|
|
907
943
|
const _SM = "StatusMessage";
|
|
@@ -1555,6 +1591,19 @@ var GetPredictiveScalingForecastType = [
|
|
|
1555
1591
|
[_ASGN, _PN, _ST, _ET],
|
|
1556
1592
|
[0, 0, 4, 4],
|
|
1557
1593
|
];
|
|
1594
|
+
var IdempotentParameterMismatchError = [
|
|
1595
|
+
-3,
|
|
1596
|
+
n0,
|
|
1597
|
+
_IPME,
|
|
1598
|
+
{
|
|
1599
|
+
[_e]: _c,
|
|
1600
|
+
[_hE]: 400,
|
|
1601
|
+
[_aQE]: [`IdempotentParameterMismatch`, 400],
|
|
1602
|
+
},
|
|
1603
|
+
[_Mes],
|
|
1604
|
+
[0],
|
|
1605
|
+
];
|
|
1606
|
+
schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchError, IdempotentParameterMismatchError$1);
|
|
1558
1607
|
var Instance = [
|
|
1559
1608
|
3,
|
|
1560
1609
|
n0,
|
|
@@ -1563,6 +1612,14 @@ var Instance = [
|
|
|
1563
1612
|
[_IIns, _IT, _AZv, _LS, _HS, _LCN, _LT, _PFSI, _WC],
|
|
1564
1613
|
[0, 0, 0, 0, 0, 0, () => LaunchTemplateSpecification, 2, 0],
|
|
1565
1614
|
];
|
|
1615
|
+
var InstanceCollection = [
|
|
1616
|
+
3,
|
|
1617
|
+
n0,
|
|
1618
|
+
_IC,
|
|
1619
|
+
0,
|
|
1620
|
+
[_IT, _MT, _SIu, _AZv, _AZI, _II],
|
|
1621
|
+
[0, 0, 0, 0, 0, 64 | 0],
|
|
1622
|
+
];
|
|
1566
1623
|
var InstanceMaintenancePolicy = [3, n0, _IMP, 0, [_MHP, _MHPa], [1, 1]];
|
|
1567
1624
|
var InstanceMetadataOptions = [3, n0, _IMO, 0, [_HT, _HPRHL, _HE], [0, 1, 0]];
|
|
1568
1625
|
var InstanceMonitoring = [3, n0, _IM, 0, [_Ena], [2]];
|
|
@@ -1765,6 +1822,30 @@ var LaunchConfigurationsType = [
|
|
|
1765
1822
|
[_LCa, _NT],
|
|
1766
1823
|
[() => LaunchConfigurations, 0],
|
|
1767
1824
|
];
|
|
1825
|
+
var LaunchInstancesError = [
|
|
1826
|
+
3,
|
|
1827
|
+
n0,
|
|
1828
|
+
_LIE,
|
|
1829
|
+
0,
|
|
1830
|
+
[_IT, _MT, _SIu, _AZv, _AZI, _EC, _EMr],
|
|
1831
|
+
[0, 0, 0, 0, 0, 0, 0],
|
|
1832
|
+
];
|
|
1833
|
+
var LaunchInstancesRequest = [
|
|
1834
|
+
3,
|
|
1835
|
+
n0,
|
|
1836
|
+
_LIR,
|
|
1837
|
+
0,
|
|
1838
|
+
[_ASGN, _RC, _CTl, _AZ, _AZIv, _SIub, _RS],
|
|
1839
|
+
[0, 1, [0, 4], 64 | 0, 64 | 0, 64 | 0, 0],
|
|
1840
|
+
];
|
|
1841
|
+
var LaunchInstancesResult = [
|
|
1842
|
+
3,
|
|
1843
|
+
n0,
|
|
1844
|
+
_LIRa,
|
|
1845
|
+
0,
|
|
1846
|
+
[_ASGN, _CTl, _I, _Er],
|
|
1847
|
+
[0, 0, () => InstanceCollections, () => LaunchInstancesErrors],
|
|
1848
|
+
];
|
|
1768
1849
|
var LaunchTemplate = [
|
|
1769
1850
|
3,
|
|
1770
1851
|
n0,
|
|
@@ -2232,9 +2313,11 @@ var FailedScheduledUpdateGroupActionRequests = [
|
|
|
2232
2313
|
() => FailedScheduledUpdateGroupActionRequest,
|
|
2233
2314
|
];
|
|
2234
2315
|
var Filters = [1, n0, _F, 0, () => Filter];
|
|
2316
|
+
var InstanceCollections = [1, n0, _ICn, 0, () => InstanceCollection];
|
|
2235
2317
|
var InstanceRefreshes = [1, n0, _IR, 0, [() => InstanceRefresh, 0]];
|
|
2236
2318
|
var Instances = [1, n0, _I, 0, () => Instance];
|
|
2237
2319
|
var LaunchConfigurations = [1, n0, _LCa, 0, () => LaunchConfiguration];
|
|
2320
|
+
var LaunchInstancesErrors = [1, n0, _LIEa, 0, () => LaunchInstancesError];
|
|
2238
2321
|
var LifecycleHooks = [1, n0, _LH, 0, () => LifecycleHook];
|
|
2239
2322
|
var LifecycleHookSpecifications = [1, n0, _LHSi, 0, () => LifecycleHookSpecification];
|
|
2240
2323
|
var LoadBalancerStates = [1, n0, _LBSo, 0, () => LoadBalancerState];
|
|
@@ -2612,6 +2695,14 @@ var GetPredictiveScalingForecast = [
|
|
|
2612
2695
|
() => GetPredictiveScalingForecastType,
|
|
2613
2696
|
() => GetPredictiveScalingForecastAnswer,
|
|
2614
2697
|
];
|
|
2698
|
+
var LaunchInstances = [
|
|
2699
|
+
9,
|
|
2700
|
+
n0,
|
|
2701
|
+
_LI,
|
|
2702
|
+
0,
|
|
2703
|
+
() => LaunchInstancesRequest,
|
|
2704
|
+
() => LaunchInstancesResult,
|
|
2705
|
+
];
|
|
2615
2706
|
var PutLifecycleHook = [
|
|
2616
2707
|
9,
|
|
2617
2708
|
n0,
|
|
@@ -3291,6 +3382,18 @@ class GetPredictiveScalingForecastCommand extends smithyClient.Command
|
|
|
3291
3382
|
.build() {
|
|
3292
3383
|
}
|
|
3293
3384
|
|
|
3385
|
+
class LaunchInstancesCommand extends smithyClient.Command
|
|
3386
|
+
.classBuilder()
|
|
3387
|
+
.ep(commonParams)
|
|
3388
|
+
.m(function (Command, cs, config, o) {
|
|
3389
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3390
|
+
})
|
|
3391
|
+
.s("AutoScaling_2011_01_01", "LaunchInstances", {})
|
|
3392
|
+
.n("AutoScalingClient", "LaunchInstancesCommand")
|
|
3393
|
+
.sc(LaunchInstances)
|
|
3394
|
+
.build() {
|
|
3395
|
+
}
|
|
3396
|
+
|
|
3294
3397
|
class PutLifecycleHookCommand extends smithyClient.Command
|
|
3295
3398
|
.classBuilder()
|
|
3296
3399
|
.ep(commonParams)
|
|
@@ -3522,6 +3625,7 @@ const commands = {
|
|
|
3522
3625
|
ExecutePolicyCommand,
|
|
3523
3626
|
ExitStandbyCommand,
|
|
3524
3627
|
GetPredictiveScalingForecastCommand,
|
|
3628
|
+
LaunchInstancesCommand,
|
|
3525
3629
|
PutLifecycleHookCommand,
|
|
3526
3630
|
PutNotificationConfigurationCommand,
|
|
3527
3631
|
PutScalingPolicyCommand,
|
|
@@ -3778,6 +3882,7 @@ exports.EnterStandbyCommand = EnterStandbyCommand;
|
|
|
3778
3882
|
exports.ExecutePolicyCommand = ExecutePolicyCommand;
|
|
3779
3883
|
exports.ExitStandbyCommand = ExitStandbyCommand;
|
|
3780
3884
|
exports.GetPredictiveScalingForecastCommand = GetPredictiveScalingForecastCommand;
|
|
3885
|
+
exports.IdempotentParameterMismatchError = IdempotentParameterMismatchError$1;
|
|
3781
3886
|
exports.ImpairedZoneHealthCheckBehavior = ImpairedZoneHealthCheckBehavior;
|
|
3782
3887
|
exports.InstanceGeneration = InstanceGeneration;
|
|
3783
3888
|
exports.InstanceMetadataEndpointState = InstanceMetadataEndpointState;
|
|
@@ -3786,6 +3891,7 @@ exports.InstanceRefreshInProgressFault = InstanceRefreshInProgressFault$1;
|
|
|
3786
3891
|
exports.InstanceRefreshStatus = InstanceRefreshStatus;
|
|
3787
3892
|
exports.InvalidNextToken = InvalidNextToken$1;
|
|
3788
3893
|
exports.IrreversibleInstanceRefreshFault = IrreversibleInstanceRefreshFault$1;
|
|
3894
|
+
exports.LaunchInstancesCommand = LaunchInstancesCommand;
|
|
3789
3895
|
exports.LifecycleState = LifecycleState;
|
|
3790
3896
|
exports.LimitExceededFault = LimitExceededFault$1;
|
|
3791
3897
|
exports.LocalStorage = LocalStorage;
|
|
@@ -3807,6 +3913,7 @@ exports.RefreshStrategy = RefreshStrategy;
|
|
|
3807
3913
|
exports.ResourceContentionFault = ResourceContentionFault$1;
|
|
3808
3914
|
exports.ResourceInUseFault = ResourceInUseFault$1;
|
|
3809
3915
|
exports.ResumeProcessesCommand = ResumeProcessesCommand;
|
|
3916
|
+
exports.RetryStrategy = RetryStrategy;
|
|
3810
3917
|
exports.RollbackInstanceRefreshCommand = RollbackInstanceRefreshCommand;
|
|
3811
3918
|
exports.ScaleInProtectedInstances = ScaleInProtectedInstances;
|
|
3812
3919
|
exports.ScalingActivityInProgressFault = ScalingActivityInProgressFault$1;
|
package/dist-es/AutoScaling.js
CHANGED
|
@@ -50,6 +50,7 @@ import { EnterStandbyCommand, } from "./commands/EnterStandbyCommand";
|
|
|
50
50
|
import { ExecutePolicyCommand, } from "./commands/ExecutePolicyCommand";
|
|
51
51
|
import { ExitStandbyCommand } from "./commands/ExitStandbyCommand";
|
|
52
52
|
import { GetPredictiveScalingForecastCommand, } from "./commands/GetPredictiveScalingForecastCommand";
|
|
53
|
+
import { LaunchInstancesCommand, } from "./commands/LaunchInstancesCommand";
|
|
53
54
|
import { PutLifecycleHookCommand, } from "./commands/PutLifecycleHookCommand";
|
|
54
55
|
import { PutNotificationConfigurationCommand, } from "./commands/PutNotificationConfigurationCommand";
|
|
55
56
|
import { PutScalingPolicyCommand, } from "./commands/PutScalingPolicyCommand";
|
|
@@ -116,6 +117,7 @@ const commands = {
|
|
|
116
117
|
ExecutePolicyCommand,
|
|
117
118
|
ExitStandbyCommand,
|
|
118
119
|
GetPredictiveScalingForecastCommand,
|
|
120
|
+
LaunchInstancesCommand,
|
|
119
121
|
PutLifecycleHookCommand,
|
|
120
122
|
PutNotificationConfigurationCommand,
|
|
121
123
|
PutScalingPolicyCommand,
|
|
@@ -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 { LaunchInstances } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class LaunchInstancesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AutoScaling_2011_01_01", "LaunchInstances", {})
|
|
13
|
+
.n("AutoScalingClient", "LaunchInstancesCommand")
|
|
14
|
+
.sc(LaunchInstances)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -48,6 +48,7 @@ export * from "./EnterStandbyCommand";
|
|
|
48
48
|
export * from "./ExecutePolicyCommand";
|
|
49
49
|
export * from "./ExitStandbyCommand";
|
|
50
50
|
export * from "./GetPredictiveScalingForecastCommand";
|
|
51
|
+
export * from "./LaunchInstancesCommand";
|
|
51
52
|
export * from "./PutLifecycleHookCommand";
|
|
52
53
|
export * from "./PutNotificationConfigurationCommand";
|
|
53
54
|
export * from "./PutScalingPolicyCommand";
|
|
@@ -275,6 +275,24 @@ export const MetricType = {
|
|
|
275
275
|
ASGAverageNetworkIn: "ASGAverageNetworkIn",
|
|
276
276
|
ASGAverageNetworkOut: "ASGAverageNetworkOut",
|
|
277
277
|
};
|
|
278
|
+
export class IdempotentParameterMismatchError extends __BaseException {
|
|
279
|
+
name = "IdempotentParameterMismatchError";
|
|
280
|
+
$fault = "client";
|
|
281
|
+
Message;
|
|
282
|
+
constructor(opts) {
|
|
283
|
+
super({
|
|
284
|
+
name: "IdempotentParameterMismatchError",
|
|
285
|
+
$fault: "client",
|
|
286
|
+
...opts,
|
|
287
|
+
});
|
|
288
|
+
Object.setPrototypeOf(this, IdempotentParameterMismatchError.prototype);
|
|
289
|
+
this.Message = opts.Message;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
export const RetryStrategy = {
|
|
293
|
+
NONE: "none",
|
|
294
|
+
RETRY_WITH_GROUP_CONFIGURATION: "retry-with-group-configuration",
|
|
295
|
+
};
|
|
278
296
|
export class IrreversibleInstanceRefreshFault extends __BaseException {
|
|
279
297
|
name = "IrreversibleInstanceRefreshFault";
|
|
280
298
|
$fault = "client";
|
|
@@ -45,7 +45,9 @@ const _ATd = "AdjustmentType";
|
|
|
45
45
|
const _ATdj = "AdjustmentTypes";
|
|
46
46
|
const _AZ = "AvailabilityZones";
|
|
47
47
|
const _AZD = "AvailabilityZoneDistribution";
|
|
48
|
+
const _AZI = "AvailabilityZoneId";
|
|
48
49
|
const _AZIP = "AvailabilityZoneImpairmentPolicy";
|
|
50
|
+
const _AZIv = "AvailabilityZoneIds";
|
|
49
51
|
const _AZv = "AvailabilityZone";
|
|
50
52
|
const _Ac = "Activity";
|
|
51
53
|
const _Al = "Alarm";
|
|
@@ -98,6 +100,7 @@ const _CRS = "CapacityReservationSpecification";
|
|
|
98
100
|
const _CRT = "CapacityReservationTarget";
|
|
99
101
|
const _CSMS = "CustomizedScalingMetricSpecification";
|
|
100
102
|
const _CT = "CreatedTime";
|
|
103
|
+
const _CTl = "ClientToken";
|
|
101
104
|
const _Co = "Context";
|
|
102
105
|
const _Coo = "Cooldown";
|
|
103
106
|
const _Cp = "Cpu";
|
|
@@ -211,6 +214,7 @@ const _ESx = "ExitStandby";
|
|
|
211
214
|
const _ET = "EndTime";
|
|
212
215
|
const _En = "Encrypted";
|
|
213
216
|
const _Ena = "Enabled";
|
|
217
|
+
const _Er = "Errors";
|
|
214
218
|
const _Ex = "Expression";
|
|
215
219
|
const _F = "Filters";
|
|
216
220
|
const _FD = "ForceDelete";
|
|
@@ -234,6 +238,8 @@ const _HS = "HealthStatus";
|
|
|
234
238
|
const _HT = "HttpTokens";
|
|
235
239
|
const _HTe = "HeartbeatTimeout";
|
|
236
240
|
const _I = "Instances";
|
|
241
|
+
const _IC = "InstanceCollection";
|
|
242
|
+
const _ICn = "InstanceCollections";
|
|
237
243
|
const _ID = "InstancesDistribution";
|
|
238
244
|
const _IDG = "IncludeDeletedGroups";
|
|
239
245
|
const _IF = "InstanceFamily";
|
|
@@ -248,6 +254,7 @@ const _IM = "InstanceMonitoring";
|
|
|
248
254
|
const _IMO = "InstanceMetadataOptions";
|
|
249
255
|
const _IMP = "InstanceMaintenancePolicy";
|
|
250
256
|
const _INT = "InvalidNextToken";
|
|
257
|
+
const _IPME = "IdempotentParameterMismatchError";
|
|
251
258
|
const _IR = "InstanceRefreshes";
|
|
252
259
|
const _IRI = "InstanceRefreshId";
|
|
253
260
|
const _IRIPF = "InstanceRefreshInProgressFault";
|
|
@@ -301,6 +308,11 @@ const _LHSL = "LifecycleHookSpecificationList";
|
|
|
301
308
|
const _LHSi = "LifecycleHookSpecifications";
|
|
302
309
|
const _LHT = "LifecycleHookTypes";
|
|
303
310
|
const _LHi = "LifecycleHook";
|
|
311
|
+
const _LI = "LaunchInstances";
|
|
312
|
+
const _LIE = "LaunchInstancesError";
|
|
313
|
+
const _LIEa = "LaunchInstancesErrors";
|
|
314
|
+
const _LIR = "LaunchInstancesRequest";
|
|
315
|
+
const _LIRa = "LaunchInstancesResult";
|
|
304
316
|
const _LPP = "LivePoolProgress";
|
|
305
317
|
const _LS = "LifecycleState";
|
|
306
318
|
const _LST = "LocalStorageTypes";
|
|
@@ -347,9 +359,11 @@ const _MSa = "MaxSize";
|
|
|
347
359
|
const _MSe = "MetricSpecification";
|
|
348
360
|
const _MSet = "MetricStat";
|
|
349
361
|
const _MSetr = "MetricSpecifications";
|
|
362
|
+
const _MT = "MarketType";
|
|
350
363
|
const _MV = "MetricValue";
|
|
351
364
|
const _Ma = "Max";
|
|
352
365
|
const _Me = "Metrics";
|
|
366
|
+
const _Mes = "Message";
|
|
353
367
|
const _Met = "Metric";
|
|
354
368
|
const _Mo = "Mode";
|
|
355
369
|
const _N = "Namespace";
|
|
@@ -428,6 +442,7 @@ const _Pr = "Preferences";
|
|
|
428
442
|
const _Pro = "Processes";
|
|
429
443
|
const _R = "References";
|
|
430
444
|
const _RARN = "RoleARN";
|
|
445
|
+
const _RC = "RequestedCapacity";
|
|
431
446
|
const _RCF = "ResourceContentionFault";
|
|
432
447
|
const _RD = "RollbackDetails";
|
|
433
448
|
const _RDe = "ReturnData";
|
|
@@ -446,6 +461,7 @@ const _ROSI = "ReuseOnScaleIn";
|
|
|
446
461
|
const _RP = "RefreshPreferences";
|
|
447
462
|
const _RPe = "ResumeProcesses";
|
|
448
463
|
const _RR = "RollbackReason";
|
|
464
|
+
const _RS = "RetryStrategy";
|
|
449
465
|
const _RST = "RollbackStartTime";
|
|
450
466
|
const _RT = "ResourceType";
|
|
451
467
|
const _Re = "Reference";
|
|
@@ -478,6 +494,8 @@ const _SIR = "StartInstanceRefresh";
|
|
|
478
494
|
const _SIRA = "StartInstanceRefreshAnswer";
|
|
479
495
|
const _SIRT = "StartInstanceRefreshType";
|
|
480
496
|
const _SIt = "StandbyInstances";
|
|
497
|
+
const _SIu = "SubnetId";
|
|
498
|
+
const _SIub = "SubnetIds";
|
|
481
499
|
const _SLRARN = "ServiceLinkedRoleARN";
|
|
482
500
|
const _SLRF = "ServiceLinkedRoleFailure";
|
|
483
501
|
const _SM = "StatusMessage";
|
|
@@ -566,7 +584,7 @@ const _xN = "xmlName";
|
|
|
566
584
|
const n0 = "com.amazonaws.autoscaling";
|
|
567
585
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
568
586
|
import { AutoScalingServiceException as __AutoScalingServiceException } from "../models/AutoScalingServiceException";
|
|
569
|
-
import { ActiveInstanceRefreshNotFoundFault as __ActiveInstanceRefreshNotFoundFault, AlreadyExistsFault as __AlreadyExistsFault, InstanceRefreshInProgressFault as __InstanceRefreshInProgressFault, InvalidNextToken as __InvalidNextToken, IrreversibleInstanceRefreshFault as __IrreversibleInstanceRefreshFault, LimitExceededFault as __LimitExceededFault, ResourceContentionFault as __ResourceContentionFault, ResourceInUseFault as __ResourceInUseFault, ScalingActivityInProgressFault as __ScalingActivityInProgressFault, ServiceLinkedRoleFailure as __ServiceLinkedRoleFailure, } from "../models/index";
|
|
587
|
+
import { ActiveInstanceRefreshNotFoundFault as __ActiveInstanceRefreshNotFoundFault, AlreadyExistsFault as __AlreadyExistsFault, IdempotentParameterMismatchError as __IdempotentParameterMismatchError, InstanceRefreshInProgressFault as __InstanceRefreshInProgressFault, InvalidNextToken as __InvalidNextToken, IrreversibleInstanceRefreshFault as __IrreversibleInstanceRefreshFault, LimitExceededFault as __LimitExceededFault, ResourceContentionFault as __ResourceContentionFault, ResourceInUseFault as __ResourceInUseFault, ScalingActivityInProgressFault as __ScalingActivityInProgressFault, ServiceLinkedRoleFailure as __ServiceLinkedRoleFailure, } from "../models/index";
|
|
570
588
|
export var AcceleratorCountRequest = [3, n0, _ACR, 0, [_M, _Ma], [1, 1]];
|
|
571
589
|
export var AcceleratorTotalMemoryMiBRequest = [3, n0, _ATMMBR, 0, [_M, _Ma], [1, 1]];
|
|
572
590
|
export var ActiveInstanceRefreshNotFoundFault = [
|
|
@@ -1134,6 +1152,19 @@ export var GetPredictiveScalingForecastType = [
|
|
|
1134
1152
|
[_ASGN, _PN, _ST, _ET],
|
|
1135
1153
|
[0, 0, 4, 4],
|
|
1136
1154
|
];
|
|
1155
|
+
export var IdempotentParameterMismatchError = [
|
|
1156
|
+
-3,
|
|
1157
|
+
n0,
|
|
1158
|
+
_IPME,
|
|
1159
|
+
{
|
|
1160
|
+
[_e]: _c,
|
|
1161
|
+
[_hE]: 400,
|
|
1162
|
+
[_aQE]: [`IdempotentParameterMismatch`, 400],
|
|
1163
|
+
},
|
|
1164
|
+
[_Mes],
|
|
1165
|
+
[0],
|
|
1166
|
+
];
|
|
1167
|
+
TypeRegistry.for(n0).registerError(IdempotentParameterMismatchError, __IdempotentParameterMismatchError);
|
|
1137
1168
|
export var Instance = [
|
|
1138
1169
|
3,
|
|
1139
1170
|
n0,
|
|
@@ -1142,6 +1173,14 @@ export var Instance = [
|
|
|
1142
1173
|
[_IIns, _IT, _AZv, _LS, _HS, _LCN, _LT, _PFSI, _WC],
|
|
1143
1174
|
[0, 0, 0, 0, 0, 0, () => LaunchTemplateSpecification, 2, 0],
|
|
1144
1175
|
];
|
|
1176
|
+
export var InstanceCollection = [
|
|
1177
|
+
3,
|
|
1178
|
+
n0,
|
|
1179
|
+
_IC,
|
|
1180
|
+
0,
|
|
1181
|
+
[_IT, _MT, _SIu, _AZv, _AZI, _II],
|
|
1182
|
+
[0, 0, 0, 0, 0, 64 | 0],
|
|
1183
|
+
];
|
|
1145
1184
|
export var InstanceMaintenancePolicy = [3, n0, _IMP, 0, [_MHP, _MHPa], [1, 1]];
|
|
1146
1185
|
export var InstanceMetadataOptions = [3, n0, _IMO, 0, [_HT, _HPRHL, _HE], [0, 1, 0]];
|
|
1147
1186
|
export var InstanceMonitoring = [3, n0, _IM, 0, [_Ena], [2]];
|
|
@@ -1344,6 +1383,30 @@ export var LaunchConfigurationsType = [
|
|
|
1344
1383
|
[_LCa, _NT],
|
|
1345
1384
|
[() => LaunchConfigurations, 0],
|
|
1346
1385
|
];
|
|
1386
|
+
export var LaunchInstancesError = [
|
|
1387
|
+
3,
|
|
1388
|
+
n0,
|
|
1389
|
+
_LIE,
|
|
1390
|
+
0,
|
|
1391
|
+
[_IT, _MT, _SIu, _AZv, _AZI, _EC, _EMr],
|
|
1392
|
+
[0, 0, 0, 0, 0, 0, 0],
|
|
1393
|
+
];
|
|
1394
|
+
export var LaunchInstancesRequest = [
|
|
1395
|
+
3,
|
|
1396
|
+
n0,
|
|
1397
|
+
_LIR,
|
|
1398
|
+
0,
|
|
1399
|
+
[_ASGN, _RC, _CTl, _AZ, _AZIv, _SIub, _RS],
|
|
1400
|
+
[0, 1, [0, 4], 64 | 0, 64 | 0, 64 | 0, 0],
|
|
1401
|
+
];
|
|
1402
|
+
export var LaunchInstancesResult = [
|
|
1403
|
+
3,
|
|
1404
|
+
n0,
|
|
1405
|
+
_LIRa,
|
|
1406
|
+
0,
|
|
1407
|
+
[_ASGN, _CTl, _I, _Er],
|
|
1408
|
+
[0, 0, () => InstanceCollections, () => LaunchInstancesErrors],
|
|
1409
|
+
];
|
|
1347
1410
|
export var LaunchTemplate = [
|
|
1348
1411
|
3,
|
|
1349
1412
|
n0,
|
|
@@ -1809,7 +1872,9 @@ export var AutoScalingGroupNames = 64 | 0;
|
|
|
1809
1872
|
export var AutoScalingGroups = [1, n0, _ASGu, 0, [() => AutoScalingGroup, 0]];
|
|
1810
1873
|
export var AutoScalingInstances = [1, n0, _ASI, 0, () => AutoScalingInstanceDetails];
|
|
1811
1874
|
export var AutoScalingNotificationTypes = 64 | 0;
|
|
1875
|
+
export var AvailabilityZoneIdsLimit1 = 64 | 0;
|
|
1812
1876
|
export var AvailabilityZones = 64 | 0;
|
|
1877
|
+
export var AvailabilityZonesLimit1 = 64 | 0;
|
|
1813
1878
|
export var BlockDeviceMappings = [1, n0, _BDMl, 0, () => BlockDeviceMapping];
|
|
1814
1879
|
export var CapacityReservationIds = 64 | 0;
|
|
1815
1880
|
export var CapacityReservationResourceGroupArns = 64 | 0;
|
|
@@ -1826,6 +1891,7 @@ export var FailedScheduledUpdateGroupActionRequests = [
|
|
|
1826
1891
|
() => FailedScheduledUpdateGroupActionRequest,
|
|
1827
1892
|
];
|
|
1828
1893
|
export var Filters = [1, n0, _F, 0, () => Filter];
|
|
1894
|
+
export var InstanceCollections = [1, n0, _ICn, 0, () => InstanceCollection];
|
|
1829
1895
|
export var InstanceGenerations = 64 | 0;
|
|
1830
1896
|
export var InstanceIds = 64 | 0;
|
|
1831
1897
|
export var InstanceRefreshes = [1, n0, _IR, 0, [() => InstanceRefresh, 0]];
|
|
@@ -1833,6 +1899,7 @@ export var InstanceRefreshIds = 64 | 0;
|
|
|
1833
1899
|
export var Instances = [1, n0, _I, 0, () => Instance];
|
|
1834
1900
|
export var LaunchConfigurationNames = 64 | 0;
|
|
1835
1901
|
export var LaunchConfigurations = [1, n0, _LCa, 0, () => LaunchConfiguration];
|
|
1902
|
+
export var LaunchInstancesErrors = [1, n0, _LIEa, 0, () => LaunchInstancesError];
|
|
1836
1903
|
export var LifecycleHookNames = 64 | 0;
|
|
1837
1904
|
export var LifecycleHooks = [1, n0, _LH, 0, () => LifecycleHook];
|
|
1838
1905
|
export var LifecycleHookSpecifications = [1, n0, _LHSi, 0, () => LifecycleHookSpecification];
|
|
@@ -1885,6 +1952,7 @@ export var ScheduledUpdateGroupActionRequests = [
|
|
|
1885
1952
|
export var ScheduledUpdateGroupActions = [1, n0, _SUGA, 0, () => ScheduledUpdateGroupAction];
|
|
1886
1953
|
export var SecurityGroups = 64 | 0;
|
|
1887
1954
|
export var StepAdjustments = [1, n0, _SAt, 0, () => StepAdjustment];
|
|
1955
|
+
export var SubnetIdsLimit1 = 64 | 0;
|
|
1888
1956
|
export var SuspendedProcesses = [1, n0, _SP, 0, () => SuspendedProcess];
|
|
1889
1957
|
export var TagDescriptionList = [1, n0, _TDL, 0, () => TagDescription];
|
|
1890
1958
|
export var Tags = [1, n0, _T, 0, () => Tag];
|
|
@@ -2224,6 +2292,14 @@ export var GetPredictiveScalingForecast = [
|
|
|
2224
2292
|
() => GetPredictiveScalingForecastType,
|
|
2225
2293
|
() => GetPredictiveScalingForecastAnswer,
|
|
2226
2294
|
];
|
|
2295
|
+
export var LaunchInstances = [
|
|
2296
|
+
9,
|
|
2297
|
+
n0,
|
|
2298
|
+
_LI,
|
|
2299
|
+
0,
|
|
2300
|
+
() => LaunchInstancesRequest,
|
|
2301
|
+
() => LaunchInstancesResult,
|
|
2302
|
+
];
|
|
2227
2303
|
export var PutLifecycleHook = [
|
|
2228
2304
|
9,
|
|
2229
2305
|
n0,
|
|
@@ -50,6 +50,7 @@ import { EnterStandbyCommandInput, EnterStandbyCommandOutput } from "./commands/
|
|
|
50
50
|
import { ExecutePolicyCommandInput, ExecutePolicyCommandOutput } from "./commands/ExecutePolicyCommand";
|
|
51
51
|
import { ExitStandbyCommandInput, ExitStandbyCommandOutput } from "./commands/ExitStandbyCommand";
|
|
52
52
|
import { GetPredictiveScalingForecastCommandInput, GetPredictiveScalingForecastCommandOutput } from "./commands/GetPredictiveScalingForecastCommand";
|
|
53
|
+
import { LaunchInstancesCommandInput, LaunchInstancesCommandOutput } from "./commands/LaunchInstancesCommand";
|
|
53
54
|
import { PutLifecycleHookCommandInput, PutLifecycleHookCommandOutput } from "./commands/PutLifecycleHookCommand";
|
|
54
55
|
import { PutNotificationConfigurationCommandInput, PutNotificationConfigurationCommandOutput } from "./commands/PutNotificationConfigurationCommand";
|
|
55
56
|
import { PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput } from "./commands/PutScalingPolicyCommand";
|
|
@@ -381,6 +382,12 @@ export interface AutoScaling {
|
|
|
381
382
|
getPredictiveScalingForecast(args: GetPredictiveScalingForecastCommandInput, options?: __HttpHandlerOptions): Promise<GetPredictiveScalingForecastCommandOutput>;
|
|
382
383
|
getPredictiveScalingForecast(args: GetPredictiveScalingForecastCommandInput, cb: (err: any, data?: GetPredictiveScalingForecastCommandOutput) => void): void;
|
|
383
384
|
getPredictiveScalingForecast(args: GetPredictiveScalingForecastCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPredictiveScalingForecastCommandOutput) => void): void;
|
|
385
|
+
/**
|
|
386
|
+
* @see {@link LaunchInstancesCommand}
|
|
387
|
+
*/
|
|
388
|
+
launchInstances(args: LaunchInstancesCommandInput, options?: __HttpHandlerOptions): Promise<LaunchInstancesCommandOutput>;
|
|
389
|
+
launchInstances(args: LaunchInstancesCommandInput, cb: (err: any, data?: LaunchInstancesCommandOutput) => void): void;
|
|
390
|
+
launchInstances(args: LaunchInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: LaunchInstancesCommandOutput) => void): void;
|
|
384
391
|
/**
|
|
385
392
|
* @see {@link PutLifecycleHookCommand}
|
|
386
393
|
*/
|
|
@@ -57,6 +57,7 @@ import { EnterStandbyCommandInput, EnterStandbyCommandOutput } from "./commands/
|
|
|
57
57
|
import { ExecutePolicyCommandInput, ExecutePolicyCommandOutput } from "./commands/ExecutePolicyCommand";
|
|
58
58
|
import { ExitStandbyCommandInput, ExitStandbyCommandOutput } from "./commands/ExitStandbyCommand";
|
|
59
59
|
import { GetPredictiveScalingForecastCommandInput, GetPredictiveScalingForecastCommandOutput } from "./commands/GetPredictiveScalingForecastCommand";
|
|
60
|
+
import { LaunchInstancesCommandInput, LaunchInstancesCommandOutput } from "./commands/LaunchInstancesCommand";
|
|
60
61
|
import { PutLifecycleHookCommandInput, PutLifecycleHookCommandOutput } from "./commands/PutLifecycleHookCommand";
|
|
61
62
|
import { PutNotificationConfigurationCommandInput, PutNotificationConfigurationCommandOutput } from "./commands/PutNotificationConfigurationCommand";
|
|
62
63
|
import { PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput } from "./commands/PutScalingPolicyCommand";
|
|
@@ -78,11 +79,11 @@ export { __Client };
|
|
|
78
79
|
/**
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
|
-
export type ServiceInputTypes = AttachInstancesCommandInput | AttachLoadBalancerTargetGroupsCommandInput | AttachLoadBalancersCommandInput | AttachTrafficSourcesCommandInput | BatchDeleteScheduledActionCommandInput | BatchPutScheduledUpdateGroupActionCommandInput | CancelInstanceRefreshCommandInput | CompleteLifecycleActionCommandInput | CreateAutoScalingGroupCommandInput | CreateLaunchConfigurationCommandInput | CreateOrUpdateTagsCommandInput | DeleteAutoScalingGroupCommandInput | DeleteLaunchConfigurationCommandInput | DeleteLifecycleHookCommandInput | DeleteNotificationConfigurationCommandInput | DeletePolicyCommandInput | DeleteScheduledActionCommandInput | DeleteTagsCommandInput | DeleteWarmPoolCommandInput | DescribeAccountLimitsCommandInput | DescribeAdjustmentTypesCommandInput | DescribeAutoScalingGroupsCommandInput | DescribeAutoScalingInstancesCommandInput | DescribeAutoScalingNotificationTypesCommandInput | DescribeInstanceRefreshesCommandInput | DescribeLaunchConfigurationsCommandInput | DescribeLifecycleHookTypesCommandInput | DescribeLifecycleHooksCommandInput | DescribeLoadBalancerTargetGroupsCommandInput | DescribeLoadBalancersCommandInput | DescribeMetricCollectionTypesCommandInput | DescribeNotificationConfigurationsCommandInput | DescribePoliciesCommandInput | DescribeScalingActivitiesCommandInput | DescribeScalingProcessTypesCommandInput | DescribeScheduledActionsCommandInput | DescribeTagsCommandInput | DescribeTerminationPolicyTypesCommandInput | DescribeTrafficSourcesCommandInput | DescribeWarmPoolCommandInput | DetachInstancesCommandInput | DetachLoadBalancerTargetGroupsCommandInput | DetachLoadBalancersCommandInput | DetachTrafficSourcesCommandInput | DisableMetricsCollectionCommandInput | EnableMetricsCollectionCommandInput | EnterStandbyCommandInput | ExecutePolicyCommandInput | ExitStandbyCommandInput | GetPredictiveScalingForecastCommandInput | PutLifecycleHookCommandInput | PutNotificationConfigurationCommandInput | PutScalingPolicyCommandInput | PutScheduledUpdateGroupActionCommandInput | PutWarmPoolCommandInput | RecordLifecycleActionHeartbeatCommandInput | ResumeProcessesCommandInput | RollbackInstanceRefreshCommandInput | SetDesiredCapacityCommandInput | SetInstanceHealthCommandInput | SetInstanceProtectionCommandInput | StartInstanceRefreshCommandInput | SuspendProcessesCommandInput | TerminateInstanceInAutoScalingGroupCommandInput | UpdateAutoScalingGroupCommandInput;
|
|
82
|
+
export type ServiceInputTypes = AttachInstancesCommandInput | AttachLoadBalancerTargetGroupsCommandInput | AttachLoadBalancersCommandInput | AttachTrafficSourcesCommandInput | BatchDeleteScheduledActionCommandInput | BatchPutScheduledUpdateGroupActionCommandInput | CancelInstanceRefreshCommandInput | CompleteLifecycleActionCommandInput | CreateAutoScalingGroupCommandInput | CreateLaunchConfigurationCommandInput | CreateOrUpdateTagsCommandInput | DeleteAutoScalingGroupCommandInput | DeleteLaunchConfigurationCommandInput | DeleteLifecycleHookCommandInput | DeleteNotificationConfigurationCommandInput | DeletePolicyCommandInput | DeleteScheduledActionCommandInput | DeleteTagsCommandInput | DeleteWarmPoolCommandInput | DescribeAccountLimitsCommandInput | DescribeAdjustmentTypesCommandInput | DescribeAutoScalingGroupsCommandInput | DescribeAutoScalingInstancesCommandInput | DescribeAutoScalingNotificationTypesCommandInput | DescribeInstanceRefreshesCommandInput | DescribeLaunchConfigurationsCommandInput | DescribeLifecycleHookTypesCommandInput | DescribeLifecycleHooksCommandInput | DescribeLoadBalancerTargetGroupsCommandInput | DescribeLoadBalancersCommandInput | DescribeMetricCollectionTypesCommandInput | DescribeNotificationConfigurationsCommandInput | DescribePoliciesCommandInput | DescribeScalingActivitiesCommandInput | DescribeScalingProcessTypesCommandInput | DescribeScheduledActionsCommandInput | DescribeTagsCommandInput | DescribeTerminationPolicyTypesCommandInput | DescribeTrafficSourcesCommandInput | DescribeWarmPoolCommandInput | DetachInstancesCommandInput | DetachLoadBalancerTargetGroupsCommandInput | DetachLoadBalancersCommandInput | DetachTrafficSourcesCommandInput | DisableMetricsCollectionCommandInput | EnableMetricsCollectionCommandInput | EnterStandbyCommandInput | ExecutePolicyCommandInput | ExitStandbyCommandInput | GetPredictiveScalingForecastCommandInput | LaunchInstancesCommandInput | PutLifecycleHookCommandInput | PutNotificationConfigurationCommandInput | PutScalingPolicyCommandInput | PutScheduledUpdateGroupActionCommandInput | PutWarmPoolCommandInput | RecordLifecycleActionHeartbeatCommandInput | ResumeProcessesCommandInput | RollbackInstanceRefreshCommandInput | SetDesiredCapacityCommandInput | SetInstanceHealthCommandInput | SetInstanceProtectionCommandInput | StartInstanceRefreshCommandInput | SuspendProcessesCommandInput | TerminateInstanceInAutoScalingGroupCommandInput | UpdateAutoScalingGroupCommandInput;
|
|
82
83
|
/**
|
|
83
84
|
* @public
|
|
84
85
|
*/
|
|
85
|
-
export type ServiceOutputTypes = AttachInstancesCommandOutput | AttachLoadBalancerTargetGroupsCommandOutput | AttachLoadBalancersCommandOutput | AttachTrafficSourcesCommandOutput | BatchDeleteScheduledActionCommandOutput | BatchPutScheduledUpdateGroupActionCommandOutput | CancelInstanceRefreshCommandOutput | CompleteLifecycleActionCommandOutput | CreateAutoScalingGroupCommandOutput | CreateLaunchConfigurationCommandOutput | CreateOrUpdateTagsCommandOutput | DeleteAutoScalingGroupCommandOutput | DeleteLaunchConfigurationCommandOutput | DeleteLifecycleHookCommandOutput | DeleteNotificationConfigurationCommandOutput | DeletePolicyCommandOutput | DeleteScheduledActionCommandOutput | DeleteTagsCommandOutput | DeleteWarmPoolCommandOutput | DescribeAccountLimitsCommandOutput | DescribeAdjustmentTypesCommandOutput | DescribeAutoScalingGroupsCommandOutput | DescribeAutoScalingInstancesCommandOutput | DescribeAutoScalingNotificationTypesCommandOutput | DescribeInstanceRefreshesCommandOutput | DescribeLaunchConfigurationsCommandOutput | DescribeLifecycleHookTypesCommandOutput | DescribeLifecycleHooksCommandOutput | DescribeLoadBalancerTargetGroupsCommandOutput | DescribeLoadBalancersCommandOutput | DescribeMetricCollectionTypesCommandOutput | DescribeNotificationConfigurationsCommandOutput | DescribePoliciesCommandOutput | DescribeScalingActivitiesCommandOutput | DescribeScalingProcessTypesCommandOutput | DescribeScheduledActionsCommandOutput | DescribeTagsCommandOutput | DescribeTerminationPolicyTypesCommandOutput | DescribeTrafficSourcesCommandOutput | DescribeWarmPoolCommandOutput | DetachInstancesCommandOutput | DetachLoadBalancerTargetGroupsCommandOutput | DetachLoadBalancersCommandOutput | DetachTrafficSourcesCommandOutput | DisableMetricsCollectionCommandOutput | EnableMetricsCollectionCommandOutput | EnterStandbyCommandOutput | ExecutePolicyCommandOutput | ExitStandbyCommandOutput | GetPredictiveScalingForecastCommandOutput | PutLifecycleHookCommandOutput | PutNotificationConfigurationCommandOutput | PutScalingPolicyCommandOutput | PutScheduledUpdateGroupActionCommandOutput | PutWarmPoolCommandOutput | RecordLifecycleActionHeartbeatCommandOutput | ResumeProcessesCommandOutput | RollbackInstanceRefreshCommandOutput | SetDesiredCapacityCommandOutput | SetInstanceHealthCommandOutput | SetInstanceProtectionCommandOutput | StartInstanceRefreshCommandOutput | SuspendProcessesCommandOutput | TerminateInstanceInAutoScalingGroupCommandOutput | UpdateAutoScalingGroupCommandOutput;
|
|
86
|
+
export type ServiceOutputTypes = AttachInstancesCommandOutput | AttachLoadBalancerTargetGroupsCommandOutput | AttachLoadBalancersCommandOutput | AttachTrafficSourcesCommandOutput | BatchDeleteScheduledActionCommandOutput | BatchPutScheduledUpdateGroupActionCommandOutput | CancelInstanceRefreshCommandOutput | CompleteLifecycleActionCommandOutput | CreateAutoScalingGroupCommandOutput | CreateLaunchConfigurationCommandOutput | CreateOrUpdateTagsCommandOutput | DeleteAutoScalingGroupCommandOutput | DeleteLaunchConfigurationCommandOutput | DeleteLifecycleHookCommandOutput | DeleteNotificationConfigurationCommandOutput | DeletePolicyCommandOutput | DeleteScheduledActionCommandOutput | DeleteTagsCommandOutput | DeleteWarmPoolCommandOutput | DescribeAccountLimitsCommandOutput | DescribeAdjustmentTypesCommandOutput | DescribeAutoScalingGroupsCommandOutput | DescribeAutoScalingInstancesCommandOutput | DescribeAutoScalingNotificationTypesCommandOutput | DescribeInstanceRefreshesCommandOutput | DescribeLaunchConfigurationsCommandOutput | DescribeLifecycleHookTypesCommandOutput | DescribeLifecycleHooksCommandOutput | DescribeLoadBalancerTargetGroupsCommandOutput | DescribeLoadBalancersCommandOutput | DescribeMetricCollectionTypesCommandOutput | DescribeNotificationConfigurationsCommandOutput | DescribePoliciesCommandOutput | DescribeScalingActivitiesCommandOutput | DescribeScalingProcessTypesCommandOutput | DescribeScheduledActionsCommandOutput | DescribeTagsCommandOutput | DescribeTerminationPolicyTypesCommandOutput | DescribeTrafficSourcesCommandOutput | DescribeWarmPoolCommandOutput | DetachInstancesCommandOutput | DetachLoadBalancerTargetGroupsCommandOutput | DetachLoadBalancersCommandOutput | DetachTrafficSourcesCommandOutput | DisableMetricsCollectionCommandOutput | EnableMetricsCollectionCommandOutput | EnterStandbyCommandOutput | ExecutePolicyCommandOutput | ExitStandbyCommandOutput | GetPredictiveScalingForecastCommandOutput | LaunchInstancesCommandOutput | PutLifecycleHookCommandOutput | PutNotificationConfigurationCommandOutput | PutScalingPolicyCommandOutput | PutScheduledUpdateGroupActionCommandOutput | PutWarmPoolCommandOutput | RecordLifecycleActionHeartbeatCommandOutput | ResumeProcessesCommandOutput | RollbackInstanceRefreshCommandOutput | SetDesiredCapacityCommandOutput | SetInstanceHealthCommandOutput | SetInstanceProtectionCommandOutput | StartInstanceRefreshCommandOutput | SuspendProcessesCommandOutput | TerminateInstanceInAutoScalingGroupCommandOutput | UpdateAutoScalingGroupCommandOutput;
|
|
86
87
|
/**
|
|
87
88
|
* @public
|
|
88
89
|
*/
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient";
|
|
4
|
+
import { LaunchInstancesRequest, LaunchInstancesResult } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link LaunchInstancesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface LaunchInstancesCommandInput extends LaunchInstancesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link LaunchInstancesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface LaunchInstancesCommandOutput extends LaunchInstancesResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const LaunchInstancesCommand_base: {
|
|
25
|
+
new (input: LaunchInstancesCommandInput): import("@smithy/smithy-client").CommandImpl<LaunchInstancesCommandInput, LaunchInstancesCommandOutput, AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: LaunchInstancesCommandInput): import("@smithy/smithy-client").CommandImpl<LaunchInstancesCommandInput, LaunchInstancesCommandOutput, AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p> Launches a specified number of instances in an Auto Scaling group. Returns instance IDs and
|
|
31
|
+
* other details if launch is successful or error details if launch is unsuccessful. </p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { AutoScalingClient, LaunchInstancesCommand } from "@aws-sdk/client-auto-scaling"; // ES Modules import
|
|
36
|
+
* // const { AutoScalingClient, LaunchInstancesCommand } = require("@aws-sdk/client-auto-scaling"); // CommonJS import
|
|
37
|
+
* // import type { AutoScalingClientConfig } from "@aws-sdk/client-auto-scaling";
|
|
38
|
+
* const config = {}; // type is AutoScalingClientConfig
|
|
39
|
+
* const client = new AutoScalingClient(config);
|
|
40
|
+
* const input = { // LaunchInstancesRequest
|
|
41
|
+
* AutoScalingGroupName: "STRING_VALUE", // required
|
|
42
|
+
* RequestedCapacity: Number("int"), // required
|
|
43
|
+
* ClientToken: "STRING_VALUE", // required
|
|
44
|
+
* AvailabilityZones: [ // AvailabilityZonesLimit1
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* AvailabilityZoneIds: [ // AvailabilityZoneIdsLimit1
|
|
48
|
+
* "STRING_VALUE",
|
|
49
|
+
* ],
|
|
50
|
+
* SubnetIds: [ // SubnetIdsLimit1
|
|
51
|
+
* "STRING_VALUE",
|
|
52
|
+
* ],
|
|
53
|
+
* RetryStrategy: "retry-with-group-configuration" || "none",
|
|
54
|
+
* };
|
|
55
|
+
* const command = new LaunchInstancesCommand(input);
|
|
56
|
+
* const response = await client.send(command);
|
|
57
|
+
* // { // LaunchInstancesResult
|
|
58
|
+
* // AutoScalingGroupName: "STRING_VALUE",
|
|
59
|
+
* // ClientToken: "STRING_VALUE",
|
|
60
|
+
* // Instances: [ // InstanceCollections
|
|
61
|
+
* // { // InstanceCollection
|
|
62
|
+
* // InstanceType: "STRING_VALUE",
|
|
63
|
+
* // MarketType: "STRING_VALUE",
|
|
64
|
+
* // SubnetId: "STRING_VALUE",
|
|
65
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
66
|
+
* // AvailabilityZoneId: "STRING_VALUE",
|
|
67
|
+
* // InstanceIds: [ // InstanceIds
|
|
68
|
+
* // "STRING_VALUE",
|
|
69
|
+
* // ],
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // Errors: [ // LaunchInstancesErrors
|
|
73
|
+
* // { // LaunchInstancesError
|
|
74
|
+
* // InstanceType: "STRING_VALUE",
|
|
75
|
+
* // MarketType: "STRING_VALUE",
|
|
76
|
+
* // SubnetId: "STRING_VALUE",
|
|
77
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
78
|
+
* // AvailabilityZoneId: "STRING_VALUE",
|
|
79
|
+
* // ErrorCode: "STRING_VALUE",
|
|
80
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // ],
|
|
83
|
+
* // };
|
|
84
|
+
*
|
|
85
|
+
* ```
|
|
86
|
+
*
|
|
87
|
+
* @param LaunchInstancesCommandInput - {@link LaunchInstancesCommandInput}
|
|
88
|
+
* @returns {@link LaunchInstancesCommandOutput}
|
|
89
|
+
* @see {@link LaunchInstancesCommandInput} for command's `input` shape.
|
|
90
|
+
* @see {@link LaunchInstancesCommandOutput} for command's `response` shape.
|
|
91
|
+
* @see {@link AutoScalingClientResolvedConfig | config} for AutoScalingClient's `config` shape.
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link IdempotentParameterMismatchError} (client fault)
|
|
94
|
+
* <p>
|
|
95
|
+
* Indicates that the parameters in the current request do not match the parameters from a previous request with the same client token within the idempotency window.
|
|
96
|
+
* </p>
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link ResourceContentionFault} (server fault)
|
|
99
|
+
* <p>You already have a pending update to an Amazon EC2 Auto Scaling resource (for example, an Auto Scaling group,
|
|
100
|
+
* instance, or load balancer).</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link AutoScalingServiceException}
|
|
103
|
+
* <p>Base exception class for all service exceptions from AutoScaling service.</p>
|
|
104
|
+
*
|
|
105
|
+
*
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export declare class LaunchInstancesCommand extends LaunchInstancesCommand_base {
|
|
109
|
+
/** @internal type navigation helper, not in runtime. */
|
|
110
|
+
protected static __types: {
|
|
111
|
+
api: {
|
|
112
|
+
input: LaunchInstancesRequest;
|
|
113
|
+
output: LaunchInstancesResult;
|
|
114
|
+
};
|
|
115
|
+
sdk: {
|
|
116
|
+
input: LaunchInstancesCommandInput;
|
|
117
|
+
output: LaunchInstancesCommandOutput;
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
}
|
|
@@ -48,6 +48,7 @@ export * from "./EnterStandbyCommand";
|
|
|
48
48
|
export * from "./ExecutePolicyCommand";
|
|
49
49
|
export * from "./ExitStandbyCommand";
|
|
50
50
|
export * from "./GetPredictiveScalingForecastCommand";
|
|
51
|
+
export * from "./LaunchInstancesCommand";
|
|
51
52
|
export * from "./PutLifecycleHookCommand";
|
|
52
53
|
export * from "./PutNotificationConfigurationCommand";
|
|
53
54
|
export * from "./PutScalingPolicyCommand";
|
|
@@ -1937,8 +1937,7 @@ export interface CreateAutoScalingGroupType {
|
|
|
1937
1937
|
*/
|
|
1938
1938
|
MixedInstancesPolicy?: MixedInstancesPolicy | undefined;
|
|
1939
1939
|
/**
|
|
1940
|
-
* <p>The ID of the instance used to base the launch configuration on. If specified, Amazon
|
|
1941
|
-
* EC2 Auto Scaling uses the configuration values from the specified instance to create a
|
|
1940
|
+
* <p>The ID of the instance used to base the launch configuration on. If specified, Amazon EC2 Auto Scaling uses the configuration values from the specified instance to create a
|
|
1942
1941
|
* new launch configuration. To get the instance ID, use the Amazon EC2 <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html">DescribeInstances</a> API operation. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-asg-from-instance.html">Create an Auto Scaling group using parameters from an existing instance</a> in the
|
|
1943
1942
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
1944
1943
|
* @public
|
|
@@ -6861,6 +6860,227 @@ export interface GetPredictiveScalingForecastType {
|
|
|
6861
6860
|
*/
|
|
6862
6861
|
EndTime: Date | undefined;
|
|
6863
6862
|
}
|
|
6863
|
+
/**
|
|
6864
|
+
* <p>
|
|
6865
|
+
* Indicates that the parameters in the current request do not match the parameters from a previous request with the same client token within the idempotency window.
|
|
6866
|
+
* </p>
|
|
6867
|
+
* @public
|
|
6868
|
+
*/
|
|
6869
|
+
export declare class IdempotentParameterMismatchError extends __BaseException {
|
|
6870
|
+
readonly name: "IdempotentParameterMismatchError";
|
|
6871
|
+
readonly $fault: "client";
|
|
6872
|
+
Message?: string | undefined;
|
|
6873
|
+
/**
|
|
6874
|
+
* @internal
|
|
6875
|
+
*/
|
|
6876
|
+
constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchError, __BaseException>);
|
|
6877
|
+
}
|
|
6878
|
+
/**
|
|
6879
|
+
* @public
|
|
6880
|
+
* @enum
|
|
6881
|
+
*/
|
|
6882
|
+
export declare const RetryStrategy: {
|
|
6883
|
+
readonly NONE: "none";
|
|
6884
|
+
readonly RETRY_WITH_GROUP_CONFIGURATION: "retry-with-group-configuration";
|
|
6885
|
+
};
|
|
6886
|
+
/**
|
|
6887
|
+
* @public
|
|
6888
|
+
*/
|
|
6889
|
+
export type RetryStrategy = (typeof RetryStrategy)[keyof typeof RetryStrategy];
|
|
6890
|
+
/**
|
|
6891
|
+
* @public
|
|
6892
|
+
*/
|
|
6893
|
+
export interface LaunchInstancesRequest {
|
|
6894
|
+
/**
|
|
6895
|
+
* <p>
|
|
6896
|
+
* The name of the Auto Scaling group to launch instances into.
|
|
6897
|
+
* </p>
|
|
6898
|
+
* @public
|
|
6899
|
+
*/
|
|
6900
|
+
AutoScalingGroupName: string | undefined;
|
|
6901
|
+
/**
|
|
6902
|
+
* <p>
|
|
6903
|
+
* The number of instances to launch. Although this value can exceed 100 for instance weights, the actual instance count is limited to 100 instances per launch.
|
|
6904
|
+
* </p>
|
|
6905
|
+
* @public
|
|
6906
|
+
*/
|
|
6907
|
+
RequestedCapacity: number | undefined;
|
|
6908
|
+
/**
|
|
6909
|
+
* <p>
|
|
6910
|
+
* A unique, case-sensitive identifier to ensure idempotency of the request.
|
|
6911
|
+
* </p>
|
|
6912
|
+
* @public
|
|
6913
|
+
*/
|
|
6914
|
+
ClientToken?: string | undefined;
|
|
6915
|
+
/**
|
|
6916
|
+
* <p>
|
|
6917
|
+
* The Availability Zones for the instance launch. Must match or be included in the Auto Scaling group's Availability Zone configuration. Either <code>AvailabilityZones</code> or <code>SubnetIds</code> must be specified for groups with multiple Availability Zone configurations.
|
|
6918
|
+
* </p>
|
|
6919
|
+
* @public
|
|
6920
|
+
*/
|
|
6921
|
+
AvailabilityZones?: string[] | undefined;
|
|
6922
|
+
/**
|
|
6923
|
+
* <p>
|
|
6924
|
+
* A list of Availability Zone IDs where instances should be launched. Must match or be included in the group's AZ configuration. You cannot specify both AvailabilityZones and AvailabilityZoneIds. Required for multi-AZ groups, optional for single-AZ groups.
|
|
6925
|
+
* </p>
|
|
6926
|
+
* @public
|
|
6927
|
+
*/
|
|
6928
|
+
AvailabilityZoneIds?: string[] | undefined;
|
|
6929
|
+
/**
|
|
6930
|
+
* <p>
|
|
6931
|
+
* The subnet IDs for the instance launch. Either <code>AvailabilityZones</code> or <code>SubnetIds</code> must be specified. If both are specified, the subnets must reside in the specified Availability Zones.
|
|
6932
|
+
* </p>
|
|
6933
|
+
* @public
|
|
6934
|
+
*/
|
|
6935
|
+
SubnetIds?: string[] | undefined;
|
|
6936
|
+
/**
|
|
6937
|
+
* <p>
|
|
6938
|
+
* Specifies whether to retry asynchronously if the synchronous launch fails. Valid values are NONE (default, no async retry) and RETRY_WITH_GROUP_CONFIGURATION (increase desired capacity and retry with group configuration).
|
|
6939
|
+
* </p>
|
|
6940
|
+
* @public
|
|
6941
|
+
*/
|
|
6942
|
+
RetryStrategy?: RetryStrategy | undefined;
|
|
6943
|
+
}
|
|
6944
|
+
/**
|
|
6945
|
+
* <p>
|
|
6946
|
+
* Contains details about errors encountered during instance launch attempts.
|
|
6947
|
+
* </p>
|
|
6948
|
+
* @public
|
|
6949
|
+
*/
|
|
6950
|
+
export interface LaunchInstancesError {
|
|
6951
|
+
/**
|
|
6952
|
+
* <p>
|
|
6953
|
+
* The instance type that failed to launch.
|
|
6954
|
+
* </p>
|
|
6955
|
+
* @public
|
|
6956
|
+
*/
|
|
6957
|
+
InstanceType?: string | undefined;
|
|
6958
|
+
/**
|
|
6959
|
+
* <p>
|
|
6960
|
+
* The market type (On-Demand or Spot) that encountered the launch error.
|
|
6961
|
+
* </p>
|
|
6962
|
+
* @public
|
|
6963
|
+
*/
|
|
6964
|
+
MarketType?: string | undefined;
|
|
6965
|
+
/**
|
|
6966
|
+
* <p>
|
|
6967
|
+
* The subnet ID where the instance launch was attempted.
|
|
6968
|
+
* </p>
|
|
6969
|
+
* @public
|
|
6970
|
+
*/
|
|
6971
|
+
SubnetId?: string | undefined;
|
|
6972
|
+
/**
|
|
6973
|
+
* <p>
|
|
6974
|
+
* The Availability Zone where the instance launch was attempted.
|
|
6975
|
+
* </p>
|
|
6976
|
+
* @public
|
|
6977
|
+
*/
|
|
6978
|
+
AvailabilityZone?: string | undefined;
|
|
6979
|
+
/**
|
|
6980
|
+
* <p>
|
|
6981
|
+
* The Availability Zone ID where the launch error occurred.
|
|
6982
|
+
* </p>
|
|
6983
|
+
* @public
|
|
6984
|
+
*/
|
|
6985
|
+
AvailabilityZoneId?: string | undefined;
|
|
6986
|
+
/**
|
|
6987
|
+
* <p>
|
|
6988
|
+
* The error code representing the type of error encountered (e.g., InsufficientInstanceCapacity).
|
|
6989
|
+
* </p>
|
|
6990
|
+
* @public
|
|
6991
|
+
*/
|
|
6992
|
+
ErrorCode?: string | undefined;
|
|
6993
|
+
/**
|
|
6994
|
+
* <p>
|
|
6995
|
+
* A descriptive message providing details about the error encountered during the launch attempt.
|
|
6996
|
+
* </p>
|
|
6997
|
+
* @public
|
|
6998
|
+
*/
|
|
6999
|
+
ErrorMessage?: string | undefined;
|
|
7000
|
+
}
|
|
7001
|
+
/**
|
|
7002
|
+
* <p>
|
|
7003
|
+
* Contains details about a collection of instances launched in the Auto Scaling group.
|
|
7004
|
+
* </p>
|
|
7005
|
+
* @public
|
|
7006
|
+
*/
|
|
7007
|
+
export interface InstanceCollection {
|
|
7008
|
+
/**
|
|
7009
|
+
* <p>
|
|
7010
|
+
* The instance type of the launched instances.
|
|
7011
|
+
* </p>
|
|
7012
|
+
* @public
|
|
7013
|
+
*/
|
|
7014
|
+
InstanceType?: string | undefined;
|
|
7015
|
+
/**
|
|
7016
|
+
* <p>
|
|
7017
|
+
* The market type for the instances (On-Demand or Spot).
|
|
7018
|
+
* </p>
|
|
7019
|
+
* @public
|
|
7020
|
+
*/
|
|
7021
|
+
MarketType?: string | undefined;
|
|
7022
|
+
/**
|
|
7023
|
+
* <p>
|
|
7024
|
+
* The ID of the subnet where the instances were launched.
|
|
7025
|
+
* </p>
|
|
7026
|
+
* @public
|
|
7027
|
+
*/
|
|
7028
|
+
SubnetId?: string | undefined;
|
|
7029
|
+
/**
|
|
7030
|
+
* <p>
|
|
7031
|
+
* The Availability Zone where the instances were launched.
|
|
7032
|
+
* </p>
|
|
7033
|
+
* @public
|
|
7034
|
+
*/
|
|
7035
|
+
AvailabilityZone?: string | undefined;
|
|
7036
|
+
/**
|
|
7037
|
+
* <p>
|
|
7038
|
+
* The Availability Zone ID where the instances in this collection were launched.
|
|
7039
|
+
* </p>
|
|
7040
|
+
* @public
|
|
7041
|
+
*/
|
|
7042
|
+
AvailabilityZoneId?: string | undefined;
|
|
7043
|
+
/**
|
|
7044
|
+
* <p>
|
|
7045
|
+
* A list of instance IDs for the successfully launched instances.
|
|
7046
|
+
* </p>
|
|
7047
|
+
* @public
|
|
7048
|
+
*/
|
|
7049
|
+
InstanceIds?: string[] | undefined;
|
|
7050
|
+
}
|
|
7051
|
+
/**
|
|
7052
|
+
* @public
|
|
7053
|
+
*/
|
|
7054
|
+
export interface LaunchInstancesResult {
|
|
7055
|
+
/**
|
|
7056
|
+
* <p>
|
|
7057
|
+
* The name of the Auto Scaling group where the instances were launched.
|
|
7058
|
+
* </p>
|
|
7059
|
+
* @public
|
|
7060
|
+
*/
|
|
7061
|
+
AutoScalingGroupName?: string | undefined;
|
|
7062
|
+
/**
|
|
7063
|
+
* <p>
|
|
7064
|
+
* The idempotency token used for the request, either customer-specified or auto-generated.
|
|
7065
|
+
* </p>
|
|
7066
|
+
* @public
|
|
7067
|
+
*/
|
|
7068
|
+
ClientToken?: string | undefined;
|
|
7069
|
+
/**
|
|
7070
|
+
* <p>
|
|
7071
|
+
* A list of successfully launched instances including details such as instance type, Availability Zone, subnet, lifecycle state, and instance IDs.
|
|
7072
|
+
* </p>
|
|
7073
|
+
* @public
|
|
7074
|
+
*/
|
|
7075
|
+
Instances?: InstanceCollection[] | undefined;
|
|
7076
|
+
/**
|
|
7077
|
+
* <p>
|
|
7078
|
+
* A list of errors encountered during the launch attempt including details about failed instance launches with their corresponding error codes and messages.
|
|
7079
|
+
* </p>
|
|
7080
|
+
* @public
|
|
7081
|
+
*/
|
|
7082
|
+
Errors?: LaunchInstancesError[] | undefined;
|
|
7083
|
+
}
|
|
6864
7084
|
/**
|
|
6865
7085
|
* @public
|
|
6866
7086
|
*/
|
|
@@ -98,7 +98,9 @@ export declare var FailedScheduledUpdateGroupActionRequest: StaticStructureSchem
|
|
|
98
98
|
export declare var Filter: StaticStructureSchema;
|
|
99
99
|
export declare var GetPredictiveScalingForecastAnswer: StaticStructureSchema;
|
|
100
100
|
export declare var GetPredictiveScalingForecastType: StaticStructureSchema;
|
|
101
|
+
export declare var IdempotentParameterMismatchError: StaticErrorSchema;
|
|
101
102
|
export declare var Instance: StaticStructureSchema;
|
|
103
|
+
export declare var InstanceCollection: StaticStructureSchema;
|
|
102
104
|
export declare var InstanceMaintenancePolicy: StaticStructureSchema;
|
|
103
105
|
export declare var InstanceMetadataOptions: StaticStructureSchema;
|
|
104
106
|
export declare var InstanceMonitoring: StaticStructureSchema;
|
|
@@ -116,6 +118,9 @@ export declare var LaunchConfiguration: StaticStructureSchema;
|
|
|
116
118
|
export declare var LaunchConfigurationNamesType: StaticStructureSchema;
|
|
117
119
|
export declare var LaunchConfigurationNameType: StaticStructureSchema;
|
|
118
120
|
export declare var LaunchConfigurationsType: StaticStructureSchema;
|
|
121
|
+
export declare var LaunchInstancesError: StaticStructureSchema;
|
|
122
|
+
export declare var LaunchInstancesRequest: StaticStructureSchema;
|
|
123
|
+
export declare var LaunchInstancesResult: StaticStructureSchema;
|
|
119
124
|
export declare var LaunchTemplate: StaticStructureSchema;
|
|
120
125
|
export declare var LaunchTemplateOverrides: StaticStructureSchema;
|
|
121
126
|
export declare var LaunchTemplateSpecification: StaticStructureSchema;
|
|
@@ -209,7 +214,9 @@ export declare var AutoScalingGroupNames: number;
|
|
|
209
214
|
export declare var AutoScalingGroups: StaticListSchema;
|
|
210
215
|
export declare var AutoScalingInstances: StaticListSchema;
|
|
211
216
|
export declare var AutoScalingNotificationTypes: number;
|
|
217
|
+
export declare var AvailabilityZoneIdsLimit1: number;
|
|
212
218
|
export declare var AvailabilityZones: number;
|
|
219
|
+
export declare var AvailabilityZonesLimit1: number;
|
|
213
220
|
export declare var BlockDeviceMappings: StaticListSchema;
|
|
214
221
|
export declare var CapacityReservationIds: number;
|
|
215
222
|
export declare var CapacityReservationResourceGroupArns: number;
|
|
@@ -220,6 +227,7 @@ export declare var EnabledMetrics: StaticListSchema;
|
|
|
220
227
|
export declare var ExcludedInstanceTypes: number;
|
|
221
228
|
export declare var FailedScheduledUpdateGroupActionRequests: StaticListSchema;
|
|
222
229
|
export declare var Filters: StaticListSchema;
|
|
230
|
+
export declare var InstanceCollections: StaticListSchema;
|
|
223
231
|
export declare var InstanceGenerations: number;
|
|
224
232
|
export declare var InstanceIds: number;
|
|
225
233
|
export declare var InstanceRefreshes: StaticListSchema;
|
|
@@ -227,6 +235,7 @@ export declare var InstanceRefreshIds: number;
|
|
|
227
235
|
export declare var Instances: StaticListSchema;
|
|
228
236
|
export declare var LaunchConfigurationNames: number;
|
|
229
237
|
export declare var LaunchConfigurations: StaticListSchema;
|
|
238
|
+
export declare var LaunchInstancesErrors: StaticListSchema;
|
|
230
239
|
export declare var LifecycleHookNames: number;
|
|
231
240
|
export declare var LifecycleHooks: StaticListSchema;
|
|
232
241
|
export declare var LifecycleHookSpecifications: StaticListSchema;
|
|
@@ -256,6 +265,7 @@ export declare var ScheduledUpdateGroupActionRequests: StaticListSchema;
|
|
|
256
265
|
export declare var ScheduledUpdateGroupActions: StaticListSchema;
|
|
257
266
|
export declare var SecurityGroups: number;
|
|
258
267
|
export declare var StepAdjustments: StaticListSchema;
|
|
268
|
+
export declare var SubnetIdsLimit1: number;
|
|
259
269
|
export declare var SuspendedProcesses: StaticListSchema;
|
|
260
270
|
export declare var TagDescriptionList: StaticListSchema;
|
|
261
271
|
export declare var Tags: StaticListSchema;
|
|
@@ -315,6 +325,7 @@ export declare var EnterStandby: StaticOperationSchema;
|
|
|
315
325
|
export declare var ExecutePolicy: StaticOperationSchema;
|
|
316
326
|
export declare var ExitStandby: StaticOperationSchema;
|
|
317
327
|
export declare var GetPredictiveScalingForecast: StaticOperationSchema;
|
|
328
|
+
export declare var LaunchInstances: StaticOperationSchema;
|
|
318
329
|
export declare var PutLifecycleHook: StaticOperationSchema;
|
|
319
330
|
export declare var PutNotificationConfiguration: StaticOperationSchema;
|
|
320
331
|
export declare var PutScalingPolicy: StaticOperationSchema;
|
|
@@ -200,6 +200,10 @@ import {
|
|
|
200
200
|
GetPredictiveScalingForecastCommandInput,
|
|
201
201
|
GetPredictiveScalingForecastCommandOutput,
|
|
202
202
|
} from "./commands/GetPredictiveScalingForecastCommand";
|
|
203
|
+
import {
|
|
204
|
+
LaunchInstancesCommandInput,
|
|
205
|
+
LaunchInstancesCommandOutput,
|
|
206
|
+
} from "./commands/LaunchInstancesCommand";
|
|
203
207
|
import {
|
|
204
208
|
PutLifecycleHookCommandInput,
|
|
205
209
|
PutLifecycleHookCommandOutput,
|
|
@@ -944,6 +948,19 @@ export interface AutoScaling {
|
|
|
944
948
|
options: __HttpHandlerOptions,
|
|
945
949
|
cb: (err: any, data?: GetPredictiveScalingForecastCommandOutput) => void
|
|
946
950
|
): void;
|
|
951
|
+
launchInstances(
|
|
952
|
+
args: LaunchInstancesCommandInput,
|
|
953
|
+
options?: __HttpHandlerOptions
|
|
954
|
+
): Promise<LaunchInstancesCommandOutput>;
|
|
955
|
+
launchInstances(
|
|
956
|
+
args: LaunchInstancesCommandInput,
|
|
957
|
+
cb: (err: any, data?: LaunchInstancesCommandOutput) => void
|
|
958
|
+
): void;
|
|
959
|
+
launchInstances(
|
|
960
|
+
args: LaunchInstancesCommandInput,
|
|
961
|
+
options: __HttpHandlerOptions,
|
|
962
|
+
cb: (err: any, data?: LaunchInstancesCommandOutput) => void
|
|
963
|
+
): void;
|
|
947
964
|
putLifecycleHook(
|
|
948
965
|
args: PutLifecycleHookCommandInput,
|
|
949
966
|
options?: __HttpHandlerOptions
|
|
@@ -248,6 +248,10 @@ import {
|
|
|
248
248
|
GetPredictiveScalingForecastCommandInput,
|
|
249
249
|
GetPredictiveScalingForecastCommandOutput,
|
|
250
250
|
} from "./commands/GetPredictiveScalingForecastCommand";
|
|
251
|
+
import {
|
|
252
|
+
LaunchInstancesCommandInput,
|
|
253
|
+
LaunchInstancesCommandOutput,
|
|
254
|
+
} from "./commands/LaunchInstancesCommand";
|
|
251
255
|
import {
|
|
252
256
|
PutLifecycleHookCommandInput,
|
|
253
257
|
PutLifecycleHookCommandOutput,
|
|
@@ -366,6 +370,7 @@ export type ServiceInputTypes =
|
|
|
366
370
|
| ExecutePolicyCommandInput
|
|
367
371
|
| ExitStandbyCommandInput
|
|
368
372
|
| GetPredictiveScalingForecastCommandInput
|
|
373
|
+
| LaunchInstancesCommandInput
|
|
369
374
|
| PutLifecycleHookCommandInput
|
|
370
375
|
| PutNotificationConfigurationCommandInput
|
|
371
376
|
| PutScalingPolicyCommandInput
|
|
@@ -432,6 +437,7 @@ export type ServiceOutputTypes =
|
|
|
432
437
|
| ExecutePolicyCommandOutput
|
|
433
438
|
| ExitStandbyCommandOutput
|
|
434
439
|
| GetPredictiveScalingForecastCommandOutput
|
|
440
|
+
| LaunchInstancesCommandOutput
|
|
435
441
|
| PutLifecycleHookCommandOutput
|
|
436
442
|
| PutNotificationConfigurationCommandOutput
|
|
437
443
|
| PutScalingPolicyCommandOutput
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AutoScalingClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AutoScalingClient";
|
|
8
|
+
import {
|
|
9
|
+
LaunchInstancesRequest,
|
|
10
|
+
LaunchInstancesResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface LaunchInstancesCommandInput extends LaunchInstancesRequest {}
|
|
15
|
+
export interface LaunchInstancesCommandOutput
|
|
16
|
+
extends LaunchInstancesResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const LaunchInstancesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: LaunchInstancesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
LaunchInstancesCommandInput,
|
|
23
|
+
LaunchInstancesCommandOutput,
|
|
24
|
+
AutoScalingClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: LaunchInstancesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
LaunchInstancesCommandInput,
|
|
32
|
+
LaunchInstancesCommandOutput,
|
|
33
|
+
AutoScalingClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class LaunchInstancesCommand extends LaunchInstancesCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: LaunchInstancesRequest;
|
|
43
|
+
output: LaunchInstancesResult;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: LaunchInstancesCommandInput;
|
|
47
|
+
output: LaunchInstancesCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -48,6 +48,7 @@ export * from "./EnterStandbyCommand";
|
|
|
48
48
|
export * from "./ExecutePolicyCommand";
|
|
49
49
|
export * from "./ExitStandbyCommand";
|
|
50
50
|
export * from "./GetPredictiveScalingForecastCommand";
|
|
51
|
+
export * from "./LaunchInstancesCommand";
|
|
51
52
|
export * from "./PutLifecycleHookCommand";
|
|
52
53
|
export * from "./PutNotificationConfigurationCommand";
|
|
53
54
|
export * from "./PutScalingPolicyCommand";
|
|
@@ -1216,6 +1216,54 @@ export interface GetPredictiveScalingForecastType {
|
|
|
1216
1216
|
StartTime: Date | undefined;
|
|
1217
1217
|
EndTime: Date | undefined;
|
|
1218
1218
|
}
|
|
1219
|
+
export declare class IdempotentParameterMismatchError extends __BaseException {
|
|
1220
|
+
readonly name: "IdempotentParameterMismatchError";
|
|
1221
|
+
readonly $fault: "client";
|
|
1222
|
+
Message?: string | undefined;
|
|
1223
|
+
constructor(
|
|
1224
|
+
opts: __ExceptionOptionType<
|
|
1225
|
+
IdempotentParameterMismatchError,
|
|
1226
|
+
__BaseException
|
|
1227
|
+
>
|
|
1228
|
+
);
|
|
1229
|
+
}
|
|
1230
|
+
export declare const RetryStrategy: {
|
|
1231
|
+
readonly NONE: "none";
|
|
1232
|
+
readonly RETRY_WITH_GROUP_CONFIGURATION: "retry-with-group-configuration";
|
|
1233
|
+
};
|
|
1234
|
+
export type RetryStrategy = (typeof RetryStrategy)[keyof typeof RetryStrategy];
|
|
1235
|
+
export interface LaunchInstancesRequest {
|
|
1236
|
+
AutoScalingGroupName: string | undefined;
|
|
1237
|
+
RequestedCapacity: number | undefined;
|
|
1238
|
+
ClientToken?: string | undefined;
|
|
1239
|
+
AvailabilityZones?: string[] | undefined;
|
|
1240
|
+
AvailabilityZoneIds?: string[] | undefined;
|
|
1241
|
+
SubnetIds?: string[] | undefined;
|
|
1242
|
+
RetryStrategy?: RetryStrategy | undefined;
|
|
1243
|
+
}
|
|
1244
|
+
export interface LaunchInstancesError {
|
|
1245
|
+
InstanceType?: string | undefined;
|
|
1246
|
+
MarketType?: string | undefined;
|
|
1247
|
+
SubnetId?: string | undefined;
|
|
1248
|
+
AvailabilityZone?: string | undefined;
|
|
1249
|
+
AvailabilityZoneId?: string | undefined;
|
|
1250
|
+
ErrorCode?: string | undefined;
|
|
1251
|
+
ErrorMessage?: string | undefined;
|
|
1252
|
+
}
|
|
1253
|
+
export interface InstanceCollection {
|
|
1254
|
+
InstanceType?: string | undefined;
|
|
1255
|
+
MarketType?: string | undefined;
|
|
1256
|
+
SubnetId?: string | undefined;
|
|
1257
|
+
AvailabilityZone?: string | undefined;
|
|
1258
|
+
AvailabilityZoneId?: string | undefined;
|
|
1259
|
+
InstanceIds?: string[] | undefined;
|
|
1260
|
+
}
|
|
1261
|
+
export interface LaunchInstancesResult {
|
|
1262
|
+
AutoScalingGroupName?: string | undefined;
|
|
1263
|
+
ClientToken?: string | undefined;
|
|
1264
|
+
Instances?: InstanceCollection[] | undefined;
|
|
1265
|
+
Errors?: LaunchInstancesError[] | undefined;
|
|
1266
|
+
}
|
|
1219
1267
|
export interface PutLifecycleHookAnswer {}
|
|
1220
1268
|
export interface PutLifecycleHookType {
|
|
1221
1269
|
LifecycleHookName: string | undefined;
|
|
@@ -103,7 +103,9 @@ export declare var FailedScheduledUpdateGroupActionRequest: StaticStructureSchem
|
|
|
103
103
|
export declare var Filter: StaticStructureSchema;
|
|
104
104
|
export declare var GetPredictiveScalingForecastAnswer: StaticStructureSchema;
|
|
105
105
|
export declare var GetPredictiveScalingForecastType: StaticStructureSchema;
|
|
106
|
+
export declare var IdempotentParameterMismatchError: StaticErrorSchema;
|
|
106
107
|
export declare var Instance: StaticStructureSchema;
|
|
108
|
+
export declare var InstanceCollection: StaticStructureSchema;
|
|
107
109
|
export declare var InstanceMaintenancePolicy: StaticStructureSchema;
|
|
108
110
|
export declare var InstanceMetadataOptions: StaticStructureSchema;
|
|
109
111
|
export declare var InstanceMonitoring: StaticStructureSchema;
|
|
@@ -121,6 +123,9 @@ export declare var LaunchConfiguration: StaticStructureSchema;
|
|
|
121
123
|
export declare var LaunchConfigurationNamesType: StaticStructureSchema;
|
|
122
124
|
export declare var LaunchConfigurationNameType: StaticStructureSchema;
|
|
123
125
|
export declare var LaunchConfigurationsType: StaticStructureSchema;
|
|
126
|
+
export declare var LaunchInstancesError: StaticStructureSchema;
|
|
127
|
+
export declare var LaunchInstancesRequest: StaticStructureSchema;
|
|
128
|
+
export declare var LaunchInstancesResult: StaticStructureSchema;
|
|
124
129
|
export declare var LaunchTemplate: StaticStructureSchema;
|
|
125
130
|
export declare var LaunchTemplateOverrides: StaticStructureSchema;
|
|
126
131
|
export declare var LaunchTemplateSpecification: StaticStructureSchema;
|
|
@@ -214,7 +219,9 @@ export declare var AutoScalingGroupNames: number;
|
|
|
214
219
|
export declare var AutoScalingGroups: StaticListSchema;
|
|
215
220
|
export declare var AutoScalingInstances: StaticListSchema;
|
|
216
221
|
export declare var AutoScalingNotificationTypes: number;
|
|
222
|
+
export declare var AvailabilityZoneIdsLimit1: number;
|
|
217
223
|
export declare var AvailabilityZones: number;
|
|
224
|
+
export declare var AvailabilityZonesLimit1: number;
|
|
218
225
|
export declare var BlockDeviceMappings: StaticListSchema;
|
|
219
226
|
export declare var CapacityReservationIds: number;
|
|
220
227
|
export declare var CapacityReservationResourceGroupArns: number;
|
|
@@ -225,6 +232,7 @@ export declare var EnabledMetrics: StaticListSchema;
|
|
|
225
232
|
export declare var ExcludedInstanceTypes: number;
|
|
226
233
|
export declare var FailedScheduledUpdateGroupActionRequests: StaticListSchema;
|
|
227
234
|
export declare var Filters: StaticListSchema;
|
|
235
|
+
export declare var InstanceCollections: StaticListSchema;
|
|
228
236
|
export declare var InstanceGenerations: number;
|
|
229
237
|
export declare var InstanceIds: number;
|
|
230
238
|
export declare var InstanceRefreshes: StaticListSchema;
|
|
@@ -232,6 +240,7 @@ export declare var InstanceRefreshIds: number;
|
|
|
232
240
|
export declare var Instances: StaticListSchema;
|
|
233
241
|
export declare var LaunchConfigurationNames: number;
|
|
234
242
|
export declare var LaunchConfigurations: StaticListSchema;
|
|
243
|
+
export declare var LaunchInstancesErrors: StaticListSchema;
|
|
235
244
|
export declare var LifecycleHookNames: number;
|
|
236
245
|
export declare var LifecycleHooks: StaticListSchema;
|
|
237
246
|
export declare var LifecycleHookSpecifications: StaticListSchema;
|
|
@@ -261,6 +270,7 @@ export declare var ScheduledUpdateGroupActionRequests: StaticListSchema;
|
|
|
261
270
|
export declare var ScheduledUpdateGroupActions: StaticListSchema;
|
|
262
271
|
export declare var SecurityGroups: number;
|
|
263
272
|
export declare var StepAdjustments: StaticListSchema;
|
|
273
|
+
export declare var SubnetIdsLimit1: number;
|
|
264
274
|
export declare var SuspendedProcesses: StaticListSchema;
|
|
265
275
|
export declare var TagDescriptionList: StaticListSchema;
|
|
266
276
|
export declare var Tags: StaticListSchema;
|
|
@@ -320,6 +330,7 @@ export declare var EnterStandby: StaticOperationSchema;
|
|
|
320
330
|
export declare var ExecutePolicy: StaticOperationSchema;
|
|
321
331
|
export declare var ExitStandby: StaticOperationSchema;
|
|
322
332
|
export declare var GetPredictiveScalingForecast: StaticOperationSchema;
|
|
333
|
+
export declare var LaunchInstances: StaticOperationSchema;
|
|
323
334
|
export declare var PutLifecycleHook: StaticOperationSchema;
|
|
324
335
|
export declare var PutNotificationConfiguration: StaticOperationSchema;
|
|
325
336
|
export declare var PutScalingPolicy: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-auto-scaling",
|
|
3
3
|
"description": "AWS SDK for JavaScript Auto Scaling Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.934.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-auto-scaling",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.934.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.934.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.934.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.934.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|