@aws-sdk/client-resource-groups 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.
- package/dist-types/ResourceGroups.d.ts +19 -0
- package/dist-types/ResourceGroupsClient.d.ts +24 -4
- package/dist-types/commands/CreateGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +16 -0
- package/dist-types/commands/GetGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetGroupConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetGroupQueryCommand.d.ts +16 -0
- package/dist-types/commands/GetTagsCommand.d.ts +16 -0
- package/dist-types/commands/GroupResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListGroupResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListGroupsCommand.d.ts +16 -0
- package/dist-types/commands/PutGroupConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/SearchResourcesCommand.d.ts +16 -0
- package/dist-types/commands/TagCommand.d.ts +16 -0
- package/dist-types/commands/UngroupResourcesCommand.d.ts +16 -0
- package/dist-types/commands/UntagCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateGroupQueryCommand.d.ts +16 -0
- package/dist-types/models/ResourceGroupsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +163 -11
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListGroupResourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchResourcesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -19,6 +19,7 @@ import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/Up
|
|
|
19
19
|
import { UpdateGroupQueryCommandInput, UpdateGroupQueryCommandOutput } from "./commands/UpdateGroupQueryCommand";
|
|
20
20
|
import { ResourceGroupsClient } from "./ResourceGroupsClient";
|
|
21
21
|
/**
|
|
22
|
+
* @public
|
|
22
23
|
* <p>Resource Groups lets you organize Amazon Web Services resources such as Amazon Elastic Compute Cloud instances, Amazon Relational Database Service
|
|
23
24
|
* databases, and Amazon Simple Storage Service buckets into groups using criteria that you define as tags. A
|
|
24
25
|
* resource group is a collection of resources that match the resource types specified in a
|
|
@@ -56,6 +57,7 @@ import { ResourceGroupsClient } from "./ResourceGroupsClient";
|
|
|
56
57
|
*/
|
|
57
58
|
export declare class ResourceGroups extends ResourceGroupsClient {
|
|
58
59
|
/**
|
|
60
|
+
* @public
|
|
59
61
|
* <p>Creates a resource group with the specified name and description. You can optionally
|
|
60
62
|
* include either a resource query or a service configuration. For more information about
|
|
61
63
|
* constructing a resource query, see <a href="https://docs.aws.amazon.com/ARG/latest/userguide/getting_started-query.html">Build queries and groups in
|
|
@@ -77,6 +79,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
77
79
|
createGroup(args: CreateGroupCommandInput, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
|
|
78
80
|
createGroup(args: CreateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
|
|
79
81
|
/**
|
|
82
|
+
* @public
|
|
80
83
|
* <p>Deletes the specified resource group. Deleting a resource group does not delete any
|
|
81
84
|
* resources that are members of the group; it only deletes the group structure.</p>
|
|
82
85
|
* <p>
|
|
@@ -95,12 +98,14 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
95
98
|
deleteGroup(args: DeleteGroupCommandInput, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
96
99
|
deleteGroup(args: DeleteGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
97
100
|
/**
|
|
101
|
+
* @public
|
|
98
102
|
* <p>Retrieves the current status of optional features in Resource Groups.</p>
|
|
99
103
|
*/
|
|
100
104
|
getAccountSettings(args: GetAccountSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountSettingsCommandOutput>;
|
|
101
105
|
getAccountSettings(args: GetAccountSettingsCommandInput, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
|
|
102
106
|
getAccountSettings(args: GetAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
|
|
103
107
|
/**
|
|
108
|
+
* @public
|
|
104
109
|
* <p>Returns information about a specified resource group.</p>
|
|
105
110
|
* <p>
|
|
106
111
|
* <b>Minimum permissions</b>
|
|
@@ -118,6 +123,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
118
123
|
getGroup(args: GetGroupCommandInput, cb: (err: any, data?: GetGroupCommandOutput) => void): void;
|
|
119
124
|
getGroup(args: GetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupCommandOutput) => void): void;
|
|
120
125
|
/**
|
|
126
|
+
* @public
|
|
121
127
|
* <p>Retrieves the service configuration associated with the specified resource group. For
|
|
122
128
|
* details about the service configuration syntax, see <a href="https://docs.aws.amazon.com/ARG/latest/APIReference/about-slg.html">Service configurations for Resource Groups</a>.</p>
|
|
123
129
|
* <p>
|
|
@@ -136,6 +142,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
136
142
|
getGroupConfiguration(args: GetGroupConfigurationCommandInput, cb: (err: any, data?: GetGroupConfigurationCommandOutput) => void): void;
|
|
137
143
|
getGroupConfiguration(args: GetGroupConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupConfigurationCommandOutput) => void): void;
|
|
138
144
|
/**
|
|
145
|
+
* @public
|
|
139
146
|
* <p>Retrieves the resource query associated with the specified resource group. For more
|
|
140
147
|
* information about resource queries, see <a href="https://docs.aws.amazon.com/ARG/latest/userguide/gettingstarted-query.html#gettingstarted-query-cli-tag">Create
|
|
141
148
|
* a tag-based group in Resource Groups</a>.</p>
|
|
@@ -155,6 +162,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
155
162
|
getGroupQuery(args: GetGroupQueryCommandInput, cb: (err: any, data?: GetGroupQueryCommandOutput) => void): void;
|
|
156
163
|
getGroupQuery(args: GetGroupQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupQueryCommandOutput) => void): void;
|
|
157
164
|
/**
|
|
165
|
+
* @public
|
|
158
166
|
* <p>Returns a list of tags that are associated with a resource group, specified by an
|
|
159
167
|
* ARN.</p>
|
|
160
168
|
* <p>
|
|
@@ -173,6 +181,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
173
181
|
getTags(args: GetTagsCommandInput, cb: (err: any, data?: GetTagsCommandOutput) => void): void;
|
|
174
182
|
getTags(args: GetTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTagsCommandOutput) => void): void;
|
|
175
183
|
/**
|
|
184
|
+
* @public
|
|
176
185
|
* <p>Adds the specified resources to the specified group.</p>
|
|
177
186
|
* <important>
|
|
178
187
|
* <p>You can use this operation with only resource groups that are configured with the
|
|
@@ -208,6 +217,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
208
217
|
groupResources(args: GroupResourcesCommandInput, cb: (err: any, data?: GroupResourcesCommandOutput) => void): void;
|
|
209
218
|
groupResources(args: GroupResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GroupResourcesCommandOutput) => void): void;
|
|
210
219
|
/**
|
|
220
|
+
* @public
|
|
211
221
|
* <p>Returns a list of ARNs of the resources that are members of a specified resource
|
|
212
222
|
* group.</p>
|
|
213
223
|
* <p>
|
|
@@ -241,6 +251,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
241
251
|
listGroupResources(args: ListGroupResourcesCommandInput, cb: (err: any, data?: ListGroupResourcesCommandOutput) => void): void;
|
|
242
252
|
listGroupResources(args: ListGroupResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupResourcesCommandOutput) => void): void;
|
|
243
253
|
/**
|
|
254
|
+
* @public
|
|
244
255
|
* <p>Returns a list of existing Resource Groups in your account.</p>
|
|
245
256
|
* <p>
|
|
246
257
|
* <b>Minimum permissions</b>
|
|
@@ -258,6 +269,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
258
269
|
listGroups(args: ListGroupsCommandInput, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
259
270
|
listGroups(args: ListGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
260
271
|
/**
|
|
272
|
+
* @public
|
|
261
273
|
* <p>Attaches a service configuration to the specified group. This occurs asynchronously,
|
|
262
274
|
* and can take time to complete. You can use <a>GetGroupConfiguration</a> to
|
|
263
275
|
* check the status of the update.</p>
|
|
@@ -277,6 +289,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
277
289
|
putGroupConfiguration(args: PutGroupConfigurationCommandInput, cb: (err: any, data?: PutGroupConfigurationCommandOutput) => void): void;
|
|
278
290
|
putGroupConfiguration(args: PutGroupConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutGroupConfigurationCommandOutput) => void): void;
|
|
279
291
|
/**
|
|
292
|
+
* @public
|
|
280
293
|
* <p>Returns a list of Amazon Web Services resource identifiers that matches the specified query. The
|
|
281
294
|
* query uses the same format as a resource query in a <a>CreateGroup</a> or
|
|
282
295
|
* <a>UpdateGroupQuery</a> operation.</p>
|
|
@@ -311,6 +324,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
311
324
|
searchResources(args: SearchResourcesCommandInput, cb: (err: any, data?: SearchResourcesCommandOutput) => void): void;
|
|
312
325
|
searchResources(args: SearchResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchResourcesCommandOutput) => void): void;
|
|
313
326
|
/**
|
|
327
|
+
* @public
|
|
314
328
|
* <p>Adds tags to a resource group with the specified ARN. Existing tags on a resource
|
|
315
329
|
* group are not changed if they are not specified in the request parameters.</p>
|
|
316
330
|
* <important>
|
|
@@ -335,6 +349,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
335
349
|
tag(args: TagCommandInput, cb: (err: any, data?: TagCommandOutput) => void): void;
|
|
336
350
|
tag(args: TagCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagCommandOutput) => void): void;
|
|
337
351
|
/**
|
|
352
|
+
* @public
|
|
338
353
|
* <p>Removes the specified resources from the specified group. This operation works only
|
|
339
354
|
* with static groups that you populated using the <a>GroupResources</a>
|
|
340
355
|
* operation. It doesn't work with any resource groups that are automatically populated by
|
|
@@ -355,6 +370,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
355
370
|
ungroupResources(args: UngroupResourcesCommandInput, cb: (err: any, data?: UngroupResourcesCommandOutput) => void): void;
|
|
356
371
|
ungroupResources(args: UngroupResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UngroupResourcesCommandOutput) => void): void;
|
|
357
372
|
/**
|
|
373
|
+
* @public
|
|
358
374
|
* <p>Deletes tags from a specified resource group.</p>
|
|
359
375
|
* <p>
|
|
360
376
|
* <b>Minimum permissions</b>
|
|
@@ -372,6 +388,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
372
388
|
untag(args: UntagCommandInput, cb: (err: any, data?: UntagCommandOutput) => void): void;
|
|
373
389
|
untag(args: UntagCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagCommandOutput) => void): void;
|
|
374
390
|
/**
|
|
391
|
+
* @public
|
|
375
392
|
* <p>Turns on or turns off optional features in Resource Groups.</p>
|
|
376
393
|
* <p>The preceding example shows that the request to turn on group lifecycle events is
|
|
377
394
|
* <code>IN_PROGRESS</code>. You can call the <a>GetAccountSettings</a>
|
|
@@ -382,6 +399,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
382
399
|
updateAccountSettings(args: UpdateAccountSettingsCommandInput, cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void): void;
|
|
383
400
|
updateAccountSettings(args: UpdateAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void): void;
|
|
384
401
|
/**
|
|
402
|
+
* @public
|
|
385
403
|
* <p>Updates the description for an existing group. You cannot update the name of a
|
|
386
404
|
* resource group.</p>
|
|
387
405
|
* <p>
|
|
@@ -400,6 +418,7 @@ export declare class ResourceGroups extends ResourceGroupsClient {
|
|
|
400
418
|
updateGroup(args: UpdateGroupCommandInput, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
|
|
401
419
|
updateGroup(args: UpdateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
|
|
402
420
|
/**
|
|
421
|
+
* @public
|
|
403
422
|
* <p>Updates the resource query of a group. For more information about resource queries,
|
|
404
423
|
* see <a href="https://docs.aws.amazon.com/ARG/latest/userguide/gettingstarted-query.html#gettingstarted-query-cli-tag">Create a tag-based group in Resource Groups</a>.</p>
|
|
405
424
|
* <p>
|
|
@@ -26,15 +26,24 @@ import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput }
|
|
|
26
26
|
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
|
|
27
27
|
import { UpdateGroupQueryCommandInput, UpdateGroupQueryCommandOutput } from "./commands/UpdateGroupQueryCommand";
|
|
28
28
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
29
32
|
export type ServiceInputTypes = CreateGroupCommandInput | DeleteGroupCommandInput | GetAccountSettingsCommandInput | GetGroupCommandInput | GetGroupConfigurationCommandInput | GetGroupQueryCommandInput | GetTagsCommandInput | GroupResourcesCommandInput | ListGroupResourcesCommandInput | ListGroupsCommandInput | PutGroupConfigurationCommandInput | SearchResourcesCommandInput | TagCommandInput | UngroupResourcesCommandInput | UntagCommandInput | UpdateAccountSettingsCommandInput | UpdateGroupCommandInput | UpdateGroupQueryCommandInput;
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
30
36
|
export type ServiceOutputTypes = CreateGroupCommandOutput | DeleteGroupCommandOutput | GetAccountSettingsCommandOutput | GetGroupCommandOutput | GetGroupConfigurationCommandOutput | GetGroupQueryCommandOutput | GetTagsCommandOutput | GroupResourcesCommandOutput | ListGroupResourcesCommandOutput | ListGroupsCommandOutput | PutGroupConfigurationCommandOutput | SearchResourcesCommandOutput | TagCommandOutput | UngroupResourcesCommandOutput | UntagCommandOutput | UpdateAccountSettingsCommandOutput | UpdateGroupCommandOutput | UpdateGroupQueryCommandOutput;
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
31
40
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
32
41
|
/**
|
|
33
42
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
34
43
|
*/
|
|
35
44
|
requestHandler?: __HttpHandler;
|
|
36
45
|
/**
|
|
37
|
-
* A constructor for a class implementing the {@link
|
|
46
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
38
47
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
39
48
|
* @internal
|
|
40
49
|
*/
|
|
@@ -124,23 +133,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
124
133
|
*/
|
|
125
134
|
logger?: __Logger;
|
|
126
135
|
/**
|
|
127
|
-
* The {@link
|
|
136
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
128
137
|
*/
|
|
129
138
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
130
139
|
}
|
|
140
|
+
/**
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
131
143
|
type ResourceGroupsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
132
144
|
/**
|
|
133
|
-
*
|
|
145
|
+
* @public
|
|
146
|
+
*
|
|
147
|
+
* The configuration interface of ResourceGroupsClient class constructor that set the region, credentials and other options.
|
|
134
148
|
*/
|
|
135
149
|
export interface ResourceGroupsClientConfig extends ResourceGroupsClientConfigType {
|
|
136
150
|
}
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
137
154
|
type ResourceGroupsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
138
155
|
/**
|
|
139
|
-
*
|
|
156
|
+
* @public
|
|
157
|
+
*
|
|
158
|
+
* The resolved configuration interface of ResourceGroupsClient class. This is resolved and normalized from the {@link ResourceGroupsClientConfig | constructor configuration interface}.
|
|
140
159
|
*/
|
|
141
160
|
export interface ResourceGroupsClientResolvedConfig extends ResourceGroupsClientResolvedConfigType {
|
|
142
161
|
}
|
|
143
162
|
/**
|
|
163
|
+
* @public
|
|
144
164
|
* <p>Resource Groups lets you organize Amazon Web Services resources such as Amazon Elastic Compute Cloud instances, Amazon Relational Database Service
|
|
145
165
|
* databases, and Amazon Simple Storage Service buckets into groups using criteria that you define as tags. A
|
|
146
166
|
* resource group is a collection of resources that match the resource types specified in a
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateGroupInput, CreateGroupOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateGroupCommandInput extends CreateGroupInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateGroupCommandOutput extends CreateGroupOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a resource group with the specified name and description. You can optionally
|
|
18
23
|
* include either a resource query or a service configuration. For more information about
|
|
19
24
|
* constructing a resource query, see <a href="https://docs.aws.amazon.com/ARG/latest/userguide/getting_started-query.html">Build queries and groups in
|
|
@@ -40,6 +45,8 @@ export interface CreateGroupCommandOutput extends CreateGroupOutput, __MetadataB
|
|
|
40
45
|
* const response = await client.send(command);
|
|
41
46
|
* ```
|
|
42
47
|
*
|
|
48
|
+
* @param CreateGroupCommandInput - {@link CreateGroupCommandInput}
|
|
49
|
+
* @returns {@link CreateGroupCommandOutput}
|
|
43
50
|
* @see {@link CreateGroupCommandInput} for command's `input` shape.
|
|
44
51
|
* @see {@link CreateGroupCommandOutput} for command's `response` shape.
|
|
45
52
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface CreateGroupCommandOutput extends CreateGroupOutput, __MetadataB
|
|
|
65
72
|
export declare class CreateGroupCommand extends $Command<CreateGroupCommandInput, CreateGroupCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
66
73
|
readonly input: CreateGroupCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: CreateGroupCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGroupCommandInput, CreateGroupCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteGroupInput, DeleteGroupOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteGroupCommandInput extends DeleteGroupInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteGroupCommandOutput extends DeleteGroupOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified resource group. Deleting a resource group does not delete any
|
|
18
23
|
* resources that are members of the group; it only deletes the group structure.</p>
|
|
19
24
|
* <p>
|
|
@@ -37,6 +42,8 @@ export interface DeleteGroupCommandOutput extends DeleteGroupOutput, __MetadataB
|
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
45
|
+
* @param DeleteGroupCommandInput - {@link DeleteGroupCommandInput}
|
|
46
|
+
* @returns {@link DeleteGroupCommandOutput}
|
|
40
47
|
* @see {@link DeleteGroupCommandInput} for command's `input` shape.
|
|
41
48
|
* @see {@link DeleteGroupCommandOutput} for command's `response` shape.
|
|
42
49
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface DeleteGroupCommandOutput extends DeleteGroupOutput, __MetadataB
|
|
|
65
72
|
export declare class DeleteGroupCommand extends $Command<DeleteGroupCommandInput, DeleteGroupCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
66
73
|
readonly input: DeleteGroupCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: DeleteGroupCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteGroupCommandInput, DeleteGroupCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetAccountSettingsOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAccountSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAccountSettingsCommandInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAccountSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAccountSettingsCommandOutput extends GetAccountSettingsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the current status of optional features in Resource Groups.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsOutpu
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetAccountSettingsCommandInput - {@link GetAccountSettingsCommandInput}
|
|
34
|
+
* @returns {@link GetAccountSettingsCommandOutput}
|
|
28
35
|
* @see {@link GetAccountSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetAccountSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsOutpu
|
|
|
50
57
|
export declare class GetAccountSettingsCommand extends $Command<GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
51
58
|
readonly input: GetAccountSettingsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetAccountSettingsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetGroupInput, GetGroupOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetGroupCommandInput extends GetGroupInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetGroupCommandOutput extends GetGroupOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a specified resource group.</p>
|
|
18
23
|
* <p>
|
|
19
24
|
* <b>Minimum permissions</b>
|
|
@@ -36,6 +41,8 @@ export interface GetGroupCommandOutput extends GetGroupOutput, __MetadataBearer
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param GetGroupCommandInput - {@link GetGroupCommandInput}
|
|
45
|
+
* @returns {@link GetGroupCommandOutput}
|
|
39
46
|
* @see {@link GetGroupCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link GetGroupCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface GetGroupCommandOutput extends GetGroupOutput, __MetadataBearer
|
|
|
64
71
|
export declare class GetGroupCommand extends $Command<GetGroupCommandInput, GetGroupCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
65
72
|
readonly input: GetGroupCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: GetGroupCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGroupCommandInput, GetGroupCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetGroupConfigurationInput, GetGroupConfigurationOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetGroupConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetGroupConfigurationCommandInput extends GetGroupConfigurationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetGroupConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetGroupConfigurationCommandOutput extends GetGroupConfigurationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the service configuration associated with the specified resource group. For
|
|
18
23
|
* details about the service configuration syntax, see <a href="https://docs.aws.amazon.com/ARG/latest/APIReference/about-slg.html">Service configurations for Resource Groups</a>.</p>
|
|
19
24
|
* <p>
|
|
@@ -37,6 +42,8 @@ export interface GetGroupConfigurationCommandOutput extends GetGroupConfiguratio
|
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
45
|
+
* @param GetGroupConfigurationCommandInput - {@link GetGroupConfigurationCommandInput}
|
|
46
|
+
* @returns {@link GetGroupConfigurationCommandOutput}
|
|
40
47
|
* @see {@link GetGroupConfigurationCommandInput} for command's `input` shape.
|
|
41
48
|
* @see {@link GetGroupConfigurationCommandOutput} for command's `response` shape.
|
|
42
49
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface GetGroupConfigurationCommandOutput extends GetGroupConfiguratio
|
|
|
65
72
|
export declare class GetGroupConfigurationCommand extends $Command<GetGroupConfigurationCommandInput, GetGroupConfigurationCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
66
73
|
readonly input: GetGroupConfigurationCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: GetGroupConfigurationCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGroupConfigurationCommandInput, GetGroupConfigurationCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetGroupQueryInput, GetGroupQueryOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetGroupQueryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetGroupQueryCommandInput extends GetGroupQueryInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetGroupQueryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetGroupQueryCommandOutput extends GetGroupQueryOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the resource query associated with the specified resource group. For more
|
|
18
23
|
* information about resource queries, see <a href="https://docs.aws.amazon.com/ARG/latest/userguide/gettingstarted-query.html#gettingstarted-query-cli-tag">Create
|
|
19
24
|
* a tag-based group in Resource Groups</a>.</p>
|
|
@@ -38,6 +43,8 @@ export interface GetGroupQueryCommandOutput extends GetGroupQueryOutput, __Metad
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param GetGroupQueryCommandInput - {@link GetGroupQueryCommandInput}
|
|
47
|
+
* @returns {@link GetGroupQueryCommandOutput}
|
|
41
48
|
* @see {@link GetGroupQueryCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link GetGroupQueryCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface GetGroupQueryCommandOutput extends GetGroupQueryOutput, __Metad
|
|
|
66
73
|
export declare class GetGroupQueryCommand extends $Command<GetGroupQueryCommandInput, GetGroupQueryCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
67
74
|
readonly input: GetGroupQueryCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: GetGroupQueryCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGroupQueryCommandInput, GetGroupQueryCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetTagsInput, GetTagsOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetTagsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetTagsCommandInput extends GetTagsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetTagsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetTagsCommandOutput extends GetTagsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of tags that are associated with a resource group, specified by an
|
|
18
23
|
* ARN.</p>
|
|
19
24
|
* <p>
|
|
@@ -37,6 +42,8 @@ export interface GetTagsCommandOutput extends GetTagsOutput, __MetadataBearer {
|
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
45
|
+
* @param GetTagsCommandInput - {@link GetTagsCommandInput}
|
|
46
|
+
* @returns {@link GetTagsCommandOutput}
|
|
40
47
|
* @see {@link GetTagsCommandInput} for command's `input` shape.
|
|
41
48
|
* @see {@link GetTagsCommandOutput} for command's `response` shape.
|
|
42
49
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface GetTagsCommandOutput extends GetTagsOutput, __MetadataBearer {
|
|
|
65
72
|
export declare class GetTagsCommand extends $Command<GetTagsCommandInput, GetTagsCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
66
73
|
readonly input: GetTagsCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: GetTagsCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTagsCommandInput, GetTagsCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GroupResourcesInput, GroupResourcesOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GroupResourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GroupResourcesCommandInput extends GroupResourcesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GroupResourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GroupResourcesCommandOutput extends GroupResourcesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds the specified resources to the specified group.</p>
|
|
18
23
|
* <important>
|
|
19
24
|
* <p>You can use this operation with only resource groups that are configured with the
|
|
@@ -54,6 +59,8 @@ export interface GroupResourcesCommandOutput extends GroupResourcesOutput, __Met
|
|
|
54
59
|
* const response = await client.send(command);
|
|
55
60
|
* ```
|
|
56
61
|
*
|
|
62
|
+
* @param GroupResourcesCommandInput - {@link GroupResourcesCommandInput}
|
|
63
|
+
* @returns {@link GroupResourcesCommandOutput}
|
|
57
64
|
* @see {@link GroupResourcesCommandInput} for command's `input` shape.
|
|
58
65
|
* @see {@link GroupResourcesCommandOutput} for command's `response` shape.
|
|
59
66
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -82,11 +89,20 @@ export interface GroupResourcesCommandOutput extends GroupResourcesOutput, __Met
|
|
|
82
89
|
export declare class GroupResourcesCommand extends $Command<GroupResourcesCommandInput, GroupResourcesCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
83
90
|
readonly input: GroupResourcesCommandInput;
|
|
84
91
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
85
95
|
constructor(input: GroupResourcesCommandInput);
|
|
86
96
|
/**
|
|
87
97
|
* @internal
|
|
88
98
|
*/
|
|
89
99
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GroupResourcesCommandInput, GroupResourcesCommandOutput>;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
90
103
|
private serialize;
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
91
107
|
private deserialize;
|
|
92
108
|
}
|