@aws-sdk/client-auto-scaling-plans 3.300.0 → 3.301.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-types/commands/CreateScalingPlanCommand.d.ts +15 -15
- package/dist-types/commands/DeleteScalingPlanCommand.d.ts +1 -1
- package/dist-types/commands/DescribeScalingPlanResourcesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeScalingPlansCommand.d.ts +7 -7
- package/dist-types/commands/GetScalingPlanResourceForecastDataCommand.d.ts +1 -1
- package/dist-types/commands/UpdateScalingPlanCommand.d.ts +15 -15
- package/package.json +3 -3
|
@@ -26,37 +26,37 @@ export interface CreateScalingPlanCommandOutput extends CreateScalingPlanRespons
|
|
|
26
26
|
* import { AutoScalingPlansClient, CreateScalingPlanCommand } from "@aws-sdk/client-auto-scaling-plans"; // ES Modules import
|
|
27
27
|
* // const { AutoScalingPlansClient, CreateScalingPlanCommand } = require("@aws-sdk/client-auto-scaling-plans"); // CommonJS import
|
|
28
28
|
* const client = new AutoScalingPlansClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateScalingPlanRequest
|
|
30
30
|
* ScalingPlanName: "STRING_VALUE", // required
|
|
31
|
-
* ApplicationSource: {
|
|
31
|
+
* ApplicationSource: { // ApplicationSource
|
|
32
32
|
* CloudFormationStackARN: "STRING_VALUE",
|
|
33
|
-
* TagFilters: [
|
|
34
|
-
* {
|
|
33
|
+
* TagFilters: [ // TagFilters
|
|
34
|
+
* { // TagFilter
|
|
35
35
|
* Key: "STRING_VALUE",
|
|
36
|
-
* Values: [
|
|
36
|
+
* Values: [ // TagValues
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* },
|
|
40
40
|
* ],
|
|
41
41
|
* },
|
|
42
|
-
* ScalingInstructions: [ // required
|
|
43
|
-
* {
|
|
42
|
+
* ScalingInstructions: [ // ScalingInstructions // required
|
|
43
|
+
* { // ScalingInstruction
|
|
44
44
|
* ServiceNamespace: "STRING_VALUE", // required
|
|
45
45
|
* ResourceId: "STRING_VALUE", // required
|
|
46
46
|
* ScalableDimension: "STRING_VALUE", // required
|
|
47
47
|
* MinCapacity: Number("int"), // required
|
|
48
48
|
* MaxCapacity: Number("int"), // required
|
|
49
|
-
* TargetTrackingConfigurations: [ // required
|
|
50
|
-
* {
|
|
51
|
-
* PredefinedScalingMetricSpecification: {
|
|
49
|
+
* TargetTrackingConfigurations: [ // TargetTrackingConfigurations // required
|
|
50
|
+
* { // TargetTrackingConfiguration
|
|
51
|
+
* PredefinedScalingMetricSpecification: { // PredefinedScalingMetricSpecification
|
|
52
52
|
* PredefinedScalingMetricType: "STRING_VALUE", // required
|
|
53
53
|
* ResourceLabel: "STRING_VALUE",
|
|
54
54
|
* },
|
|
55
|
-
* CustomizedScalingMetricSpecification: {
|
|
55
|
+
* CustomizedScalingMetricSpecification: { // CustomizedScalingMetricSpecification
|
|
56
56
|
* MetricName: "STRING_VALUE", // required
|
|
57
57
|
* Namespace: "STRING_VALUE", // required
|
|
58
|
-
* Dimensions: [
|
|
59
|
-
* {
|
|
58
|
+
* Dimensions: [ // MetricDimensions
|
|
59
|
+
* { // MetricDimension
|
|
60
60
|
* Name: "STRING_VALUE", // required
|
|
61
61
|
* Value: "STRING_VALUE", // required
|
|
62
62
|
* },
|
|
@@ -71,11 +71,11 @@ export interface CreateScalingPlanCommandOutput extends CreateScalingPlanRespons
|
|
|
71
71
|
* EstimatedInstanceWarmup: Number("int"),
|
|
72
72
|
* },
|
|
73
73
|
* ],
|
|
74
|
-
* PredefinedLoadMetricSpecification: {
|
|
74
|
+
* PredefinedLoadMetricSpecification: { // PredefinedLoadMetricSpecification
|
|
75
75
|
* PredefinedLoadMetricType: "STRING_VALUE", // required
|
|
76
76
|
* ResourceLabel: "STRING_VALUE",
|
|
77
77
|
* },
|
|
78
|
-
* CustomizedLoadMetricSpecification: {
|
|
78
|
+
* CustomizedLoadMetricSpecification: { // CustomizedLoadMetricSpecification
|
|
79
79
|
* MetricName: "STRING_VALUE", // required
|
|
80
80
|
* Namespace: "STRING_VALUE", // required
|
|
81
81
|
* Dimensions: [
|
|
@@ -30,7 +30,7 @@ export interface DeleteScalingPlanCommandOutput extends DeleteScalingPlanRespons
|
|
|
30
30
|
* import { AutoScalingPlansClient, DeleteScalingPlanCommand } from "@aws-sdk/client-auto-scaling-plans"; // ES Modules import
|
|
31
31
|
* // const { AutoScalingPlansClient, DeleteScalingPlanCommand } = require("@aws-sdk/client-auto-scaling-plans"); // CommonJS import
|
|
32
32
|
* const client = new AutoScalingPlansClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteScalingPlanRequest
|
|
34
34
|
* ScalingPlanName: "STRING_VALUE", // required
|
|
35
35
|
* ScalingPlanVersion: Number("long"), // required
|
|
36
36
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeScalingPlanResourcesCommandOutput extends DescribeScali
|
|
|
26
26
|
* import { AutoScalingPlansClient, DescribeScalingPlanResourcesCommand } from "@aws-sdk/client-auto-scaling-plans"; // ES Modules import
|
|
27
27
|
* // const { AutoScalingPlansClient, DescribeScalingPlanResourcesCommand } = require("@aws-sdk/client-auto-scaling-plans"); // CommonJS import
|
|
28
28
|
* const client = new AutoScalingPlansClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeScalingPlanResourcesRequest
|
|
30
30
|
* ScalingPlanName: "STRING_VALUE", // required
|
|
31
31
|
* ScalingPlanVersion: Number("long"), // required
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,18 +26,18 @@ export interface DescribeScalingPlansCommandOutput extends DescribeScalingPlansR
|
|
|
26
26
|
* import { AutoScalingPlansClient, DescribeScalingPlansCommand } from "@aws-sdk/client-auto-scaling-plans"; // ES Modules import
|
|
27
27
|
* // const { AutoScalingPlansClient, DescribeScalingPlansCommand } = require("@aws-sdk/client-auto-scaling-plans"); // CommonJS import
|
|
28
28
|
* const client = new AutoScalingPlansClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* ScalingPlanNames: [
|
|
29
|
+
* const input = { // DescribeScalingPlansRequest
|
|
30
|
+
* ScalingPlanNames: [ // ScalingPlanNames
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* ScalingPlanVersion: Number("long"),
|
|
34
|
-
* ApplicationSources: [
|
|
35
|
-
* {
|
|
34
|
+
* ApplicationSources: [ // ApplicationSources
|
|
35
|
+
* { // ApplicationSource
|
|
36
36
|
* CloudFormationStackARN: "STRING_VALUE",
|
|
37
|
-
* TagFilters: [
|
|
38
|
-
* {
|
|
37
|
+
* TagFilters: [ // TagFilters
|
|
38
|
+
* { // TagFilter
|
|
39
39
|
* Key: "STRING_VALUE",
|
|
40
|
-
* Values: [
|
|
40
|
+
* Values: [ // TagValues
|
|
41
41
|
* "STRING_VALUE",
|
|
42
42
|
* ],
|
|
43
43
|
* },
|
|
@@ -29,7 +29,7 @@ export interface GetScalingPlanResourceForecastDataCommandOutput extends GetScal
|
|
|
29
29
|
* import { AutoScalingPlansClient, GetScalingPlanResourceForecastDataCommand } from "@aws-sdk/client-auto-scaling-plans"; // ES Modules import
|
|
30
30
|
* // const { AutoScalingPlansClient, GetScalingPlanResourceForecastDataCommand } = require("@aws-sdk/client-auto-scaling-plans"); // CommonJS import
|
|
31
31
|
* const client = new AutoScalingPlansClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // GetScalingPlanResourceForecastDataRequest
|
|
33
33
|
* ScalingPlanName: "STRING_VALUE", // required
|
|
34
34
|
* ScalingPlanVersion: Number("long"), // required
|
|
35
35
|
* ServiceNamespace: "STRING_VALUE", // required
|
|
@@ -28,38 +28,38 @@ export interface UpdateScalingPlanCommandOutput extends UpdateScalingPlanRespons
|
|
|
28
28
|
* import { AutoScalingPlansClient, UpdateScalingPlanCommand } from "@aws-sdk/client-auto-scaling-plans"; // ES Modules import
|
|
29
29
|
* // const { AutoScalingPlansClient, UpdateScalingPlanCommand } = require("@aws-sdk/client-auto-scaling-plans"); // CommonJS import
|
|
30
30
|
* const client = new AutoScalingPlansClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateScalingPlanRequest
|
|
32
32
|
* ScalingPlanName: "STRING_VALUE", // required
|
|
33
33
|
* ScalingPlanVersion: Number("long"), // required
|
|
34
|
-
* ApplicationSource: {
|
|
34
|
+
* ApplicationSource: { // ApplicationSource
|
|
35
35
|
* CloudFormationStackARN: "STRING_VALUE",
|
|
36
|
-
* TagFilters: [
|
|
37
|
-
* {
|
|
36
|
+
* TagFilters: [ // TagFilters
|
|
37
|
+
* { // TagFilter
|
|
38
38
|
* Key: "STRING_VALUE",
|
|
39
|
-
* Values: [
|
|
39
|
+
* Values: [ // TagValues
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
42
|
* },
|
|
43
43
|
* ],
|
|
44
44
|
* },
|
|
45
|
-
* ScalingInstructions: [
|
|
46
|
-
* {
|
|
45
|
+
* ScalingInstructions: [ // ScalingInstructions
|
|
46
|
+
* { // ScalingInstruction
|
|
47
47
|
* ServiceNamespace: "STRING_VALUE", // required
|
|
48
48
|
* ResourceId: "STRING_VALUE", // required
|
|
49
49
|
* ScalableDimension: "STRING_VALUE", // required
|
|
50
50
|
* MinCapacity: Number("int"), // required
|
|
51
51
|
* MaxCapacity: Number("int"), // required
|
|
52
|
-
* TargetTrackingConfigurations: [ // required
|
|
53
|
-
* {
|
|
54
|
-
* PredefinedScalingMetricSpecification: {
|
|
52
|
+
* TargetTrackingConfigurations: [ // TargetTrackingConfigurations // required
|
|
53
|
+
* { // TargetTrackingConfiguration
|
|
54
|
+
* PredefinedScalingMetricSpecification: { // PredefinedScalingMetricSpecification
|
|
55
55
|
* PredefinedScalingMetricType: "STRING_VALUE", // required
|
|
56
56
|
* ResourceLabel: "STRING_VALUE",
|
|
57
57
|
* },
|
|
58
|
-
* CustomizedScalingMetricSpecification: {
|
|
58
|
+
* CustomizedScalingMetricSpecification: { // CustomizedScalingMetricSpecification
|
|
59
59
|
* MetricName: "STRING_VALUE", // required
|
|
60
60
|
* Namespace: "STRING_VALUE", // required
|
|
61
|
-
* Dimensions: [
|
|
62
|
-
* {
|
|
61
|
+
* Dimensions: [ // MetricDimensions
|
|
62
|
+
* { // MetricDimension
|
|
63
63
|
* Name: "STRING_VALUE", // required
|
|
64
64
|
* Value: "STRING_VALUE", // required
|
|
65
65
|
* },
|
|
@@ -74,11 +74,11 @@ export interface UpdateScalingPlanCommandOutput extends UpdateScalingPlanRespons
|
|
|
74
74
|
* EstimatedInstanceWarmup: Number("int"),
|
|
75
75
|
* },
|
|
76
76
|
* ],
|
|
77
|
-
* PredefinedLoadMetricSpecification: {
|
|
77
|
+
* PredefinedLoadMetricSpecification: { // PredefinedLoadMetricSpecification
|
|
78
78
|
* PredefinedLoadMetricType: "STRING_VALUE", // required
|
|
79
79
|
* ResourceLabel: "STRING_VALUE",
|
|
80
80
|
* },
|
|
81
|
-
* CustomizedLoadMetricSpecification: {
|
|
81
|
+
* CustomizedLoadMetricSpecification: { // CustomizedLoadMetricSpecification
|
|
82
82
|
* MetricName: "STRING_VALUE", // required
|
|
83
83
|
* Namespace: "STRING_VALUE", // required
|
|
84
84
|
* Dimensions: [
|
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.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|