@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
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeScalableTargetsCommandInput,
|
|
4
|
+
DescribeScalableTargetsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeScalableTargetsCommand";
|
|
6
|
+
import { ApplicationAutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeScalableTargets(
|
|
8
|
+
config: ApplicationAutoScalingPaginationConfiguration,
|
|
9
|
+
input: DescribeScalableTargetsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeScalableTargetsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeScalingActivitiesCommandInput,
|
|
4
|
+
DescribeScalingActivitiesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeScalingActivitiesCommand";
|
|
6
|
+
import { ApplicationAutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeScalingActivities(
|
|
8
|
+
config: ApplicationAutoScalingPaginationConfiguration,
|
|
9
|
+
input: DescribeScalingActivitiesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeScalingActivitiesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeScalingPoliciesCommandInput,
|
|
4
|
+
DescribeScalingPoliciesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeScalingPoliciesCommand";
|
|
6
|
+
import { ApplicationAutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeScalingPolicies(
|
|
8
|
+
config: ApplicationAutoScalingPaginationConfiguration,
|
|
9
|
+
input: DescribeScalingPoliciesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeScalingPoliciesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeScheduledActionsCommandInput,
|
|
4
|
+
DescribeScheduledActionsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeScheduledActionsCommand";
|
|
6
|
+
import { ApplicationAutoScalingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeScheduledActions(
|
|
8
|
+
config: ApplicationAutoScalingPaginationConfiguration,
|
|
9
|
+
input: DescribeScheduledActionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeScheduledActionsCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { ApplicationAutoScaling } from "../ApplicationAutoScaling";
|
|
3
|
-
import { ApplicationAutoScalingClient } from "../ApplicationAutoScalingClient";
|
|
4
|
-
export interface ApplicationAutoScalingPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ApplicationAutoScaling } from "../ApplicationAutoScaling";
|
|
3
|
+
import { ApplicationAutoScalingClient } from "../ApplicationAutoScalingClient";
|
|
4
|
+
export interface ApplicationAutoScalingPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: ApplicationAutoScaling | ApplicationAutoScalingClient;
|
|
7
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./DescribeScalableTargetsPaginator";
|
|
2
|
-
export * from "./DescribeScalingActivitiesPaginator";
|
|
3
|
-
export * from "./DescribeScalingPoliciesPaginator";
|
|
4
|
-
export * from "./DescribeScheduledActionsPaginator";
|
|
5
|
-
export * from "./Interfaces";
|
|
1
|
+
export * from "./DescribeScalableTargetsPaginator";
|
|
2
|
+
export * from "./DescribeScalingActivitiesPaginator";
|
|
3
|
+
export * from "./DescribeScalingPoliciesPaginator";
|
|
4
|
+
export * from "./DescribeScheduledActionsPaginator";
|
|
5
|
+
export * from "./Interfaces";
|
|
@@ -1,32 +1,125 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
DeleteScalingPolicyCommandInput,
|
|
8
|
+
DeleteScalingPolicyCommandOutput,
|
|
9
|
+
} from "../commands/DeleteScalingPolicyCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteScheduledActionCommandInput,
|
|
12
|
+
DeleteScheduledActionCommandOutput,
|
|
13
|
+
} from "../commands/DeleteScheduledActionCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeregisterScalableTargetCommandInput,
|
|
16
|
+
DeregisterScalableTargetCommandOutput,
|
|
17
|
+
} from "../commands/DeregisterScalableTargetCommand";
|
|
18
|
+
import {
|
|
19
|
+
DescribeScalableTargetsCommandInput,
|
|
20
|
+
DescribeScalableTargetsCommandOutput,
|
|
21
|
+
} from "../commands/DescribeScalableTargetsCommand";
|
|
22
|
+
import {
|
|
23
|
+
DescribeScalingActivitiesCommandInput,
|
|
24
|
+
DescribeScalingActivitiesCommandOutput,
|
|
25
|
+
} from "../commands/DescribeScalingActivitiesCommand";
|
|
26
|
+
import {
|
|
27
|
+
DescribeScalingPoliciesCommandInput,
|
|
28
|
+
DescribeScalingPoliciesCommandOutput,
|
|
29
|
+
} from "../commands/DescribeScalingPoliciesCommand";
|
|
30
|
+
import {
|
|
31
|
+
DescribeScheduledActionsCommandInput,
|
|
32
|
+
DescribeScheduledActionsCommandOutput,
|
|
33
|
+
} from "../commands/DescribeScheduledActionsCommand";
|
|
34
|
+
import {
|
|
35
|
+
PutScalingPolicyCommandInput,
|
|
36
|
+
PutScalingPolicyCommandOutput,
|
|
37
|
+
} from "../commands/PutScalingPolicyCommand";
|
|
38
|
+
import {
|
|
39
|
+
PutScheduledActionCommandInput,
|
|
40
|
+
PutScheduledActionCommandOutput,
|
|
41
|
+
} from "../commands/PutScheduledActionCommand";
|
|
42
|
+
import {
|
|
43
|
+
RegisterScalableTargetCommandInput,
|
|
44
|
+
RegisterScalableTargetCommandOutput,
|
|
45
|
+
} from "../commands/RegisterScalableTargetCommand";
|
|
46
|
+
export declare const serializeAws_json1_1DeleteScalingPolicyCommand: (
|
|
47
|
+
input: DeleteScalingPolicyCommandInput,
|
|
48
|
+
context: __SerdeContext
|
|
49
|
+
) => Promise<__HttpRequest>;
|
|
50
|
+
export declare const serializeAws_json1_1DeleteScheduledActionCommand: (
|
|
51
|
+
input: DeleteScheduledActionCommandInput,
|
|
52
|
+
context: __SerdeContext
|
|
53
|
+
) => Promise<__HttpRequest>;
|
|
54
|
+
export declare const serializeAws_json1_1DeregisterScalableTargetCommand: (
|
|
55
|
+
input: DeregisterScalableTargetCommandInput,
|
|
56
|
+
context: __SerdeContext
|
|
57
|
+
) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const serializeAws_json1_1DescribeScalableTargetsCommand: (
|
|
59
|
+
input: DescribeScalableTargetsCommandInput,
|
|
60
|
+
context: __SerdeContext
|
|
61
|
+
) => Promise<__HttpRequest>;
|
|
62
|
+
export declare const serializeAws_json1_1DescribeScalingActivitiesCommand: (
|
|
63
|
+
input: DescribeScalingActivitiesCommandInput,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const serializeAws_json1_1DescribeScalingPoliciesCommand: (
|
|
67
|
+
input: DescribeScalingPoliciesCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const serializeAws_json1_1DescribeScheduledActionsCommand: (
|
|
71
|
+
input: DescribeScheduledActionsCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_json1_1PutScalingPolicyCommand: (
|
|
75
|
+
input: PutScalingPolicyCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const serializeAws_json1_1PutScheduledActionCommand: (
|
|
79
|
+
input: PutScheduledActionCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_json1_1RegisterScalableTargetCommand: (
|
|
83
|
+
input: RegisterScalableTargetCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const deserializeAws_json1_1DeleteScalingPolicyCommand: (
|
|
87
|
+
output: __HttpResponse,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<DeleteScalingPolicyCommandOutput>;
|
|
90
|
+
export declare const deserializeAws_json1_1DeleteScheduledActionCommand: (
|
|
91
|
+
output: __HttpResponse,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<DeleteScheduledActionCommandOutput>;
|
|
94
|
+
export declare const deserializeAws_json1_1DeregisterScalableTargetCommand: (
|
|
95
|
+
output: __HttpResponse,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<DeregisterScalableTargetCommandOutput>;
|
|
98
|
+
export declare const deserializeAws_json1_1DescribeScalableTargetsCommand: (
|
|
99
|
+
output: __HttpResponse,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<DescribeScalableTargetsCommandOutput>;
|
|
102
|
+
export declare const deserializeAws_json1_1DescribeScalingActivitiesCommand: (
|
|
103
|
+
output: __HttpResponse,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<DescribeScalingActivitiesCommandOutput>;
|
|
106
|
+
export declare const deserializeAws_json1_1DescribeScalingPoliciesCommand: (
|
|
107
|
+
output: __HttpResponse,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<DescribeScalingPoliciesCommandOutput>;
|
|
110
|
+
export declare const deserializeAws_json1_1DescribeScheduledActionsCommand: (
|
|
111
|
+
output: __HttpResponse,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<DescribeScheduledActionsCommandOutput>;
|
|
114
|
+
export declare const deserializeAws_json1_1PutScalingPolicyCommand: (
|
|
115
|
+
output: __HttpResponse,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<PutScalingPolicyCommandOutput>;
|
|
118
|
+
export declare const deserializeAws_json1_1PutScheduledActionCommand: (
|
|
119
|
+
output: __HttpResponse,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<PutScheduledActionCommandOutput>;
|
|
122
|
+
export declare const deserializeAws_json1_1RegisterScalableTargetCommand: (
|
|
123
|
+
output: __HttpResponse,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<RegisterScalableTargetCommandOutput>;
|
|
@@ -1,38 +1,67 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: ApplicationAutoScalingClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
|
+
credentialDefaultProvider: (
|
|
14
|
+
input: any
|
|
15
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
16
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
17
|
+
import("@aws-sdk/types").UserAgent
|
|
18
|
+
>;
|
|
19
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
20
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
23
|
+
any,
|
|
24
|
+
any,
|
|
25
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
26
|
+
> &
|
|
27
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
28
|
+
| RequestHandler;
|
|
29
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
30
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
31
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
32
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
36
|
+
apiVersion: string;
|
|
37
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| undefined;
|
|
47
|
+
tls?: boolean | undefined;
|
|
48
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
+
credentials?:
|
|
50
|
+
| import("@aws-sdk/types").Credentials
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
+
| undefined;
|
|
53
|
+
signer?:
|
|
54
|
+
| import("@aws-sdk/types").RequestSigner
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
56
|
+
| undefined;
|
|
57
|
+
signingEscapePath?: boolean | undefined;
|
|
58
|
+
systemClockOffset?: number | undefined;
|
|
59
|
+
signingRegion?: string | undefined;
|
|
60
|
+
signerConstructor?:
|
|
61
|
+
| (new (
|
|
62
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
63
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
64
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
65
|
+
| undefined;
|
|
66
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
67
|
+
};
|
|
@@ -1,38 +1,67 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: ApplicationAutoScalingClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
|
+
credentialDefaultProvider: (
|
|
14
|
+
input: any
|
|
15
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
16
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
17
|
+
import("@aws-sdk/types").UserAgent
|
|
18
|
+
>;
|
|
19
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
20
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
23
|
+
any,
|
|
24
|
+
any,
|
|
25
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
26
|
+
> &
|
|
27
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
28
|
+
| RequestHandler;
|
|
29
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
30
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
31
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
32
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
36
|
+
apiVersion: string;
|
|
37
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| undefined;
|
|
47
|
+
tls?: boolean | undefined;
|
|
48
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
+
credentials?:
|
|
50
|
+
| import("@aws-sdk/types").Credentials
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
+
| undefined;
|
|
53
|
+
signer?:
|
|
54
|
+
| import("@aws-sdk/types").RequestSigner
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
56
|
+
| undefined;
|
|
57
|
+
signingEscapePath?: boolean | undefined;
|
|
58
|
+
systemClockOffset?: number | undefined;
|
|
59
|
+
signingRegion?: string | undefined;
|
|
60
|
+
signerConstructor?:
|
|
61
|
+
| (new (
|
|
62
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
63
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
64
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
65
|
+
| undefined;
|
|
66
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
67
|
+
};
|
|
@@ -1,37 +1,68 @@
|
|
|
1
|
-
import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: ApplicationAutoScalingClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
7
|
+
requestHandler:
|
|
8
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
9
|
+
any,
|
|
10
|
+
any,
|
|
11
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
12
|
+
> &
|
|
13
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
14
|
+
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
15
|
+
apiVersion: string;
|
|
16
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
17
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
18
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
20
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
21
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
22
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
23
|
+
disableHostPrefix: boolean;
|
|
24
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
25
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
26
|
+
logger: import("@aws-sdk/types").Logger;
|
|
27
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
28
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
29
|
+
serviceId: string;
|
|
30
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
31
|
+
credentialDefaultProvider: (
|
|
32
|
+
input: any
|
|
33
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
34
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
35
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
36
|
+
import("@aws-sdk/types").UserAgent
|
|
37
|
+
>;
|
|
38
|
+
defaultsMode:
|
|
39
|
+
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
40
|
+
| import("@aws-sdk/types").Provider<
|
|
41
|
+
import("@aws-sdk/smithy-client").DefaultsMode
|
|
42
|
+
>;
|
|
43
|
+
endpoint?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@aws-sdk/types").Endpoint
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
+
| undefined;
|
|
48
|
+
tls?: boolean | undefined;
|
|
49
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
+
credentials?:
|
|
51
|
+
| import("@aws-sdk/types").Credentials
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
+
| undefined;
|
|
54
|
+
signer?:
|
|
55
|
+
| import("@aws-sdk/types").RequestSigner
|
|
56
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
57
|
+
| undefined;
|
|
58
|
+
signingEscapePath?: boolean | undefined;
|
|
59
|
+
systemClockOffset?: number | undefined;
|
|
60
|
+
signingRegion?: string | undefined;
|
|
61
|
+
signerConstructor?:
|
|
62
|
+
| (new (
|
|
63
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
64
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
65
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
66
|
+
| undefined;
|
|
67
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
68
|
+
};
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: ApplicationAutoScalingClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
disableHostPrefix: boolean;
|
|
8
|
+
logger: __Logger;
|
|
9
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
10
|
+
serviceId: string;
|
|
11
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
12
|
+
};
|