@aws-sdk/client-application-auto-scaling 3.478.0 → 3.484.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/dist-cjs/commands/DeleteScalingPolicyCommand.js +18 -41
- package/dist-cjs/commands/DeleteScheduledActionCommand.js +18 -41
- package/dist-cjs/commands/DeregisterScalableTargetCommand.js +18 -41
- package/dist-cjs/commands/DescribeScalableTargetsCommand.js +18 -41
- package/dist-cjs/commands/DescribeScalingActivitiesCommand.js +18 -41
- package/dist-cjs/commands/DescribeScalingPoliciesCommand.js +18 -41
- package/dist-cjs/commands/DescribeScheduledActionsCommand.js +18 -41
- package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -41
- package/dist-cjs/commands/PutScalingPolicyCommand.js +18 -41
- package/dist-cjs/commands/PutScheduledActionCommand.js +18 -41
- package/dist-cjs/commands/RegisterScalableTargetCommand.js +18 -41
- package/dist-cjs/commands/TagResourceCommand.js +18 -41
- package/dist-cjs/commands/UntagResourceCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/DeleteScalingPolicyCommand.js +18 -41
- package/dist-es/commands/DeleteScheduledActionCommand.js +18 -41
- package/dist-es/commands/DeregisterScalableTargetCommand.js +18 -41
- package/dist-es/commands/DescribeScalableTargetsCommand.js +18 -41
- package/dist-es/commands/DescribeScalingActivitiesCommand.js +18 -41
- package/dist-es/commands/DescribeScalingPoliciesCommand.js +18 -41
- package/dist-es/commands/DescribeScheduledActionsCommand.js +18 -41
- package/dist-es/commands/ListTagsForResourceCommand.js +18 -41
- package/dist-es/commands/PutScalingPolicyCommand.js +18 -41
- package/dist-es/commands/PutScheduledActionCommand.js +18 -41
- package/dist-es/commands/RegisterScalableTargetCommand.js +18 -41
- package/dist-es/commands/TagResourceCommand.js +18 -41
- package/dist-es/commands/UntagResourceCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/DeleteScalingPolicyCommand.d.ts +6 -21
- package/dist-types/commands/DeleteScheduledActionCommand.d.ts +6 -21
- package/dist-types/commands/DeregisterScalableTargetCommand.d.ts +6 -21
- package/dist-types/commands/DescribeScalableTargetsCommand.d.ts +6 -21
- package/dist-types/commands/DescribeScalingActivitiesCommand.d.ts +6 -21
- package/dist-types/commands/DescribeScalingPoliciesCommand.d.ts +6 -21
- package/dist-types/commands/DescribeScheduledActionsCommand.d.ts +6 -21
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
- package/dist-types/commands/PutScalingPolicyCommand.d.ts +6 -21
- package/dist-types/commands/PutScheduledActionCommand.d.ts +6 -21
- package/dist-types/commands/RegisterScalableTargetCommand.d.ts +6 -21
- package/dist-types/commands/TagResourceCommand.d.ts +6 -21
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteScalingPolicyCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DeleteScheduledActionCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DeregisterScalableTargetCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DescribeScalableTargetsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DescribeScalingActivitiesCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DescribeScalingPoliciesCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DescribeScheduledActionsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/PutScalingPolicyCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/PutScheduledActionCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/RegisterScalableTargetCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +11 -11
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
|
|
5
4
|
import { DeregisterScalableTargetRequest, DeregisterScalableTargetResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DeregisterScalableTargetCommandInput extends DeregisterScalable
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DeregisterScalableTargetCommandOutput extends DeregisterScalableTargetResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DeregisterScalableTargetCommand_base: {
|
|
24
|
+
new (input: DeregisterScalableTargetCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterScalableTargetCommandInput, DeregisterScalableTargetCommandOutput, ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Deregisters an Application Auto Scaling scalable target when you have finished using it. To see which
|
|
@@ -87,23 +90,5 @@ export interface DeregisterScalableTargetCommandOutput extends DeregisterScalabl
|
|
|
87
90
|
* ```
|
|
88
91
|
*
|
|
89
92
|
*/
|
|
90
|
-
export declare class DeregisterScalableTargetCommand extends
|
|
91
|
-
readonly input: DeregisterScalableTargetCommandInput;
|
|
92
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
93
|
-
/**
|
|
94
|
-
* @public
|
|
95
|
-
*/
|
|
96
|
-
constructor(input: DeregisterScalableTargetCommandInput);
|
|
97
|
-
/**
|
|
98
|
-
* @internal
|
|
99
|
-
*/
|
|
100
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterScalableTargetCommandInput, DeregisterScalableTargetCommandOutput>;
|
|
101
|
-
/**
|
|
102
|
-
* @internal
|
|
103
|
-
*/
|
|
104
|
-
private serialize;
|
|
105
|
-
/**
|
|
106
|
-
* @internal
|
|
107
|
-
*/
|
|
108
|
-
private deserialize;
|
|
93
|
+
export declare class DeregisterScalableTargetCommand extends DeregisterScalableTargetCommand_base {
|
|
109
94
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
|
|
5
4
|
import { DescribeScalableTargetsRequest, DescribeScalableTargetsResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeScalableTargetsCommandInput extends DescribeScalableTar
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeScalableTargetsCommandOutput extends DescribeScalableTargetsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeScalableTargetsCommand_base: {
|
|
24
|
+
new (input: DescribeScalableTargetsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeScalableTargetsCommandInput, DescribeScalableTargetsCommandOutput, ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Gets information about the scalable targets in the specified namespace.</p>
|
|
@@ -121,23 +124,5 @@ export interface DescribeScalableTargetsCommandOutput extends DescribeScalableTa
|
|
|
121
124
|
* ```
|
|
122
125
|
*
|
|
123
126
|
*/
|
|
124
|
-
export declare class DescribeScalableTargetsCommand extends
|
|
125
|
-
readonly input: DescribeScalableTargetsCommandInput;
|
|
126
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
127
|
-
/**
|
|
128
|
-
* @public
|
|
129
|
-
*/
|
|
130
|
-
constructor(input: DescribeScalableTargetsCommandInput);
|
|
131
|
-
/**
|
|
132
|
-
* @internal
|
|
133
|
-
*/
|
|
134
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScalableTargetsCommandInput, DescribeScalableTargetsCommandOutput>;
|
|
135
|
-
/**
|
|
136
|
-
* @internal
|
|
137
|
-
*/
|
|
138
|
-
private serialize;
|
|
139
|
-
/**
|
|
140
|
-
* @internal
|
|
141
|
-
*/
|
|
142
|
-
private deserialize;
|
|
127
|
+
export declare class DescribeScalableTargetsCommand extends DescribeScalableTargetsCommand_base {
|
|
143
128
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
|
|
5
4
|
import { DescribeScalingActivitiesRequest, DescribeScalingActivitiesResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeScalingActivitiesCommandInput extends DescribeScalingAc
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeScalingActivitiesCommandOutput extends DescribeScalingActivitiesResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeScalingActivitiesCommand_base: {
|
|
24
|
+
new (input: DescribeScalingActivitiesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeScalingActivitiesCommandInput, DescribeScalingActivitiesCommandOutput, ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Provides descriptive information about the scaling activities in the specified namespace
|
|
@@ -128,23 +131,5 @@ export interface DescribeScalingActivitiesCommandOutput extends DescribeScalingA
|
|
|
128
131
|
* ```
|
|
129
132
|
*
|
|
130
133
|
*/
|
|
131
|
-
export declare class DescribeScalingActivitiesCommand extends
|
|
132
|
-
readonly input: DescribeScalingActivitiesCommandInput;
|
|
133
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
134
|
-
/**
|
|
135
|
-
* @public
|
|
136
|
-
*/
|
|
137
|
-
constructor(input: DescribeScalingActivitiesCommandInput);
|
|
138
|
-
/**
|
|
139
|
-
* @internal
|
|
140
|
-
*/
|
|
141
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScalingActivitiesCommandInput, DescribeScalingActivitiesCommandOutput>;
|
|
142
|
-
/**
|
|
143
|
-
* @internal
|
|
144
|
-
*/
|
|
145
|
-
private serialize;
|
|
146
|
-
/**
|
|
147
|
-
* @internal
|
|
148
|
-
*/
|
|
149
|
-
private deserialize;
|
|
134
|
+
export declare class DescribeScalingActivitiesCommand extends DescribeScalingActivitiesCommand_base {
|
|
150
135
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
|
|
5
4
|
import { DescribeScalingPoliciesRequest, DescribeScalingPoliciesResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeScalingPoliciesCommandInput extends DescribeScalingPoli
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeScalingPoliciesCommandOutput extends DescribeScalingPoliciesResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeScalingPoliciesCommand_base: {
|
|
24
|
+
new (input: DescribeScalingPoliciesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput, ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Describes the Application Auto Scaling scaling policies for the specified service namespace.</p>
|
|
@@ -198,23 +201,5 @@ export interface DescribeScalingPoliciesCommandOutput extends DescribeScalingPol
|
|
|
198
201
|
* ```
|
|
199
202
|
*
|
|
200
203
|
*/
|
|
201
|
-
export declare class DescribeScalingPoliciesCommand extends
|
|
202
|
-
readonly input: DescribeScalingPoliciesCommandInput;
|
|
203
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
204
|
-
/**
|
|
205
|
-
* @public
|
|
206
|
-
*/
|
|
207
|
-
constructor(input: DescribeScalingPoliciesCommandInput);
|
|
208
|
-
/**
|
|
209
|
-
* @internal
|
|
210
|
-
*/
|
|
211
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput>;
|
|
212
|
-
/**
|
|
213
|
-
* @internal
|
|
214
|
-
*/
|
|
215
|
-
private serialize;
|
|
216
|
-
/**
|
|
217
|
-
* @internal
|
|
218
|
-
*/
|
|
219
|
-
private deserialize;
|
|
204
|
+
export declare class DescribeScalingPoliciesCommand extends DescribeScalingPoliciesCommand_base {
|
|
220
205
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
|
|
5
4
|
import { DescribeScheduledActionsRequest, DescribeScheduledActionsResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeScheduledActionsCommandInput extends DescribeScheduledA
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeScheduledActionsCommandOutput extends DescribeScheduledActionsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeScheduledActionsCommand_base: {
|
|
24
|
+
new (input: DescribeScheduledActionsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput, ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Describes the Application Auto Scaling scheduled actions for the specified service namespace.</p>
|
|
@@ -137,23 +140,5 @@ export interface DescribeScheduledActionsCommandOutput extends DescribeScheduled
|
|
|
137
140
|
* ```
|
|
138
141
|
*
|
|
139
142
|
*/
|
|
140
|
-
export declare class DescribeScheduledActionsCommand extends
|
|
141
|
-
readonly input: DescribeScheduledActionsCommandInput;
|
|
142
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
143
|
-
/**
|
|
144
|
-
* @public
|
|
145
|
-
*/
|
|
146
|
-
constructor(input: DescribeScheduledActionsCommandInput);
|
|
147
|
-
/**
|
|
148
|
-
* @internal
|
|
149
|
-
*/
|
|
150
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput>;
|
|
151
|
-
/**
|
|
152
|
-
* @internal
|
|
153
|
-
*/
|
|
154
|
-
private serialize;
|
|
155
|
-
/**
|
|
156
|
-
* @internal
|
|
157
|
-
*/
|
|
158
|
-
private deserialize;
|
|
143
|
+
export declare class DescribeScheduledActionsCommand extends DescribeScheduledActionsCommand_base {
|
|
159
144
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
|
|
5
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListTagsForResourceCommand_base: {
|
|
24
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns all the tags on the specified Application Auto Scaling scalable target.</p>
|
|
@@ -76,23 +79,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
76
79
|
* ```
|
|
77
80
|
*
|
|
78
81
|
*/
|
|
79
|
-
export declare class ListTagsForResourceCommand extends
|
|
80
|
-
readonly input: ListTagsForResourceCommandInput;
|
|
81
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
-
/**
|
|
83
|
-
* @public
|
|
84
|
-
*/
|
|
85
|
-
constructor(input: ListTagsForResourceCommandInput);
|
|
86
|
-
/**
|
|
87
|
-
* @internal
|
|
88
|
-
*/
|
|
89
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
private serialize;
|
|
94
|
-
/**
|
|
95
|
-
* @internal
|
|
96
|
-
*/
|
|
97
|
-
private deserialize;
|
|
82
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
98
83
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
|
|
5
4
|
import { PutScalingPolicyRequest, PutScalingPolicyResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface PutScalingPolicyCommandInput extends PutScalingPolicyRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface PutScalingPolicyCommandOutput extends PutScalingPolicyResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const PutScalingPolicyCommand_base: {
|
|
24
|
+
new (input: PutScalingPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput, ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates or updates a scaling policy for an Application Auto Scaling scalable target.</p>
|
|
@@ -207,23 +210,5 @@ export interface PutScalingPolicyCommandOutput extends PutScalingPolicyResponse,
|
|
|
207
210
|
* ```
|
|
208
211
|
*
|
|
209
212
|
*/
|
|
210
|
-
export declare class PutScalingPolicyCommand extends
|
|
211
|
-
readonly input: PutScalingPolicyCommandInput;
|
|
212
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
213
|
-
/**
|
|
214
|
-
* @public
|
|
215
|
-
*/
|
|
216
|
-
constructor(input: PutScalingPolicyCommandInput);
|
|
217
|
-
/**
|
|
218
|
-
* @internal
|
|
219
|
-
*/
|
|
220
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput>;
|
|
221
|
-
/**
|
|
222
|
-
* @internal
|
|
223
|
-
*/
|
|
224
|
-
private serialize;
|
|
225
|
-
/**
|
|
226
|
-
* @internal
|
|
227
|
-
*/
|
|
228
|
-
private deserialize;
|
|
213
|
+
export declare class PutScalingPolicyCommand extends PutScalingPolicyCommand_base {
|
|
229
214
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
|
|
5
4
|
import { PutScheduledActionRequest, PutScheduledActionResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface PutScheduledActionCommandInput extends PutScheduledActionReques
|
|
|
21
20
|
*/
|
|
22
21
|
export interface PutScheduledActionCommandOutput extends PutScheduledActionResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const PutScheduledActionCommand_base: {
|
|
24
|
+
new (input: PutScheduledActionCommandInput): import("@smithy/smithy-client").CommandImpl<PutScheduledActionCommandInput, PutScheduledActionCommandOutput, ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates or updates a scheduled action for an Application Auto Scaling scalable target. </p>
|
|
@@ -113,23 +116,5 @@ export interface PutScheduledActionCommandOutput extends PutScheduledActionRespo
|
|
|
113
116
|
* ```
|
|
114
117
|
*
|
|
115
118
|
*/
|
|
116
|
-
export declare class PutScheduledActionCommand extends
|
|
117
|
-
readonly input: PutScheduledActionCommandInput;
|
|
118
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
119
|
-
/**
|
|
120
|
-
* @public
|
|
121
|
-
*/
|
|
122
|
-
constructor(input: PutScheduledActionCommandInput);
|
|
123
|
-
/**
|
|
124
|
-
* @internal
|
|
125
|
-
*/
|
|
126
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutScheduledActionCommandInput, PutScheduledActionCommandOutput>;
|
|
127
|
-
/**
|
|
128
|
-
* @internal
|
|
129
|
-
*/
|
|
130
|
-
private serialize;
|
|
131
|
-
/**
|
|
132
|
-
* @internal
|
|
133
|
-
*/
|
|
134
|
-
private deserialize;
|
|
119
|
+
export declare class PutScheduledActionCommand extends PutScheduledActionCommand_base {
|
|
135
120
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
|
|
5
4
|
import { RegisterScalableTargetRequest, RegisterScalableTargetResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface RegisterScalableTargetCommandInput extends RegisterScalableTarg
|
|
|
21
20
|
*/
|
|
22
21
|
export interface RegisterScalableTargetCommandOutput extends RegisterScalableTargetResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const RegisterScalableTargetCommand_base: {
|
|
24
|
+
new (input: RegisterScalableTargetCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterScalableTargetCommandInput, RegisterScalableTargetCommandOutput, ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Registers or updates a scalable target, which is the resource that you want to
|
|
@@ -129,23 +132,5 @@ export interface RegisterScalableTargetCommandOutput extends RegisterScalableTar
|
|
|
129
132
|
* ```
|
|
130
133
|
*
|
|
131
134
|
*/
|
|
132
|
-
export declare class RegisterScalableTargetCommand extends
|
|
133
|
-
readonly input: RegisterScalableTargetCommandInput;
|
|
134
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
135
|
-
/**
|
|
136
|
-
* @public
|
|
137
|
-
*/
|
|
138
|
-
constructor(input: RegisterScalableTargetCommandInput);
|
|
139
|
-
/**
|
|
140
|
-
* @internal
|
|
141
|
-
*/
|
|
142
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterScalableTargetCommandInput, RegisterScalableTargetCommandOutput>;
|
|
143
|
-
/**
|
|
144
|
-
* @internal
|
|
145
|
-
*/
|
|
146
|
-
private serialize;
|
|
147
|
-
/**
|
|
148
|
-
* @internal
|
|
149
|
-
*/
|
|
150
|
-
private deserialize;
|
|
135
|
+
export declare class RegisterScalableTargetCommand extends RegisterScalableTargetCommand_base {
|
|
151
136
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
|
|
5
4
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const TagResourceCommand_base: {
|
|
24
|
+
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Adds or edits tags on an Application Auto Scaling scalable target.</p>
|
|
@@ -87,23 +90,5 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
87
90
|
* ```
|
|
88
91
|
*
|
|
89
92
|
*/
|
|
90
|
-
export declare class TagResourceCommand extends
|
|
91
|
-
readonly input: TagResourceCommandInput;
|
|
92
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
93
|
-
/**
|
|
94
|
-
* @public
|
|
95
|
-
*/
|
|
96
|
-
constructor(input: TagResourceCommandInput);
|
|
97
|
-
/**
|
|
98
|
-
* @internal
|
|
99
|
-
*/
|
|
100
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
101
|
-
/**
|
|
102
|
-
* @internal
|
|
103
|
-
*/
|
|
104
|
-
private serialize;
|
|
105
|
-
/**
|
|
106
|
-
* @internal
|
|
107
|
-
*/
|
|
108
|
-
private deserialize;
|
|
93
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
109
94
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
|
|
5
4
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UntagResourceCommand_base: {
|
|
24
|
+
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Deletes tags from an Application Auto Scaling scalable target. To delete a tag, specify the tag key and
|
|
@@ -74,23 +77,5 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
74
77
|
* ```
|
|
75
78
|
*
|
|
76
79
|
*/
|
|
77
|
-
export declare class UntagResourceCommand extends
|
|
78
|
-
readonly input: UntagResourceCommandInput;
|
|
79
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
80
|
-
/**
|
|
81
|
-
* @public
|
|
82
|
-
*/
|
|
83
|
-
constructor(input: UntagResourceCommandInput);
|
|
84
|
-
/**
|
|
85
|
-
* @internal
|
|
86
|
-
*/
|
|
87
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
88
|
-
/**
|
|
89
|
-
* @internal
|
|
90
|
-
*/
|
|
91
|
-
private serialize;
|
|
92
|
-
/**
|
|
93
|
-
* @internal
|
|
94
|
-
*/
|
|
95
|
-
private deserialize;
|
|
80
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
96
81
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ApplicationAutoScalingClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,19 +15,16 @@ export interface DeleteScalingPolicyCommandInput
|
|
|
21
15
|
export interface DeleteScalingPolicyCommandOutput
|
|
22
16
|
extends DeleteScalingPolicyResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const DeleteScalingPolicyCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteScalingPolicyCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteScalingPolicyCommandInput,
|
|
23
|
+
DeleteScalingPolicyCommandOutput,
|
|
24
|
+
ApplicationAutoScalingClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DeleteScalingPolicyCommand extends DeleteScalingPolicyCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ApplicationAutoScalingClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,22 +15,16 @@ export interface DeleteScheduledActionCommandInput
|
|
|
21
15
|
export interface DeleteScheduledActionCommandOutput
|
|
22
16
|
extends DeleteScheduledActionResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: DeleteScheduledActionCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: DeleteScheduledActionCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const DeleteScheduledActionCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteScheduledActionCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
DeleteScheduledActionCommandInput,
|
|
38
|
-
DeleteScheduledActionCommandOutput
|
|
23
|
+
DeleteScheduledActionCommandOutput,
|
|
24
|
+
ApplicationAutoScalingClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DeleteScheduledActionCommand extends DeleteScheduledActionCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ApplicationAutoScalingClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,22 +15,16 @@ export interface DeregisterScalableTargetCommandInput
|
|
|
21
15
|
export interface DeregisterScalableTargetCommandOutput
|
|
22
16
|
extends DeregisterScalableTargetResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: DeregisterScalableTargetCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: DeregisterScalableTargetCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const DeregisterScalableTargetCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeregisterScalableTargetCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
DeregisterScalableTargetCommandInput,
|
|
38
|
-
DeregisterScalableTargetCommandOutput
|
|
23
|
+
DeregisterScalableTargetCommandOutput,
|
|
24
|
+
ApplicationAutoScalingClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DeregisterScalableTargetCommand extends DeregisterScalableTargetCommand_base {}
|