@aws-sdk/client-application-auto-scaling 3.296.0 → 3.297.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.
Files changed (23) hide show
  1. package/dist-types/ApplicationAutoScaling.d.ts +14 -0
  2. package/dist-types/ApplicationAutoScalingClient.d.ts +24 -4
  3. package/dist-types/commands/DeleteScalingPolicyCommand.d.ts +16 -0
  4. package/dist-types/commands/DeleteScheduledActionCommand.d.ts +16 -0
  5. package/dist-types/commands/DeregisterScalableTargetCommand.d.ts +16 -0
  6. package/dist-types/commands/DescribeScalableTargetsCommand.d.ts +16 -0
  7. package/dist-types/commands/DescribeScalingActivitiesCommand.d.ts +16 -0
  8. package/dist-types/commands/DescribeScalingPoliciesCommand.d.ts +16 -0
  9. package/dist-types/commands/DescribeScheduledActionsCommand.d.ts +16 -0
  10. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  11. package/dist-types/commands/PutScalingPolicyCommand.d.ts +16 -0
  12. package/dist-types/commands/PutScheduledActionCommand.d.ts +16 -0
  13. package/dist-types/commands/RegisterScalableTargetCommand.d.ts +16 -0
  14. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  15. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  16. package/dist-types/models/ApplicationAutoScalingServiceException.d.ts +2 -0
  17. package/dist-types/models/models_0.d.ts +129 -0
  18. package/dist-types/pagination/DescribeScalableTargetsPaginator.d.ts +3 -0
  19. package/dist-types/pagination/DescribeScalingActivitiesPaginator.d.ts +3 -0
  20. package/dist-types/pagination/DescribeScalingPoliciesPaginator.d.ts +3 -0
  21. package/dist-types/pagination/DescribeScheduledActionsPaginator.d.ts +3 -0
  22. package/dist-types/pagination/Interfaces.d.ts +3 -0
  23. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
5
5
  import { PutScheduledActionRequest, PutScheduledActionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutScheduledActionCommand}.
8
10
  */
9
11
  export interface PutScheduledActionCommandInput extends PutScheduledActionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutScheduledActionCommand}.
13
17
  */
14
18
  export interface PutScheduledActionCommandOutput extends PutScheduledActionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates or updates a scheduled action for an Application Auto Scaling scalable target. </p>
18
23
  * <p>Each scalable target is identified by a service namespace, resource ID, and scalable
19
24
  * dimension. A scheduled action applies to the scalable target identified by those three
@@ -39,6 +44,8 @@ export interface PutScheduledActionCommandOutput extends PutScheduledActionRespo
39
44
  * const response = await client.send(command);
40
45
  * ```
41
46
  *
47
+ * @param PutScheduledActionCommandInput - {@link PutScheduledActionCommandInput}
48
+ * @returns {@link PutScheduledActionCommandOutput}
42
49
  * @see {@link PutScheduledActionCommandInput} for command's `input` shape.
43
50
  * @see {@link PutScheduledActionCommandOutput} for command's `response` shape.
44
51
  * @see {@link ApplicationAutoScalingClientResolvedConfig | config} for ApplicationAutoScalingClient's `config` shape.
@@ -87,11 +94,20 @@ export interface PutScheduledActionCommandOutput extends PutScheduledActionRespo
87
94
  export declare class PutScheduledActionCommand extends $Command<PutScheduledActionCommandInput, PutScheduledActionCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
88
95
  readonly input: PutScheduledActionCommandInput;
89
96
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
97
+ /**
98
+ * @public
99
+ */
90
100
  constructor(input: PutScheduledActionCommandInput);
91
101
  /**
92
102
  * @internal
93
103
  */
94
104
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutScheduledActionCommandInput, PutScheduledActionCommandOutput>;
105
+ /**
106
+ * @internal
107
+ */
95
108
  private serialize;
109
+ /**
110
+ * @internal
111
+ */
96
112
  private deserialize;
97
113
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
5
5
  import { RegisterScalableTargetRequest, RegisterScalableTargetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RegisterScalableTargetCommand}.
8
10
  */
9
11
  export interface RegisterScalableTargetCommandInput extends RegisterScalableTargetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RegisterScalableTargetCommand}.
13
17
  */
14
18
  export interface RegisterScalableTargetCommandOutput extends RegisterScalableTargetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Registers or updates a scalable target, which is the resource that you want to
18
23
  * scale.</p>
19
24
  * <p>Scalable targets are uniquely identified by the combination of resource ID, scalable
@@ -56,6 +61,8 @@ export interface RegisterScalableTargetCommandOutput extends RegisterScalableTar
56
61
  * const response = await client.send(command);
57
62
  * ```
58
63
  *
64
+ * @param RegisterScalableTargetCommandInput - {@link RegisterScalableTargetCommandInput}
65
+ * @returns {@link RegisterScalableTargetCommandOutput}
59
66
  * @see {@link RegisterScalableTargetCommandInput} for command's `input` shape.
60
67
  * @see {@link RegisterScalableTargetCommandOutput} for command's `response` shape.
61
68
  * @see {@link ApplicationAutoScalingClientResolvedConfig | config} for ApplicationAutoScalingClient's `config` shape.
@@ -94,11 +101,20 @@ export interface RegisterScalableTargetCommandOutput extends RegisterScalableTar
94
101
  export declare class RegisterScalableTargetCommand extends $Command<RegisterScalableTargetCommandInput, RegisterScalableTargetCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
95
102
  readonly input: RegisterScalableTargetCommandInput;
96
103
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
104
+ /**
105
+ * @public
106
+ */
97
107
  constructor(input: RegisterScalableTargetCommandInput);
98
108
  /**
99
109
  * @internal
100
110
  */
101
111
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterScalableTargetCommandInput, RegisterScalableTargetCommandOutput>;
112
+ /**
113
+ * @internal
114
+ */
102
115
  private serialize;
116
+ /**
117
+ * @internal
118
+ */
103
119
  private deserialize;
104
120
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds or edits tags on an Application Auto Scaling scalable target.</p>
18
23
  * <p>Each tag consists of a tag key and a tag value, which are both case-sensitive strings.
19
24
  * To add a tag, specify a new tag key and a tag value. To edit a tag, specify an existing tag
@@ -36,6 +41,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
36
41
  * const response = await client.send(command);
37
42
  * ```
38
43
  *
44
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
45
+ * @returns {@link TagResourceCommandOutput}
39
46
  * @see {@link TagResourceCommandInput} for command's `input` shape.
40
47
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
41
48
  * @see {@link ApplicationAutoScalingClientResolvedConfig | config} for ApplicationAutoScalingClient's `config` shape.
@@ -69,11 +76,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
69
76
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
70
77
  readonly input: TagResourceCommandInput;
71
78
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
+ /**
80
+ * @public
81
+ */
72
82
  constructor(input: TagResourceCommandInput);
73
83
  /**
74
84
  * @internal
75
85
  */
76
86
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
87
+ /**
88
+ * @internal
89
+ */
77
90
  private serialize;
91
+ /**
92
+ * @internal
93
+ */
78
94
  private deserialize;
79
95
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes tags from an Application Auto Scaling scalable target. To delete a tag, specify the tag key and
18
23
  * the Application Auto Scaling scalable target.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
35
+ * @returns {@link UntagResourceCommandOutput}
29
36
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
30
37
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link ApplicationAutoScalingClientResolvedConfig | config} for ApplicationAutoScalingClient's `config` shape.
@@ -56,11 +63,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
56
63
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
57
64
  readonly input: UntagResourceCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: UntagResourceCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from ApplicationAutoScaling service.
4
6
  */
5
7
  export declare class ApplicationAutoScalingServiceException extends __ServiceException {