@aws-sdk/client-application-auto-scaling 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.
Files changed (30) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ApplicationAutoScaling.d.ts +55 -0
  3. package/dist-types/ts3.4/ApplicationAutoScalingClient.d.ts +83 -0
  4. package/dist-types/ts3.4/commands/DeleteScalingPolicyCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/DeleteScheduledActionCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/DeregisterScalableTargetCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/DescribeScalableTargetsCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/DescribeScalingActivitiesCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/DescribeScalingPoliciesCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/DescribeScheduledActionsCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/PutScalingPolicyCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/PutScheduledActionCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/RegisterScalableTargetCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  15. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  16. package/dist-types/ts3.4/index.d.ts +5 -0
  17. package/dist-types/ts3.4/models/index.d.ts +1 -0
  18. package/dist-types/ts3.4/models/models_0.d.ts +616 -0
  19. package/dist-types/ts3.4/pagination/DescribeScalableTargetsPaginator.d.ts +4 -0
  20. package/dist-types/ts3.4/pagination/DescribeScalingActivitiesPaginator.d.ts +4 -0
  21. package/dist-types/ts3.4/pagination/DescribeScalingPoliciesPaginator.d.ts +4 -0
  22. package/dist-types/ts3.4/pagination/DescribeScheduledActionsPaginator.d.ts +4 -0
  23. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  24. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  25. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +32 -0
  26. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  27. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  28. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  29. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  30. package/package.json +8 -8
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-application-auto-scaling
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-application-auto-scaling
@@ -0,0 +1,55 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { ApplicationAutoScalingClient } from "./ApplicationAutoScalingClient";
3
+ import { DeleteScalingPolicyCommandInput, DeleteScalingPolicyCommandOutput } from "./commands/DeleteScalingPolicyCommand";
4
+ import { DeleteScheduledActionCommandInput, DeleteScheduledActionCommandOutput } from "./commands/DeleteScheduledActionCommand";
5
+ import { DeregisterScalableTargetCommandInput, DeregisterScalableTargetCommandOutput } from "./commands/DeregisterScalableTargetCommand";
6
+ import { DescribeScalableTargetsCommandInput, DescribeScalableTargetsCommandOutput } from "./commands/DescribeScalableTargetsCommand";
7
+ import { DescribeScalingActivitiesCommandInput, DescribeScalingActivitiesCommandOutput } from "./commands/DescribeScalingActivitiesCommand";
8
+ import { DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput } from "./commands/DescribeScalingPoliciesCommand";
9
+ import { DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput } from "./commands/DescribeScheduledActionsCommand";
10
+ import { PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput } from "./commands/PutScalingPolicyCommand";
11
+ import { PutScheduledActionCommandInput, PutScheduledActionCommandOutput } from "./commands/PutScheduledActionCommand";
12
+ import { RegisterScalableTargetCommandInput, RegisterScalableTargetCommandOutput } from "./commands/RegisterScalableTargetCommand";
13
+
14
+ export declare class ApplicationAutoScaling extends ApplicationAutoScalingClient {
15
+
16
+ deleteScalingPolicy(args: DeleteScalingPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteScalingPolicyCommandOutput>;
17
+ deleteScalingPolicy(args: DeleteScalingPolicyCommandInput, cb: (err: any, data?: DeleteScalingPolicyCommandOutput) => void): void;
18
+ deleteScalingPolicy(args: DeleteScalingPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteScalingPolicyCommandOutput) => void): void;
19
+
20
+ deleteScheduledAction(args: DeleteScheduledActionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteScheduledActionCommandOutput>;
21
+ deleteScheduledAction(args: DeleteScheduledActionCommandInput, cb: (err: any, data?: DeleteScheduledActionCommandOutput) => void): void;
22
+ deleteScheduledAction(args: DeleteScheduledActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteScheduledActionCommandOutput) => void): void;
23
+
24
+ deregisterScalableTarget(args: DeregisterScalableTargetCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterScalableTargetCommandOutput>;
25
+ deregisterScalableTarget(args: DeregisterScalableTargetCommandInput, cb: (err: any, data?: DeregisterScalableTargetCommandOutput) => void): void;
26
+ deregisterScalableTarget(args: DeregisterScalableTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterScalableTargetCommandOutput) => void): void;
27
+
28
+ describeScalableTargets(args: DescribeScalableTargetsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScalableTargetsCommandOutput>;
29
+ describeScalableTargets(args: DescribeScalableTargetsCommandInput, cb: (err: any, data?: DescribeScalableTargetsCommandOutput) => void): void;
30
+ describeScalableTargets(args: DescribeScalableTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScalableTargetsCommandOutput) => void): void;
31
+
32
+ describeScalingActivities(args: DescribeScalingActivitiesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScalingActivitiesCommandOutput>;
33
+ describeScalingActivities(args: DescribeScalingActivitiesCommandInput, cb: (err: any, data?: DescribeScalingActivitiesCommandOutput) => void): void;
34
+ describeScalingActivities(args: DescribeScalingActivitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScalingActivitiesCommandOutput) => void): void;
35
+
36
+ describeScalingPolicies(args: DescribeScalingPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScalingPoliciesCommandOutput>;
37
+ describeScalingPolicies(args: DescribeScalingPoliciesCommandInput, cb: (err: any, data?: DescribeScalingPoliciesCommandOutput) => void): void;
38
+ describeScalingPolicies(args: DescribeScalingPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScalingPoliciesCommandOutput) => void): void;
39
+
40
+ describeScheduledActions(args: DescribeScheduledActionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScheduledActionsCommandOutput>;
41
+ describeScheduledActions(args: DescribeScheduledActionsCommandInput, cb: (err: any, data?: DescribeScheduledActionsCommandOutput) => void): void;
42
+ describeScheduledActions(args: DescribeScheduledActionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScheduledActionsCommandOutput) => void): void;
43
+
44
+ putScalingPolicy(args: PutScalingPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutScalingPolicyCommandOutput>;
45
+ putScalingPolicy(args: PutScalingPolicyCommandInput, cb: (err: any, data?: PutScalingPolicyCommandOutput) => void): void;
46
+ putScalingPolicy(args: PutScalingPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutScalingPolicyCommandOutput) => void): void;
47
+
48
+ putScheduledAction(args: PutScheduledActionCommandInput, options?: __HttpHandlerOptions): Promise<PutScheduledActionCommandOutput>;
49
+ putScheduledAction(args: PutScheduledActionCommandInput, cb: (err: any, data?: PutScheduledActionCommandOutput) => void): void;
50
+ putScheduledAction(args: PutScheduledActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutScheduledActionCommandOutput) => void): void;
51
+
52
+ registerScalableTarget(args: RegisterScalableTargetCommandInput, options?: __HttpHandlerOptions): Promise<RegisterScalableTargetCommandOutput>;
53
+ registerScalableTarget(args: RegisterScalableTargetCommandInput, cb: (err: any, data?: RegisterScalableTargetCommandOutput) => void): void;
54
+ registerScalableTarget(args: RegisterScalableTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterScalableTargetCommandOutput) => void): void;
55
+ }
@@ -0,0 +1,83 @@
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 { DeleteScalingPolicyCommandInput, DeleteScalingPolicyCommandOutput } from "./commands/DeleteScalingPolicyCommand";
10
+ import { DeleteScheduledActionCommandInput, DeleteScheduledActionCommandOutput } from "./commands/DeleteScheduledActionCommand";
11
+ import { DeregisterScalableTargetCommandInput, DeregisterScalableTargetCommandOutput } from "./commands/DeregisterScalableTargetCommand";
12
+ import { DescribeScalableTargetsCommandInput, DescribeScalableTargetsCommandOutput } from "./commands/DescribeScalableTargetsCommand";
13
+ import { DescribeScalingActivitiesCommandInput, DescribeScalingActivitiesCommandOutput } from "./commands/DescribeScalingActivitiesCommand";
14
+ import { DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput } from "./commands/DescribeScalingPoliciesCommand";
15
+ import { DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput } from "./commands/DescribeScheduledActionsCommand";
16
+ import { PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput } from "./commands/PutScalingPolicyCommand";
17
+ import { PutScheduledActionCommandInput, PutScheduledActionCommandOutput } from "./commands/PutScheduledActionCommand";
18
+ import { RegisterScalableTargetCommandInput, RegisterScalableTargetCommandOutput } from "./commands/RegisterScalableTargetCommand";
19
+ export declare type ServiceInputTypes = DeleteScalingPolicyCommandInput | DeleteScheduledActionCommandInput | DeregisterScalableTargetCommandInput | DescribeScalableTargetsCommandInput | DescribeScalingActivitiesCommandInput | DescribeScalingPoliciesCommandInput | DescribeScheduledActionsCommandInput | PutScalingPolicyCommandInput | PutScheduledActionCommandInput | RegisterScalableTargetCommandInput;
20
+ export declare type ServiceOutputTypes = DeleteScalingPolicyCommandOutput | DeleteScheduledActionCommandOutput | DeregisterScalableTargetCommandOutput | DescribeScalableTargetsCommandOutput | DescribeScalingActivitiesCommandOutput | DescribeScalingPoliciesCommandOutput | DescribeScheduledActionsCommandOutput | PutScalingPolicyCommandOutput | PutScheduledActionCommandOutput | RegisterScalableTargetCommandOutput;
21
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
22
+
23
+ requestHandler?: __HttpHandler;
24
+
25
+ sha256?: __HashConstructor;
26
+
27
+ urlParser?: __UrlParser;
28
+
29
+ bodyLengthChecker?: (body: any) => number | undefined;
30
+
31
+ streamCollector?: __StreamCollector;
32
+
33
+ base64Decoder?: __Decoder;
34
+
35
+ base64Encoder?: __Encoder;
36
+
37
+ utf8Decoder?: __Decoder;
38
+
39
+ utf8Encoder?: __Encoder;
40
+
41
+ runtime?: string;
42
+
43
+ disableHostPrefix?: boolean;
44
+
45
+ maxAttempts?: number | __Provider<number>;
46
+
47
+ retryMode?: string | __Provider<string>;
48
+
49
+ logger?: __Logger;
50
+
51
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
52
+
53
+ useFipsEndpoint?: boolean | __Provider<boolean>;
54
+
55
+ serviceId?: string;
56
+
57
+ region?: string | __Provider<string>;
58
+
59
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
60
+
61
+ regionInfoProvider?: RegionInfoProvider;
62
+
63
+ defaultUserAgentProvider?: Provider<__UserAgent>;
64
+
65
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
66
+ }
67
+ declare type ApplicationAutoScalingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
68
+
69
+ export interface ApplicationAutoScalingClientConfig extends ApplicationAutoScalingClientConfigType {
70
+ }
71
+ declare type ApplicationAutoScalingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
72
+
73
+ export interface ApplicationAutoScalingClientResolvedConfig extends ApplicationAutoScalingClientResolvedConfigType {
74
+ }
75
+
76
+ export declare class ApplicationAutoScalingClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ApplicationAutoScalingClientResolvedConfig> {
77
+
78
+ readonly config: ApplicationAutoScalingClientResolvedConfig;
79
+ constructor(configuration: ApplicationAutoScalingClientConfig);
80
+
81
+ destroy(): void;
82
+ }
83
+ 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 { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
4
+ import { DeleteScalingPolicyRequest, DeleteScalingPolicyResponse } from "../models/models_0";
5
+ export interface DeleteScalingPolicyCommandInput extends DeleteScalingPolicyRequest {
6
+ }
7
+ export interface DeleteScalingPolicyCommandOutput extends DeleteScalingPolicyResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteScalingPolicyCommand extends $Command<DeleteScalingPolicyCommandInput, DeleteScalingPolicyCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
11
+ readonly input: DeleteScalingPolicyCommandInput;
12
+ constructor(input: DeleteScalingPolicyCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteScalingPolicyCommandInput, DeleteScalingPolicyCommandOutput>;
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 { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
4
+ import { DeleteScheduledActionRequest, DeleteScheduledActionResponse } from "../models/models_0";
5
+ export interface DeleteScheduledActionCommandInput extends DeleteScheduledActionRequest {
6
+ }
7
+ export interface DeleteScheduledActionCommandOutput extends DeleteScheduledActionResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteScheduledActionCommand extends $Command<DeleteScheduledActionCommandInput, DeleteScheduledActionCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
11
+ readonly input: DeleteScheduledActionCommandInput;
12
+ constructor(input: DeleteScheduledActionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteScheduledActionCommandInput, DeleteScheduledActionCommandOutput>;
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 { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
4
+ import { DeregisterScalableTargetRequest, DeregisterScalableTargetResponse } from "../models/models_0";
5
+ export interface DeregisterScalableTargetCommandInput extends DeregisterScalableTargetRequest {
6
+ }
7
+ export interface DeregisterScalableTargetCommandOutput extends DeregisterScalableTargetResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeregisterScalableTargetCommand extends $Command<DeregisterScalableTargetCommandInput, DeregisterScalableTargetCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
11
+ readonly input: DeregisterScalableTargetCommandInput;
12
+ constructor(input: DeregisterScalableTargetCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterScalableTargetCommandInput, DeregisterScalableTargetCommandOutput>;
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 { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
4
+ import { DescribeScalableTargetsRequest, DescribeScalableTargetsResponse } from "../models/models_0";
5
+ export interface DescribeScalableTargetsCommandInput extends DescribeScalableTargetsRequest {
6
+ }
7
+ export interface DescribeScalableTargetsCommandOutput extends DescribeScalableTargetsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeScalableTargetsCommand extends $Command<DescribeScalableTargetsCommandInput, DescribeScalableTargetsCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
11
+ readonly input: DescribeScalableTargetsCommandInput;
12
+ constructor(input: DescribeScalableTargetsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScalableTargetsCommandInput, DescribeScalableTargetsCommandOutput>;
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 { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
4
+ import { DescribeScalingActivitiesRequest, DescribeScalingActivitiesResponse } from "../models/models_0";
5
+ export interface DescribeScalingActivitiesCommandInput extends DescribeScalingActivitiesRequest {
6
+ }
7
+ export interface DescribeScalingActivitiesCommandOutput extends DescribeScalingActivitiesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeScalingActivitiesCommand extends $Command<DescribeScalingActivitiesCommandInput, DescribeScalingActivitiesCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
11
+ readonly input: DescribeScalingActivitiesCommandInput;
12
+ constructor(input: DescribeScalingActivitiesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScalingActivitiesCommandInput, DescribeScalingActivitiesCommandOutput>;
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 { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
4
+ import { DescribeScalingPoliciesRequest, DescribeScalingPoliciesResponse } from "../models/models_0";
5
+ export interface DescribeScalingPoliciesCommandInput extends DescribeScalingPoliciesRequest {
6
+ }
7
+ export interface DescribeScalingPoliciesCommandOutput extends DescribeScalingPoliciesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeScalingPoliciesCommand extends $Command<DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
11
+ readonly input: DescribeScalingPoliciesCommandInput;
12
+ constructor(input: DescribeScalingPoliciesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput>;
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 { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
4
+ import { DescribeScheduledActionsRequest, DescribeScheduledActionsResponse } from "../models/models_0";
5
+ export interface DescribeScheduledActionsCommandInput extends DescribeScheduledActionsRequest {
6
+ }
7
+ export interface DescribeScheduledActionsCommandOutput extends DescribeScheduledActionsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeScheduledActionsCommand extends $Command<DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
11
+ readonly input: DescribeScheduledActionsCommandInput;
12
+ constructor(input: DescribeScheduledActionsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput>;
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 { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
4
+ import { PutScalingPolicyRequest, PutScalingPolicyResponse } from "../models/models_0";
5
+ export interface PutScalingPolicyCommandInput extends PutScalingPolicyRequest {
6
+ }
7
+ export interface PutScalingPolicyCommandOutput extends PutScalingPolicyResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class PutScalingPolicyCommand extends $Command<PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
11
+ readonly input: PutScalingPolicyCommandInput;
12
+ constructor(input: PutScalingPolicyCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput>;
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 { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
4
+ import { PutScheduledActionRequest, PutScheduledActionResponse } from "../models/models_0";
5
+ export interface PutScheduledActionCommandInput extends PutScheduledActionRequest {
6
+ }
7
+ export interface PutScheduledActionCommandOutput extends PutScheduledActionResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class PutScheduledActionCommand extends $Command<PutScheduledActionCommandInput, PutScheduledActionCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
11
+ readonly input: PutScheduledActionCommandInput;
12
+ constructor(input: PutScheduledActionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutScheduledActionCommandInput, PutScheduledActionCommandOutput>;
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 { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
4
+ import { RegisterScalableTargetRequest, RegisterScalableTargetResponse } from "../models/models_0";
5
+ export interface RegisterScalableTargetCommandInput extends RegisterScalableTargetRequest {
6
+ }
7
+ export interface RegisterScalableTargetCommandOutput extends RegisterScalableTargetResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class RegisterScalableTargetCommand extends $Command<RegisterScalableTargetCommandInput, RegisterScalableTargetCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
11
+ readonly input: RegisterScalableTargetCommandInput;
12
+ constructor(input: RegisterScalableTargetCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterScalableTargetCommandInput, RegisterScalableTargetCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,10 @@
1
+ export * from "./DeleteScalingPolicyCommand";
2
+ export * from "./DeleteScheduledActionCommand";
3
+ export * from "./DeregisterScalableTargetCommand";
4
+ export * from "./DescribeScalableTargetsCommand";
5
+ export * from "./DescribeScalingActivitiesCommand";
6
+ export * from "./DescribeScalingPoliciesCommand";
7
+ export * from "./DescribeScheduledActionsCommand";
8
+ export * from "./PutScalingPolicyCommand";
9
+ export * from "./PutScheduledActionCommand";
10
+ export * from "./RegisterScalableTargetCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,5 @@
1
+ export * from "./ApplicationAutoScaling";
2
+ export * from "./ApplicationAutoScalingClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,616 @@
1
+ import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
+ export declare enum AdjustmentType {
3
+ ChangeInCapacity = "ChangeInCapacity",
4
+ ExactCapacity = "ExactCapacity",
5
+ PercentChangeInCapacity = "PercentChangeInCapacity"
6
+ }
7
+
8
+ export interface Alarm {
9
+
10
+ AlarmName: string | undefined;
11
+
12
+ AlarmARN: string | undefined;
13
+ }
14
+ export declare namespace Alarm {
15
+
16
+ const filterSensitiveLog: (obj: Alarm) => any;
17
+ }
18
+
19
+ export interface ConcurrentUpdateException extends __SmithyException, $MetadataBearer {
20
+ name: "ConcurrentUpdateException";
21
+ $fault: "server";
22
+ Message?: string;
23
+ }
24
+ export declare enum ScalableDimension {
25
+ AppstreamFleetDesiredCapacity = "appstream:fleet:DesiredCapacity",
26
+ CassandraTableReadCapacityUnits = "cassandra:table:ReadCapacityUnits",
27
+ CassandraTableWriteCapacityUnits = "cassandra:table:WriteCapacityUnits",
28
+ ComprehendDocClassifierEndpointInferenceUnits = "comprehend:document-classifier-endpoint:DesiredInferenceUnits",
29
+ ComprehendEntityRecognizerEndpointInferenceUnits = "comprehend:entity-recognizer-endpoint:DesiredInferenceUnits",
30
+ CustomResourceScalableDimension = "custom-resource:ResourceType:Property",
31
+ DynamoDBIndexReadCapacityUnits = "dynamodb:index:ReadCapacityUnits",
32
+ DynamoDBIndexWriteCapacityUnits = "dynamodb:index:WriteCapacityUnits",
33
+ DynamoDBTableReadCapacityUnits = "dynamodb:table:ReadCapacityUnits",
34
+ DynamoDBTableWriteCapacityUnits = "dynamodb:table:WriteCapacityUnits",
35
+ EC2SpotFleetRequestTargetCapacity = "ec2:spot-fleet-request:TargetCapacity",
36
+ ECSServiceDesiredCount = "ecs:service:DesiredCount",
37
+ EMRInstanceGroupInstanceCount = "elasticmapreduce:instancegroup:InstanceCount",
38
+ ElastiCacheReplicationGroupNodeGroups = "elasticache:replication-group:NodeGroups",
39
+ ElastiCacheReplicationGroupReplicas = "elasticache:replication-group:Replicas",
40
+ KafkaBrokerStorageVolumeSize = "kafka:broker-storage:VolumeSize",
41
+ LambdaFunctionProvisionedConcurrency = "lambda:function:ProvisionedConcurrency",
42
+ NeptuneClusterReadReplicaCount = "neptune:cluster:ReadReplicaCount",
43
+ RDSClusterReadReplicaCount = "rds:cluster:ReadReplicaCount",
44
+ SageMakerVariantDesiredInstanceCount = "sagemaker:variant:DesiredInstanceCount"
45
+ }
46
+ export declare enum ServiceNamespace {
47
+ APPSTREAM = "appstream",
48
+ CASSANDRA = "cassandra",
49
+ COMPREHEND = "comprehend",
50
+ CUSTOM_RESOURCE = "custom-resource",
51
+ DYNAMODB = "dynamodb",
52
+ EC2 = "ec2",
53
+ ECS = "ecs",
54
+ ELASTICACHE = "elasticache",
55
+ EMR = "elasticmapreduce",
56
+ KAFKA = "kafka",
57
+ LAMBDA = "lambda",
58
+ NEPTUNE = "neptune",
59
+ RDS = "rds",
60
+ SAGEMAKER = "sagemaker"
61
+ }
62
+ export interface DeleteScalingPolicyRequest {
63
+
64
+ PolicyName: string | undefined;
65
+
66
+ ServiceNamespace: ServiceNamespace | string | undefined;
67
+
68
+ ResourceId: string | undefined;
69
+
70
+ ScalableDimension: ScalableDimension | string | undefined;
71
+ }
72
+ export declare namespace DeleteScalingPolicyRequest {
73
+
74
+ const filterSensitiveLog: (obj: DeleteScalingPolicyRequest) => any;
75
+ }
76
+ export interface DeleteScalingPolicyResponse {
77
+ }
78
+ export declare namespace DeleteScalingPolicyResponse {
79
+
80
+ const filterSensitiveLog: (obj: DeleteScalingPolicyResponse) => any;
81
+ }
82
+
83
+ export interface InternalServiceException extends __SmithyException, $MetadataBearer {
84
+ name: "InternalServiceException";
85
+ $fault: "server";
86
+ Message?: string;
87
+ }
88
+
89
+ export interface ObjectNotFoundException extends __SmithyException, $MetadataBearer {
90
+ name: "ObjectNotFoundException";
91
+ $fault: "client";
92
+ Message?: string;
93
+ }
94
+
95
+ export interface ValidationException extends __SmithyException, $MetadataBearer {
96
+ name: "ValidationException";
97
+ $fault: "client";
98
+ Message?: string;
99
+ }
100
+ export interface DeleteScheduledActionRequest {
101
+
102
+ ServiceNamespace: ServiceNamespace | string | undefined;
103
+
104
+ ScheduledActionName: string | undefined;
105
+
106
+ ResourceId: string | undefined;
107
+
108
+ ScalableDimension: ScalableDimension | string | undefined;
109
+ }
110
+ export declare namespace DeleteScheduledActionRequest {
111
+
112
+ const filterSensitiveLog: (obj: DeleteScheduledActionRequest) => any;
113
+ }
114
+ export interface DeleteScheduledActionResponse {
115
+ }
116
+ export declare namespace DeleteScheduledActionResponse {
117
+
118
+ const filterSensitiveLog: (obj: DeleteScheduledActionResponse) => any;
119
+ }
120
+ export interface DeregisterScalableTargetRequest {
121
+
122
+ ServiceNamespace: ServiceNamespace | string | undefined;
123
+
124
+ ResourceId: string | undefined;
125
+
126
+ ScalableDimension: ScalableDimension | string | undefined;
127
+ }
128
+ export declare namespace DeregisterScalableTargetRequest {
129
+
130
+ const filterSensitiveLog: (obj: DeregisterScalableTargetRequest) => any;
131
+ }
132
+ export interface DeregisterScalableTargetResponse {
133
+ }
134
+ export declare namespace DeregisterScalableTargetResponse {
135
+
136
+ const filterSensitiveLog: (obj: DeregisterScalableTargetResponse) => any;
137
+ }
138
+ export interface DescribeScalableTargetsRequest {
139
+
140
+ ServiceNamespace: ServiceNamespace | string | undefined;
141
+
142
+ ResourceIds?: string[];
143
+
144
+ ScalableDimension?: ScalableDimension | string;
145
+
146
+ MaxResults?: number;
147
+
148
+ NextToken?: string;
149
+ }
150
+ export declare namespace DescribeScalableTargetsRequest {
151
+
152
+ const filterSensitiveLog: (obj: DescribeScalableTargetsRequest) => any;
153
+ }
154
+
155
+ export interface SuspendedState {
156
+
157
+ DynamicScalingInSuspended?: boolean;
158
+
159
+ DynamicScalingOutSuspended?: boolean;
160
+
161
+ ScheduledScalingSuspended?: boolean;
162
+ }
163
+ export declare namespace SuspendedState {
164
+
165
+ const filterSensitiveLog: (obj: SuspendedState) => any;
166
+ }
167
+
168
+ export interface ScalableTarget {
169
+
170
+ ServiceNamespace: ServiceNamespace | string | undefined;
171
+
172
+ ResourceId: string | undefined;
173
+
174
+ ScalableDimension: ScalableDimension | string | undefined;
175
+
176
+ MinCapacity: number | undefined;
177
+
178
+ MaxCapacity: number | undefined;
179
+
180
+ RoleARN: string | undefined;
181
+
182
+ CreationTime: Date | undefined;
183
+
184
+ SuspendedState?: SuspendedState;
185
+ }
186
+ export declare namespace ScalableTarget {
187
+
188
+ const filterSensitiveLog: (obj: ScalableTarget) => any;
189
+ }
190
+ export interface DescribeScalableTargetsResponse {
191
+
192
+ ScalableTargets?: ScalableTarget[];
193
+
194
+ NextToken?: string;
195
+ }
196
+ export declare namespace DescribeScalableTargetsResponse {
197
+
198
+ const filterSensitiveLog: (obj: DescribeScalableTargetsResponse) => any;
199
+ }
200
+
201
+ export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
202
+ name: "InvalidNextTokenException";
203
+ $fault: "client";
204
+ Message?: string;
205
+ }
206
+ export interface DescribeScalingActivitiesRequest {
207
+
208
+ ServiceNamespace: ServiceNamespace | string | undefined;
209
+
210
+ ResourceId?: string;
211
+
212
+ ScalableDimension?: ScalableDimension | string;
213
+
214
+ MaxResults?: number;
215
+
216
+ NextToken?: string;
217
+ }
218
+ export declare namespace DescribeScalingActivitiesRequest {
219
+
220
+ const filterSensitiveLog: (obj: DescribeScalingActivitiesRequest) => any;
221
+ }
222
+ export declare enum ScalingActivityStatusCode {
223
+ Failed = "Failed",
224
+ InProgress = "InProgress",
225
+ Overridden = "Overridden",
226
+ Pending = "Pending",
227
+ Successful = "Successful",
228
+ Unfulfilled = "Unfulfilled"
229
+ }
230
+
231
+ export interface ScalingActivity {
232
+
233
+ ActivityId: string | undefined;
234
+
235
+ ServiceNamespace: ServiceNamespace | string | undefined;
236
+
237
+ ResourceId: string | undefined;
238
+
239
+ ScalableDimension: ScalableDimension | string | undefined;
240
+
241
+ Description: string | undefined;
242
+
243
+ Cause: string | undefined;
244
+
245
+ StartTime: Date | undefined;
246
+
247
+ EndTime?: Date;
248
+
249
+ StatusCode: ScalingActivityStatusCode | string | undefined;
250
+
251
+ StatusMessage?: string;
252
+
253
+ Details?: string;
254
+ }
255
+ export declare namespace ScalingActivity {
256
+
257
+ const filterSensitiveLog: (obj: ScalingActivity) => any;
258
+ }
259
+ export interface DescribeScalingActivitiesResponse {
260
+
261
+ ScalingActivities?: ScalingActivity[];
262
+
263
+ NextToken?: string;
264
+ }
265
+ export declare namespace DescribeScalingActivitiesResponse {
266
+
267
+ const filterSensitiveLog: (obj: DescribeScalingActivitiesResponse) => any;
268
+ }
269
+ export interface DescribeScalingPoliciesRequest {
270
+
271
+ PolicyNames?: string[];
272
+
273
+ ServiceNamespace: ServiceNamespace | string | undefined;
274
+
275
+ ResourceId?: string;
276
+
277
+ ScalableDimension?: ScalableDimension | string;
278
+
279
+ MaxResults?: number;
280
+
281
+ NextToken?: string;
282
+ }
283
+ export declare namespace DescribeScalingPoliciesRequest {
284
+
285
+ const filterSensitiveLog: (obj: DescribeScalingPoliciesRequest) => any;
286
+ }
287
+ export declare enum PolicyType {
288
+ StepScaling = "StepScaling",
289
+ TargetTrackingScaling = "TargetTrackingScaling"
290
+ }
291
+ export declare enum MetricAggregationType {
292
+ Average = "Average",
293
+ Maximum = "Maximum",
294
+ Minimum = "Minimum"
295
+ }
296
+
297
+ export interface StepAdjustment {
298
+
299
+ MetricIntervalLowerBound?: number;
300
+
301
+ MetricIntervalUpperBound?: number;
302
+
303
+ ScalingAdjustment: number | undefined;
304
+ }
305
+ export declare namespace StepAdjustment {
306
+
307
+ const filterSensitiveLog: (obj: StepAdjustment) => any;
308
+ }
309
+
310
+ export interface StepScalingPolicyConfiguration {
311
+
312
+ AdjustmentType?: AdjustmentType | string;
313
+
314
+ StepAdjustments?: StepAdjustment[];
315
+
316
+ MinAdjustmentMagnitude?: number;
317
+
318
+ Cooldown?: number;
319
+
320
+ MetricAggregationType?: MetricAggregationType | string;
321
+ }
322
+ export declare namespace StepScalingPolicyConfiguration {
323
+
324
+ const filterSensitiveLog: (obj: StepScalingPolicyConfiguration) => any;
325
+ }
326
+
327
+ export interface MetricDimension {
328
+
329
+ Name: string | undefined;
330
+
331
+ Value: string | undefined;
332
+ }
333
+ export declare namespace MetricDimension {
334
+
335
+ const filterSensitiveLog: (obj: MetricDimension) => any;
336
+ }
337
+ export declare enum MetricStatistic {
338
+ Average = "Average",
339
+ Maximum = "Maximum",
340
+ Minimum = "Minimum",
341
+ SampleCount = "SampleCount",
342
+ Sum = "Sum"
343
+ }
344
+
345
+ export interface CustomizedMetricSpecification {
346
+
347
+ MetricName: string | undefined;
348
+
349
+ Namespace: string | undefined;
350
+
351
+ Dimensions?: MetricDimension[];
352
+
353
+ Statistic: MetricStatistic | string | undefined;
354
+
355
+ Unit?: string;
356
+ }
357
+ export declare namespace CustomizedMetricSpecification {
358
+
359
+ const filterSensitiveLog: (obj: CustomizedMetricSpecification) => any;
360
+ }
361
+ export declare enum MetricType {
362
+ ALBRequestCountPerTarget = "ALBRequestCountPerTarget",
363
+ AppStreamAverageCapacityUtilization = "AppStreamAverageCapacityUtilization",
364
+ CassandraReadCapacityUtilization = "CassandraReadCapacityUtilization",
365
+ CassandraWriteCapacityUtilization = "CassandraWriteCapacityUtilization",
366
+ ComprehendInferenceUtilization = "ComprehendInferenceUtilization",
367
+ DynamoDBReadCapacityUtilization = "DynamoDBReadCapacityUtilization",
368
+ DynamoDBWriteCapacityUtilization = "DynamoDBWriteCapacityUtilization",
369
+ EC2SpotFleetRequestAverageCPUUtilization = "EC2SpotFleetRequestAverageCPUUtilization",
370
+ EC2SpotFleetRequestAverageNetworkIn = "EC2SpotFleetRequestAverageNetworkIn",
371
+ EC2SpotFleetRequestAverageNetworkOut = "EC2SpotFleetRequestAverageNetworkOut",
372
+ ECSServiceAverageCPUUtilization = "ECSServiceAverageCPUUtilization",
373
+ ECSServiceAverageMemoryUtilization = "ECSServiceAverageMemoryUtilization",
374
+ ElastiCacheDatabaseMemoryUsageCountedForEvictPercentage = "ElastiCacheDatabaseMemoryUsageCountedForEvictPercentage",
375
+ ElastiCachePrimaryEngineCPUUtilization = "ElastiCachePrimaryEngineCPUUtilization",
376
+ ElastiCacheReplicaEngineCPUUtilization = "ElastiCacheReplicaEngineCPUUtilization",
377
+ KafkaBrokerStorageUtilization = "KafkaBrokerStorageUtilization",
378
+ LambdaProvisionedConcurrencyUtilization = "LambdaProvisionedConcurrencyUtilization",
379
+ NeptuneReaderAverageCPUUtilization = "NeptuneReaderAverageCPUUtilization",
380
+ RDSReaderAverageCPUUtilization = "RDSReaderAverageCPUUtilization",
381
+ RDSReaderAverageDatabaseConnections = "RDSReaderAverageDatabaseConnections",
382
+ SageMakerVariantInvocationsPerInstance = "SageMakerVariantInvocationsPerInstance"
383
+ }
384
+
385
+ export interface PredefinedMetricSpecification {
386
+
387
+ PredefinedMetricType: MetricType | string | undefined;
388
+
389
+ ResourceLabel?: string;
390
+ }
391
+ export declare namespace PredefinedMetricSpecification {
392
+
393
+ const filterSensitiveLog: (obj: PredefinedMetricSpecification) => any;
394
+ }
395
+
396
+ export interface TargetTrackingScalingPolicyConfiguration {
397
+
398
+ TargetValue: number | undefined;
399
+
400
+ PredefinedMetricSpecification?: PredefinedMetricSpecification;
401
+
402
+ CustomizedMetricSpecification?: CustomizedMetricSpecification;
403
+
404
+ ScaleOutCooldown?: number;
405
+
406
+ ScaleInCooldown?: number;
407
+
408
+ DisableScaleIn?: boolean;
409
+ }
410
+ export declare namespace TargetTrackingScalingPolicyConfiguration {
411
+
412
+ const filterSensitiveLog: (obj: TargetTrackingScalingPolicyConfiguration) => any;
413
+ }
414
+
415
+ export interface ScalingPolicy {
416
+
417
+ PolicyARN: string | undefined;
418
+
419
+ PolicyName: string | undefined;
420
+
421
+ ServiceNamespace: ServiceNamespace | string | undefined;
422
+
423
+ ResourceId: string | undefined;
424
+
425
+ ScalableDimension: ScalableDimension | string | undefined;
426
+
427
+ PolicyType: PolicyType | string | undefined;
428
+
429
+ StepScalingPolicyConfiguration?: StepScalingPolicyConfiguration;
430
+
431
+ TargetTrackingScalingPolicyConfiguration?: TargetTrackingScalingPolicyConfiguration;
432
+
433
+ Alarms?: Alarm[];
434
+
435
+ CreationTime: Date | undefined;
436
+ }
437
+ export declare namespace ScalingPolicy {
438
+
439
+ const filterSensitiveLog: (obj: ScalingPolicy) => any;
440
+ }
441
+ export interface DescribeScalingPoliciesResponse {
442
+
443
+ ScalingPolicies?: ScalingPolicy[];
444
+
445
+ NextToken?: string;
446
+ }
447
+ export declare namespace DescribeScalingPoliciesResponse {
448
+
449
+ const filterSensitiveLog: (obj: DescribeScalingPoliciesResponse) => any;
450
+ }
451
+
452
+ export interface FailedResourceAccessException extends __SmithyException, $MetadataBearer {
453
+ name: "FailedResourceAccessException";
454
+ $fault: "client";
455
+ Message?: string;
456
+ }
457
+ export interface DescribeScheduledActionsRequest {
458
+
459
+ ScheduledActionNames?: string[];
460
+
461
+ ServiceNamespace: ServiceNamespace | string | undefined;
462
+
463
+ ResourceId?: string;
464
+
465
+ ScalableDimension?: ScalableDimension | string;
466
+
467
+ MaxResults?: number;
468
+
469
+ NextToken?: string;
470
+ }
471
+ export declare namespace DescribeScheduledActionsRequest {
472
+
473
+ const filterSensitiveLog: (obj: DescribeScheduledActionsRequest) => any;
474
+ }
475
+
476
+ export interface ScalableTargetAction {
477
+
478
+ MinCapacity?: number;
479
+
480
+ MaxCapacity?: number;
481
+ }
482
+ export declare namespace ScalableTargetAction {
483
+
484
+ const filterSensitiveLog: (obj: ScalableTargetAction) => any;
485
+ }
486
+
487
+ export interface ScheduledAction {
488
+
489
+ ScheduledActionName: string | undefined;
490
+
491
+ ScheduledActionARN: string | undefined;
492
+
493
+ ServiceNamespace: ServiceNamespace | string | undefined;
494
+
495
+ Schedule: string | undefined;
496
+
497
+ Timezone?: string;
498
+
499
+ ResourceId: string | undefined;
500
+
501
+ ScalableDimension?: ScalableDimension | string;
502
+
503
+ StartTime?: Date;
504
+
505
+ EndTime?: Date;
506
+
507
+ ScalableTargetAction?: ScalableTargetAction;
508
+
509
+ CreationTime: Date | undefined;
510
+ }
511
+ export declare namespace ScheduledAction {
512
+
513
+ const filterSensitiveLog: (obj: ScheduledAction) => any;
514
+ }
515
+ export interface DescribeScheduledActionsResponse {
516
+
517
+ ScheduledActions?: ScheduledAction[];
518
+
519
+ NextToken?: string;
520
+ }
521
+ export declare namespace DescribeScheduledActionsResponse {
522
+
523
+ const filterSensitiveLog: (obj: DescribeScheduledActionsResponse) => any;
524
+ }
525
+
526
+ export interface LimitExceededException extends __SmithyException, $MetadataBearer {
527
+ name: "LimitExceededException";
528
+ $fault: "client";
529
+ Message?: string;
530
+ }
531
+ export interface PutScalingPolicyRequest {
532
+
533
+ PolicyName: string | undefined;
534
+
535
+ ServiceNamespace: ServiceNamespace | string | undefined;
536
+
537
+ ResourceId: string | undefined;
538
+
539
+ ScalableDimension: ScalableDimension | string | undefined;
540
+
541
+ PolicyType?: PolicyType | string;
542
+
543
+ StepScalingPolicyConfiguration?: StepScalingPolicyConfiguration;
544
+
545
+ TargetTrackingScalingPolicyConfiguration?: TargetTrackingScalingPolicyConfiguration;
546
+ }
547
+ export declare namespace PutScalingPolicyRequest {
548
+
549
+ const filterSensitiveLog: (obj: PutScalingPolicyRequest) => any;
550
+ }
551
+ export interface PutScalingPolicyResponse {
552
+
553
+ PolicyARN: string | undefined;
554
+
555
+ Alarms?: Alarm[];
556
+ }
557
+ export declare namespace PutScalingPolicyResponse {
558
+
559
+ const filterSensitiveLog: (obj: PutScalingPolicyResponse) => any;
560
+ }
561
+ export interface PutScheduledActionRequest {
562
+
563
+ ServiceNamespace: ServiceNamespace | string | undefined;
564
+
565
+ Schedule?: string;
566
+
567
+ Timezone?: string;
568
+
569
+ ScheduledActionName: string | undefined;
570
+
571
+ ResourceId: string | undefined;
572
+
573
+ ScalableDimension: ScalableDimension | string | undefined;
574
+
575
+ StartTime?: Date;
576
+
577
+ EndTime?: Date;
578
+
579
+ ScalableTargetAction?: ScalableTargetAction;
580
+ }
581
+ export declare namespace PutScheduledActionRequest {
582
+
583
+ const filterSensitiveLog: (obj: PutScheduledActionRequest) => any;
584
+ }
585
+ export interface PutScheduledActionResponse {
586
+ }
587
+ export declare namespace PutScheduledActionResponse {
588
+
589
+ const filterSensitiveLog: (obj: PutScheduledActionResponse) => any;
590
+ }
591
+ export interface RegisterScalableTargetRequest {
592
+
593
+ ServiceNamespace: ServiceNamespace | string | undefined;
594
+
595
+ ResourceId: string | undefined;
596
+
597
+ ScalableDimension: ScalableDimension | string | undefined;
598
+
599
+ MinCapacity?: number;
600
+
601
+ MaxCapacity?: number;
602
+
603
+ RoleARN?: string;
604
+
605
+ SuspendedState?: SuspendedState;
606
+ }
607
+ export declare namespace RegisterScalableTargetRequest {
608
+
609
+ const filterSensitiveLog: (obj: RegisterScalableTargetRequest) => any;
610
+ }
611
+ export interface RegisterScalableTargetResponse {
612
+ }
613
+ export declare namespace RegisterScalableTargetResponse {
614
+
615
+ const filterSensitiveLog: (obj: RegisterScalableTargetResponse) => any;
616
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeScalableTargetsCommandInput, DescribeScalableTargetsCommandOutput } from "../commands/DescribeScalableTargetsCommand";
3
+ import { ApplicationAutoScalingPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeScalableTargets(config: ApplicationAutoScalingPaginationConfiguration, input: DescribeScalableTargetsCommandInput, ...additionalArguments: any): Paginator<DescribeScalableTargetsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeScalingActivitiesCommandInput, DescribeScalingActivitiesCommandOutput } from "../commands/DescribeScalingActivitiesCommand";
3
+ import { ApplicationAutoScalingPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeScalingActivities(config: ApplicationAutoScalingPaginationConfiguration, input: DescribeScalingActivitiesCommandInput, ...additionalArguments: any): Paginator<DescribeScalingActivitiesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput } from "../commands/DescribeScalingPoliciesCommand";
3
+ import { ApplicationAutoScalingPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeScalingPolicies(config: ApplicationAutoScalingPaginationConfiguration, input: DescribeScalingPoliciesCommandInput, ...additionalArguments: any): Paginator<DescribeScalingPoliciesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput } from "../commands/DescribeScheduledActionsCommand";
3
+ import { ApplicationAutoScalingPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeScheduledActions(config: ApplicationAutoScalingPaginationConfiguration, input: DescribeScheduledActionsCommandInput, ...additionalArguments: any): Paginator<DescribeScheduledActionsCommandOutput>;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { ApplicationAutoScaling } from "../ApplicationAutoScaling";
3
+ import { ApplicationAutoScalingClient } from "../ApplicationAutoScalingClient";
4
+ export interface ApplicationAutoScalingPaginationConfiguration extends PaginationConfiguration {
5
+ client: ApplicationAutoScaling | ApplicationAutoScalingClient;
6
+ }
@@ -0,0 +1,5 @@
1
+ export * from "./DescribeScalableTargetsPaginator";
2
+ export * from "./DescribeScalingActivitiesPaginator";
3
+ export * from "./DescribeScalingPoliciesPaginator";
4
+ export * from "./DescribeScheduledActionsPaginator";
5
+ export * from "./Interfaces";
@@ -0,0 +1,32 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { DeleteScalingPolicyCommandInput, DeleteScalingPolicyCommandOutput } from "../commands/DeleteScalingPolicyCommand";
4
+ import { DeleteScheduledActionCommandInput, DeleteScheduledActionCommandOutput } from "../commands/DeleteScheduledActionCommand";
5
+ import { DeregisterScalableTargetCommandInput, DeregisterScalableTargetCommandOutput } from "../commands/DeregisterScalableTargetCommand";
6
+ import { DescribeScalableTargetsCommandInput, DescribeScalableTargetsCommandOutput } from "../commands/DescribeScalableTargetsCommand";
7
+ import { DescribeScalingActivitiesCommandInput, DescribeScalingActivitiesCommandOutput } from "../commands/DescribeScalingActivitiesCommand";
8
+ import { DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput } from "../commands/DescribeScalingPoliciesCommand";
9
+ import { DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput } from "../commands/DescribeScheduledActionsCommand";
10
+ import { PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput } from "../commands/PutScalingPolicyCommand";
11
+ import { PutScheduledActionCommandInput, PutScheduledActionCommandOutput } from "../commands/PutScheduledActionCommand";
12
+ import { RegisterScalableTargetCommandInput, RegisterScalableTargetCommandOutput } from "../commands/RegisterScalableTargetCommand";
13
+ export declare const serializeAws_json1_1DeleteScalingPolicyCommand: (input: DeleteScalingPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
14
+ export declare const serializeAws_json1_1DeleteScheduledActionCommand: (input: DeleteScheduledActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
+ export declare const serializeAws_json1_1DeregisterScalableTargetCommand: (input: DeregisterScalableTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
+ export declare const serializeAws_json1_1DescribeScalableTargetsCommand: (input: DescribeScalableTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
+ export declare const serializeAws_json1_1DescribeScalingActivitiesCommand: (input: DescribeScalingActivitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_json1_1DescribeScalingPoliciesCommand: (input: DescribeScalingPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_json1_1DescribeScheduledActionsCommand: (input: DescribeScheduledActionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ export declare const serializeAws_json1_1PutScalingPolicyCommand: (input: PutScalingPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_json1_1PutScheduledActionCommand: (input: PutScheduledActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_json1_1RegisterScalableTargetCommand: (input: RegisterScalableTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const deserializeAws_json1_1DeleteScalingPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteScalingPolicyCommandOutput>;
24
+ export declare const deserializeAws_json1_1DeleteScheduledActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteScheduledActionCommandOutput>;
25
+ export declare const deserializeAws_json1_1DeregisterScalableTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterScalableTargetCommandOutput>;
26
+ export declare const deserializeAws_json1_1DescribeScalableTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeScalableTargetsCommandOutput>;
27
+ export declare const deserializeAws_json1_1DescribeScalingActivitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeScalingActivitiesCommandOutput>;
28
+ export declare const deserializeAws_json1_1DescribeScalingPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeScalingPoliciesCommandOutput>;
29
+ export declare const deserializeAws_json1_1DescribeScheduledActionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeScheduledActionsCommandOutput>;
30
+ export declare const deserializeAws_json1_1PutScalingPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutScalingPolicyCommandOutput>;
31
+ export declare const deserializeAws_json1_1PutScheduledActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutScheduledActionCommandOutput>;
32
+ export declare const deserializeAws_json1_1RegisterScalableTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterScalableTargetCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient";
3
+
4
+ export declare const getRuntimeConfig: (config: ApplicationAutoScalingClientConfig) => {
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 { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient";
3
+
4
+ export declare const getRuntimeConfig: (config: ApplicationAutoScalingClientConfig) => {
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 { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient";
2
+
3
+ export declare const getRuntimeConfig: (config: ApplicationAutoScalingClientConfig) => {
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 { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient";
3
+
4
+ export declare const getRuntimeConfig: (config: ApplicationAutoScalingClientConfig) => {
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-application-auto-scaling",
3
3
  "description": "AWS SDK for JavaScript Application Auto Scaling 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"