@aws-sdk/client-resource-groups 3.295.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 +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListGroupResourcesInput, ListGroupResourcesOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListGroupResourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListGroupResourcesCommandInput extends ListGroupResourcesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListGroupResourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListGroupResourcesCommandOutput extends ListGroupResourcesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of ARNs of the resources that are members of a specified resource
|
|
18
23
|
* group.</p>
|
|
19
24
|
* <p>
|
|
@@ -52,6 +57,8 @@ export interface ListGroupResourcesCommandOutput extends ListGroupResourcesOutpu
|
|
|
52
57
|
* const response = await client.send(command);
|
|
53
58
|
* ```
|
|
54
59
|
*
|
|
60
|
+
* @param ListGroupResourcesCommandInput - {@link ListGroupResourcesCommandInput}
|
|
61
|
+
* @returns {@link ListGroupResourcesCommandOutput}
|
|
55
62
|
* @see {@link ListGroupResourcesCommandInput} for command's `input` shape.
|
|
56
63
|
* @see {@link ListGroupResourcesCommandOutput} for command's `response` shape.
|
|
57
64
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -84,11 +91,20 @@ export interface ListGroupResourcesCommandOutput extends ListGroupResourcesOutpu
|
|
|
84
91
|
export declare class ListGroupResourcesCommand extends $Command<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
85
92
|
readonly input: ListGroupResourcesCommandInput;
|
|
86
93
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
87
97
|
constructor(input: ListGroupResourcesCommandInput);
|
|
88
98
|
/**
|
|
89
99
|
* @internal
|
|
90
100
|
*/
|
|
91
101
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput>;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
92
105
|
private serialize;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
93
109
|
private deserialize;
|
|
94
110
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListGroupsInput, ListGroupsOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListGroupsCommandInput extends ListGroupsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListGroupsCommandOutput extends ListGroupsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of existing Resource Groups in your account.</p>
|
|
18
23
|
* <p>
|
|
19
24
|
* <b>Minimum permissions</b>
|
|
@@ -36,6 +41,8 @@ export interface ListGroupsCommandOutput extends ListGroupsOutput, __MetadataBea
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param ListGroupsCommandInput - {@link ListGroupsCommandInput}
|
|
45
|
+
* @returns {@link ListGroupsCommandOutput}
|
|
39
46
|
* @see {@link ListGroupsCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link ListGroupsCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface ListGroupsCommandOutput extends ListGroupsOutput, __MetadataBea
|
|
|
61
68
|
export declare class ListGroupsCommand extends $Command<ListGroupsCommandInput, ListGroupsCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
62
69
|
readonly input: ListGroupsCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: ListGroupsCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGroupsCommandInput, ListGroupsCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { PutGroupConfigurationInput, PutGroupConfigurationOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutGroupConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutGroupConfigurationCommandInput extends PutGroupConfigurationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutGroupConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutGroupConfigurationCommandOutput extends PutGroupConfigurationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Attaches a service configuration to the specified group. This occurs asynchronously,
|
|
18
23
|
* and can take time to complete. You can use <a>GetGroupConfiguration</a> to
|
|
19
24
|
* check the status of the update.</p>
|
|
@@ -38,6 +43,8 @@ export interface PutGroupConfigurationCommandOutput extends PutGroupConfiguratio
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param PutGroupConfigurationCommandInput - {@link PutGroupConfigurationCommandInput}
|
|
47
|
+
* @returns {@link PutGroupConfigurationCommandOutput}
|
|
41
48
|
* @see {@link PutGroupConfigurationCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link PutGroupConfigurationCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface PutGroupConfigurationCommandOutput extends PutGroupConfiguratio
|
|
|
66
73
|
export declare class PutGroupConfigurationCommand extends $Command<PutGroupConfigurationCommandInput, PutGroupConfigurationCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
67
74
|
readonly input: PutGroupConfigurationCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: PutGroupConfigurationCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutGroupConfigurationCommandInput, PutGroupConfigurationCommandOutput>;
|
|
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 { SearchResourcesInput, SearchResourcesOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SearchResourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SearchResourcesCommandInput extends SearchResourcesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SearchResourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SearchResourcesCommandOutput extends SearchResourcesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of Amazon Web Services resource identifiers that matches the specified query. The
|
|
18
23
|
* query uses the same format as a resource query in a <a>CreateGroup</a> or
|
|
19
24
|
* <a>UpdateGroupQuery</a> operation.</p>
|
|
@@ -53,6 +58,8 @@ export interface SearchResourcesCommandOutput extends SearchResourcesOutput, __M
|
|
|
53
58
|
* const response = await client.send(command);
|
|
54
59
|
* ```
|
|
55
60
|
*
|
|
61
|
+
* @param SearchResourcesCommandInput - {@link SearchResourcesCommandInput}
|
|
62
|
+
* @returns {@link SearchResourcesCommandOutput}
|
|
56
63
|
* @see {@link SearchResourcesCommandInput} for command's `input` shape.
|
|
57
64
|
* @see {@link SearchResourcesCommandOutput} for command's `response` shape.
|
|
58
65
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -82,11 +89,20 @@ export interface SearchResourcesCommandOutput extends SearchResourcesOutput, __M
|
|
|
82
89
|
export declare class SearchResourcesCommand extends $Command<SearchResourcesCommandInput, SearchResourcesCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
83
90
|
readonly input: SearchResourcesCommandInput;
|
|
84
91
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
85
95
|
constructor(input: SearchResourcesCommandInput);
|
|
86
96
|
/**
|
|
87
97
|
* @internal
|
|
88
98
|
*/
|
|
89
99
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchResourcesCommandInput, SearchResourcesCommandOutput>;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
90
103
|
private serialize;
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
91
107
|
private deserialize;
|
|
92
108
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { TagInput, TagOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagCommandInput extends TagInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagCommandOutput extends TagOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds tags to a resource group with the specified ARN. Existing tags on a resource
|
|
18
23
|
* group are not changed if they are not specified in the request parameters.</p>
|
|
19
24
|
* <important>
|
|
@@ -43,6 +48,8 @@ export interface TagCommandOutput extends TagOutput, __MetadataBearer {
|
|
|
43
48
|
* const response = await client.send(command);
|
|
44
49
|
* ```
|
|
45
50
|
*
|
|
51
|
+
* @param TagCommandInput - {@link TagCommandInput}
|
|
52
|
+
* @returns {@link TagCommandOutput}
|
|
46
53
|
* @see {@link TagCommandInput} for command's `input` shape.
|
|
47
54
|
* @see {@link TagCommandOutput} for command's `response` shape.
|
|
48
55
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -71,11 +78,20 @@ export interface TagCommandOutput extends TagOutput, __MetadataBearer {
|
|
|
71
78
|
export declare class TagCommand extends $Command<TagCommandInput, TagCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
72
79
|
readonly input: TagCommandInput;
|
|
73
80
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
74
84
|
constructor(input: TagCommandInput);
|
|
75
85
|
/**
|
|
76
86
|
* @internal
|
|
77
87
|
*/
|
|
78
88
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagCommandInput, TagCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
79
92
|
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
80
96
|
private deserialize;
|
|
81
97
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UngroupResourcesInput, UngroupResourcesOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UngroupResourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UngroupResourcesCommandInput extends UngroupResourcesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UngroupResourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UngroupResourcesCommandOutput extends UngroupResourcesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the specified resources from the specified group. This operation works only
|
|
18
23
|
* with static groups that you populated using the <a>GroupResources</a>
|
|
19
24
|
* operation. It doesn't work with any resource groups that are automatically populated by
|
|
@@ -39,6 +44,8 @@ export interface UngroupResourcesCommandOutput extends UngroupResourcesOutput, _
|
|
|
39
44
|
* const response = await client.send(command);
|
|
40
45
|
* ```
|
|
41
46
|
*
|
|
47
|
+
* @param UngroupResourcesCommandInput - {@link UngroupResourcesCommandInput}
|
|
48
|
+
* @returns {@link UngroupResourcesCommandOutput}
|
|
42
49
|
* @see {@link UngroupResourcesCommandInput} for command's `input` shape.
|
|
43
50
|
* @see {@link UngroupResourcesCommandOutput} for command's `response` shape.
|
|
44
51
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface UngroupResourcesCommandOutput extends UngroupResourcesOutput, _
|
|
|
67
74
|
export declare class UngroupResourcesCommand extends $Command<UngroupResourcesCommandInput, UngroupResourcesCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
68
75
|
readonly input: UngroupResourcesCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: UngroupResourcesCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UngroupResourcesCommandInput, UngroupResourcesCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UntagInput, UntagOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagCommandInput extends UntagInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagCommandOutput extends UntagOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes tags from a specified resource group.</p>
|
|
18
23
|
* <p>
|
|
19
24
|
* <b>Minimum permissions</b>
|
|
@@ -36,6 +41,8 @@ export interface UntagCommandOutput extends UntagOutput, __MetadataBearer {
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param UntagCommandInput - {@link UntagCommandInput}
|
|
45
|
+
* @returns {@link UntagCommandOutput}
|
|
39
46
|
* @see {@link UntagCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link UntagCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface UntagCommandOutput extends UntagOutput, __MetadataBearer {
|
|
|
64
71
|
export declare class UntagCommand extends $Command<UntagCommandInput, UntagCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
65
72
|
readonly input: UntagCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: UntagCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagCommandInput, UntagCommandOutput>;
|
|
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 { UpdateAccountSettingsInput, UpdateAccountSettingsOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateAccountSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateAccountSettingsCommandInput extends UpdateAccountSettingsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateAccountSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSettingsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Turns on or turns off optional features in Resource Groups.</p>
|
|
18
23
|
* <p>The preceding example shows that the request to turn on group lifecycle events is
|
|
19
24
|
* <code>IN_PROGRESS</code>. You can call the <a>GetAccountSettings</a>
|
|
@@ -29,6 +34,8 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param UpdateAccountSettingsCommandInput - {@link UpdateAccountSettingsCommandInput}
|
|
38
|
+
* @returns {@link UpdateAccountSettingsCommandOutput}
|
|
32
39
|
* @see {@link UpdateAccountSettingsCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link UpdateAccountSettingsCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting
|
|
|
54
61
|
export declare class UpdateAccountSettingsCommand extends $Command<UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
55
62
|
readonly input: UpdateAccountSettingsCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: UpdateAccountSettingsCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateGroupInput, UpdateGroupOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateGroupCommandInput extends UpdateGroupInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateGroupCommandOutput extends UpdateGroupOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the description for an existing group. You cannot update the name of a
|
|
18
23
|
* resource group.</p>
|
|
19
24
|
* <p>
|
|
@@ -37,6 +42,8 @@ export interface UpdateGroupCommandOutput extends UpdateGroupOutput, __MetadataB
|
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
45
|
+
* @param UpdateGroupCommandInput - {@link UpdateGroupCommandInput}
|
|
46
|
+
* @returns {@link UpdateGroupCommandOutput}
|
|
40
47
|
* @see {@link UpdateGroupCommandInput} for command's `input` shape.
|
|
41
48
|
* @see {@link UpdateGroupCommandOutput} for command's `response` shape.
|
|
42
49
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface UpdateGroupCommandOutput extends UpdateGroupOutput, __MetadataB
|
|
|
65
72
|
export declare class UpdateGroupCommand extends $Command<UpdateGroupCommandInput, UpdateGroupCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
66
73
|
readonly input: UpdateGroupCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: UpdateGroupCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateGroupCommandInput, UpdateGroupCommandOutput>;
|
|
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 { UpdateGroupQueryInput, UpdateGroupQueryOutput } from "../models/models_0";
|
|
5
5
|
import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateGroupQueryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateGroupQueryCommandInput extends UpdateGroupQueryInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateGroupQueryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateGroupQueryCommandOutput extends UpdateGroupQueryOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the resource query of a group. For more information about resource queries,
|
|
18
23
|
* 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>
|
|
19
24
|
* <p>
|
|
@@ -37,6 +42,8 @@ export interface UpdateGroupQueryCommandOutput extends UpdateGroupQueryOutput, _
|
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
45
|
+
* @param UpdateGroupQueryCommandInput - {@link UpdateGroupQueryCommandInput}
|
|
46
|
+
* @returns {@link UpdateGroupQueryCommandOutput}
|
|
40
47
|
* @see {@link UpdateGroupQueryCommandInput} for command's `input` shape.
|
|
41
48
|
* @see {@link UpdateGroupQueryCommandOutput} for command's `response` shape.
|
|
42
49
|
* @see {@link ResourceGroupsClientResolvedConfig | config} for ResourceGroupsClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface UpdateGroupQueryCommandOutput extends UpdateGroupQueryOutput, _
|
|
|
65
72
|
export declare class UpdateGroupQueryCommand extends $Command<UpdateGroupQueryCommandInput, UpdateGroupQueryCommandOutput, ResourceGroupsClientResolvedConfig> {
|
|
66
73
|
readonly input: UpdateGroupQueryCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: UpdateGroupQueryCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateGroupQueryCommandInput, UpdateGroupQueryCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -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 ResourceGroups service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class ResourceGroupsServiceException extends __ServiceException {
|