@aws-sdk/client-application-auto-scaling 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 +288 -211
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/DeleteScalingPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteScheduledActionCommand.js +2 -2
- package/dist-es/commands/DeregisterScalableTargetCommand.js +2 -2
- package/dist-es/commands/DescribeScalableTargetsCommand.js +2 -2
- package/dist-es/commands/DescribeScalingActivitiesCommand.js +2 -2
- package/dist-es/commands/DescribeScalingPoliciesCommand.js +2 -2
- package/dist-es/commands/DescribeScheduledActionsCommand.js +2 -2
- package/dist-es/commands/GetPredictiveScalingForecastCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutScalingPolicyCommand.js +2 -2
- package/dist-es/commands/PutScheduledActionCommand.js +2 -2
- package/dist-es/commands/RegisterScalableTargetCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.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 +171 -176
- package/dist-types/ApplicationAutoScalingClient.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 +83 -102
- package/dist-types/ts3.4/ApplicationAutoScalingClient.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 +82 -102
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.applicationautoscaling",
|
|
32
|
+
version: "2016-02-06",
|
|
33
|
+
serviceTarget: "AnyScaleFrontendService",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "Application Auto Scaling",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteScalingPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteScalingPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteScalingPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteScalingPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "DeleteScalingPolicy", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "DeleteScalingPolicyCommand")
|
|
14
|
-
.sc(DeleteScalingPolicy)
|
|
14
|
+
.sc(DeleteScalingPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteScheduledAction } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteScheduledAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteScheduledActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteScheduledActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "DeleteScheduledAction", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "DeleteScheduledActionCommand")
|
|
14
|
-
.sc(DeleteScheduledAction)
|
|
14
|
+
.sc(DeleteScheduledAction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeregisterScalableTarget } from "../schemas/schemas_0";
|
|
4
|
+
import { DeregisterScalableTarget$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeregisterScalableTargetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeregisterScalableTargetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "DeregisterScalableTarget", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "DeregisterScalableTargetCommand")
|
|
14
|
-
.sc(DeregisterScalableTarget)
|
|
14
|
+
.sc(DeregisterScalableTarget$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeScalableTargets } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeScalableTargets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeScalableTargetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeScalableTargetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "DescribeScalableTargets", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "DescribeScalableTargetsCommand")
|
|
14
|
-
.sc(DescribeScalableTargets)
|
|
14
|
+
.sc(DescribeScalableTargets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeScalingActivities } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeScalingActivities$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeScalingActivitiesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeScalingActivitiesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "DescribeScalingActivities", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "DescribeScalingActivitiesCommand")
|
|
14
|
-
.sc(DescribeScalingActivities)
|
|
14
|
+
.sc(DescribeScalingActivities$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeScalingPolicies } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeScalingPolicies$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeScalingPoliciesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeScalingPoliciesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "DescribeScalingPolicies", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "DescribeScalingPoliciesCommand")
|
|
14
|
-
.sc(DescribeScalingPolicies)
|
|
14
|
+
.sc(DescribeScalingPolicies$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeScheduledActions } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeScheduledActions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeScheduledActionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeScheduledActionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "DescribeScheduledActions", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "DescribeScheduledActionsCommand")
|
|
14
|
-
.sc(DescribeScheduledActions)
|
|
14
|
+
.sc(DescribeScheduledActions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetPredictiveScalingForecast } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPredictiveScalingForecast$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPredictiveScalingForecastCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPredictiveScalingForecastCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "GetPredictiveScalingForecast", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "GetPredictiveScalingForecastCommand")
|
|
14
|
-
.sc(GetPredictiveScalingForecast)
|
|
14
|
+
.sc(GetPredictiveScalingForecast$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "ListTagsForResource", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutScalingPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutScalingPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutScalingPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutScalingPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "PutScalingPolicy", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "PutScalingPolicyCommand")
|
|
14
|
-
.sc(PutScalingPolicy)
|
|
14
|
+
.sc(PutScalingPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutScheduledAction } from "../schemas/schemas_0";
|
|
4
|
+
import { PutScheduledAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutScheduledActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutScheduledActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "PutScheduledAction", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "PutScheduledActionCommand")
|
|
14
|
-
.sc(PutScheduledAction)
|
|
14
|
+
.sc(PutScheduledAction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RegisterScalableTarget } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterScalableTarget$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterScalableTargetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterScalableTargetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "RegisterScalableTarget", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "RegisterScalableTargetCommand")
|
|
14
|
-
.sc(RegisterScalableTarget)
|
|
14
|
+
.sc(RegisterScalableTarget$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "TagResource", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AnyScaleFrontendService", "UntagResource", {})
|
|
13
13
|
.n("ApplicationAutoScalingClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.applicationautoscaling",
|
|
29
|
+
version: "2016-02-06",
|
|
30
|
+
serviceTarget: "AnyScaleFrontendService",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "Application Auto Scaling",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|