@aws-sdk/client-application-auto-scaling 3.296.0 → 3.298.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 (52) hide show
  1. package/dist-cjs/commands/DeleteScalingPolicyCommand.js +2 -3
  2. package/dist-cjs/commands/DeleteScheduledActionCommand.js +2 -3
  3. package/dist-cjs/commands/DeregisterScalableTargetCommand.js +2 -3
  4. package/dist-cjs/commands/DescribeScalableTargetsCommand.js +2 -3
  5. package/dist-cjs/commands/DescribeScalingActivitiesCommand.js +2 -3
  6. package/dist-cjs/commands/DescribeScalingPoliciesCommand.js +2 -3
  7. package/dist-cjs/commands/DescribeScheduledActionsCommand.js +2 -3
  8. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  9. package/dist-cjs/commands/PutScalingPolicyCommand.js +2 -3
  10. package/dist-cjs/commands/PutScheduledActionCommand.js +2 -3
  11. package/dist-cjs/commands/RegisterScalableTargetCommand.js +2 -3
  12. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  13. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  14. package/dist-cjs/models/models_0.js +1 -178
  15. package/dist-es/commands/DeleteScalingPolicyCommand.js +2 -3
  16. package/dist-es/commands/DeleteScheduledActionCommand.js +2 -3
  17. package/dist-es/commands/DeregisterScalableTargetCommand.js +2 -3
  18. package/dist-es/commands/DescribeScalableTargetsCommand.js +2 -3
  19. package/dist-es/commands/DescribeScalingActivitiesCommand.js +2 -3
  20. package/dist-es/commands/DescribeScalingPoliciesCommand.js +2 -3
  21. package/dist-es/commands/DescribeScheduledActionsCommand.js +2 -3
  22. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  23. package/dist-es/commands/PutScalingPolicyCommand.js +2 -3
  24. package/dist-es/commands/PutScheduledActionCommand.js +2 -3
  25. package/dist-es/commands/RegisterScalableTargetCommand.js +2 -3
  26. package/dist-es/commands/TagResourceCommand.js +2 -3
  27. package/dist-es/commands/UntagResourceCommand.js +2 -3
  28. package/dist-es/models/models_0.js +0 -132
  29. package/dist-types/ApplicationAutoScaling.d.ts +14 -0
  30. package/dist-types/ApplicationAutoScalingClient.d.ts +24 -4
  31. package/dist-types/commands/DeleteScalingPolicyCommand.d.ts +16 -0
  32. package/dist-types/commands/DeleteScheduledActionCommand.d.ts +16 -0
  33. package/dist-types/commands/DeregisterScalableTargetCommand.d.ts +16 -0
  34. package/dist-types/commands/DescribeScalableTargetsCommand.d.ts +16 -0
  35. package/dist-types/commands/DescribeScalingActivitiesCommand.d.ts +16 -0
  36. package/dist-types/commands/DescribeScalingPoliciesCommand.d.ts +16 -0
  37. package/dist-types/commands/DescribeScheduledActionsCommand.d.ts +16 -0
  38. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  39. package/dist-types/commands/PutScalingPolicyCommand.d.ts +16 -0
  40. package/dist-types/commands/PutScheduledActionCommand.d.ts +16 -0
  41. package/dist-types/commands/RegisterScalableTargetCommand.d.ts +16 -0
  42. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  43. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  44. package/dist-types/models/ApplicationAutoScalingServiceException.d.ts +2 -0
  45. package/dist-types/models/models_0.d.ts +129 -176
  46. package/dist-types/pagination/DescribeScalableTargetsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/DescribeScalingActivitiesPaginator.d.ts +3 -0
  48. package/dist-types/pagination/DescribeScalingPoliciesPaginator.d.ts +3 -0
  49. package/dist-types/pagination/DescribeScheduledActionsPaginator.d.ts +3 -0
  50. package/dist-types/pagination/Interfaces.d.ts +3 -0
  51. package/dist-types/ts3.4/models/models_0.d.ts +0 -130
  52. package/package.json +4 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
5
5
  import { DescribeScalingPoliciesRequest, DescribeScalingPoliciesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeScalingPoliciesCommand}.
8
10
  */
9
11
  export interface DescribeScalingPoliciesCommandInput extends DescribeScalingPoliciesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeScalingPoliciesCommand}.
13
17
  */
14
18
  export interface DescribeScalingPoliciesCommandOutput extends DescribeScalingPoliciesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes the Application Auto Scaling scaling policies for the specified service namespace.</p>
18
23
  * <p>You can filter the results using <code>ResourceId</code>,
19
24
  * <code>ScalableDimension</code>, and <code>PolicyNames</code>.</p>
@@ -28,6 +33,8 @@ export interface DescribeScalingPoliciesCommandOutput extends DescribeScalingPol
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param DescribeScalingPoliciesCommandInput - {@link DescribeScalingPoliciesCommandInput}
37
+ * @returns {@link DescribeScalingPoliciesCommandOutput}
31
38
  * @see {@link DescribeScalingPoliciesCommandInput} for command's `input` shape.
32
39
  * @see {@link DescribeScalingPoliciesCommandOutput} for command's `response` shape.
33
40
  * @see {@link ApplicationAutoScalingClientResolvedConfig | config} for ApplicationAutoScalingClient's `config` shape.
@@ -100,11 +107,20 @@ export interface DescribeScalingPoliciesCommandOutput extends DescribeScalingPol
100
107
  export declare class DescribeScalingPoliciesCommand extends $Command<DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
101
108
  readonly input: DescribeScalingPoliciesCommandInput;
102
109
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
110
+ /**
111
+ * @public
112
+ */
103
113
  constructor(input: DescribeScalingPoliciesCommandInput);
104
114
  /**
105
115
  * @internal
106
116
  */
107
117
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScalingPoliciesCommandInput, DescribeScalingPoliciesCommandOutput>;
118
+ /**
119
+ * @internal
120
+ */
108
121
  private serialize;
122
+ /**
123
+ * @internal
124
+ */
109
125
  private deserialize;
110
126
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
5
5
  import { DescribeScheduledActionsRequest, DescribeScheduledActionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeScheduledActionsCommand}.
8
10
  */
9
11
  export interface DescribeScheduledActionsCommandInput extends DescribeScheduledActionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeScheduledActionsCommand}.
13
17
  */
14
18
  export interface DescribeScheduledActionsCommandOutput extends DescribeScheduledActionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes the Application Auto Scaling scheduled actions for the specified service namespace.</p>
18
23
  * <p>You can filter the results using the <code>ResourceId</code>,
19
24
  * <code>ScalableDimension</code>, and <code>ScheduledActionNames</code> parameters.</p>
@@ -29,6 +34,8 @@ export interface DescribeScheduledActionsCommandOutput extends DescribeScheduled
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param DescribeScheduledActionsCommandInput - {@link DescribeScheduledActionsCommandInput}
38
+ * @returns {@link DescribeScheduledActionsCommandOutput}
32
39
  * @see {@link DescribeScheduledActionsCommandInput} for command's `input` shape.
33
40
  * @see {@link DescribeScheduledActionsCommandOutput} for command's `response` shape.
34
41
  * @see {@link ApplicationAutoScalingClientResolvedConfig | config} for ApplicationAutoScalingClient's `config` shape.
@@ -95,11 +102,20 @@ export interface DescribeScheduledActionsCommandOutput extends DescribeScheduled
95
102
  export declare class DescribeScheduledActionsCommand extends $Command<DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
96
103
  readonly input: DescribeScheduledActionsCommandInput;
97
104
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
105
+ /**
106
+ * @public
107
+ */
98
108
  constructor(input: DescribeScheduledActionsCommandInput);
99
109
  /**
100
110
  * @internal
101
111
  */
102
112
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeScheduledActionsCommandInput, DescribeScheduledActionsCommandOutput>;
113
+ /**
114
+ * @internal
115
+ */
103
116
  private serialize;
117
+ /**
118
+ * @internal
119
+ */
104
120
  private deserialize;
105
121
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns all the tags on the specified Application Auto Scaling scalable target.</p>
18
23
  * <p>For general information about tags, including the format and syntax, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services
19
24
  * resources</a> in the <i>Amazon Web Services General Reference</i>.</p>
@@ -27,6 +32,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
36
+ * @returns {@link ListTagsForResourceCommandOutput}
30
37
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
31
38
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
32
39
  * @see {@link ApplicationAutoScalingClientResolvedConfig | config} for ApplicationAutoScalingClient's `config` shape.
@@ -57,11 +64,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
57
64
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
58
65
  readonly input: ListTagsForResourceCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: ListTagsForResourceCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationAutoScalingClient";
5
5
  import { PutScalingPolicyRequest, PutScalingPolicyResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutScalingPolicyCommand}.
8
10
  */
9
11
  export interface PutScalingPolicyCommandInput extends PutScalingPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutScalingPolicyCommand}.
13
17
  */
14
18
  export interface PutScalingPolicyCommandOutput extends PutScalingPolicyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates or updates a scaling policy 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 scaling policy applies to the scalable target identified by those three
@@ -49,6 +54,8 @@ export interface PutScalingPolicyCommandOutput extends PutScalingPolicyResponse,
49
54
  * const response = await client.send(command);
50
55
  * ```
51
56
  *
57
+ * @param PutScalingPolicyCommandInput - {@link PutScalingPolicyCommandInput}
58
+ * @returns {@link PutScalingPolicyCommandOutput}
52
59
  * @see {@link PutScalingPolicyCommandInput} for command's `input` shape.
53
60
  * @see {@link PutScalingPolicyCommandOutput} for command's `response` shape.
54
61
  * @see {@link ApplicationAutoScalingClientResolvedConfig | config} for ApplicationAutoScalingClient's `config` shape.
@@ -123,11 +130,20 @@ export interface PutScalingPolicyCommandOutput extends PutScalingPolicyResponse,
123
130
  export declare class PutScalingPolicyCommand extends $Command<PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput, ApplicationAutoScalingClientResolvedConfig> {
124
131
  readonly input: PutScalingPolicyCommandInput;
125
132
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
133
+ /**
134
+ * @public
135
+ */
126
136
  constructor(input: PutScalingPolicyCommandInput);
127
137
  /**
128
138
  * @internal
129
139
  */
130
140
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationAutoScalingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutScalingPolicyCommandInput, PutScalingPolicyCommandOutput>;
141
+ /**
142
+ * @internal
143
+ */
131
144
  private serialize;
145
+ /**
146
+ * @internal
147
+ */
132
148
  private deserialize;
133
149
  }
@@ -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 {