@aws-sdk/client-application-auto-scaling 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/ApplicationAutoScaling.d.ts +184 -55
- package/dist-types/ts3.4/ApplicationAutoScalingClient.d.ts +190 -83
- package/dist-types/ts3.4/commands/DeleteScalingPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteScheduledActionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeregisterScalableTargetCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeScalableTargetsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeScalingActivitiesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeScalingPoliciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeScheduledActionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutScalingPolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/PutScheduledActionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RegisterScalableTargetCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +10 -10
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ApplicationAutoScalingServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +610 -565
- package/dist-types/ts3.4/pagination/DescribeScalableTargetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeScalingActivitiesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeScalingPoliciesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeScheduledActionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +125 -32
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-application-auto-scaling
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-application-auto-scaling
|
|
@@ -1,55 +1,184 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { ApplicationAutoScalingClient } from "./ApplicationAutoScalingClient";
|
|
3
|
-
import {
|
|
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
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { ApplicationAutoScalingClient } from "./ApplicationAutoScalingClient";
|
|
3
|
+
import {
|
|
4
|
+
DeleteScalingPolicyCommandInput,
|
|
5
|
+
DeleteScalingPolicyCommandOutput,
|
|
6
|
+
} from "./commands/DeleteScalingPolicyCommand";
|
|
7
|
+
import {
|
|
8
|
+
DeleteScheduledActionCommandInput,
|
|
9
|
+
DeleteScheduledActionCommandOutput,
|
|
10
|
+
} from "./commands/DeleteScheduledActionCommand";
|
|
11
|
+
import {
|
|
12
|
+
DeregisterScalableTargetCommandInput,
|
|
13
|
+
DeregisterScalableTargetCommandOutput,
|
|
14
|
+
} from "./commands/DeregisterScalableTargetCommand";
|
|
15
|
+
import {
|
|
16
|
+
DescribeScalableTargetsCommandInput,
|
|
17
|
+
DescribeScalableTargetsCommandOutput,
|
|
18
|
+
} from "./commands/DescribeScalableTargetsCommand";
|
|
19
|
+
import {
|
|
20
|
+
DescribeScalingActivitiesCommandInput,
|
|
21
|
+
DescribeScalingActivitiesCommandOutput,
|
|
22
|
+
} from "./commands/DescribeScalingActivitiesCommand";
|
|
23
|
+
import {
|
|
24
|
+
DescribeScalingPoliciesCommandInput,
|
|
25
|
+
DescribeScalingPoliciesCommandOutput,
|
|
26
|
+
} from "./commands/DescribeScalingPoliciesCommand";
|
|
27
|
+
import {
|
|
28
|
+
DescribeScheduledActionsCommandInput,
|
|
29
|
+
DescribeScheduledActionsCommandOutput,
|
|
30
|
+
} from "./commands/DescribeScheduledActionsCommand";
|
|
31
|
+
import {
|
|
32
|
+
PutScalingPolicyCommandInput,
|
|
33
|
+
PutScalingPolicyCommandOutput,
|
|
34
|
+
} from "./commands/PutScalingPolicyCommand";
|
|
35
|
+
import {
|
|
36
|
+
PutScheduledActionCommandInput,
|
|
37
|
+
PutScheduledActionCommandOutput,
|
|
38
|
+
} from "./commands/PutScheduledActionCommand";
|
|
39
|
+
import {
|
|
40
|
+
RegisterScalableTargetCommandInput,
|
|
41
|
+
RegisterScalableTargetCommandOutput,
|
|
42
|
+
} from "./commands/RegisterScalableTargetCommand";
|
|
43
|
+
|
|
44
|
+
export declare class ApplicationAutoScaling extends ApplicationAutoScalingClient {
|
|
45
|
+
deleteScalingPolicy(
|
|
46
|
+
args: DeleteScalingPolicyCommandInput,
|
|
47
|
+
options?: __HttpHandlerOptions
|
|
48
|
+
): Promise<DeleteScalingPolicyCommandOutput>;
|
|
49
|
+
deleteScalingPolicy(
|
|
50
|
+
args: DeleteScalingPolicyCommandInput,
|
|
51
|
+
cb: (err: any, data?: DeleteScalingPolicyCommandOutput) => void
|
|
52
|
+
): void;
|
|
53
|
+
deleteScalingPolicy(
|
|
54
|
+
args: DeleteScalingPolicyCommandInput,
|
|
55
|
+
options: __HttpHandlerOptions,
|
|
56
|
+
cb: (err: any, data?: DeleteScalingPolicyCommandOutput) => void
|
|
57
|
+
): void;
|
|
58
|
+
|
|
59
|
+
deleteScheduledAction(
|
|
60
|
+
args: DeleteScheduledActionCommandInput,
|
|
61
|
+
options?: __HttpHandlerOptions
|
|
62
|
+
): Promise<DeleteScheduledActionCommandOutput>;
|
|
63
|
+
deleteScheduledAction(
|
|
64
|
+
args: DeleteScheduledActionCommandInput,
|
|
65
|
+
cb: (err: any, data?: DeleteScheduledActionCommandOutput) => void
|
|
66
|
+
): void;
|
|
67
|
+
deleteScheduledAction(
|
|
68
|
+
args: DeleteScheduledActionCommandInput,
|
|
69
|
+
options: __HttpHandlerOptions,
|
|
70
|
+
cb: (err: any, data?: DeleteScheduledActionCommandOutput) => void
|
|
71
|
+
): void;
|
|
72
|
+
|
|
73
|
+
deregisterScalableTarget(
|
|
74
|
+
args: DeregisterScalableTargetCommandInput,
|
|
75
|
+
options?: __HttpHandlerOptions
|
|
76
|
+
): Promise<DeregisterScalableTargetCommandOutput>;
|
|
77
|
+
deregisterScalableTarget(
|
|
78
|
+
args: DeregisterScalableTargetCommandInput,
|
|
79
|
+
cb: (err: any, data?: DeregisterScalableTargetCommandOutput) => void
|
|
80
|
+
): void;
|
|
81
|
+
deregisterScalableTarget(
|
|
82
|
+
args: DeregisterScalableTargetCommandInput,
|
|
83
|
+
options: __HttpHandlerOptions,
|
|
84
|
+
cb: (err: any, data?: DeregisterScalableTargetCommandOutput) => void
|
|
85
|
+
): void;
|
|
86
|
+
|
|
87
|
+
describeScalableTargets(
|
|
88
|
+
args: DescribeScalableTargetsCommandInput,
|
|
89
|
+
options?: __HttpHandlerOptions
|
|
90
|
+
): Promise<DescribeScalableTargetsCommandOutput>;
|
|
91
|
+
describeScalableTargets(
|
|
92
|
+
args: DescribeScalableTargetsCommandInput,
|
|
93
|
+
cb: (err: any, data?: DescribeScalableTargetsCommandOutput) => void
|
|
94
|
+
): void;
|
|
95
|
+
describeScalableTargets(
|
|
96
|
+
args: DescribeScalableTargetsCommandInput,
|
|
97
|
+
options: __HttpHandlerOptions,
|
|
98
|
+
cb: (err: any, data?: DescribeScalableTargetsCommandOutput) => void
|
|
99
|
+
): void;
|
|
100
|
+
|
|
101
|
+
describeScalingActivities(
|
|
102
|
+
args: DescribeScalingActivitiesCommandInput,
|
|
103
|
+
options?: __HttpHandlerOptions
|
|
104
|
+
): Promise<DescribeScalingActivitiesCommandOutput>;
|
|
105
|
+
describeScalingActivities(
|
|
106
|
+
args: DescribeScalingActivitiesCommandInput,
|
|
107
|
+
cb: (err: any, data?: DescribeScalingActivitiesCommandOutput) => void
|
|
108
|
+
): void;
|
|
109
|
+
describeScalingActivities(
|
|
110
|
+
args: DescribeScalingActivitiesCommandInput,
|
|
111
|
+
options: __HttpHandlerOptions,
|
|
112
|
+
cb: (err: any, data?: DescribeScalingActivitiesCommandOutput) => void
|
|
113
|
+
): void;
|
|
114
|
+
|
|
115
|
+
describeScalingPolicies(
|
|
116
|
+
args: DescribeScalingPoliciesCommandInput,
|
|
117
|
+
options?: __HttpHandlerOptions
|
|
118
|
+
): Promise<DescribeScalingPoliciesCommandOutput>;
|
|
119
|
+
describeScalingPolicies(
|
|
120
|
+
args: DescribeScalingPoliciesCommandInput,
|
|
121
|
+
cb: (err: any, data?: DescribeScalingPoliciesCommandOutput) => void
|
|
122
|
+
): void;
|
|
123
|
+
describeScalingPolicies(
|
|
124
|
+
args: DescribeScalingPoliciesCommandInput,
|
|
125
|
+
options: __HttpHandlerOptions,
|
|
126
|
+
cb: (err: any, data?: DescribeScalingPoliciesCommandOutput) => void
|
|
127
|
+
): void;
|
|
128
|
+
|
|
129
|
+
describeScheduledActions(
|
|
130
|
+
args: DescribeScheduledActionsCommandInput,
|
|
131
|
+
options?: __HttpHandlerOptions
|
|
132
|
+
): Promise<DescribeScheduledActionsCommandOutput>;
|
|
133
|
+
describeScheduledActions(
|
|
134
|
+
args: DescribeScheduledActionsCommandInput,
|
|
135
|
+
cb: (err: any, data?: DescribeScheduledActionsCommandOutput) => void
|
|
136
|
+
): void;
|
|
137
|
+
describeScheduledActions(
|
|
138
|
+
args: DescribeScheduledActionsCommandInput,
|
|
139
|
+
options: __HttpHandlerOptions,
|
|
140
|
+
cb: (err: any, data?: DescribeScheduledActionsCommandOutput) => void
|
|
141
|
+
): void;
|
|
142
|
+
|
|
143
|
+
putScalingPolicy(
|
|
144
|
+
args: PutScalingPolicyCommandInput,
|
|
145
|
+
options?: __HttpHandlerOptions
|
|
146
|
+
): Promise<PutScalingPolicyCommandOutput>;
|
|
147
|
+
putScalingPolicy(
|
|
148
|
+
args: PutScalingPolicyCommandInput,
|
|
149
|
+
cb: (err: any, data?: PutScalingPolicyCommandOutput) => void
|
|
150
|
+
): void;
|
|
151
|
+
putScalingPolicy(
|
|
152
|
+
args: PutScalingPolicyCommandInput,
|
|
153
|
+
options: __HttpHandlerOptions,
|
|
154
|
+
cb: (err: any, data?: PutScalingPolicyCommandOutput) => void
|
|
155
|
+
): void;
|
|
156
|
+
|
|
157
|
+
putScheduledAction(
|
|
158
|
+
args: PutScheduledActionCommandInput,
|
|
159
|
+
options?: __HttpHandlerOptions
|
|
160
|
+
): Promise<PutScheduledActionCommandOutput>;
|
|
161
|
+
putScheduledAction(
|
|
162
|
+
args: PutScheduledActionCommandInput,
|
|
163
|
+
cb: (err: any, data?: PutScheduledActionCommandOutput) => void
|
|
164
|
+
): void;
|
|
165
|
+
putScheduledAction(
|
|
166
|
+
args: PutScheduledActionCommandInput,
|
|
167
|
+
options: __HttpHandlerOptions,
|
|
168
|
+
cb: (err: any, data?: PutScheduledActionCommandOutput) => void
|
|
169
|
+
): void;
|
|
170
|
+
|
|
171
|
+
registerScalableTarget(
|
|
172
|
+
args: RegisterScalableTargetCommandInput,
|
|
173
|
+
options?: __HttpHandlerOptions
|
|
174
|
+
): Promise<RegisterScalableTargetCommandOutput>;
|
|
175
|
+
registerScalableTarget(
|
|
176
|
+
args: RegisterScalableTargetCommandInput,
|
|
177
|
+
cb: (err: any, data?: RegisterScalableTargetCommandOutput) => void
|
|
178
|
+
): void;
|
|
179
|
+
registerScalableTarget(
|
|
180
|
+
args: RegisterScalableTargetCommandInput,
|
|
181
|
+
options: __HttpHandlerOptions,
|
|
182
|
+
cb: (err: any, data?: RegisterScalableTargetCommandOutput) => void
|
|
183
|
+
): void;
|
|
184
|
+
}
|
|
@@ -1,83 +1,190 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
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
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
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
|
+
DeleteScalingPolicyCommandInput,
|
|
47
|
+
DeleteScalingPolicyCommandOutput,
|
|
48
|
+
} from "./commands/DeleteScalingPolicyCommand";
|
|
49
|
+
import {
|
|
50
|
+
DeleteScheduledActionCommandInput,
|
|
51
|
+
DeleteScheduledActionCommandOutput,
|
|
52
|
+
} from "./commands/DeleteScheduledActionCommand";
|
|
53
|
+
import {
|
|
54
|
+
DeregisterScalableTargetCommandInput,
|
|
55
|
+
DeregisterScalableTargetCommandOutput,
|
|
56
|
+
} from "./commands/DeregisterScalableTargetCommand";
|
|
57
|
+
import {
|
|
58
|
+
DescribeScalableTargetsCommandInput,
|
|
59
|
+
DescribeScalableTargetsCommandOutput,
|
|
60
|
+
} from "./commands/DescribeScalableTargetsCommand";
|
|
61
|
+
import {
|
|
62
|
+
DescribeScalingActivitiesCommandInput,
|
|
63
|
+
DescribeScalingActivitiesCommandOutput,
|
|
64
|
+
} from "./commands/DescribeScalingActivitiesCommand";
|
|
65
|
+
import {
|
|
66
|
+
DescribeScalingPoliciesCommandInput,
|
|
67
|
+
DescribeScalingPoliciesCommandOutput,
|
|
68
|
+
} from "./commands/DescribeScalingPoliciesCommand";
|
|
69
|
+
import {
|
|
70
|
+
DescribeScheduledActionsCommandInput,
|
|
71
|
+
DescribeScheduledActionsCommandOutput,
|
|
72
|
+
} from "./commands/DescribeScheduledActionsCommand";
|
|
73
|
+
import {
|
|
74
|
+
PutScalingPolicyCommandInput,
|
|
75
|
+
PutScalingPolicyCommandOutput,
|
|
76
|
+
} from "./commands/PutScalingPolicyCommand";
|
|
77
|
+
import {
|
|
78
|
+
PutScheduledActionCommandInput,
|
|
79
|
+
PutScheduledActionCommandOutput,
|
|
80
|
+
} from "./commands/PutScheduledActionCommand";
|
|
81
|
+
import {
|
|
82
|
+
RegisterScalableTargetCommandInput,
|
|
83
|
+
RegisterScalableTargetCommandOutput,
|
|
84
|
+
} from "./commands/RegisterScalableTargetCommand";
|
|
85
|
+
export declare type ServiceInputTypes =
|
|
86
|
+
| DeleteScalingPolicyCommandInput
|
|
87
|
+
| DeleteScheduledActionCommandInput
|
|
88
|
+
| DeregisterScalableTargetCommandInput
|
|
89
|
+
| DescribeScalableTargetsCommandInput
|
|
90
|
+
| DescribeScalingActivitiesCommandInput
|
|
91
|
+
| DescribeScalingPoliciesCommandInput
|
|
92
|
+
| DescribeScheduledActionsCommandInput
|
|
93
|
+
| PutScalingPolicyCommandInput
|
|
94
|
+
| PutScheduledActionCommandInput
|
|
95
|
+
| RegisterScalableTargetCommandInput;
|
|
96
|
+
export declare type ServiceOutputTypes =
|
|
97
|
+
| DeleteScalingPolicyCommandOutput
|
|
98
|
+
| DeleteScheduledActionCommandOutput
|
|
99
|
+
| DeregisterScalableTargetCommandOutput
|
|
100
|
+
| DescribeScalableTargetsCommandOutput
|
|
101
|
+
| DescribeScalingActivitiesCommandOutput
|
|
102
|
+
| DescribeScalingPoliciesCommandOutput
|
|
103
|
+
| DescribeScheduledActionsCommandOutput
|
|
104
|
+
| PutScalingPolicyCommandOutput
|
|
105
|
+
| PutScheduledActionCommandOutput
|
|
106
|
+
| RegisterScalableTargetCommandOutput;
|
|
107
|
+
export interface ClientDefaults
|
|
108
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
109
|
+
requestHandler?: __HttpHandler;
|
|
110
|
+
|
|
111
|
+
sha256?: __HashConstructor;
|
|
112
|
+
|
|
113
|
+
urlParser?: __UrlParser;
|
|
114
|
+
|
|
115
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
116
|
+
|
|
117
|
+
streamCollector?: __StreamCollector;
|
|
118
|
+
|
|
119
|
+
base64Decoder?: __Decoder;
|
|
120
|
+
|
|
121
|
+
base64Encoder?: __Encoder;
|
|
122
|
+
|
|
123
|
+
utf8Decoder?: __Decoder;
|
|
124
|
+
|
|
125
|
+
utf8Encoder?: __Encoder;
|
|
126
|
+
|
|
127
|
+
runtime?: string;
|
|
128
|
+
|
|
129
|
+
disableHostPrefix?: boolean;
|
|
130
|
+
|
|
131
|
+
maxAttempts?: number | __Provider<number>;
|
|
132
|
+
|
|
133
|
+
retryMode?: string | __Provider<string>;
|
|
134
|
+
|
|
135
|
+
logger?: __Logger;
|
|
136
|
+
|
|
137
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
138
|
+
|
|
139
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
140
|
+
|
|
141
|
+
serviceId?: string;
|
|
142
|
+
|
|
143
|
+
region?: string | __Provider<string>;
|
|
144
|
+
|
|
145
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
146
|
+
|
|
147
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
148
|
+
|
|
149
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
150
|
+
|
|
151
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
152
|
+
}
|
|
153
|
+
declare type ApplicationAutoScalingClientConfigType = Partial<
|
|
154
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
155
|
+
> &
|
|
156
|
+
ClientDefaults &
|
|
157
|
+
RegionInputConfig &
|
|
158
|
+
EndpointsInputConfig &
|
|
159
|
+
RetryInputConfig &
|
|
160
|
+
HostHeaderInputConfig &
|
|
161
|
+
AwsAuthInputConfig &
|
|
162
|
+
UserAgentInputConfig;
|
|
163
|
+
|
|
164
|
+
export interface ApplicationAutoScalingClientConfig
|
|
165
|
+
extends ApplicationAutoScalingClientConfigType {}
|
|
166
|
+
declare type ApplicationAutoScalingClientResolvedConfigType =
|
|
167
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
168
|
+
Required<ClientDefaults> &
|
|
169
|
+
RegionResolvedConfig &
|
|
170
|
+
EndpointsResolvedConfig &
|
|
171
|
+
RetryResolvedConfig &
|
|
172
|
+
HostHeaderResolvedConfig &
|
|
173
|
+
AwsAuthResolvedConfig &
|
|
174
|
+
UserAgentResolvedConfig;
|
|
175
|
+
|
|
176
|
+
export interface ApplicationAutoScalingClientResolvedConfig
|
|
177
|
+
extends ApplicationAutoScalingClientResolvedConfigType {}
|
|
178
|
+
|
|
179
|
+
export declare class ApplicationAutoScalingClient extends __Client<
|
|
180
|
+
__HttpHandlerOptions,
|
|
181
|
+
ServiceInputTypes,
|
|
182
|
+
ServiceOutputTypes,
|
|
183
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
184
|
+
> {
|
|
185
|
+
readonly config: ApplicationAutoScalingClientResolvedConfig;
|
|
186
|
+
constructor(configuration: ApplicationAutoScalingClientConfig);
|
|
187
|
+
|
|
188
|
+
destroy(): void;
|
|
189
|
+
}
|
|
190
|
+
export {};
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
ApplicationAutoScalingClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationAutoScalingClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteScalingPolicyRequest,
|
|
15
|
+
DeleteScalingPolicyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteScalingPolicyCommandInput
|
|
18
|
+
extends DeleteScalingPolicyRequest {}
|
|
19
|
+
export interface DeleteScalingPolicyCommandOutput
|
|
20
|
+
extends DeleteScalingPolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteScalingPolicyCommand extends $Command<
|
|
24
|
+
DeleteScalingPolicyCommandInput,
|
|
25
|
+
DeleteScalingPolicyCommandOutput,
|
|
26
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteScalingPolicyCommandInput;
|
|
29
|
+
constructor(input: DeleteScalingPolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteScalingPolicyCommandInput, DeleteScalingPolicyCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
ApplicationAutoScalingClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationAutoScalingClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteScheduledActionRequest,
|
|
15
|
+
DeleteScheduledActionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteScheduledActionCommandInput
|
|
18
|
+
extends DeleteScheduledActionRequest {}
|
|
19
|
+
export interface DeleteScheduledActionCommandOutput
|
|
20
|
+
extends DeleteScheduledActionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteScheduledActionCommand extends $Command<
|
|
24
|
+
DeleteScheduledActionCommandInput,
|
|
25
|
+
DeleteScheduledActionCommandOutput,
|
|
26
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteScheduledActionCommandInput;
|
|
29
|
+
constructor(input: DeleteScheduledActionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteScheduledActionCommandInput,
|
|
37
|
+
DeleteScheduledActionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|