@aws-sdk/client-auto-scaling-plans 3.50.0 → 3.51.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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-auto-scaling-plans
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-auto-scaling-plans
@@ -0,0 +1,35 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AutoScalingPlansClient } from "./AutoScalingPlansClient";
3
+ import { CreateScalingPlanCommandInput, CreateScalingPlanCommandOutput } from "./commands/CreateScalingPlanCommand";
4
+ import { DeleteScalingPlanCommandInput, DeleteScalingPlanCommandOutput } from "./commands/DeleteScalingPlanCommand";
5
+ import { DescribeScalingPlanResourcesCommandInput, DescribeScalingPlanResourcesCommandOutput } from "./commands/DescribeScalingPlanResourcesCommand";
6
+ import { DescribeScalingPlansCommandInput, DescribeScalingPlansCommandOutput } from "./commands/DescribeScalingPlansCommand";
7
+ import { GetScalingPlanResourceForecastDataCommandInput, GetScalingPlanResourceForecastDataCommandOutput } from "./commands/GetScalingPlanResourceForecastDataCommand";
8
+ import { UpdateScalingPlanCommandInput, UpdateScalingPlanCommandOutput } from "./commands/UpdateScalingPlanCommand";
9
+
10
+ export declare class AutoScalingPlans extends AutoScalingPlansClient {
11
+
12
+ createScalingPlan(args: CreateScalingPlanCommandInput, options?: __HttpHandlerOptions): Promise<CreateScalingPlanCommandOutput>;
13
+ createScalingPlan(args: CreateScalingPlanCommandInput, cb: (err: any, data?: CreateScalingPlanCommandOutput) => void): void;
14
+ createScalingPlan(args: CreateScalingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateScalingPlanCommandOutput) => void): void;
15
+
16
+ deleteScalingPlan(args: DeleteScalingPlanCommandInput, options?: __HttpHandlerOptions): Promise<DeleteScalingPlanCommandOutput>;
17
+ deleteScalingPlan(args: DeleteScalingPlanCommandInput, cb: (err: any, data?: DeleteScalingPlanCommandOutput) => void): void;
18
+ deleteScalingPlan(args: DeleteScalingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteScalingPlanCommandOutput) => void): void;
19
+
20
+ describeScalingPlanResources(args: DescribeScalingPlanResourcesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScalingPlanResourcesCommandOutput>;
21
+ describeScalingPlanResources(args: DescribeScalingPlanResourcesCommandInput, cb: (err: any, data?: DescribeScalingPlanResourcesCommandOutput) => void): void;
22
+ describeScalingPlanResources(args: DescribeScalingPlanResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScalingPlanResourcesCommandOutput) => void): void;
23
+
24
+ describeScalingPlans(args: DescribeScalingPlansCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScalingPlansCommandOutput>;
25
+ describeScalingPlans(args: DescribeScalingPlansCommandInput, cb: (err: any, data?: DescribeScalingPlansCommandOutput) => void): void;
26
+ describeScalingPlans(args: DescribeScalingPlansCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScalingPlansCommandOutput) => void): void;
27
+
28
+ getScalingPlanResourceForecastData(args: GetScalingPlanResourceForecastDataCommandInput, options?: __HttpHandlerOptions): Promise<GetScalingPlanResourceForecastDataCommandOutput>;
29
+ getScalingPlanResourceForecastData(args: GetScalingPlanResourceForecastDataCommandInput, cb: (err: any, data?: GetScalingPlanResourceForecastDataCommandOutput) => void): void;
30
+ getScalingPlanResourceForecastData(args: GetScalingPlanResourceForecastDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetScalingPlanResourceForecastDataCommandOutput) => void): void;
31
+
32
+ updateScalingPlan(args: UpdateScalingPlanCommandInput, options?: __HttpHandlerOptions): Promise<UpdateScalingPlanCommandOutput>;
33
+ updateScalingPlan(args: UpdateScalingPlanCommandInput, cb: (err: any, data?: UpdateScalingPlanCommandOutput) => void): void;
34
+ updateScalingPlan(args: UpdateScalingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateScalingPlanCommandOutput) => void): void;
35
+ }
@@ -0,0 +1,79 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { CreateScalingPlanCommandInput, CreateScalingPlanCommandOutput } from "./commands/CreateScalingPlanCommand";
10
+ import { DeleteScalingPlanCommandInput, DeleteScalingPlanCommandOutput } from "./commands/DeleteScalingPlanCommand";
11
+ import { DescribeScalingPlanResourcesCommandInput, DescribeScalingPlanResourcesCommandOutput } from "./commands/DescribeScalingPlanResourcesCommand";
12
+ import { DescribeScalingPlansCommandInput, DescribeScalingPlansCommandOutput } from "./commands/DescribeScalingPlansCommand";
13
+ import { GetScalingPlanResourceForecastDataCommandInput, GetScalingPlanResourceForecastDataCommandOutput } from "./commands/GetScalingPlanResourceForecastDataCommand";
14
+ import { UpdateScalingPlanCommandInput, UpdateScalingPlanCommandOutput } from "./commands/UpdateScalingPlanCommand";
15
+ export declare type ServiceInputTypes = CreateScalingPlanCommandInput | DeleteScalingPlanCommandInput | DescribeScalingPlanResourcesCommandInput | DescribeScalingPlansCommandInput | GetScalingPlanResourceForecastDataCommandInput | UpdateScalingPlanCommandInput;
16
+ export declare type ServiceOutputTypes = CreateScalingPlanCommandOutput | DeleteScalingPlanCommandOutput | DescribeScalingPlanResourcesCommandOutput | DescribeScalingPlansCommandOutput | GetScalingPlanResourceForecastDataCommandOutput | UpdateScalingPlanCommandOutput;
17
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
18
+
19
+ requestHandler?: __HttpHandler;
20
+
21
+ sha256?: __HashConstructor;
22
+
23
+ urlParser?: __UrlParser;
24
+
25
+ bodyLengthChecker?: (body: any) => number | undefined;
26
+
27
+ streamCollector?: __StreamCollector;
28
+
29
+ base64Decoder?: __Decoder;
30
+
31
+ base64Encoder?: __Encoder;
32
+
33
+ utf8Decoder?: __Decoder;
34
+
35
+ utf8Encoder?: __Encoder;
36
+
37
+ runtime?: string;
38
+
39
+ disableHostPrefix?: boolean;
40
+
41
+ maxAttempts?: number | __Provider<number>;
42
+
43
+ retryMode?: string | __Provider<string>;
44
+
45
+ logger?: __Logger;
46
+
47
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
48
+
49
+ useFipsEndpoint?: boolean | __Provider<boolean>;
50
+
51
+ serviceId?: string;
52
+
53
+ region?: string | __Provider<string>;
54
+
55
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
56
+
57
+ regionInfoProvider?: RegionInfoProvider;
58
+
59
+ defaultUserAgentProvider?: Provider<__UserAgent>;
60
+
61
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
62
+ }
63
+ declare type AutoScalingPlansClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
64
+
65
+ export interface AutoScalingPlansClientConfig extends AutoScalingPlansClientConfigType {
66
+ }
67
+ declare type AutoScalingPlansClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
68
+
69
+ export interface AutoScalingPlansClientResolvedConfig extends AutoScalingPlansClientResolvedConfigType {
70
+ }
71
+
72
+ export declare class AutoScalingPlansClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AutoScalingPlansClientResolvedConfig> {
73
+
74
+ readonly config: AutoScalingPlansClientResolvedConfig;
75
+ constructor(configuration: AutoScalingPlansClientConfig);
76
+
77
+ destroy(): void;
78
+ }
79
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AutoScalingPlansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingPlansClient";
4
+ import { CreateScalingPlanRequest, CreateScalingPlanResponse } from "../models/models_0";
5
+ export interface CreateScalingPlanCommandInput extends CreateScalingPlanRequest {
6
+ }
7
+ export interface CreateScalingPlanCommandOutput extends CreateScalingPlanResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateScalingPlanCommand extends $Command<CreateScalingPlanCommandInput, CreateScalingPlanCommandOutput, AutoScalingPlansClientResolvedConfig> {
11
+ readonly input: CreateScalingPlanCommandInput;
12
+ constructor(input: CreateScalingPlanCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AutoScalingPlansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateScalingPlanCommandInput, CreateScalingPlanCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AutoScalingPlansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingPlansClient";
4
+ import { DeleteScalingPlanRequest, DeleteScalingPlanResponse } from "../models/models_0";
5
+ export interface DeleteScalingPlanCommandInput extends DeleteScalingPlanRequest {
6
+ }
7
+ export interface DeleteScalingPlanCommandOutput extends DeleteScalingPlanResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteScalingPlanCommand extends $Command<DeleteScalingPlanCommandInput, DeleteScalingPlanCommandOutput, AutoScalingPlansClientResolvedConfig> {
11
+ readonly input: DeleteScalingPlanCommandInput;
12
+ constructor(input: DeleteScalingPlanCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AutoScalingPlansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteScalingPlanCommandInput, DeleteScalingPlanCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AutoScalingPlansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingPlansClient";
4
+ import { DescribeScalingPlanResourcesRequest, DescribeScalingPlanResourcesResponse } from "../models/models_0";
5
+ export interface DescribeScalingPlanResourcesCommandInput extends DescribeScalingPlanResourcesRequest {
6
+ }
7
+ export interface DescribeScalingPlanResourcesCommandOutput extends DescribeScalingPlanResourcesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeScalingPlanResourcesCommand extends $Command<DescribeScalingPlanResourcesCommandInput, DescribeScalingPlanResourcesCommandOutput, AutoScalingPlansClientResolvedConfig> {
11
+ readonly input: DescribeScalingPlanResourcesCommandInput;
12
+ constructor(input: DescribeScalingPlanResourcesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AutoScalingPlansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScalingPlanResourcesCommandInput, DescribeScalingPlanResourcesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AutoScalingPlansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingPlansClient";
4
+ import { DescribeScalingPlansRequest, DescribeScalingPlansResponse } from "../models/models_0";
5
+ export interface DescribeScalingPlansCommandInput extends DescribeScalingPlansRequest {
6
+ }
7
+ export interface DescribeScalingPlansCommandOutput extends DescribeScalingPlansResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeScalingPlansCommand extends $Command<DescribeScalingPlansCommandInput, DescribeScalingPlansCommandOutput, AutoScalingPlansClientResolvedConfig> {
11
+ readonly input: DescribeScalingPlansCommandInput;
12
+ constructor(input: DescribeScalingPlansCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AutoScalingPlansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScalingPlansCommandInput, DescribeScalingPlansCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AutoScalingPlansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingPlansClient";
4
+ import { GetScalingPlanResourceForecastDataRequest, GetScalingPlanResourceForecastDataResponse } from "../models/models_0";
5
+ export interface GetScalingPlanResourceForecastDataCommandInput extends GetScalingPlanResourceForecastDataRequest {
6
+ }
7
+ export interface GetScalingPlanResourceForecastDataCommandOutput extends GetScalingPlanResourceForecastDataResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetScalingPlanResourceForecastDataCommand extends $Command<GetScalingPlanResourceForecastDataCommandInput, GetScalingPlanResourceForecastDataCommandOutput, AutoScalingPlansClientResolvedConfig> {
11
+ readonly input: GetScalingPlanResourceForecastDataCommandInput;
12
+ constructor(input: GetScalingPlanResourceForecastDataCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AutoScalingPlansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetScalingPlanResourceForecastDataCommandInput, GetScalingPlanResourceForecastDataCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AutoScalingPlansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingPlansClient";
4
+ import { UpdateScalingPlanRequest, UpdateScalingPlanResponse } from "../models/models_0";
5
+ export interface UpdateScalingPlanCommandInput extends UpdateScalingPlanRequest {
6
+ }
7
+ export interface UpdateScalingPlanCommandOutput extends UpdateScalingPlanResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateScalingPlanCommand extends $Command<UpdateScalingPlanCommandInput, UpdateScalingPlanCommandOutput, AutoScalingPlansClientResolvedConfig> {
11
+ readonly input: UpdateScalingPlanCommandInput;
12
+ constructor(input: UpdateScalingPlanCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AutoScalingPlansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateScalingPlanCommandInput, UpdateScalingPlanCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,6 @@
1
+ export * from "./CreateScalingPlanCommand";
2
+ export * from "./DeleteScalingPlanCommand";
3
+ export * from "./DescribeScalingPlanResourcesCommand";
4
+ export * from "./DescribeScalingPlansCommand";
5
+ export * from "./GetScalingPlanResourceForecastDataCommand";
6
+ export * from "./UpdateScalingPlanCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,4 @@
1
+ export * from "./AutoScalingPlans";
2
+ export * from "./AutoScalingPlansClient";
3
+ export * from "./commands";
4
+ export * from "./models";
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,470 @@
1
+ import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
+
3
+ export interface ConcurrentUpdateException extends __SmithyException, $MetadataBearer {
4
+ name: "ConcurrentUpdateException";
5
+ $fault: "server";
6
+ Message?: string;
7
+ }
8
+
9
+ export interface TagFilter {
10
+
11
+ Key?: string;
12
+
13
+ Values?: string[];
14
+ }
15
+ export declare namespace TagFilter {
16
+
17
+ const filterSensitiveLog: (obj: TagFilter) => any;
18
+ }
19
+
20
+ export interface ApplicationSource {
21
+
22
+ CloudFormationStackARN?: string;
23
+
24
+ TagFilters?: TagFilter[];
25
+ }
26
+ export declare namespace ApplicationSource {
27
+
28
+ const filterSensitiveLog: (obj: ApplicationSource) => any;
29
+ }
30
+
31
+ export interface MetricDimension {
32
+
33
+ Name: string | undefined;
34
+
35
+ Value: string | undefined;
36
+ }
37
+ export declare namespace MetricDimension {
38
+
39
+ const filterSensitiveLog: (obj: MetricDimension) => any;
40
+ }
41
+ export declare enum MetricStatistic {
42
+ Average = "Average",
43
+ Maximum = "Maximum",
44
+ Minimum = "Minimum",
45
+ SampleCount = "SampleCount",
46
+ Sum = "Sum"
47
+ }
48
+
49
+ export interface CustomizedLoadMetricSpecification {
50
+
51
+ MetricName: string | undefined;
52
+
53
+ Namespace: string | undefined;
54
+
55
+ Dimensions?: MetricDimension[];
56
+
57
+ Statistic: MetricStatistic | string | undefined;
58
+
59
+ Unit?: string;
60
+ }
61
+ export declare namespace CustomizedLoadMetricSpecification {
62
+
63
+ const filterSensitiveLog: (obj: CustomizedLoadMetricSpecification) => any;
64
+ }
65
+ export declare enum LoadMetricType {
66
+ ALBTargetGroupRequestCount = "ALBTargetGroupRequestCount",
67
+ ASGTotalCPUUtilization = "ASGTotalCPUUtilization",
68
+ ASGTotalNetworkIn = "ASGTotalNetworkIn",
69
+ ASGTotalNetworkOut = "ASGTotalNetworkOut"
70
+ }
71
+
72
+ export interface PredefinedLoadMetricSpecification {
73
+
74
+ PredefinedLoadMetricType: LoadMetricType | string | undefined;
75
+
76
+ ResourceLabel?: string;
77
+ }
78
+ export declare namespace PredefinedLoadMetricSpecification {
79
+
80
+ const filterSensitiveLog: (obj: PredefinedLoadMetricSpecification) => any;
81
+ }
82
+ export declare enum PredictiveScalingMaxCapacityBehavior {
83
+ SetForecastCapacityToMaxCapacity = "SetForecastCapacityToMaxCapacity",
84
+ SetMaxCapacityAboveForecastCapacity = "SetMaxCapacityAboveForecastCapacity",
85
+ SetMaxCapacityToForecastCapacity = "SetMaxCapacityToForecastCapacity"
86
+ }
87
+ export declare enum PredictiveScalingMode {
88
+ ForecastAndScale = "ForecastAndScale",
89
+ ForecastOnly = "ForecastOnly"
90
+ }
91
+ export declare enum ScalableDimension {
92
+ AutoScalingGroupDesiredCapacity = "autoscaling:autoScalingGroup:DesiredCapacity",
93
+ DynamoDBIndexReadCapacityUnits = "dynamodb:index:ReadCapacityUnits",
94
+ DynamoDBIndexWriteCapacityUnits = "dynamodb:index:WriteCapacityUnits",
95
+ DynamoDBTableReadCapacityUnits = "dynamodb:table:ReadCapacityUnits",
96
+ DynamoDBTableWriteCapacityUnits = "dynamodb:table:WriteCapacityUnits",
97
+ EC2SpotFleetRequestTargetCapacity = "ec2:spot-fleet-request:TargetCapacity",
98
+ ECSServiceDesiredCount = "ecs:service:DesiredCount",
99
+ RDSClusterReadReplicaCount = "rds:cluster:ReadReplicaCount"
100
+ }
101
+ export declare enum ScalingPolicyUpdateBehavior {
102
+ KeepExternalPolicies = "KeepExternalPolicies",
103
+ ReplaceExternalPolicies = "ReplaceExternalPolicies"
104
+ }
105
+ export declare enum ServiceNamespace {
106
+ AUTOSCALING = "autoscaling",
107
+ DYNAMODB = "dynamodb",
108
+ EC2 = "ec2",
109
+ ECS = "ecs",
110
+ RDS = "rds"
111
+ }
112
+
113
+ export interface CustomizedScalingMetricSpecification {
114
+
115
+ MetricName: string | undefined;
116
+
117
+ Namespace: string | undefined;
118
+
119
+ Dimensions?: MetricDimension[];
120
+
121
+ Statistic: MetricStatistic | string | undefined;
122
+
123
+ Unit?: string;
124
+ }
125
+ export declare namespace CustomizedScalingMetricSpecification {
126
+
127
+ const filterSensitiveLog: (obj: CustomizedScalingMetricSpecification) => any;
128
+ }
129
+ export declare enum ScalingMetricType {
130
+ ALBRequestCountPerTarget = "ALBRequestCountPerTarget",
131
+ ASGAverageCPUUtilization = "ASGAverageCPUUtilization",
132
+ ASGAverageNetworkIn = "ASGAverageNetworkIn",
133
+ ASGAverageNetworkOut = "ASGAverageNetworkOut",
134
+ DynamoDBReadCapacityUtilization = "DynamoDBReadCapacityUtilization",
135
+ DynamoDBWriteCapacityUtilization = "DynamoDBWriteCapacityUtilization",
136
+ EC2SpotFleetRequestAverageCPUUtilization = "EC2SpotFleetRequestAverageCPUUtilization",
137
+ EC2SpotFleetRequestAverageNetworkIn = "EC2SpotFleetRequestAverageNetworkIn",
138
+ EC2SpotFleetRequestAverageNetworkOut = "EC2SpotFleetRequestAverageNetworkOut",
139
+ ECSServiceAverageCPUUtilization = "ECSServiceAverageCPUUtilization",
140
+ ECSServiceAverageMemoryUtilization = "ECSServiceAverageMemoryUtilization",
141
+ RDSReaderAverageCPUUtilization = "RDSReaderAverageCPUUtilization",
142
+ RDSReaderAverageDatabaseConnections = "RDSReaderAverageDatabaseConnections"
143
+ }
144
+
145
+ export interface PredefinedScalingMetricSpecification {
146
+
147
+ PredefinedScalingMetricType: ScalingMetricType | string | undefined;
148
+
149
+ ResourceLabel?: string;
150
+ }
151
+ export declare namespace PredefinedScalingMetricSpecification {
152
+
153
+ const filterSensitiveLog: (obj: PredefinedScalingMetricSpecification) => any;
154
+ }
155
+
156
+ export interface TargetTrackingConfiguration {
157
+
158
+ PredefinedScalingMetricSpecification?: PredefinedScalingMetricSpecification;
159
+
160
+ CustomizedScalingMetricSpecification?: CustomizedScalingMetricSpecification;
161
+
162
+ TargetValue: number | undefined;
163
+
164
+ DisableScaleIn?: boolean;
165
+
166
+ ScaleOutCooldown?: number;
167
+
168
+ ScaleInCooldown?: number;
169
+
170
+ EstimatedInstanceWarmup?: number;
171
+ }
172
+ export declare namespace TargetTrackingConfiguration {
173
+
174
+ const filterSensitiveLog: (obj: TargetTrackingConfiguration) => any;
175
+ }
176
+
177
+ export interface ScalingInstruction {
178
+
179
+ ServiceNamespace: ServiceNamespace | string | undefined;
180
+
181
+ ResourceId: string | undefined;
182
+
183
+ ScalableDimension: ScalableDimension | string | undefined;
184
+
185
+ MinCapacity: number | undefined;
186
+
187
+ MaxCapacity: number | undefined;
188
+
189
+ TargetTrackingConfigurations: TargetTrackingConfiguration[] | undefined;
190
+
191
+ PredefinedLoadMetricSpecification?: PredefinedLoadMetricSpecification;
192
+
193
+ CustomizedLoadMetricSpecification?: CustomizedLoadMetricSpecification;
194
+
195
+ ScheduledActionBufferTime?: number;
196
+
197
+ PredictiveScalingMaxCapacityBehavior?: PredictiveScalingMaxCapacityBehavior | string;
198
+
199
+ PredictiveScalingMaxCapacityBuffer?: number;
200
+
201
+ PredictiveScalingMode?: PredictiveScalingMode | string;
202
+
203
+ ScalingPolicyUpdateBehavior?: ScalingPolicyUpdateBehavior | string;
204
+
205
+ DisableDynamicScaling?: boolean;
206
+ }
207
+ export declare namespace ScalingInstruction {
208
+
209
+ const filterSensitiveLog: (obj: ScalingInstruction) => any;
210
+ }
211
+ export interface CreateScalingPlanRequest {
212
+
213
+ ScalingPlanName: string | undefined;
214
+
215
+ ApplicationSource: ApplicationSource | undefined;
216
+
217
+ ScalingInstructions: ScalingInstruction[] | undefined;
218
+ }
219
+ export declare namespace CreateScalingPlanRequest {
220
+
221
+ const filterSensitiveLog: (obj: CreateScalingPlanRequest) => any;
222
+ }
223
+ export interface CreateScalingPlanResponse {
224
+
225
+ ScalingPlanVersion: number | undefined;
226
+ }
227
+ export declare namespace CreateScalingPlanResponse {
228
+
229
+ const filterSensitiveLog: (obj: CreateScalingPlanResponse) => any;
230
+ }
231
+
232
+ export interface InternalServiceException extends __SmithyException, $MetadataBearer {
233
+ name: "InternalServiceException";
234
+ $fault: "server";
235
+ Message?: string;
236
+ }
237
+
238
+ export interface LimitExceededException extends __SmithyException, $MetadataBearer {
239
+ name: "LimitExceededException";
240
+ $fault: "client";
241
+ Message?: string;
242
+ }
243
+
244
+ export interface ValidationException extends __SmithyException, $MetadataBearer {
245
+ name: "ValidationException";
246
+ $fault: "client";
247
+ Message?: string;
248
+ }
249
+ export interface DeleteScalingPlanRequest {
250
+
251
+ ScalingPlanName: string | undefined;
252
+
253
+ ScalingPlanVersion: number | undefined;
254
+ }
255
+ export declare namespace DeleteScalingPlanRequest {
256
+
257
+ const filterSensitiveLog: (obj: DeleteScalingPlanRequest) => any;
258
+ }
259
+ export interface DeleteScalingPlanResponse {
260
+ }
261
+ export declare namespace DeleteScalingPlanResponse {
262
+
263
+ const filterSensitiveLog: (obj: DeleteScalingPlanResponse) => any;
264
+ }
265
+
266
+ export interface ObjectNotFoundException extends __SmithyException, $MetadataBearer {
267
+ name: "ObjectNotFoundException";
268
+ $fault: "client";
269
+ Message?: string;
270
+ }
271
+ export interface DescribeScalingPlanResourcesRequest {
272
+
273
+ ScalingPlanName: string | undefined;
274
+
275
+ ScalingPlanVersion: number | undefined;
276
+
277
+ MaxResults?: number;
278
+
279
+ NextToken?: string;
280
+ }
281
+ export declare namespace DescribeScalingPlanResourcesRequest {
282
+
283
+ const filterSensitiveLog: (obj: DescribeScalingPlanResourcesRequest) => any;
284
+ }
285
+ export declare enum PolicyType {
286
+ TargetTrackingScaling = "TargetTrackingScaling"
287
+ }
288
+
289
+ export interface ScalingPolicy {
290
+
291
+ PolicyName: string | undefined;
292
+
293
+ PolicyType: PolicyType | string | undefined;
294
+
295
+ TargetTrackingConfiguration?: TargetTrackingConfiguration;
296
+ }
297
+ export declare namespace ScalingPolicy {
298
+
299
+ const filterSensitiveLog: (obj: ScalingPolicy) => any;
300
+ }
301
+ export declare enum ScalingStatusCode {
302
+ Active = "Active",
303
+ Inactive = "Inactive",
304
+ PartiallyActive = "PartiallyActive"
305
+ }
306
+
307
+ export interface ScalingPlanResource {
308
+
309
+ ScalingPlanName: string | undefined;
310
+
311
+ ScalingPlanVersion: number | undefined;
312
+
313
+ ServiceNamespace: ServiceNamespace | string | undefined;
314
+
315
+ ResourceId: string | undefined;
316
+
317
+ ScalableDimension: ScalableDimension | string | undefined;
318
+
319
+ ScalingPolicies?: ScalingPolicy[];
320
+
321
+ ScalingStatusCode: ScalingStatusCode | string | undefined;
322
+
323
+ ScalingStatusMessage?: string;
324
+ }
325
+ export declare namespace ScalingPlanResource {
326
+
327
+ const filterSensitiveLog: (obj: ScalingPlanResource) => any;
328
+ }
329
+ export interface DescribeScalingPlanResourcesResponse {
330
+
331
+ ScalingPlanResources?: ScalingPlanResource[];
332
+
333
+ NextToken?: string;
334
+ }
335
+ export declare namespace DescribeScalingPlanResourcesResponse {
336
+
337
+ const filterSensitiveLog: (obj: DescribeScalingPlanResourcesResponse) => any;
338
+ }
339
+
340
+ export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
341
+ name: "InvalidNextTokenException";
342
+ $fault: "client";
343
+ Message?: string;
344
+ }
345
+ export interface DescribeScalingPlansRequest {
346
+
347
+ ScalingPlanNames?: string[];
348
+
349
+ ScalingPlanVersion?: number;
350
+
351
+ ApplicationSources?: ApplicationSource[];
352
+
353
+ MaxResults?: number;
354
+
355
+ NextToken?: string;
356
+ }
357
+ export declare namespace DescribeScalingPlansRequest {
358
+
359
+ const filterSensitiveLog: (obj: DescribeScalingPlansRequest) => any;
360
+ }
361
+ export declare enum ScalingPlanStatusCode {
362
+ Active = "Active",
363
+ ActiveWithProblems = "ActiveWithProblems",
364
+ CreationFailed = "CreationFailed",
365
+ CreationInProgress = "CreationInProgress",
366
+ DeletionFailed = "DeletionFailed",
367
+ DeletionInProgress = "DeletionInProgress",
368
+ UpdateFailed = "UpdateFailed",
369
+ UpdateInProgress = "UpdateInProgress"
370
+ }
371
+
372
+ export interface ScalingPlan {
373
+
374
+ ScalingPlanName: string | undefined;
375
+
376
+ ScalingPlanVersion: number | undefined;
377
+
378
+ ApplicationSource: ApplicationSource | undefined;
379
+
380
+ ScalingInstructions: ScalingInstruction[] | undefined;
381
+
382
+ StatusCode: ScalingPlanStatusCode | string | undefined;
383
+
384
+ StatusMessage?: string;
385
+
386
+ StatusStartTime?: Date;
387
+
388
+ CreationTime?: Date;
389
+ }
390
+ export declare namespace ScalingPlan {
391
+
392
+ const filterSensitiveLog: (obj: ScalingPlan) => any;
393
+ }
394
+ export interface DescribeScalingPlansResponse {
395
+
396
+ ScalingPlans?: ScalingPlan[];
397
+
398
+ NextToken?: string;
399
+ }
400
+ export declare namespace DescribeScalingPlansResponse {
401
+
402
+ const filterSensitiveLog: (obj: DescribeScalingPlansResponse) => any;
403
+ }
404
+ export declare enum ForecastDataType {
405
+ CapacityForecast = "CapacityForecast",
406
+ LoadForecast = "LoadForecast",
407
+ ScheduledActionMaxCapacity = "ScheduledActionMaxCapacity",
408
+ ScheduledActionMinCapacity = "ScheduledActionMinCapacity"
409
+ }
410
+ export interface GetScalingPlanResourceForecastDataRequest {
411
+
412
+ ScalingPlanName: string | undefined;
413
+
414
+ ScalingPlanVersion: number | undefined;
415
+
416
+ ServiceNamespace: ServiceNamespace | string | undefined;
417
+
418
+ ResourceId: string | undefined;
419
+
420
+ ScalableDimension: ScalableDimension | string | undefined;
421
+
422
+ ForecastDataType: ForecastDataType | string | undefined;
423
+
424
+ StartTime: Date | undefined;
425
+
426
+ EndTime: Date | undefined;
427
+ }
428
+ export declare namespace GetScalingPlanResourceForecastDataRequest {
429
+
430
+ const filterSensitiveLog: (obj: GetScalingPlanResourceForecastDataRequest) => any;
431
+ }
432
+
433
+ export interface Datapoint {
434
+
435
+ Timestamp?: Date;
436
+
437
+ Value?: number;
438
+ }
439
+ export declare namespace Datapoint {
440
+
441
+ const filterSensitiveLog: (obj: Datapoint) => any;
442
+ }
443
+ export interface GetScalingPlanResourceForecastDataResponse {
444
+
445
+ Datapoints: Datapoint[] | undefined;
446
+ }
447
+ export declare namespace GetScalingPlanResourceForecastDataResponse {
448
+
449
+ const filterSensitiveLog: (obj: GetScalingPlanResourceForecastDataResponse) => any;
450
+ }
451
+ export interface UpdateScalingPlanRequest {
452
+
453
+ ScalingPlanName: string | undefined;
454
+
455
+ ScalingPlanVersion: number | undefined;
456
+
457
+ ApplicationSource?: ApplicationSource;
458
+
459
+ ScalingInstructions?: ScalingInstruction[];
460
+ }
461
+ export declare namespace UpdateScalingPlanRequest {
462
+
463
+ const filterSensitiveLog: (obj: UpdateScalingPlanRequest) => any;
464
+ }
465
+ export interface UpdateScalingPlanResponse {
466
+ }
467
+ export declare namespace UpdateScalingPlanResponse {
468
+
469
+ const filterSensitiveLog: (obj: UpdateScalingPlanResponse) => any;
470
+ }
@@ -0,0 +1,20 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CreateScalingPlanCommandInput, CreateScalingPlanCommandOutput } from "../commands/CreateScalingPlanCommand";
4
+ import { DeleteScalingPlanCommandInput, DeleteScalingPlanCommandOutput } from "../commands/DeleteScalingPlanCommand";
5
+ import { DescribeScalingPlanResourcesCommandInput, DescribeScalingPlanResourcesCommandOutput } from "../commands/DescribeScalingPlanResourcesCommand";
6
+ import { DescribeScalingPlansCommandInput, DescribeScalingPlansCommandOutput } from "../commands/DescribeScalingPlansCommand";
7
+ import { GetScalingPlanResourceForecastDataCommandInput, GetScalingPlanResourceForecastDataCommandOutput } from "../commands/GetScalingPlanResourceForecastDataCommand";
8
+ import { UpdateScalingPlanCommandInput, UpdateScalingPlanCommandOutput } from "../commands/UpdateScalingPlanCommand";
9
+ export declare const serializeAws_json1_1CreateScalingPlanCommand: (input: CreateScalingPlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
10
+ export declare const serializeAws_json1_1DeleteScalingPlanCommand: (input: DeleteScalingPlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
11
+ export declare const serializeAws_json1_1DescribeScalingPlanResourcesCommand: (input: DescribeScalingPlanResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
12
+ export declare const serializeAws_json1_1DescribeScalingPlansCommand: (input: DescribeScalingPlansCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
13
+ export declare const serializeAws_json1_1GetScalingPlanResourceForecastDataCommand: (input: GetScalingPlanResourceForecastDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
14
+ export declare const serializeAws_json1_1UpdateScalingPlanCommand: (input: UpdateScalingPlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
+ export declare const deserializeAws_json1_1CreateScalingPlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateScalingPlanCommandOutput>;
16
+ export declare const deserializeAws_json1_1DeleteScalingPlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteScalingPlanCommandOutput>;
17
+ export declare const deserializeAws_json1_1DescribeScalingPlanResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeScalingPlanResourcesCommandOutput>;
18
+ export declare const deserializeAws_json1_1DescribeScalingPlansCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeScalingPlansCommandOutput>;
19
+ export declare const deserializeAws_json1_1GetScalingPlanResourceForecastDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetScalingPlanResourceForecastDataCommandOutput>;
20
+ export declare const deserializeAws_json1_1UpdateScalingPlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateScalingPlanCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AutoScalingPlansClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,38 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AutoScalingPlansClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,37 @@
1
+ import { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient";
2
+
3
+ export declare const getRuntimeConfig: (config: AutoScalingPlansClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
+ apiVersion: string;
8
+ urlParser: import("@aws-sdk/types").UrlParser;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ streamCollector: import("@aws-sdk/types").StreamCollector;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ utf8Decoder: import("@aws-sdk/types").Decoder;
14
+ utf8Encoder: import("@aws-sdk/types").Encoder;
15
+ disableHostPrefix: boolean;
16
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
18
+ logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,11 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient";
3
+
4
+ export declare const getRuntimeConfig: (config: AutoScalingPlansClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };
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.50.0",
4
+ "version": "3.51.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,21 +18,21 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.50.0",
22
- "@aws-sdk/config-resolver": "3.50.0",
23
- "@aws-sdk/credential-provider-node": "3.50.0",
21
+ "@aws-sdk/client-sts": "3.51.0",
22
+ "@aws-sdk/config-resolver": "3.51.0",
23
+ "@aws-sdk/credential-provider-node": "3.51.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.50.0",
25
25
  "@aws-sdk/hash-node": "3.50.0",
26
26
  "@aws-sdk/invalid-dependency": "3.50.0",
27
27
  "@aws-sdk/middleware-content-length": "3.50.0",
28
28
  "@aws-sdk/middleware-host-header": "3.50.0",
29
29
  "@aws-sdk/middleware-logger": "3.50.0",
30
- "@aws-sdk/middleware-retry": "3.50.0",
30
+ "@aws-sdk/middleware-retry": "3.51.0",
31
31
  "@aws-sdk/middleware-serde": "3.50.0",
32
32
  "@aws-sdk/middleware-signing": "3.50.0",
33
33
  "@aws-sdk/middleware-stack": "3.50.0",
34
34
  "@aws-sdk/middleware-user-agent": "3.50.0",
35
- "@aws-sdk/node-config-provider": "3.50.0",
35
+ "@aws-sdk/node-config-provider": "3.51.0",
36
36
  "@aws-sdk/node-http-handler": "3.50.0",
37
37
  "@aws-sdk/protocol-http": "3.50.0",
38
38
  "@aws-sdk/smithy-client": "3.50.0",
@@ -43,9 +43,9 @@
43
43
  "@aws-sdk/util-body-length-browser": "3.49.0",
44
44
  "@aws-sdk/util-body-length-node": "3.49.0",
45
45
  "@aws-sdk/util-defaults-mode-browser": "3.50.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.50.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.51.0",
47
47
  "@aws-sdk/util-user-agent-browser": "3.50.0",
48
- "@aws-sdk/util-user-agent-node": "3.50.0",
48
+ "@aws-sdk/util-user-agent-node": "3.51.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.49.0",
50
50
  "@aws-sdk/util-utf8-node": "3.49.0",
51
51
  "tslib": "^2.3.0"