@aws-sdk/client-application-auto-scaling 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/ApplicationAutoScaling.d.ts +174 -55
- package/dist-types/ts3.4/ApplicationAutoScalingClient.d.ts +165 -83
- package/dist-types/ts3.4/commands/DeleteScalingPolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteScheduledActionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeregisterScalableTargetCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeScalableTargetsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeScalingActivitiesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeScalingPoliciesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeScheduledActionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/PutScalingPolicyCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/PutScheduledActionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/RegisterScalableTargetCommand.d.ts +39 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +442 -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 +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-application-auto-scaling
|
|
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-application-auto-scaling
|
|
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-application-auto-scaling
|
|
@@ -1,55 +1,174 @@
|
|
|
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
|
+
export declare class ApplicationAutoScaling extends ApplicationAutoScalingClient {
|
|
44
|
+
deleteScalingPolicy(
|
|
45
|
+
args: DeleteScalingPolicyCommandInput,
|
|
46
|
+
options?: __HttpHandlerOptions
|
|
47
|
+
): Promise<DeleteScalingPolicyCommandOutput>;
|
|
48
|
+
deleteScalingPolicy(
|
|
49
|
+
args: DeleteScalingPolicyCommandInput,
|
|
50
|
+
cb: (err: any, data?: DeleteScalingPolicyCommandOutput) => void
|
|
51
|
+
): void;
|
|
52
|
+
deleteScalingPolicy(
|
|
53
|
+
args: DeleteScalingPolicyCommandInput,
|
|
54
|
+
options: __HttpHandlerOptions,
|
|
55
|
+
cb: (err: any, data?: DeleteScalingPolicyCommandOutput) => void
|
|
56
|
+
): void;
|
|
57
|
+
deleteScheduledAction(
|
|
58
|
+
args: DeleteScheduledActionCommandInput,
|
|
59
|
+
options?: __HttpHandlerOptions
|
|
60
|
+
): Promise<DeleteScheduledActionCommandOutput>;
|
|
61
|
+
deleteScheduledAction(
|
|
62
|
+
args: DeleteScheduledActionCommandInput,
|
|
63
|
+
cb: (err: any, data?: DeleteScheduledActionCommandOutput) => void
|
|
64
|
+
): void;
|
|
65
|
+
deleteScheduledAction(
|
|
66
|
+
args: DeleteScheduledActionCommandInput,
|
|
67
|
+
options: __HttpHandlerOptions,
|
|
68
|
+
cb: (err: any, data?: DeleteScheduledActionCommandOutput) => void
|
|
69
|
+
): void;
|
|
70
|
+
deregisterScalableTarget(
|
|
71
|
+
args: DeregisterScalableTargetCommandInput,
|
|
72
|
+
options?: __HttpHandlerOptions
|
|
73
|
+
): Promise<DeregisterScalableTargetCommandOutput>;
|
|
74
|
+
deregisterScalableTarget(
|
|
75
|
+
args: DeregisterScalableTargetCommandInput,
|
|
76
|
+
cb: (err: any, data?: DeregisterScalableTargetCommandOutput) => void
|
|
77
|
+
): void;
|
|
78
|
+
deregisterScalableTarget(
|
|
79
|
+
args: DeregisterScalableTargetCommandInput,
|
|
80
|
+
options: __HttpHandlerOptions,
|
|
81
|
+
cb: (err: any, data?: DeregisterScalableTargetCommandOutput) => void
|
|
82
|
+
): void;
|
|
83
|
+
describeScalableTargets(
|
|
84
|
+
args: DescribeScalableTargetsCommandInput,
|
|
85
|
+
options?: __HttpHandlerOptions
|
|
86
|
+
): Promise<DescribeScalableTargetsCommandOutput>;
|
|
87
|
+
describeScalableTargets(
|
|
88
|
+
args: DescribeScalableTargetsCommandInput,
|
|
89
|
+
cb: (err: any, data?: DescribeScalableTargetsCommandOutput) => void
|
|
90
|
+
): void;
|
|
91
|
+
describeScalableTargets(
|
|
92
|
+
args: DescribeScalableTargetsCommandInput,
|
|
93
|
+
options: __HttpHandlerOptions,
|
|
94
|
+
cb: (err: any, data?: DescribeScalableTargetsCommandOutput) => void
|
|
95
|
+
): void;
|
|
96
|
+
describeScalingActivities(
|
|
97
|
+
args: DescribeScalingActivitiesCommandInput,
|
|
98
|
+
options?: __HttpHandlerOptions
|
|
99
|
+
): Promise<DescribeScalingActivitiesCommandOutput>;
|
|
100
|
+
describeScalingActivities(
|
|
101
|
+
args: DescribeScalingActivitiesCommandInput,
|
|
102
|
+
cb: (err: any, data?: DescribeScalingActivitiesCommandOutput) => void
|
|
103
|
+
): void;
|
|
104
|
+
describeScalingActivities(
|
|
105
|
+
args: DescribeScalingActivitiesCommandInput,
|
|
106
|
+
options: __HttpHandlerOptions,
|
|
107
|
+
cb: (err: any, data?: DescribeScalingActivitiesCommandOutput) => void
|
|
108
|
+
): void;
|
|
109
|
+
describeScalingPolicies(
|
|
110
|
+
args: DescribeScalingPoliciesCommandInput,
|
|
111
|
+
options?: __HttpHandlerOptions
|
|
112
|
+
): Promise<DescribeScalingPoliciesCommandOutput>;
|
|
113
|
+
describeScalingPolicies(
|
|
114
|
+
args: DescribeScalingPoliciesCommandInput,
|
|
115
|
+
cb: (err: any, data?: DescribeScalingPoliciesCommandOutput) => void
|
|
116
|
+
): void;
|
|
117
|
+
describeScalingPolicies(
|
|
118
|
+
args: DescribeScalingPoliciesCommandInput,
|
|
119
|
+
options: __HttpHandlerOptions,
|
|
120
|
+
cb: (err: any, data?: DescribeScalingPoliciesCommandOutput) => void
|
|
121
|
+
): void;
|
|
122
|
+
describeScheduledActions(
|
|
123
|
+
args: DescribeScheduledActionsCommandInput,
|
|
124
|
+
options?: __HttpHandlerOptions
|
|
125
|
+
): Promise<DescribeScheduledActionsCommandOutput>;
|
|
126
|
+
describeScheduledActions(
|
|
127
|
+
args: DescribeScheduledActionsCommandInput,
|
|
128
|
+
cb: (err: any, data?: DescribeScheduledActionsCommandOutput) => void
|
|
129
|
+
): void;
|
|
130
|
+
describeScheduledActions(
|
|
131
|
+
args: DescribeScheduledActionsCommandInput,
|
|
132
|
+
options: __HttpHandlerOptions,
|
|
133
|
+
cb: (err: any, data?: DescribeScheduledActionsCommandOutput) => void
|
|
134
|
+
): void;
|
|
135
|
+
putScalingPolicy(
|
|
136
|
+
args: PutScalingPolicyCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<PutScalingPolicyCommandOutput>;
|
|
139
|
+
putScalingPolicy(
|
|
140
|
+
args: PutScalingPolicyCommandInput,
|
|
141
|
+
cb: (err: any, data?: PutScalingPolicyCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
putScalingPolicy(
|
|
144
|
+
args: PutScalingPolicyCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: PutScalingPolicyCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
putScheduledAction(
|
|
149
|
+
args: PutScheduledActionCommandInput,
|
|
150
|
+
options?: __HttpHandlerOptions
|
|
151
|
+
): Promise<PutScheduledActionCommandOutput>;
|
|
152
|
+
putScheduledAction(
|
|
153
|
+
args: PutScheduledActionCommandInput,
|
|
154
|
+
cb: (err: any, data?: PutScheduledActionCommandOutput) => void
|
|
155
|
+
): void;
|
|
156
|
+
putScheduledAction(
|
|
157
|
+
args: PutScheduledActionCommandInput,
|
|
158
|
+
options: __HttpHandlerOptions,
|
|
159
|
+
cb: (err: any, data?: PutScheduledActionCommandOutput) => void
|
|
160
|
+
): void;
|
|
161
|
+
registerScalableTarget(
|
|
162
|
+
args: RegisterScalableTargetCommandInput,
|
|
163
|
+
options?: __HttpHandlerOptions
|
|
164
|
+
): Promise<RegisterScalableTargetCommandOutput>;
|
|
165
|
+
registerScalableTarget(
|
|
166
|
+
args: RegisterScalableTargetCommandInput,
|
|
167
|
+
cb: (err: any, data?: RegisterScalableTargetCommandOutput) => void
|
|
168
|
+
): void;
|
|
169
|
+
registerScalableTarget(
|
|
170
|
+
args: RegisterScalableTargetCommandInput,
|
|
171
|
+
options: __HttpHandlerOptions,
|
|
172
|
+
cb: (err: any, data?: RegisterScalableTargetCommandOutput) => void
|
|
173
|
+
): void;
|
|
174
|
+
}
|
|
@@ -1,83 +1,165 @@
|
|
|
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
|
+
sha256?: __HashConstructor;
|
|
111
|
+
urlParser?: __UrlParser;
|
|
112
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
113
|
+
streamCollector?: __StreamCollector;
|
|
114
|
+
base64Decoder?: __Decoder;
|
|
115
|
+
base64Encoder?: __Encoder;
|
|
116
|
+
utf8Decoder?: __Decoder;
|
|
117
|
+
utf8Encoder?: __Encoder;
|
|
118
|
+
runtime?: string;
|
|
119
|
+
disableHostPrefix?: boolean;
|
|
120
|
+
maxAttempts?: number | __Provider<number>;
|
|
121
|
+
retryMode?: string | __Provider<string>;
|
|
122
|
+
logger?: __Logger;
|
|
123
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
124
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
125
|
+
serviceId?: string;
|
|
126
|
+
region?: string | __Provider<string>;
|
|
127
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
128
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
129
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
130
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
131
|
+
}
|
|
132
|
+
declare type ApplicationAutoScalingClientConfigType = Partial<
|
|
133
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
134
|
+
> &
|
|
135
|
+
ClientDefaults &
|
|
136
|
+
RegionInputConfig &
|
|
137
|
+
EndpointsInputConfig &
|
|
138
|
+
RetryInputConfig &
|
|
139
|
+
HostHeaderInputConfig &
|
|
140
|
+
AwsAuthInputConfig &
|
|
141
|
+
UserAgentInputConfig;
|
|
142
|
+
export interface ApplicationAutoScalingClientConfig
|
|
143
|
+
extends ApplicationAutoScalingClientConfigType {}
|
|
144
|
+
declare type ApplicationAutoScalingClientResolvedConfigType =
|
|
145
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
146
|
+
Required<ClientDefaults> &
|
|
147
|
+
RegionResolvedConfig &
|
|
148
|
+
EndpointsResolvedConfig &
|
|
149
|
+
RetryResolvedConfig &
|
|
150
|
+
HostHeaderResolvedConfig &
|
|
151
|
+
AwsAuthResolvedConfig &
|
|
152
|
+
UserAgentResolvedConfig;
|
|
153
|
+
export interface ApplicationAutoScalingClientResolvedConfig
|
|
154
|
+
extends ApplicationAutoScalingClientResolvedConfigType {}
|
|
155
|
+
export declare class ApplicationAutoScalingClient extends __Client<
|
|
156
|
+
__HttpHandlerOptions,
|
|
157
|
+
ServiceInputTypes,
|
|
158
|
+
ServiceOutputTypes,
|
|
159
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
160
|
+
> {
|
|
161
|
+
readonly config: ApplicationAutoScalingClientResolvedConfig;
|
|
162
|
+
constructor(configuration: ApplicationAutoScalingClientConfig);
|
|
163
|
+
destroy(): void;
|
|
164
|
+
}
|
|
165
|
+
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
|
+
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
|
+
export declare class DeleteScalingPolicyCommand extends $Command<
|
|
23
|
+
DeleteScalingPolicyCommandInput,
|
|
24
|
+
DeleteScalingPolicyCommandOutput,
|
|
25
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteScalingPolicyCommandInput;
|
|
28
|
+
constructor(input: DeleteScalingPolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteScalingPolicyCommandInput, DeleteScalingPolicyCommandOutput>;
|
|
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
|
+
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
|
+
export declare class DeleteScheduledActionCommand extends $Command<
|
|
23
|
+
DeleteScheduledActionCommandInput,
|
|
24
|
+
DeleteScheduledActionCommandOutput,
|
|
25
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteScheduledActionCommandInput;
|
|
28
|
+
constructor(input: DeleteScheduledActionCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteScheduledActionCommandInput,
|
|
35
|
+
DeleteScheduledActionCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|