@aws-sdk/client-auto-scaling-plans 3.952.0 → 3.953.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/index.js +138 -100
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CreateScalingPlanCommand.js +2 -2
- package/dist-es/commands/DeleteScalingPlanCommand.js +2 -2
- package/dist-es/commands/DescribeScalingPlanResourcesCommand.js +2 -2
- package/dist-es/commands/DescribeScalingPlansCommand.js +2 -2
- package/dist-es/commands/GetScalingPlanResourceForecastDataCommand.js +2 -2
- package/dist-es/commands/UpdateScalingPlanCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +77 -77
- package/dist-types/AutoScalingPlansClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +39 -50
- package/dist-types/ts3.4/AutoScalingPlansClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +38 -50
- package/package.json +34 -34
|
@@ -28,8 +28,16 @@ export declare const getRuntimeConfig: (
|
|
|
28
28
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
29
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
30
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
31
|
-
apiVersion: string;
|
|
32
31
|
cacheMiddleware?: boolean | undefined;
|
|
32
|
+
protocol:
|
|
33
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
+
| typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
36
|
+
protocolSettings: {
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
[setting: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
apiVersion: string;
|
|
33
41
|
urlParser: import("@smithy/types").UrlParser;
|
|
34
42
|
base64Decoder: import("@smithy/types").Decoder;
|
|
35
43
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,10 +48,6 @@ export declare const getRuntimeConfig: (
|
|
|
40
48
|
profile?: string;
|
|
41
49
|
logger: import("@smithy/types").Logger;
|
|
42
50
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
-
import("@smithy/types").HttpRequest,
|
|
45
|
-
import("@smithy/types").HttpResponse
|
|
46
|
-
>;
|
|
47
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
48
52
|
retryStrategy?:
|
|
49
53
|
| import("@smithy/types").RetryStrategy
|
|
@@ -10,8 +10,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
10
|
| Record<string, unknown>
|
|
11
11
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
12
12
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
13
|
-
apiVersion: string;
|
|
14
13
|
cacheMiddleware?: boolean;
|
|
14
|
+
protocol:
|
|
15
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
16
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
17
|
+
| typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
18
|
+
protocolSettings: {
|
|
19
|
+
defaultNamespace?: string;
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
};
|
|
22
|
+
apiVersion: string;
|
|
15
23
|
urlParser: import("@smithy/types").UrlParser;
|
|
16
24
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
17
25
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -39,10 +47,6 @@ export declare const getRuntimeConfig: (
|
|
|
39
47
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
48
|
logger: import("@smithy/types").Logger;
|
|
41
49
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
-
import("@smithy/types").HttpRequest,
|
|
44
|
-
import("@smithy/types").HttpResponse
|
|
45
|
-
>;
|
|
46
50
|
defaultsMode:
|
|
47
51
|
| import("@smithy/smithy-client").DefaultsMode
|
|
48
52
|
| import("@smithy/types").Provider<
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols";
|
|
1
2
|
import { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient";
|
|
2
3
|
export declare const getRuntimeConfig: (
|
|
3
4
|
config: AutoScalingPlansClientConfig
|
|
@@ -16,10 +17,14 @@ export declare const getRuntimeConfig: (
|
|
|
16
17
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AutoScalingPlansHttpAuthSchemeProvider;
|
|
17
18
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
19
|
logger: import("@smithy/types").Logger;
|
|
19
|
-
protocol:
|
|
20
|
-
import("@smithy/types").
|
|
21
|
-
import("@smithy/types").
|
|
22
|
-
|
|
20
|
+
protocol:
|
|
21
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
22
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
23
|
+
| typeof AwsJson1_1Protocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
[setting: string]: unknown;
|
|
26
|
+
defaultNamespace?: string;
|
|
27
|
+
};
|
|
23
28
|
serviceId: string;
|
|
24
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
30
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -1,55 +1,43 @@
|
|
|
1
1
|
import {
|
|
2
2
|
StaticErrorSchema,
|
|
3
|
-
StaticListSchema,
|
|
4
3
|
StaticOperationSchema,
|
|
5
4
|
StaticStructureSchema,
|
|
6
5
|
} from "@smithy/types";
|
|
7
|
-
export declare var ApplicationSource
|
|
8
|
-
export declare var ConcurrentUpdateException
|
|
9
|
-
export declare var CreateScalingPlanRequest
|
|
10
|
-
export declare var CreateScalingPlanResponse
|
|
11
|
-
export declare var CustomizedLoadMetricSpecification
|
|
12
|
-
export declare var CustomizedScalingMetricSpecification
|
|
13
|
-
export declare var Datapoint
|
|
14
|
-
export declare var DeleteScalingPlanRequest
|
|
15
|
-
export declare var DeleteScalingPlanResponse
|
|
16
|
-
export declare var DescribeScalingPlanResourcesRequest
|
|
17
|
-
export declare var DescribeScalingPlanResourcesResponse
|
|
18
|
-
export declare var DescribeScalingPlansRequest
|
|
19
|
-
export declare var DescribeScalingPlansResponse
|
|
20
|
-
export declare var GetScalingPlanResourceForecastDataRequest
|
|
21
|
-
export declare var GetScalingPlanResourceForecastDataResponse
|
|
22
|
-
export declare var InternalServiceException
|
|
23
|
-
export declare var InvalidNextTokenException
|
|
24
|
-
export declare var LimitExceededException
|
|
25
|
-
export declare var MetricDimension
|
|
26
|
-
export declare var ObjectNotFoundException
|
|
27
|
-
export declare var PredefinedLoadMetricSpecification
|
|
28
|
-
export declare var PredefinedScalingMetricSpecification
|
|
29
|
-
export declare var ScalingInstruction
|
|
30
|
-
export declare var ScalingPlan
|
|
31
|
-
export declare var ScalingPlanResource
|
|
32
|
-
export declare var ScalingPolicy
|
|
33
|
-
export declare var TagFilter
|
|
34
|
-
export declare var TargetTrackingConfiguration
|
|
35
|
-
export declare var UpdateScalingPlanRequest
|
|
36
|
-
export declare var UpdateScalingPlanResponse
|
|
37
|
-
export declare var ValidationException
|
|
38
|
-
export declare var AutoScalingPlansServiceException
|
|
39
|
-
export declare var
|
|
40
|
-
export declare var
|
|
41
|
-
export declare var
|
|
42
|
-
export declare var
|
|
43
|
-
export declare var
|
|
44
|
-
export declare var
|
|
45
|
-
export declare var ScalingPlans: StaticListSchema;
|
|
46
|
-
export declare var ScalingPolicies: StaticListSchema;
|
|
47
|
-
export declare var TagFilters: StaticListSchema;
|
|
48
|
-
export declare var TagValues: number;
|
|
49
|
-
export declare var TargetTrackingConfigurations: StaticListSchema;
|
|
50
|
-
export declare var CreateScalingPlan: StaticOperationSchema;
|
|
51
|
-
export declare var DeleteScalingPlan: StaticOperationSchema;
|
|
52
|
-
export declare var DescribeScalingPlanResources: StaticOperationSchema;
|
|
53
|
-
export declare var DescribeScalingPlans: StaticOperationSchema;
|
|
54
|
-
export declare var GetScalingPlanResourceForecastData: StaticOperationSchema;
|
|
55
|
-
export declare var UpdateScalingPlan: StaticOperationSchema;
|
|
6
|
+
export declare var ApplicationSource$: StaticStructureSchema;
|
|
7
|
+
export declare var ConcurrentUpdateException$: StaticErrorSchema;
|
|
8
|
+
export declare var CreateScalingPlanRequest$: StaticStructureSchema;
|
|
9
|
+
export declare var CreateScalingPlanResponse$: StaticStructureSchema;
|
|
10
|
+
export declare var CustomizedLoadMetricSpecification$: StaticStructureSchema;
|
|
11
|
+
export declare var CustomizedScalingMetricSpecification$: StaticStructureSchema;
|
|
12
|
+
export declare var Datapoint$: StaticStructureSchema;
|
|
13
|
+
export declare var DeleteScalingPlanRequest$: StaticStructureSchema;
|
|
14
|
+
export declare var DeleteScalingPlanResponse$: StaticStructureSchema;
|
|
15
|
+
export declare var DescribeScalingPlanResourcesRequest$: StaticStructureSchema;
|
|
16
|
+
export declare var DescribeScalingPlanResourcesResponse$: StaticStructureSchema;
|
|
17
|
+
export declare var DescribeScalingPlansRequest$: StaticStructureSchema;
|
|
18
|
+
export declare var DescribeScalingPlansResponse$: StaticStructureSchema;
|
|
19
|
+
export declare var GetScalingPlanResourceForecastDataRequest$: StaticStructureSchema;
|
|
20
|
+
export declare var GetScalingPlanResourceForecastDataResponse$: StaticStructureSchema;
|
|
21
|
+
export declare var InternalServiceException$: StaticErrorSchema;
|
|
22
|
+
export declare var InvalidNextTokenException$: StaticErrorSchema;
|
|
23
|
+
export declare var LimitExceededException$: StaticErrorSchema;
|
|
24
|
+
export declare var MetricDimension$: StaticStructureSchema;
|
|
25
|
+
export declare var ObjectNotFoundException$: StaticErrorSchema;
|
|
26
|
+
export declare var PredefinedLoadMetricSpecification$: StaticStructureSchema;
|
|
27
|
+
export declare var PredefinedScalingMetricSpecification$: StaticStructureSchema;
|
|
28
|
+
export declare var ScalingInstruction$: StaticStructureSchema;
|
|
29
|
+
export declare var ScalingPlan$: StaticStructureSchema;
|
|
30
|
+
export declare var ScalingPlanResource$: StaticStructureSchema;
|
|
31
|
+
export declare var ScalingPolicy$: StaticStructureSchema;
|
|
32
|
+
export declare var TagFilter$: StaticStructureSchema;
|
|
33
|
+
export declare var TargetTrackingConfiguration$: StaticStructureSchema;
|
|
34
|
+
export declare var UpdateScalingPlanRequest$: StaticStructureSchema;
|
|
35
|
+
export declare var UpdateScalingPlanResponse$: StaticStructureSchema;
|
|
36
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
37
|
+
export declare var AutoScalingPlansServiceException$: StaticErrorSchema;
|
|
38
|
+
export declare var CreateScalingPlan$: StaticOperationSchema;
|
|
39
|
+
export declare var DeleteScalingPlan$: StaticOperationSchema;
|
|
40
|
+
export declare var DescribeScalingPlanResources$: StaticOperationSchema;
|
|
41
|
+
export declare var DescribeScalingPlans$: StaticOperationSchema;
|
|
42
|
+
export declare var GetScalingPlanResourceForecastData$: StaticOperationSchema;
|
|
43
|
+
export declare var UpdateScalingPlan$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-auto-scaling-plans",
|
|
3
3
|
"description": "AWS SDK for JavaScript Auto Scaling Plans Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.953.0",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "concurrently 'yarn:build:
|
|
6
|
+
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-auto-scaling-plans",
|
|
8
8
|
"build:es": "tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
|
|
@@ -21,41 +21,41 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
24
|
+
"@aws-sdk/core": "3.953.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.953.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.953.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.953.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.953.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.953.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.953.0",
|
|
31
|
+
"@aws-sdk/types": "3.953.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.953.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.953.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.953.0",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.4",
|
|
36
|
+
"@smithy/core": "^3.19.0",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.7",
|
|
38
|
+
"@smithy/hash-node": "^4.2.6",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.6",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.6",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.3.15",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.15",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.7",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.6",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.6",
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.6",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.6",
|
|
48
|
+
"@smithy/smithy-client": "^4.10.0",
|
|
49
|
+
"@smithy/types": "^4.10.0",
|
|
50
|
+
"@smithy/url-parser": "^4.2.6",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.2.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.14",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.17",
|
|
56
|
+
"@smithy/util-endpoints": "^3.2.6",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.6",
|
|
58
|
+
"@smithy/util-retry": "^4.2.6",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.0",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|