@aws-sdk/client-auto-scaling-plans 3.50.0 → 3.53.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 (32) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/AutoScalingPlansServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +86 -1
  5. package/dist-cjs/protocols/Aws_json1_1.js +84 -231
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/AutoScalingPlansServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +80 -1
  9. package/dist-es/protocols/Aws_json1_1.js +155 -244
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/AutoScalingPlansServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +44 -19
  13. package/dist-types/ts3.4/AutoScalingPlans.d.ts +35 -0
  14. package/dist-types/ts3.4/AutoScalingPlansClient.d.ts +79 -0
  15. package/dist-types/ts3.4/commands/CreateScalingPlanCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/DeleteScalingPlanCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DescribeScalingPlanResourcesCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DescribeScalingPlansCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/GetScalingPlanResourceForecastDataCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/UpdateScalingPlanCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  22. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  23. package/dist-types/ts3.4/index.d.ts +5 -0
  24. package/dist-types/ts3.4/models/AutoScalingPlansServiceException.d.ts +6 -0
  25. package/dist-types/ts3.4/models/index.d.ts +1 -0
  26. package/dist-types/ts3.4/models/models_0.d.ts +483 -0
  27. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +20 -0
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  31. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  32. package/package.json +33 -33
@@ -2,3 +2,4 @@ export * from "./AutoScalingPlans";
2
2
  export * from "./AutoScalingPlansClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
+ export { AutoScalingPlansServiceException } from "./models/AutoScalingPlansServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from AutoScalingPlans service.
4
+ */
5
+ export declare class AutoScalingPlansServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,12 +1,17 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { AutoScalingPlansServiceException as __BaseException } from "./AutoScalingPlansServiceException";
2
3
  /**
3
4
  * <p>Concurrent updates caused an exception, for example, if you request an update to a
4
5
  * scaling plan that already has a pending update.</p>
5
6
  */
6
- export interface ConcurrentUpdateException extends __SmithyException, $MetadataBearer {
7
- name: "ConcurrentUpdateException";
8
- $fault: "server";
7
+ export declare class ConcurrentUpdateException extends __BaseException {
8
+ readonly name: "ConcurrentUpdateException";
9
+ readonly $fault: "server";
9
10
  Message?: string;
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<ConcurrentUpdateException, __BaseException>);
10
15
  }
11
16
  /**
12
17
  * <p>Represents a tag.</p>
@@ -621,27 +626,39 @@ export declare namespace CreateScalingPlanResponse {
621
626
  /**
622
627
  * <p>The service encountered an internal error.</p>
623
628
  */
624
- export interface InternalServiceException extends __SmithyException, $MetadataBearer {
625
- name: "InternalServiceException";
626
- $fault: "server";
629
+ export declare class InternalServiceException extends __BaseException {
630
+ readonly name: "InternalServiceException";
631
+ readonly $fault: "server";
627
632
  Message?: string;
633
+ /**
634
+ * @internal
635
+ */
636
+ constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
628
637
  }
629
638
  /**
630
639
  * <p>Your account exceeded a limit. This exception is thrown when a per-account resource
631
640
  * limit is exceeded.</p>
632
641
  */
633
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
634
- name: "LimitExceededException";
635
- $fault: "client";
642
+ export declare class LimitExceededException extends __BaseException {
643
+ readonly name: "LimitExceededException";
644
+ readonly $fault: "client";
636
645
  Message?: string;
646
+ /**
647
+ * @internal
648
+ */
649
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
637
650
  }
638
651
  /**
639
652
  * <p>An exception was thrown for a validation issue. Review the parameters provided.</p>
640
653
  */
641
- export interface ValidationException extends __SmithyException, $MetadataBearer {
642
- name: "ValidationException";
643
- $fault: "client";
654
+ export declare class ValidationException extends __BaseException {
655
+ readonly name: "ValidationException";
656
+ readonly $fault: "client";
644
657
  Message?: string;
658
+ /**
659
+ * @internal
660
+ */
661
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
645
662
  }
646
663
  export interface DeleteScalingPlanRequest {
647
664
  /**
@@ -671,10 +688,14 @@ export declare namespace DeleteScalingPlanResponse {
671
688
  /**
672
689
  * <p>The specified object could not be found.</p>
673
690
  */
674
- export interface ObjectNotFoundException extends __SmithyException, $MetadataBearer {
675
- name: "ObjectNotFoundException";
676
- $fault: "client";
691
+ export declare class ObjectNotFoundException extends __BaseException {
692
+ readonly name: "ObjectNotFoundException";
693
+ readonly $fault: "client";
677
694
  Message?: string;
695
+ /**
696
+ * @internal
697
+ */
698
+ constructor(opts: __ExceptionOptionType<ObjectNotFoundException, __BaseException>);
678
699
  }
679
700
  export interface DescribeScalingPlanResourcesRequest {
680
701
  /**
@@ -876,10 +897,14 @@ export declare namespace DescribeScalingPlanResourcesResponse {
876
897
  /**
877
898
  * <p>The token provided is not valid.</p>
878
899
  */
879
- export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
880
- name: "InvalidNextTokenException";
881
- $fault: "client";
900
+ export declare class InvalidNextTokenException extends __BaseException {
901
+ readonly name: "InvalidNextTokenException";
902
+ readonly $fault: "client";
882
903
  Message?: string;
904
+ /**
905
+ * @internal
906
+ */
907
+ constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
883
908
  }
884
909
  export interface DescribeScalingPlansRequest {
885
910
  /**
@@ -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,5 @@
1
+ export * from "./AutoScalingPlans";
2
+ export * from "./AutoScalingPlansClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export { AutoScalingPlansServiceException } from "./models/AutoScalingPlansServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class AutoScalingPlansServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";