@aws-sdk/client-application-auto-scaling 3.168.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 +16 -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
|
@@ -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
|
+
DeregisterScalableTargetRequest,
|
|
15
|
+
DeregisterScalableTargetResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeregisterScalableTargetCommandInput
|
|
18
|
+
extends DeregisterScalableTargetRequest {}
|
|
19
|
+
export interface DeregisterScalableTargetCommandOutput
|
|
20
|
+
extends DeregisterScalableTargetResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeregisterScalableTargetCommand extends $Command<
|
|
24
|
+
DeregisterScalableTargetCommandInput,
|
|
25
|
+
DeregisterScalableTargetCommandOutput,
|
|
26
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeregisterScalableTargetCommandInput;
|
|
29
|
+
constructor(input: DeregisterScalableTargetCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeregisterScalableTargetCommandInput,
|
|
37
|
+
DeregisterScalableTargetCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
DescribeScalableTargetsRequest,
|
|
15
|
+
DescribeScalableTargetsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeScalableTargetsCommandInput
|
|
18
|
+
extends DescribeScalableTargetsRequest {}
|
|
19
|
+
export interface DescribeScalableTargetsCommandOutput
|
|
20
|
+
extends DescribeScalableTargetsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeScalableTargetsCommand extends $Command<
|
|
24
|
+
DescribeScalableTargetsCommandInput,
|
|
25
|
+
DescribeScalableTargetsCommandOutput,
|
|
26
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeScalableTargetsCommandInput;
|
|
29
|
+
constructor(input: DescribeScalableTargetsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeScalableTargetsCommandInput,
|
|
37
|
+
DescribeScalableTargetsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
DescribeScalingActivitiesRequest,
|
|
15
|
+
DescribeScalingActivitiesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeScalingActivitiesCommandInput
|
|
18
|
+
extends DescribeScalingActivitiesRequest {}
|
|
19
|
+
export interface DescribeScalingActivitiesCommandOutput
|
|
20
|
+
extends DescribeScalingActivitiesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeScalingActivitiesCommand extends $Command<
|
|
24
|
+
DescribeScalingActivitiesCommandInput,
|
|
25
|
+
DescribeScalingActivitiesCommandOutput,
|
|
26
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeScalingActivitiesCommandInput;
|
|
29
|
+
constructor(input: DescribeScalingActivitiesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeScalingActivitiesCommandInput,
|
|
37
|
+
DescribeScalingActivitiesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
DescribeScalingPoliciesRequest,
|
|
15
|
+
DescribeScalingPoliciesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeScalingPoliciesCommandInput
|
|
18
|
+
extends DescribeScalingPoliciesRequest {}
|
|
19
|
+
export interface DescribeScalingPoliciesCommandOutput
|
|
20
|
+
extends DescribeScalingPoliciesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeScalingPoliciesCommand extends $Command<
|
|
24
|
+
DescribeScalingPoliciesCommandInput,
|
|
25
|
+
DescribeScalingPoliciesCommandOutput,
|
|
26
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeScalingPoliciesCommandInput;
|
|
29
|
+
constructor(input: DescribeScalingPoliciesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeScalingPoliciesCommandInput,
|
|
37
|
+
DescribeScalingPoliciesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
DescribeScheduledActionsRequest,
|
|
15
|
+
DescribeScheduledActionsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeScheduledActionsCommandInput
|
|
18
|
+
extends DescribeScheduledActionsRequest {}
|
|
19
|
+
export interface DescribeScheduledActionsCommandOutput
|
|
20
|
+
extends DescribeScheduledActionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeScheduledActionsCommand extends $Command<
|
|
24
|
+
DescribeScheduledActionsCommandInput,
|
|
25
|
+
DescribeScheduledActionsCommandOutput,
|
|
26
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeScheduledActionsCommandInput;
|
|
29
|
+
constructor(input: DescribeScheduledActionsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeScheduledActionsCommandInput,
|
|
37
|
+
DescribeScheduledActionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
PutScalingPolicyRequest,
|
|
15
|
+
PutScalingPolicyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutScalingPolicyCommandInput extends PutScalingPolicyRequest {}
|
|
18
|
+
export interface PutScalingPolicyCommandOutput
|
|
19
|
+
extends PutScalingPolicyResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class PutScalingPolicyCommand extends $Command<
|
|
23
|
+
PutScalingPolicyCommandInput,
|
|
24
|
+
PutScalingPolicyCommandOutput,
|
|
25
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: PutScalingPolicyCommandInput;
|
|
28
|
+
constructor(input: PutScalingPolicyCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
PutScheduledActionRequest,
|
|
15
|
+
PutScheduledActionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutScheduledActionCommandInput
|
|
18
|
+
extends PutScheduledActionRequest {}
|
|
19
|
+
export interface PutScheduledActionCommandOutput
|
|
20
|
+
extends PutScheduledActionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class PutScheduledActionCommand extends $Command<
|
|
24
|
+
PutScheduledActionCommandInput,
|
|
25
|
+
PutScheduledActionCommandOutput,
|
|
26
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: PutScheduledActionCommandInput;
|
|
29
|
+
constructor(input: PutScheduledActionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<PutScheduledActionCommandInput, PutScheduledActionCommandOutput>;
|
|
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
|
+
RegisterScalableTargetRequest,
|
|
15
|
+
RegisterScalableTargetResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface RegisterScalableTargetCommandInput
|
|
18
|
+
extends RegisterScalableTargetRequest {}
|
|
19
|
+
export interface RegisterScalableTargetCommandOutput
|
|
20
|
+
extends RegisterScalableTargetResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class RegisterScalableTargetCommand extends $Command<
|
|
24
|
+
RegisterScalableTargetCommandInput,
|
|
25
|
+
RegisterScalableTargetCommandOutput,
|
|
26
|
+
ApplicationAutoScalingClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: RegisterScalableTargetCommandInput;
|
|
29
|
+
constructor(input: RegisterScalableTargetCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ApplicationAutoScalingClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
RegisterScalableTargetCommandInput,
|
|
37
|
+
RegisterScalableTargetCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export * from "./DeleteScalingPolicyCommand";
|
|
2
|
-
export * from "./DeleteScheduledActionCommand";
|
|
3
|
-
export * from "./DeregisterScalableTargetCommand";
|
|
4
|
-
export * from "./DescribeScalableTargetsCommand";
|
|
5
|
-
export * from "./DescribeScalingActivitiesCommand";
|
|
6
|
-
export * from "./DescribeScalingPoliciesCommand";
|
|
7
|
-
export * from "./DescribeScheduledActionsCommand";
|
|
8
|
-
export * from "./PutScalingPolicyCommand";
|
|
9
|
-
export * from "./PutScheduledActionCommand";
|
|
10
|
-
export * from "./RegisterScalableTargetCommand";
|
|
1
|
+
export * from "./DeleteScalingPolicyCommand";
|
|
2
|
+
export * from "./DeleteScheduledActionCommand";
|
|
3
|
+
export * from "./DeregisterScalableTargetCommand";
|
|
4
|
+
export * from "./DescribeScalableTargetsCommand";
|
|
5
|
+
export * from "./DescribeScalingActivitiesCommand";
|
|
6
|
+
export * from "./DescribeScalingPoliciesCommand";
|
|
7
|
+
export * from "./DescribeScheduledActionsCommand";
|
|
8
|
+
export * from "./PutScalingPolicyCommand";
|
|
9
|
+
export * from "./PutScheduledActionCommand";
|
|
10
|
+
export * from "./RegisterScalableTargetCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./ApplicationAutoScaling";
|
|
2
|
-
export * from "./ApplicationAutoScalingClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { ApplicationAutoScalingServiceException } from "./models/ApplicationAutoScalingServiceException";
|
|
1
|
+
export * from "./ApplicationAutoScaling";
|
|
2
|
+
export * from "./ApplicationAutoScalingClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { ApplicationAutoScalingServiceException } from "./models/ApplicationAutoScalingServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class ApplicationAutoScalingServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|