@aws-sdk/client-auto-scaling-plans 3.933.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +83 -82
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +82 -0
- package/dist-es/models/errors.js +85 -0
- package/dist-es/models/models_0.js +1 -167
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +178 -0
- package/dist-types/models/errors.d.ts +82 -0
- package/dist-types/models/models_0.d.ts +1 -260
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +105 -0
- package/dist-types/ts3.4/models/errors.d.ts +50 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -155
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
export declare const MetricStatistic: {
|
|
2
|
+
readonly Average: "Average";
|
|
3
|
+
readonly Maximum: "Maximum";
|
|
4
|
+
readonly Minimum: "Minimum";
|
|
5
|
+
readonly SampleCount: "SampleCount";
|
|
6
|
+
readonly Sum: "Sum";
|
|
7
|
+
};
|
|
8
|
+
export type MetricStatistic =
|
|
9
|
+
(typeof MetricStatistic)[keyof typeof MetricStatistic];
|
|
10
|
+
export declare const LoadMetricType: {
|
|
11
|
+
readonly ALBTargetGroupRequestCount: "ALBTargetGroupRequestCount";
|
|
12
|
+
readonly ASGTotalCPUUtilization: "ASGTotalCPUUtilization";
|
|
13
|
+
readonly ASGTotalNetworkIn: "ASGTotalNetworkIn";
|
|
14
|
+
readonly ASGTotalNetworkOut: "ASGTotalNetworkOut";
|
|
15
|
+
};
|
|
16
|
+
export type LoadMetricType =
|
|
17
|
+
(typeof LoadMetricType)[keyof typeof LoadMetricType];
|
|
18
|
+
export declare const PredictiveScalingMaxCapacityBehavior: {
|
|
19
|
+
readonly SetForecastCapacityToMaxCapacity: "SetForecastCapacityToMaxCapacity";
|
|
20
|
+
readonly SetMaxCapacityAboveForecastCapacity: "SetMaxCapacityAboveForecastCapacity";
|
|
21
|
+
readonly SetMaxCapacityToForecastCapacity: "SetMaxCapacityToForecastCapacity";
|
|
22
|
+
};
|
|
23
|
+
export type PredictiveScalingMaxCapacityBehavior =
|
|
24
|
+
(typeof PredictiveScalingMaxCapacityBehavior)[keyof typeof PredictiveScalingMaxCapacityBehavior];
|
|
25
|
+
export declare const PredictiveScalingMode: {
|
|
26
|
+
readonly ForecastAndScale: "ForecastAndScale";
|
|
27
|
+
readonly ForecastOnly: "ForecastOnly";
|
|
28
|
+
};
|
|
29
|
+
export type PredictiveScalingMode =
|
|
30
|
+
(typeof PredictiveScalingMode)[keyof typeof PredictiveScalingMode];
|
|
31
|
+
export declare const ScalableDimension: {
|
|
32
|
+
readonly AutoScalingGroupDesiredCapacity: "autoscaling:autoScalingGroup:DesiredCapacity";
|
|
33
|
+
readonly DynamoDBIndexReadCapacityUnits: "dynamodb:index:ReadCapacityUnits";
|
|
34
|
+
readonly DynamoDBIndexWriteCapacityUnits: "dynamodb:index:WriteCapacityUnits";
|
|
35
|
+
readonly DynamoDBTableReadCapacityUnits: "dynamodb:table:ReadCapacityUnits";
|
|
36
|
+
readonly DynamoDBTableWriteCapacityUnits: "dynamodb:table:WriteCapacityUnits";
|
|
37
|
+
readonly EC2SpotFleetRequestTargetCapacity: "ec2:spot-fleet-request:TargetCapacity";
|
|
38
|
+
readonly ECSServiceDesiredCount: "ecs:service:DesiredCount";
|
|
39
|
+
readonly RDSClusterReadReplicaCount: "rds:cluster:ReadReplicaCount";
|
|
40
|
+
};
|
|
41
|
+
export type ScalableDimension =
|
|
42
|
+
(typeof ScalableDimension)[keyof typeof ScalableDimension];
|
|
43
|
+
export declare const ScalingPolicyUpdateBehavior: {
|
|
44
|
+
readonly KeepExternalPolicies: "KeepExternalPolicies";
|
|
45
|
+
readonly ReplaceExternalPolicies: "ReplaceExternalPolicies";
|
|
46
|
+
};
|
|
47
|
+
export type ScalingPolicyUpdateBehavior =
|
|
48
|
+
(typeof ScalingPolicyUpdateBehavior)[keyof typeof ScalingPolicyUpdateBehavior];
|
|
49
|
+
export declare const ServiceNamespace: {
|
|
50
|
+
readonly AUTOSCALING: "autoscaling";
|
|
51
|
+
readonly DYNAMODB: "dynamodb";
|
|
52
|
+
readonly EC2: "ec2";
|
|
53
|
+
readonly ECS: "ecs";
|
|
54
|
+
readonly RDS: "rds";
|
|
55
|
+
};
|
|
56
|
+
export type ServiceNamespace =
|
|
57
|
+
(typeof ServiceNamespace)[keyof typeof ServiceNamespace];
|
|
58
|
+
export declare const ScalingMetricType: {
|
|
59
|
+
readonly ALBRequestCountPerTarget: "ALBRequestCountPerTarget";
|
|
60
|
+
readonly ASGAverageCPUUtilization: "ASGAverageCPUUtilization";
|
|
61
|
+
readonly ASGAverageNetworkIn: "ASGAverageNetworkIn";
|
|
62
|
+
readonly ASGAverageNetworkOut: "ASGAverageNetworkOut";
|
|
63
|
+
readonly DynamoDBReadCapacityUtilization: "DynamoDBReadCapacityUtilization";
|
|
64
|
+
readonly DynamoDBWriteCapacityUtilization: "DynamoDBWriteCapacityUtilization";
|
|
65
|
+
readonly EC2SpotFleetRequestAverageCPUUtilization: "EC2SpotFleetRequestAverageCPUUtilization";
|
|
66
|
+
readonly EC2SpotFleetRequestAverageNetworkIn: "EC2SpotFleetRequestAverageNetworkIn";
|
|
67
|
+
readonly EC2SpotFleetRequestAverageNetworkOut: "EC2SpotFleetRequestAverageNetworkOut";
|
|
68
|
+
readonly ECSServiceAverageCPUUtilization: "ECSServiceAverageCPUUtilization";
|
|
69
|
+
readonly ECSServiceAverageMemoryUtilization: "ECSServiceAverageMemoryUtilization";
|
|
70
|
+
readonly RDSReaderAverageCPUUtilization: "RDSReaderAverageCPUUtilization";
|
|
71
|
+
readonly RDSReaderAverageDatabaseConnections: "RDSReaderAverageDatabaseConnections";
|
|
72
|
+
};
|
|
73
|
+
export type ScalingMetricType =
|
|
74
|
+
(typeof ScalingMetricType)[keyof typeof ScalingMetricType];
|
|
75
|
+
export declare const PolicyType: {
|
|
76
|
+
readonly TargetTrackingScaling: "TargetTrackingScaling";
|
|
77
|
+
};
|
|
78
|
+
export type PolicyType = (typeof PolicyType)[keyof typeof PolicyType];
|
|
79
|
+
export declare const ScalingStatusCode: {
|
|
80
|
+
readonly Active: "Active";
|
|
81
|
+
readonly Inactive: "Inactive";
|
|
82
|
+
readonly PartiallyActive: "PartiallyActive";
|
|
83
|
+
};
|
|
84
|
+
export type ScalingStatusCode =
|
|
85
|
+
(typeof ScalingStatusCode)[keyof typeof ScalingStatusCode];
|
|
86
|
+
export declare const ScalingPlanStatusCode: {
|
|
87
|
+
readonly Active: "Active";
|
|
88
|
+
readonly ActiveWithProblems: "ActiveWithProblems";
|
|
89
|
+
readonly CreationFailed: "CreationFailed";
|
|
90
|
+
readonly CreationInProgress: "CreationInProgress";
|
|
91
|
+
readonly DeletionFailed: "DeletionFailed";
|
|
92
|
+
readonly DeletionInProgress: "DeletionInProgress";
|
|
93
|
+
readonly UpdateFailed: "UpdateFailed";
|
|
94
|
+
readonly UpdateInProgress: "UpdateInProgress";
|
|
95
|
+
};
|
|
96
|
+
export type ScalingPlanStatusCode =
|
|
97
|
+
(typeof ScalingPlanStatusCode)[keyof typeof ScalingPlanStatusCode];
|
|
98
|
+
export declare const ForecastDataType: {
|
|
99
|
+
readonly CapacityForecast: "CapacityForecast";
|
|
100
|
+
readonly LoadForecast: "LoadForecast";
|
|
101
|
+
readonly ScheduledActionMaxCapacity: "ScheduledActionMaxCapacity";
|
|
102
|
+
readonly ScheduledActionMinCapacity: "ScheduledActionMinCapacity";
|
|
103
|
+
};
|
|
104
|
+
export type ForecastDataType =
|
|
105
|
+
(typeof ForecastDataType)[keyof typeof ForecastDataType];
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { AutoScalingPlansServiceException as __BaseException } from "./AutoScalingPlansServiceException";
|
|
3
|
+
export declare class ConcurrentUpdateException extends __BaseException {
|
|
4
|
+
readonly name: "ConcurrentUpdateException";
|
|
5
|
+
readonly $fault: "server";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<ConcurrentUpdateException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class InternalServiceException extends __BaseException {
|
|
12
|
+
readonly name: "InternalServiceException";
|
|
13
|
+
readonly $fault: "server";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(
|
|
16
|
+
opts: __ExceptionOptionType<InternalServiceException, __BaseException>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
export declare class LimitExceededException extends __BaseException {
|
|
20
|
+
readonly name: "LimitExceededException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
Message?: string | undefined;
|
|
23
|
+
constructor(
|
|
24
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
export declare class ValidationException extends __BaseException {
|
|
28
|
+
readonly name: "ValidationException";
|
|
29
|
+
readonly $fault: "client";
|
|
30
|
+
Message?: string | undefined;
|
|
31
|
+
constructor(
|
|
32
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
export declare class ObjectNotFoundException extends __BaseException {
|
|
36
|
+
readonly name: "ObjectNotFoundException";
|
|
37
|
+
readonly $fault: "client";
|
|
38
|
+
Message?: string | undefined;
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<ObjectNotFoundException, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
44
|
+
readonly name: "InvalidNextTokenException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
Message?: string | undefined;
|
|
47
|
+
constructor(
|
|
48
|
+
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
@@ -1,13 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import {
|
|
2
|
+
ForecastDataType,
|
|
3
|
+
LoadMetricType,
|
|
4
|
+
MetricStatistic,
|
|
5
|
+
PolicyType,
|
|
6
|
+
PredictiveScalingMaxCapacityBehavior,
|
|
7
|
+
PredictiveScalingMode,
|
|
8
|
+
ScalableDimension,
|
|
9
|
+
ScalingMetricType,
|
|
10
|
+
ScalingPlanStatusCode,
|
|
11
|
+
ScalingPolicyUpdateBehavior,
|
|
12
|
+
ScalingStatusCode,
|
|
13
|
+
ServiceNamespace,
|
|
14
|
+
} from "./enums";
|
|
11
15
|
export interface TagFilter {
|
|
12
16
|
Key?: string | undefined;
|
|
13
17
|
Values?: string[] | undefined;
|
|
@@ -20,15 +24,6 @@ export interface MetricDimension {
|
|
|
20
24
|
Name: string | undefined;
|
|
21
25
|
Value: string | undefined;
|
|
22
26
|
}
|
|
23
|
-
export declare const MetricStatistic: {
|
|
24
|
-
readonly Average: "Average";
|
|
25
|
-
readonly Maximum: "Maximum";
|
|
26
|
-
readonly Minimum: "Minimum";
|
|
27
|
-
readonly SampleCount: "SampleCount";
|
|
28
|
-
readonly Sum: "Sum";
|
|
29
|
-
};
|
|
30
|
-
export type MetricStatistic =
|
|
31
|
-
(typeof MetricStatistic)[keyof typeof MetricStatistic];
|
|
32
27
|
export interface CustomizedLoadMetricSpecification {
|
|
33
28
|
MetricName: string | undefined;
|
|
34
29
|
Namespace: string | undefined;
|
|
@@ -36,58 +31,10 @@ export interface CustomizedLoadMetricSpecification {
|
|
|
36
31
|
Statistic: MetricStatistic | undefined;
|
|
37
32
|
Unit?: string | undefined;
|
|
38
33
|
}
|
|
39
|
-
export declare const LoadMetricType: {
|
|
40
|
-
readonly ALBTargetGroupRequestCount: "ALBTargetGroupRequestCount";
|
|
41
|
-
readonly ASGTotalCPUUtilization: "ASGTotalCPUUtilization";
|
|
42
|
-
readonly ASGTotalNetworkIn: "ASGTotalNetworkIn";
|
|
43
|
-
readonly ASGTotalNetworkOut: "ASGTotalNetworkOut";
|
|
44
|
-
};
|
|
45
|
-
export type LoadMetricType =
|
|
46
|
-
(typeof LoadMetricType)[keyof typeof LoadMetricType];
|
|
47
34
|
export interface PredefinedLoadMetricSpecification {
|
|
48
35
|
PredefinedLoadMetricType: LoadMetricType | undefined;
|
|
49
36
|
ResourceLabel?: string | undefined;
|
|
50
37
|
}
|
|
51
|
-
export declare const PredictiveScalingMaxCapacityBehavior: {
|
|
52
|
-
readonly SetForecastCapacityToMaxCapacity: "SetForecastCapacityToMaxCapacity";
|
|
53
|
-
readonly SetMaxCapacityAboveForecastCapacity: "SetMaxCapacityAboveForecastCapacity";
|
|
54
|
-
readonly SetMaxCapacityToForecastCapacity: "SetMaxCapacityToForecastCapacity";
|
|
55
|
-
};
|
|
56
|
-
export type PredictiveScalingMaxCapacityBehavior =
|
|
57
|
-
(typeof PredictiveScalingMaxCapacityBehavior)[keyof typeof PredictiveScalingMaxCapacityBehavior];
|
|
58
|
-
export declare const PredictiveScalingMode: {
|
|
59
|
-
readonly ForecastAndScale: "ForecastAndScale";
|
|
60
|
-
readonly ForecastOnly: "ForecastOnly";
|
|
61
|
-
};
|
|
62
|
-
export type PredictiveScalingMode =
|
|
63
|
-
(typeof PredictiveScalingMode)[keyof typeof PredictiveScalingMode];
|
|
64
|
-
export declare const ScalableDimension: {
|
|
65
|
-
readonly AutoScalingGroupDesiredCapacity: "autoscaling:autoScalingGroup:DesiredCapacity";
|
|
66
|
-
readonly DynamoDBIndexReadCapacityUnits: "dynamodb:index:ReadCapacityUnits";
|
|
67
|
-
readonly DynamoDBIndexWriteCapacityUnits: "dynamodb:index:WriteCapacityUnits";
|
|
68
|
-
readonly DynamoDBTableReadCapacityUnits: "dynamodb:table:ReadCapacityUnits";
|
|
69
|
-
readonly DynamoDBTableWriteCapacityUnits: "dynamodb:table:WriteCapacityUnits";
|
|
70
|
-
readonly EC2SpotFleetRequestTargetCapacity: "ec2:spot-fleet-request:TargetCapacity";
|
|
71
|
-
readonly ECSServiceDesiredCount: "ecs:service:DesiredCount";
|
|
72
|
-
readonly RDSClusterReadReplicaCount: "rds:cluster:ReadReplicaCount";
|
|
73
|
-
};
|
|
74
|
-
export type ScalableDimension =
|
|
75
|
-
(typeof ScalableDimension)[keyof typeof ScalableDimension];
|
|
76
|
-
export declare const ScalingPolicyUpdateBehavior: {
|
|
77
|
-
readonly KeepExternalPolicies: "KeepExternalPolicies";
|
|
78
|
-
readonly ReplaceExternalPolicies: "ReplaceExternalPolicies";
|
|
79
|
-
};
|
|
80
|
-
export type ScalingPolicyUpdateBehavior =
|
|
81
|
-
(typeof ScalingPolicyUpdateBehavior)[keyof typeof ScalingPolicyUpdateBehavior];
|
|
82
|
-
export declare const ServiceNamespace: {
|
|
83
|
-
readonly AUTOSCALING: "autoscaling";
|
|
84
|
-
readonly DYNAMODB: "dynamodb";
|
|
85
|
-
readonly EC2: "ec2";
|
|
86
|
-
readonly ECS: "ecs";
|
|
87
|
-
readonly RDS: "rds";
|
|
88
|
-
};
|
|
89
|
-
export type ServiceNamespace =
|
|
90
|
-
(typeof ServiceNamespace)[keyof typeof ServiceNamespace];
|
|
91
38
|
export interface CustomizedScalingMetricSpecification {
|
|
92
39
|
MetricName: string | undefined;
|
|
93
40
|
Namespace: string | undefined;
|
|
@@ -95,23 +42,6 @@ export interface CustomizedScalingMetricSpecification {
|
|
|
95
42
|
Statistic: MetricStatistic | undefined;
|
|
96
43
|
Unit?: string | undefined;
|
|
97
44
|
}
|
|
98
|
-
export declare const ScalingMetricType: {
|
|
99
|
-
readonly ALBRequestCountPerTarget: "ALBRequestCountPerTarget";
|
|
100
|
-
readonly ASGAverageCPUUtilization: "ASGAverageCPUUtilization";
|
|
101
|
-
readonly ASGAverageNetworkIn: "ASGAverageNetworkIn";
|
|
102
|
-
readonly ASGAverageNetworkOut: "ASGAverageNetworkOut";
|
|
103
|
-
readonly DynamoDBReadCapacityUtilization: "DynamoDBReadCapacityUtilization";
|
|
104
|
-
readonly DynamoDBWriteCapacityUtilization: "DynamoDBWriteCapacityUtilization";
|
|
105
|
-
readonly EC2SpotFleetRequestAverageCPUUtilization: "EC2SpotFleetRequestAverageCPUUtilization";
|
|
106
|
-
readonly EC2SpotFleetRequestAverageNetworkIn: "EC2SpotFleetRequestAverageNetworkIn";
|
|
107
|
-
readonly EC2SpotFleetRequestAverageNetworkOut: "EC2SpotFleetRequestAverageNetworkOut";
|
|
108
|
-
readonly ECSServiceAverageCPUUtilization: "ECSServiceAverageCPUUtilization";
|
|
109
|
-
readonly ECSServiceAverageMemoryUtilization: "ECSServiceAverageMemoryUtilization";
|
|
110
|
-
readonly RDSReaderAverageCPUUtilization: "RDSReaderAverageCPUUtilization";
|
|
111
|
-
readonly RDSReaderAverageDatabaseConnections: "RDSReaderAverageDatabaseConnections";
|
|
112
|
-
};
|
|
113
|
-
export type ScalingMetricType =
|
|
114
|
-
(typeof ScalingMetricType)[keyof typeof ScalingMetricType];
|
|
115
45
|
export interface PredefinedScalingMetricSpecification {
|
|
116
46
|
PredefinedScalingMetricType: ScalingMetricType | undefined;
|
|
117
47
|
ResourceLabel?: string | undefined;
|
|
@@ -159,65 +89,22 @@ export interface CreateScalingPlanRequest {
|
|
|
159
89
|
export interface CreateScalingPlanResponse {
|
|
160
90
|
ScalingPlanVersion: number | undefined;
|
|
161
91
|
}
|
|
162
|
-
export declare class InternalServiceException extends __BaseException {
|
|
163
|
-
readonly name: "InternalServiceException";
|
|
164
|
-
readonly $fault: "server";
|
|
165
|
-
Message?: string | undefined;
|
|
166
|
-
constructor(
|
|
167
|
-
opts: __ExceptionOptionType<InternalServiceException, __BaseException>
|
|
168
|
-
);
|
|
169
|
-
}
|
|
170
|
-
export declare class LimitExceededException extends __BaseException {
|
|
171
|
-
readonly name: "LimitExceededException";
|
|
172
|
-
readonly $fault: "client";
|
|
173
|
-
Message?: string | undefined;
|
|
174
|
-
constructor(
|
|
175
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
176
|
-
);
|
|
177
|
-
}
|
|
178
|
-
export declare class ValidationException extends __BaseException {
|
|
179
|
-
readonly name: "ValidationException";
|
|
180
|
-
readonly $fault: "client";
|
|
181
|
-
Message?: string | undefined;
|
|
182
|
-
constructor(
|
|
183
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
184
|
-
);
|
|
185
|
-
}
|
|
186
92
|
export interface DeleteScalingPlanRequest {
|
|
187
93
|
ScalingPlanName: string | undefined;
|
|
188
94
|
ScalingPlanVersion: number | undefined;
|
|
189
95
|
}
|
|
190
96
|
export interface DeleteScalingPlanResponse {}
|
|
191
|
-
export declare class ObjectNotFoundException extends __BaseException {
|
|
192
|
-
readonly name: "ObjectNotFoundException";
|
|
193
|
-
readonly $fault: "client";
|
|
194
|
-
Message?: string | undefined;
|
|
195
|
-
constructor(
|
|
196
|
-
opts: __ExceptionOptionType<ObjectNotFoundException, __BaseException>
|
|
197
|
-
);
|
|
198
|
-
}
|
|
199
97
|
export interface DescribeScalingPlanResourcesRequest {
|
|
200
98
|
ScalingPlanName: string | undefined;
|
|
201
99
|
ScalingPlanVersion: number | undefined;
|
|
202
100
|
MaxResults?: number | undefined;
|
|
203
101
|
NextToken?: string | undefined;
|
|
204
102
|
}
|
|
205
|
-
export declare const PolicyType: {
|
|
206
|
-
readonly TargetTrackingScaling: "TargetTrackingScaling";
|
|
207
|
-
};
|
|
208
|
-
export type PolicyType = (typeof PolicyType)[keyof typeof PolicyType];
|
|
209
103
|
export interface ScalingPolicy {
|
|
210
104
|
PolicyName: string | undefined;
|
|
211
105
|
PolicyType: PolicyType | undefined;
|
|
212
106
|
TargetTrackingConfiguration?: TargetTrackingConfiguration | undefined;
|
|
213
107
|
}
|
|
214
|
-
export declare const ScalingStatusCode: {
|
|
215
|
-
readonly Active: "Active";
|
|
216
|
-
readonly Inactive: "Inactive";
|
|
217
|
-
readonly PartiallyActive: "PartiallyActive";
|
|
218
|
-
};
|
|
219
|
-
export type ScalingStatusCode =
|
|
220
|
-
(typeof ScalingStatusCode)[keyof typeof ScalingStatusCode];
|
|
221
108
|
export interface ScalingPlanResource {
|
|
222
109
|
ScalingPlanName: string | undefined;
|
|
223
110
|
ScalingPlanVersion: number | undefined;
|
|
@@ -232,14 +119,6 @@ export interface DescribeScalingPlanResourcesResponse {
|
|
|
232
119
|
ScalingPlanResources?: ScalingPlanResource[] | undefined;
|
|
233
120
|
NextToken?: string | undefined;
|
|
234
121
|
}
|
|
235
|
-
export declare class InvalidNextTokenException extends __BaseException {
|
|
236
|
-
readonly name: "InvalidNextTokenException";
|
|
237
|
-
readonly $fault: "client";
|
|
238
|
-
Message?: string | undefined;
|
|
239
|
-
constructor(
|
|
240
|
-
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
241
|
-
);
|
|
242
|
-
}
|
|
243
122
|
export interface DescribeScalingPlansRequest {
|
|
244
123
|
ScalingPlanNames?: string[] | undefined;
|
|
245
124
|
ScalingPlanVersion?: number | undefined;
|
|
@@ -247,18 +126,6 @@ export interface DescribeScalingPlansRequest {
|
|
|
247
126
|
MaxResults?: number | undefined;
|
|
248
127
|
NextToken?: string | undefined;
|
|
249
128
|
}
|
|
250
|
-
export declare const ScalingPlanStatusCode: {
|
|
251
|
-
readonly Active: "Active";
|
|
252
|
-
readonly ActiveWithProblems: "ActiveWithProblems";
|
|
253
|
-
readonly CreationFailed: "CreationFailed";
|
|
254
|
-
readonly CreationInProgress: "CreationInProgress";
|
|
255
|
-
readonly DeletionFailed: "DeletionFailed";
|
|
256
|
-
readonly DeletionInProgress: "DeletionInProgress";
|
|
257
|
-
readonly UpdateFailed: "UpdateFailed";
|
|
258
|
-
readonly UpdateInProgress: "UpdateInProgress";
|
|
259
|
-
};
|
|
260
|
-
export type ScalingPlanStatusCode =
|
|
261
|
-
(typeof ScalingPlanStatusCode)[keyof typeof ScalingPlanStatusCode];
|
|
262
129
|
export interface ScalingPlan {
|
|
263
130
|
ScalingPlanName: string | undefined;
|
|
264
131
|
ScalingPlanVersion: number | undefined;
|
|
@@ -273,14 +140,6 @@ export interface DescribeScalingPlansResponse {
|
|
|
273
140
|
ScalingPlans?: ScalingPlan[] | undefined;
|
|
274
141
|
NextToken?: string | undefined;
|
|
275
142
|
}
|
|
276
|
-
export declare const ForecastDataType: {
|
|
277
|
-
readonly CapacityForecast: "CapacityForecast";
|
|
278
|
-
readonly LoadForecast: "LoadForecast";
|
|
279
|
-
readonly ScheduledActionMaxCapacity: "ScheduledActionMaxCapacity";
|
|
280
|
-
readonly ScheduledActionMinCapacity: "ScheduledActionMinCapacity";
|
|
281
|
-
};
|
|
282
|
-
export type ForecastDataType =
|
|
283
|
-
(typeof ForecastDataType)[keyof typeof ForecastDataType];
|
|
284
143
|
export interface GetScalingPlanResourceForecastDataRequest {
|
|
285
144
|
ScalingPlanName: string | undefined;
|
|
286
145
|
ScalingPlanVersion: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-auto-scaling-plans",
|
|
3
3
|
"description": "AWS SDK for JavaScript Auto Scaling Plans Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.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-plans",
|
|
@@ -20,38 +20,38 @@
|
|
|
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.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.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.935.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.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|