@aws-sdk/client-auto-scaling-plans 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/AutoScalingPlans.d.ts +112 -35
- package/dist-types/ts3.4/AutoScalingPlansClient.d.ts +141 -79
- package/dist-types/ts3.4/commands/CreateScalingPlanCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteScalingPlanCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeScalingPlanResourcesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeScalingPlansCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetScalingPlanResourceForecastDataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateScalingPlanCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/index.d.ts +6 -6
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AutoScalingPlansServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +345 -433
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +77 -20
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-auto-scaling-plans
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-auto-scaling-plans
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-auto-scaling-plans
|
|
@@ -1,35 +1,112 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { AutoScalingPlansClient } from "./AutoScalingPlansClient";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AutoScalingPlansClient } from "./AutoScalingPlansClient";
|
|
3
|
+
import {
|
|
4
|
+
CreateScalingPlanCommandInput,
|
|
5
|
+
CreateScalingPlanCommandOutput,
|
|
6
|
+
} from "./commands/CreateScalingPlanCommand";
|
|
7
|
+
import {
|
|
8
|
+
DeleteScalingPlanCommandInput,
|
|
9
|
+
DeleteScalingPlanCommandOutput,
|
|
10
|
+
} from "./commands/DeleteScalingPlanCommand";
|
|
11
|
+
import {
|
|
12
|
+
DescribeScalingPlanResourcesCommandInput,
|
|
13
|
+
DescribeScalingPlanResourcesCommandOutput,
|
|
14
|
+
} from "./commands/DescribeScalingPlanResourcesCommand";
|
|
15
|
+
import {
|
|
16
|
+
DescribeScalingPlansCommandInput,
|
|
17
|
+
DescribeScalingPlansCommandOutput,
|
|
18
|
+
} from "./commands/DescribeScalingPlansCommand";
|
|
19
|
+
import {
|
|
20
|
+
GetScalingPlanResourceForecastDataCommandInput,
|
|
21
|
+
GetScalingPlanResourceForecastDataCommandOutput,
|
|
22
|
+
} from "./commands/GetScalingPlanResourceForecastDataCommand";
|
|
23
|
+
import {
|
|
24
|
+
UpdateScalingPlanCommandInput,
|
|
25
|
+
UpdateScalingPlanCommandOutput,
|
|
26
|
+
} from "./commands/UpdateScalingPlanCommand";
|
|
27
|
+
export declare class AutoScalingPlans extends AutoScalingPlansClient {
|
|
28
|
+
createScalingPlan(
|
|
29
|
+
args: CreateScalingPlanCommandInput,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Promise<CreateScalingPlanCommandOutput>;
|
|
32
|
+
createScalingPlan(
|
|
33
|
+
args: CreateScalingPlanCommandInput,
|
|
34
|
+
cb: (err: any, data?: CreateScalingPlanCommandOutput) => void
|
|
35
|
+
): void;
|
|
36
|
+
createScalingPlan(
|
|
37
|
+
args: CreateScalingPlanCommandInput,
|
|
38
|
+
options: __HttpHandlerOptions,
|
|
39
|
+
cb: (err: any, data?: CreateScalingPlanCommandOutput) => void
|
|
40
|
+
): void;
|
|
41
|
+
deleteScalingPlan(
|
|
42
|
+
args: DeleteScalingPlanCommandInput,
|
|
43
|
+
options?: __HttpHandlerOptions
|
|
44
|
+
): Promise<DeleteScalingPlanCommandOutput>;
|
|
45
|
+
deleteScalingPlan(
|
|
46
|
+
args: DeleteScalingPlanCommandInput,
|
|
47
|
+
cb: (err: any, data?: DeleteScalingPlanCommandOutput) => void
|
|
48
|
+
): void;
|
|
49
|
+
deleteScalingPlan(
|
|
50
|
+
args: DeleteScalingPlanCommandInput,
|
|
51
|
+
options: __HttpHandlerOptions,
|
|
52
|
+
cb: (err: any, data?: DeleteScalingPlanCommandOutput) => void
|
|
53
|
+
): void;
|
|
54
|
+
describeScalingPlanResources(
|
|
55
|
+
args: DescribeScalingPlanResourcesCommandInput,
|
|
56
|
+
options?: __HttpHandlerOptions
|
|
57
|
+
): Promise<DescribeScalingPlanResourcesCommandOutput>;
|
|
58
|
+
describeScalingPlanResources(
|
|
59
|
+
args: DescribeScalingPlanResourcesCommandInput,
|
|
60
|
+
cb: (err: any, data?: DescribeScalingPlanResourcesCommandOutput) => void
|
|
61
|
+
): void;
|
|
62
|
+
describeScalingPlanResources(
|
|
63
|
+
args: DescribeScalingPlanResourcesCommandInput,
|
|
64
|
+
options: __HttpHandlerOptions,
|
|
65
|
+
cb: (err: any, data?: DescribeScalingPlanResourcesCommandOutput) => void
|
|
66
|
+
): void;
|
|
67
|
+
describeScalingPlans(
|
|
68
|
+
args: DescribeScalingPlansCommandInput,
|
|
69
|
+
options?: __HttpHandlerOptions
|
|
70
|
+
): Promise<DescribeScalingPlansCommandOutput>;
|
|
71
|
+
describeScalingPlans(
|
|
72
|
+
args: DescribeScalingPlansCommandInput,
|
|
73
|
+
cb: (err: any, data?: DescribeScalingPlansCommandOutput) => void
|
|
74
|
+
): void;
|
|
75
|
+
describeScalingPlans(
|
|
76
|
+
args: DescribeScalingPlansCommandInput,
|
|
77
|
+
options: __HttpHandlerOptions,
|
|
78
|
+
cb: (err: any, data?: DescribeScalingPlansCommandOutput) => void
|
|
79
|
+
): void;
|
|
80
|
+
getScalingPlanResourceForecastData(
|
|
81
|
+
args: GetScalingPlanResourceForecastDataCommandInput,
|
|
82
|
+
options?: __HttpHandlerOptions
|
|
83
|
+
): Promise<GetScalingPlanResourceForecastDataCommandOutput>;
|
|
84
|
+
getScalingPlanResourceForecastData(
|
|
85
|
+
args: GetScalingPlanResourceForecastDataCommandInput,
|
|
86
|
+
cb: (
|
|
87
|
+
err: any,
|
|
88
|
+
data?: GetScalingPlanResourceForecastDataCommandOutput
|
|
89
|
+
) => void
|
|
90
|
+
): void;
|
|
91
|
+
getScalingPlanResourceForecastData(
|
|
92
|
+
args: GetScalingPlanResourceForecastDataCommandInput,
|
|
93
|
+
options: __HttpHandlerOptions,
|
|
94
|
+
cb: (
|
|
95
|
+
err: any,
|
|
96
|
+
data?: GetScalingPlanResourceForecastDataCommandOutput
|
|
97
|
+
) => void
|
|
98
|
+
): void;
|
|
99
|
+
updateScalingPlan(
|
|
100
|
+
args: UpdateScalingPlanCommandInput,
|
|
101
|
+
options?: __HttpHandlerOptions
|
|
102
|
+
): Promise<UpdateScalingPlanCommandOutput>;
|
|
103
|
+
updateScalingPlan(
|
|
104
|
+
args: UpdateScalingPlanCommandInput,
|
|
105
|
+
cb: (err: any, data?: UpdateScalingPlanCommandOutput) => void
|
|
106
|
+
): void;
|
|
107
|
+
updateScalingPlan(
|
|
108
|
+
args: UpdateScalingPlanCommandInput,
|
|
109
|
+
options: __HttpHandlerOptions,
|
|
110
|
+
cb: (err: any, data?: UpdateScalingPlanCommandOutput) => void
|
|
111
|
+
): void;
|
|
112
|
+
}
|
|
@@ -1,79 +1,141 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
export
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CreateScalingPlanCommandInput,
|
|
47
|
+
CreateScalingPlanCommandOutput,
|
|
48
|
+
} from "./commands/CreateScalingPlanCommand";
|
|
49
|
+
import {
|
|
50
|
+
DeleteScalingPlanCommandInput,
|
|
51
|
+
DeleteScalingPlanCommandOutput,
|
|
52
|
+
} from "./commands/DeleteScalingPlanCommand";
|
|
53
|
+
import {
|
|
54
|
+
DescribeScalingPlanResourcesCommandInput,
|
|
55
|
+
DescribeScalingPlanResourcesCommandOutput,
|
|
56
|
+
} from "./commands/DescribeScalingPlanResourcesCommand";
|
|
57
|
+
import {
|
|
58
|
+
DescribeScalingPlansCommandInput,
|
|
59
|
+
DescribeScalingPlansCommandOutput,
|
|
60
|
+
} from "./commands/DescribeScalingPlansCommand";
|
|
61
|
+
import {
|
|
62
|
+
GetScalingPlanResourceForecastDataCommandInput,
|
|
63
|
+
GetScalingPlanResourceForecastDataCommandOutput,
|
|
64
|
+
} from "./commands/GetScalingPlanResourceForecastDataCommand";
|
|
65
|
+
import {
|
|
66
|
+
UpdateScalingPlanCommandInput,
|
|
67
|
+
UpdateScalingPlanCommandOutput,
|
|
68
|
+
} from "./commands/UpdateScalingPlanCommand";
|
|
69
|
+
export declare type ServiceInputTypes =
|
|
70
|
+
| CreateScalingPlanCommandInput
|
|
71
|
+
| DeleteScalingPlanCommandInput
|
|
72
|
+
| DescribeScalingPlanResourcesCommandInput
|
|
73
|
+
| DescribeScalingPlansCommandInput
|
|
74
|
+
| GetScalingPlanResourceForecastDataCommandInput
|
|
75
|
+
| UpdateScalingPlanCommandInput;
|
|
76
|
+
export declare type ServiceOutputTypes =
|
|
77
|
+
| CreateScalingPlanCommandOutput
|
|
78
|
+
| DeleteScalingPlanCommandOutput
|
|
79
|
+
| DescribeScalingPlanResourcesCommandOutput
|
|
80
|
+
| DescribeScalingPlansCommandOutput
|
|
81
|
+
| GetScalingPlanResourceForecastDataCommandOutput
|
|
82
|
+
| UpdateScalingPlanCommandOutput;
|
|
83
|
+
export interface ClientDefaults
|
|
84
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
85
|
+
requestHandler?: __HttpHandler;
|
|
86
|
+
sha256?: __HashConstructor;
|
|
87
|
+
urlParser?: __UrlParser;
|
|
88
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
89
|
+
streamCollector?: __StreamCollector;
|
|
90
|
+
base64Decoder?: __Decoder;
|
|
91
|
+
base64Encoder?: __Encoder;
|
|
92
|
+
utf8Decoder?: __Decoder;
|
|
93
|
+
utf8Encoder?: __Encoder;
|
|
94
|
+
runtime?: string;
|
|
95
|
+
disableHostPrefix?: boolean;
|
|
96
|
+
maxAttempts?: number | __Provider<number>;
|
|
97
|
+
retryMode?: string | __Provider<string>;
|
|
98
|
+
logger?: __Logger;
|
|
99
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
100
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
101
|
+
serviceId?: string;
|
|
102
|
+
region?: string | __Provider<string>;
|
|
103
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
104
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
105
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
106
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
107
|
+
}
|
|
108
|
+
declare type AutoScalingPlansClientConfigType = Partial<
|
|
109
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
110
|
+
> &
|
|
111
|
+
ClientDefaults &
|
|
112
|
+
RegionInputConfig &
|
|
113
|
+
EndpointsInputConfig &
|
|
114
|
+
RetryInputConfig &
|
|
115
|
+
HostHeaderInputConfig &
|
|
116
|
+
AwsAuthInputConfig &
|
|
117
|
+
UserAgentInputConfig;
|
|
118
|
+
export interface AutoScalingPlansClientConfig
|
|
119
|
+
extends AutoScalingPlansClientConfigType {}
|
|
120
|
+
declare type AutoScalingPlansClientResolvedConfigType =
|
|
121
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
122
|
+
Required<ClientDefaults> &
|
|
123
|
+
RegionResolvedConfig &
|
|
124
|
+
EndpointsResolvedConfig &
|
|
125
|
+
RetryResolvedConfig &
|
|
126
|
+
HostHeaderResolvedConfig &
|
|
127
|
+
AwsAuthResolvedConfig &
|
|
128
|
+
UserAgentResolvedConfig;
|
|
129
|
+
export interface AutoScalingPlansClientResolvedConfig
|
|
130
|
+
extends AutoScalingPlansClientResolvedConfigType {}
|
|
131
|
+
export declare class AutoScalingPlansClient extends __Client<
|
|
132
|
+
__HttpHandlerOptions,
|
|
133
|
+
ServiceInputTypes,
|
|
134
|
+
ServiceOutputTypes,
|
|
135
|
+
AutoScalingPlansClientResolvedConfig
|
|
136
|
+
> {
|
|
137
|
+
readonly config: AutoScalingPlansClientResolvedConfig;
|
|
138
|
+
constructor(configuration: AutoScalingPlansClientConfig);
|
|
139
|
+
destroy(): void;
|
|
140
|
+
}
|
|
141
|
+
export {};
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AutoScalingPlansClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AutoScalingPlansClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateScalingPlanRequest,
|
|
15
|
+
CreateScalingPlanResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateScalingPlanCommandInput
|
|
18
|
+
extends CreateScalingPlanRequest {}
|
|
19
|
+
export interface CreateScalingPlanCommandOutput
|
|
20
|
+
extends CreateScalingPlanResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateScalingPlanCommand extends $Command<
|
|
23
|
+
CreateScalingPlanCommandInput,
|
|
24
|
+
CreateScalingPlanCommandOutput,
|
|
25
|
+
AutoScalingPlansClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateScalingPlanCommandInput;
|
|
28
|
+
constructor(input: CreateScalingPlanCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AutoScalingPlansClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<CreateScalingPlanCommandInput, CreateScalingPlanCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AutoScalingPlansClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AutoScalingPlansClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteScalingPlanRequest,
|
|
15
|
+
DeleteScalingPlanResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteScalingPlanCommandInput
|
|
18
|
+
extends DeleteScalingPlanRequest {}
|
|
19
|
+
export interface DeleteScalingPlanCommandOutput
|
|
20
|
+
extends DeleteScalingPlanResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteScalingPlanCommand extends $Command<
|
|
23
|
+
DeleteScalingPlanCommandInput,
|
|
24
|
+
DeleteScalingPlanCommandOutput,
|
|
25
|
+
AutoScalingPlansClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteScalingPlanCommandInput;
|
|
28
|
+
constructor(input: DeleteScalingPlanCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AutoScalingPlansClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteScalingPlanCommandInput, DeleteScalingPlanCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AutoScalingPlansClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AutoScalingPlansClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeScalingPlanResourcesRequest,
|
|
15
|
+
DescribeScalingPlanResourcesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeScalingPlanResourcesCommandInput
|
|
18
|
+
extends DescribeScalingPlanResourcesRequest {}
|
|
19
|
+
export interface DescribeScalingPlanResourcesCommandOutput
|
|
20
|
+
extends DescribeScalingPlanResourcesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeScalingPlanResourcesCommand extends $Command<
|
|
23
|
+
DescribeScalingPlanResourcesCommandInput,
|
|
24
|
+
DescribeScalingPlanResourcesCommandOutput,
|
|
25
|
+
AutoScalingPlansClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeScalingPlanResourcesCommandInput;
|
|
28
|
+
constructor(input: DescribeScalingPlanResourcesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AutoScalingPlansClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeScalingPlanResourcesCommandInput,
|
|
35
|
+
DescribeScalingPlanResourcesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AutoScalingPlansClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AutoScalingPlansClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeScalingPlansRequest,
|
|
15
|
+
DescribeScalingPlansResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeScalingPlansCommandInput
|
|
18
|
+
extends DescribeScalingPlansRequest {}
|
|
19
|
+
export interface DescribeScalingPlansCommandOutput
|
|
20
|
+
extends DescribeScalingPlansResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeScalingPlansCommand extends $Command<
|
|
23
|
+
DescribeScalingPlansCommandInput,
|
|
24
|
+
DescribeScalingPlansCommandOutput,
|
|
25
|
+
AutoScalingPlansClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeScalingPlansCommandInput;
|
|
28
|
+
constructor(input: DescribeScalingPlansCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AutoScalingPlansClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeScalingPlansCommandInput,
|
|
35
|
+
DescribeScalingPlansCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|