@aws-sdk/client-auto-scaling-plans 3.588.0 → 3.592.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 +0 -6
- package/dist-types/AutoScalingPlansClient.d.ts +4 -4
- package/dist-types/commands/CreateScalingPlanCommand.d.ts +2 -1
- package/dist-types/commands/DeleteScalingPlanCommand.d.ts +2 -1
- package/dist-types/commands/DescribeScalingPlanResourcesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeScalingPlansCommand.d.ts +2 -1
- package/dist-types/commands/GetScalingPlanResourceForecastDataCommand.d.ts +2 -1
- package/dist-types/commands/UpdateScalingPlanCommand.d.ts +2 -1
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/AutoScalingPlansServiceException.d.ts +2 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/AutoScalingPlansClient.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateScalingPlanCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteScalingPlanCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeScalingPlanResourcesCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeScalingPlansCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetScalingPlanResourceForecastDataCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateScalingPlanCommand.d.ts +2 -1
- package/dist-types/ts3.4/models/AutoScalingPlansServiceException.d.ts +2 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -202,7 +202,6 @@ var AutoScalingPlansClient = _AutoScalingPlansClient;
|
|
|
202
202
|
|
|
203
203
|
var import_middleware_serde = require("@smithy/middleware-serde");
|
|
204
204
|
|
|
205
|
-
var import_types = require("@smithy/types");
|
|
206
205
|
|
|
207
206
|
// src/protocols/Aws_json1_1.ts
|
|
208
207
|
var import_core2 = require("@aws-sdk/core");
|
|
@@ -853,7 +852,6 @@ var CreateScalingPlanCommand = _CreateScalingPlanCommand;
|
|
|
853
852
|
|
|
854
853
|
|
|
855
854
|
|
|
856
|
-
|
|
857
855
|
var _DeleteScalingPlanCommand = class _DeleteScalingPlanCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
858
856
|
...commonParams
|
|
859
857
|
}).m(function(Command, cs, config, o) {
|
|
@@ -870,7 +868,6 @@ var DeleteScalingPlanCommand = _DeleteScalingPlanCommand;
|
|
|
870
868
|
|
|
871
869
|
|
|
872
870
|
|
|
873
|
-
|
|
874
871
|
var _DescribeScalingPlanResourcesCommand = class _DescribeScalingPlanResourcesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
875
872
|
...commonParams
|
|
876
873
|
}).m(function(Command, cs, config, o) {
|
|
@@ -887,7 +884,6 @@ var DescribeScalingPlanResourcesCommand = _DescribeScalingPlanResourcesCommand;
|
|
|
887
884
|
|
|
888
885
|
|
|
889
886
|
|
|
890
|
-
|
|
891
887
|
var _DescribeScalingPlansCommand = class _DescribeScalingPlansCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
892
888
|
...commonParams
|
|
893
889
|
}).m(function(Command, cs, config, o) {
|
|
@@ -904,7 +900,6 @@ var DescribeScalingPlansCommand = _DescribeScalingPlansCommand;
|
|
|
904
900
|
|
|
905
901
|
|
|
906
902
|
|
|
907
|
-
|
|
908
903
|
var _GetScalingPlanResourceForecastDataCommand = class _GetScalingPlanResourceForecastDataCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
909
904
|
...commonParams
|
|
910
905
|
}).m(function(Command, cs, config, o) {
|
|
@@ -921,7 +916,6 @@ var GetScalingPlanResourceForecastDataCommand = _GetScalingPlanResourceForecastD
|
|
|
921
916
|
|
|
922
917
|
|
|
923
918
|
|
|
924
|
-
|
|
925
919
|
var _UpdateScalingPlanCommand = class _UpdateScalingPlanCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
926
920
|
...commonParams
|
|
927
921
|
}).m(function(Command, cs, config, o) {
|
|
@@ -96,15 +96,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
96
96
|
* Enables FIPS compatible endpoints.
|
|
97
97
|
*/
|
|
98
98
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
99
|
+
/**
|
|
100
|
+
* The AWS region to which this client will send requests
|
|
101
|
+
*/
|
|
102
|
+
region?: string | __Provider<string>;
|
|
99
103
|
/**
|
|
100
104
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
101
105
|
* @internal
|
|
102
106
|
*/
|
|
103
107
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
104
|
-
/**
|
|
105
|
-
* The AWS region to which this client will send requests
|
|
106
|
-
*/
|
|
107
|
-
region?: string | __Provider<string>;
|
|
108
108
|
/**
|
|
109
109
|
* Default credentials provider; Not available in browser runtime.
|
|
110
110
|
* @deprecated
|
package/dist-types/index.d.ts
CHANGED
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
export * from "./AutoScalingPlansClient";
|
|
41
41
|
export * from "./AutoScalingPlans";
|
|
42
42
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
43
|
-
export { RuntimeExtension } from "./runtimeExtensions";
|
|
44
|
-
export { AutoScalingPlansExtensionConfiguration } from "./extensionConfiguration";
|
|
43
|
+
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
44
|
+
export type { AutoScalingPlansExtensionConfiguration } from "./extensionConfiguration";
|
|
45
45
|
export * from "./commands";
|
|
46
46
|
export * from "./models";
|
|
47
47
|
export { AutoScalingPlansServiceException } from "./models/AutoScalingPlansServiceException";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
|
|
2
|
-
export {
|
|
2
|
+
export type { __ServiceExceptionOptions };
|
|
3
|
+
export { __ServiceException };
|
|
3
4
|
/**
|
|
4
5
|
* @public
|
|
5
6
|
*
|
|
@@ -18,8 +18,8 @@ export declare const getRuntimeConfig: (config: AutoScalingPlansClientConfig) =>
|
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
-
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
22
21
|
region: string | import("@smithy/types").Provider<any>;
|
|
22
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
24
24
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
25
25
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -106,8 +106,8 @@ export interface ClientDefaults
|
|
|
106
106
|
serviceId?: string;
|
|
107
107
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
108
108
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
109
|
-
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
110
109
|
region?: string | __Provider<string>;
|
|
110
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
111
111
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
112
112
|
maxAttempts?: number | __Provider<number>;
|
|
113
113
|
retryMode?: string | __Provider<string>;
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
CreateScalingPlanRequest,
|
|
10
10
|
CreateScalingPlanResponse,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface CreateScalingPlanCommandInput
|
|
14
15
|
extends CreateScalingPlanRequest {}
|
|
15
16
|
export interface CreateScalingPlanCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
DeleteScalingPlanRequest,
|
|
10
10
|
DeleteScalingPlanResponse,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface DeleteScalingPlanCommandInput
|
|
14
15
|
extends DeleteScalingPlanRequest {}
|
|
15
16
|
export interface DeleteScalingPlanCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
DescribeScalingPlanResourcesRequest,
|
|
10
10
|
DescribeScalingPlanResourcesResponse,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface DescribeScalingPlanResourcesCommandInput
|
|
14
15
|
extends DescribeScalingPlanResourcesRequest {}
|
|
15
16
|
export interface DescribeScalingPlanResourcesCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
DescribeScalingPlansRequest,
|
|
10
10
|
DescribeScalingPlansResponse,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface DescribeScalingPlansCommandInput
|
|
14
15
|
extends DescribeScalingPlansRequest {}
|
|
15
16
|
export interface DescribeScalingPlansCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
GetScalingPlanResourceForecastDataRequest,
|
|
10
10
|
GetScalingPlanResourceForecastDataResponse,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface GetScalingPlanResourceForecastDataCommandInput
|
|
14
15
|
extends GetScalingPlanResourceForecastDataRequest {}
|
|
15
16
|
export interface GetScalingPlanResourceForecastDataCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
UpdateScalingPlanRequest,
|
|
10
10
|
UpdateScalingPlanResponse,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface UpdateScalingPlanCommandInput
|
|
14
15
|
extends UpdateScalingPlanRequest {}
|
|
15
16
|
export interface UpdateScalingPlanCommandOutput
|
|
@@ -2,7 +2,8 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@smithy/smithy-client";
|
|
5
|
-
export {
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
6
7
|
export declare class AutoScalingPlansServiceException extends __ServiceException {
|
|
7
8
|
constructor(options: __ServiceExceptionOptions);
|
|
8
9
|
}
|
|
@@ -22,10 +22,10 @@ export declare const getRuntimeConfig: (
|
|
|
22
22
|
serviceId: string;
|
|
23
23
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
25
26
|
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
26
27
|
import("@smithy/types").UserAgent
|
|
27
28
|
>;
|
|
28
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
29
29
|
credentialDefaultProvider: (
|
|
30
30
|
input: any
|
|
31
31
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.592.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-auto-scaling-plans",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.592.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.592.0",
|
|
25
|
+
"@aws-sdk/core": "3.592.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.592.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.587.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.1",
|
|
37
|
-
"@smithy/core": "^2.
|
|
37
|
+
"@smithy/core": "^2.2.0",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.0.1",
|
|
39
39
|
"@smithy/hash-node": "^3.0.0",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.0",
|