@aws-sdk/client-resource-groups 3.529.1 → 3.535.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 +11 -1
- package/dist-types/ResourceGroupsClient.d.ts +1 -1
- package/dist-types/commands/CreateGroupCommand.d.ts +2 -1
- package/dist-types/commands/DeleteGroupCommand.d.ts +2 -1
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +2 -1
- package/dist-types/commands/GetGroupCommand.d.ts +2 -1
- package/dist-types/commands/GetGroupConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/GetGroupQueryCommand.d.ts +2 -1
- package/dist-types/commands/GetTagsCommand.d.ts +2 -1
- package/dist-types/commands/GroupResourcesCommand.d.ts +2 -1
- package/dist-types/commands/ListGroupResourcesCommand.d.ts +2 -1
- package/dist-types/commands/ListGroupsCommand.d.ts +2 -1
- package/dist-types/commands/PutGroupConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/SearchResourcesCommand.d.ts +2 -1
- package/dist-types/commands/TagCommand.d.ts +2 -1
- package/dist-types/commands/UngroupResourcesCommand.d.ts +2 -1
- package/dist-types/commands/UntagCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateGroupCommand.d.ts +2 -1
- package/dist-types/commands/UpdateGroupQueryCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +133 -133
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/ResourceGroups.d.ts +10 -0
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetGroupConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetGroupQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetTagsCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/GroupResourcesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutGroupConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SearchResourcesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/UngroupResourcesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateGroupQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
|
@@ -28,30 +28,35 @@ export interface ResourceGroups {
|
|
|
28
28
|
/**
|
|
29
29
|
* @see {@link DeleteGroupCommand}
|
|
30
30
|
*/
|
|
31
|
+
deleteGroup(): Promise<DeleteGroupCommandOutput>;
|
|
31
32
|
deleteGroup(args: DeleteGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupCommandOutput>;
|
|
32
33
|
deleteGroup(args: DeleteGroupCommandInput, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
33
34
|
deleteGroup(args: DeleteGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
34
35
|
/**
|
|
35
36
|
* @see {@link GetAccountSettingsCommand}
|
|
36
37
|
*/
|
|
38
|
+
getAccountSettings(): Promise<GetAccountSettingsCommandOutput>;
|
|
37
39
|
getAccountSettings(args: GetAccountSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountSettingsCommandOutput>;
|
|
38
40
|
getAccountSettings(args: GetAccountSettingsCommandInput, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
|
|
39
41
|
getAccountSettings(args: GetAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
|
|
40
42
|
/**
|
|
41
43
|
* @see {@link GetGroupCommand}
|
|
42
44
|
*/
|
|
45
|
+
getGroup(): Promise<GetGroupCommandOutput>;
|
|
43
46
|
getGroup(args: GetGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupCommandOutput>;
|
|
44
47
|
getGroup(args: GetGroupCommandInput, cb: (err: any, data?: GetGroupCommandOutput) => void): void;
|
|
45
48
|
getGroup(args: GetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupCommandOutput) => void): void;
|
|
46
49
|
/**
|
|
47
50
|
* @see {@link GetGroupConfigurationCommand}
|
|
48
51
|
*/
|
|
52
|
+
getGroupConfiguration(): Promise<GetGroupConfigurationCommandOutput>;
|
|
49
53
|
getGroupConfiguration(args: GetGroupConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupConfigurationCommandOutput>;
|
|
50
54
|
getGroupConfiguration(args: GetGroupConfigurationCommandInput, cb: (err: any, data?: GetGroupConfigurationCommandOutput) => void): void;
|
|
51
55
|
getGroupConfiguration(args: GetGroupConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupConfigurationCommandOutput) => void): void;
|
|
52
56
|
/**
|
|
53
57
|
* @see {@link GetGroupQueryCommand}
|
|
54
58
|
*/
|
|
59
|
+
getGroupQuery(): Promise<GetGroupQueryCommandOutput>;
|
|
55
60
|
getGroupQuery(args: GetGroupQueryCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupQueryCommandOutput>;
|
|
56
61
|
getGroupQuery(args: GetGroupQueryCommandInput, cb: (err: any, data?: GetGroupQueryCommandOutput) => void): void;
|
|
57
62
|
getGroupQuery(args: GetGroupQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupQueryCommandOutput) => void): void;
|
|
@@ -70,18 +75,21 @@ export interface ResourceGroups {
|
|
|
70
75
|
/**
|
|
71
76
|
* @see {@link ListGroupResourcesCommand}
|
|
72
77
|
*/
|
|
78
|
+
listGroupResources(): Promise<ListGroupResourcesCommandOutput>;
|
|
73
79
|
listGroupResources(args: ListGroupResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupResourcesCommandOutput>;
|
|
74
80
|
listGroupResources(args: ListGroupResourcesCommandInput, cb: (err: any, data?: ListGroupResourcesCommandOutput) => void): void;
|
|
75
81
|
listGroupResources(args: ListGroupResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupResourcesCommandOutput) => void): void;
|
|
76
82
|
/**
|
|
77
83
|
* @see {@link ListGroupsCommand}
|
|
78
84
|
*/
|
|
85
|
+
listGroups(): Promise<ListGroupsCommandOutput>;
|
|
79
86
|
listGroups(args: ListGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupsCommandOutput>;
|
|
80
87
|
listGroups(args: ListGroupsCommandInput, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
81
88
|
listGroups(args: ListGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
82
89
|
/**
|
|
83
90
|
* @see {@link PutGroupConfigurationCommand}
|
|
84
91
|
*/
|
|
92
|
+
putGroupConfiguration(): Promise<PutGroupConfigurationCommandOutput>;
|
|
85
93
|
putGroupConfiguration(args: PutGroupConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutGroupConfigurationCommandOutput>;
|
|
86
94
|
putGroupConfiguration(args: PutGroupConfigurationCommandInput, cb: (err: any, data?: PutGroupConfigurationCommandOutput) => void): void;
|
|
87
95
|
putGroupConfiguration(args: PutGroupConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutGroupConfigurationCommandOutput) => void): void;
|
|
@@ -112,12 +120,14 @@ export interface ResourceGroups {
|
|
|
112
120
|
/**
|
|
113
121
|
* @see {@link UpdateAccountSettingsCommand}
|
|
114
122
|
*/
|
|
123
|
+
updateAccountSettings(): Promise<UpdateAccountSettingsCommandOutput>;
|
|
115
124
|
updateAccountSettings(args: UpdateAccountSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAccountSettingsCommandOutput>;
|
|
116
125
|
updateAccountSettings(args: UpdateAccountSettingsCommandInput, cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void): void;
|
|
117
126
|
updateAccountSettings(args: UpdateAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void): void;
|
|
118
127
|
/**
|
|
119
128
|
* @see {@link UpdateGroupCommand}
|
|
120
129
|
*/
|
|
130
|
+
updateGroup(): Promise<UpdateGroupCommandOutput>;
|
|
121
131
|
updateGroup(args: UpdateGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGroupCommandOutput>;
|
|
122
132
|
updateGroup(args: UpdateGroupCommandInput, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
|
|
123
133
|
updateGroup(args: UpdateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
|
|
@@ -129,7 +139,6 @@ export interface ResourceGroups {
|
|
|
129
139
|
updateGroupQuery(args: UpdateGroupQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGroupQueryCommandOutput) => void): void;
|
|
130
140
|
}
|
|
131
141
|
/**
|
|
132
|
-
* @public
|
|
133
142
|
* <p>Resource Groups lets you organize Amazon Web Services resources such as Amazon Elastic Compute Cloud instances, Amazon Relational Database Service
|
|
134
143
|
* databases, and Amazon Simple Storage Service buckets into groups using criteria that you define as tags. A
|
|
135
144
|
* resource group is a collection of resources that match the resource types specified in a
|
|
@@ -164,6 +173,7 @@ export interface ResourceGroups {
|
|
|
164
173
|
* <p>Searching Amazon Web Services resources based on a resource query</p>
|
|
165
174
|
* </li>
|
|
166
175
|
* </ul>
|
|
176
|
+
* @public
|
|
167
177
|
*/
|
|
168
178
|
export declare class ResourceGroups extends ResourceGroupsClient implements ResourceGroups {
|
|
169
179
|
}
|
|
@@ -169,7 +169,6 @@ export type ResourceGroupsClientResolvedConfigType = __SmithyResolvedConfigurati
|
|
|
169
169
|
export interface ResourceGroupsClientResolvedConfig extends ResourceGroupsClientResolvedConfigType {
|
|
170
170
|
}
|
|
171
171
|
/**
|
|
172
|
-
* @public
|
|
173
172
|
* <p>Resource Groups lets you organize Amazon Web Services resources such as Amazon Elastic Compute Cloud instances, Amazon Relational Database Service
|
|
174
173
|
* databases, and Amazon Simple Storage Service buckets into groups using criteria that you define as tags. A
|
|
175
174
|
* resource group is a collection of resources that match the resource types specified in a
|
|
@@ -204,6 +203,7 @@ export interface ResourceGroupsClientResolvedConfig extends ResourceGroupsClient
|
|
|
204
203
|
* <p>Searching Amazon Web Services resources based on a resource query</p>
|
|
205
204
|
* </li>
|
|
206
205
|
* </ul>
|
|
206
|
+
* @public
|
|
207
207
|
*/
|
|
208
208
|
export declare class ResourceGroupsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ResourceGroupsClientResolvedConfig> {
|
|
209
209
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateGroupCommandOutput extends CreateGroupOutput, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateGroupCommand_base: {
|
|
24
24
|
new (input: CreateGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a resource group with the specified name and description. You can optionally
|
|
30
30
|
* include either a resource query or a service configuration. For more information about
|
|
31
31
|
* constructing a resource query, see <a href="https://docs.aws.amazon.com/ARG/latest/userguide/getting_started-query.html">Build queries and groups in
|
|
@@ -146,6 +146,7 @@ declare const CreateGroupCommand_base: {
|
|
|
146
146
|
* @throws {@link ResourceGroupsServiceException}
|
|
147
147
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
148
148
|
*
|
|
149
|
+
* @public
|
|
149
150
|
*/
|
|
150
151
|
export declare class CreateGroupCommand extends CreateGroupCommand_base {
|
|
151
152
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteGroupCommandOutput extends DeleteGroupOutput, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteGroupCommand_base: {
|
|
24
24
|
new (input: DeleteGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DeleteGroupCommandInput]): import("@smithy/smithy-client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified resource group. Deleting a resource group does not delete any
|
|
30
30
|
* resources that are members of the group; it only deletes the group structure.</p>
|
|
31
31
|
* <p>
|
|
@@ -89,6 +89,7 @@ declare const DeleteGroupCommand_base: {
|
|
|
89
89
|
* @throws {@link ResourceGroupsServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class DeleteGroupCommand extends DeleteGroupCommand_base {
|
|
94
95
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsOutpu
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetAccountSettingsCommand_base: {
|
|
24
24
|
new (input: GetAccountSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetAccountSettingsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves the current status of optional features in Resource Groups.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -71,6 +71,7 @@ declare const GetAccountSettingsCommand_base: {
|
|
|
71
71
|
* @throws {@link ResourceGroupsServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class GetAccountSettingsCommand extends GetAccountSettingsCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetGroupCommandOutput extends GetGroupOutput, __MetadataBearer
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetGroupCommand_base: {
|
|
24
24
|
new (input: GetGroupCommandInput): import("@smithy/smithy-client").CommandImpl<GetGroupCommandInput, GetGroupCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetGroupCommandInput]): import("@smithy/smithy-client").CommandImpl<GetGroupCommandInput, GetGroupCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about a specified resource group.</p>
|
|
30
30
|
* <p>
|
|
31
31
|
* <b>Minimum permissions</b>
|
|
@@ -88,6 +88,7 @@ declare const GetGroupCommand_base: {
|
|
|
88
88
|
* @throws {@link ResourceGroupsServiceException}
|
|
89
89
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
90
90
|
*
|
|
91
|
+
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class GetGroupCommand extends GetGroupCommand_base {
|
|
93
94
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetGroupConfigurationCommandOutput extends GetGroupConfiguratio
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetGroupConfigurationCommand_base: {
|
|
24
24
|
new (input: GetGroupConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetGroupConfigurationCommandInput, GetGroupConfigurationCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetGroupConfigurationCommandInput]): import("@smithy/smithy-client").CommandImpl<GetGroupConfigurationCommandInput, GetGroupConfigurationCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves the service configuration associated with the specified resource group. For
|
|
30
30
|
* 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>
|
|
31
31
|
* <p>
|
|
@@ -113,6 +113,7 @@ declare const GetGroupConfigurationCommand_base: {
|
|
|
113
113
|
* @throws {@link ResourceGroupsServiceException}
|
|
114
114
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
115
115
|
*
|
|
116
|
+
* @public
|
|
116
117
|
*/
|
|
117
118
|
export declare class GetGroupConfigurationCommand extends GetGroupConfigurationCommand_base {
|
|
118
119
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetGroupQueryCommandOutput extends GetGroupQueryOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetGroupQueryCommand_base: {
|
|
24
24
|
new (input: GetGroupQueryCommandInput): import("@smithy/smithy-client").CommandImpl<GetGroupQueryCommandInput, GetGroupQueryCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetGroupQueryCommandInput]): import("@smithy/smithy-client").CommandImpl<GetGroupQueryCommandInput, GetGroupQueryCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves the resource query associated with the specified resource group. For more
|
|
30
30
|
* information about resource queries, see <a href="https://docs.aws.amazon.com/ARG/latest/userguide/gettingstarted-query.html#gettingstarted-query-cli-tag">Create
|
|
31
31
|
* a tag-based group in Resource Groups</a>.</p>
|
|
@@ -92,6 +92,7 @@ declare const GetGroupQueryCommand_base: {
|
|
|
92
92
|
* @throws {@link ResourceGroupsServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class GetGroupQueryCommand extends GetGroupQueryCommand_base {
|
|
97
98
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetTagsCommandOutput extends GetTagsOutput, __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetTagsCommand_base: {
|
|
24
24
|
new (input: GetTagsCommandInput): import("@smithy/smithy-client").CommandImpl<GetTagsCommandInput, GetTagsCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetTagsCommandInput): import("@smithy/smithy-client").CommandImpl<GetTagsCommandInput, GetTagsCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of tags that are associated with a resource group, specified by an
|
|
30
30
|
* ARN.</p>
|
|
31
31
|
* <p>
|
|
@@ -87,6 +87,7 @@ declare const GetTagsCommand_base: {
|
|
|
87
87
|
* @throws {@link ResourceGroupsServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class GetTagsCommand extends GetTagsCommand_base {
|
|
92
93
|
}
|
|
@@ -22,10 +22,10 @@ export interface GroupResourcesCommandOutput extends GroupResourcesOutput, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const GroupResourcesCommand_base: {
|
|
24
24
|
new (input: GroupResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<GroupResourcesCommandInput, GroupResourcesCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GroupResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<GroupResourcesCommandInput, GroupResourcesCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds the specified resources to the specified group.</p>
|
|
30
30
|
* <important>
|
|
31
31
|
* <p>You can use this operation with only resource groups that are configured with the
|
|
@@ -118,6 +118,7 @@ declare const GroupResourcesCommand_base: {
|
|
|
118
118
|
* @throws {@link ResourceGroupsServiceException}
|
|
119
119
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
120
120
|
*
|
|
121
|
+
* @public
|
|
121
122
|
*/
|
|
122
123
|
export declare class GroupResourcesCommand extends GroupResourcesCommand_base {
|
|
123
124
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListGroupResourcesCommandOutput extends ListGroupResourcesOutpu
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListGroupResourcesCommand_base: {
|
|
24
24
|
new (input: ListGroupResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListGroupResourcesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of ARNs of the resources that are members of a specified resource
|
|
30
30
|
* group.</p>
|
|
31
31
|
* <p>
|
|
@@ -137,6 +137,7 @@ declare const ListGroupResourcesCommand_base: {
|
|
|
137
137
|
* @throws {@link ResourceGroupsServiceException}
|
|
138
138
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
139
139
|
*
|
|
140
|
+
* @public
|
|
140
141
|
*/
|
|
141
142
|
export declare class ListGroupResourcesCommand extends ListGroupResourcesCommand_base {
|
|
142
143
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListGroupsCommandOutput extends ListGroupsOutput, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListGroupsCommand_base: {
|
|
24
24
|
new (input: ListGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListGroupsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of existing Resource Groups in your account.</p>
|
|
30
30
|
* <p>
|
|
31
31
|
* <b>Minimum permissions</b>
|
|
@@ -102,6 +102,7 @@ declare const ListGroupsCommand_base: {
|
|
|
102
102
|
* @throws {@link ResourceGroupsServiceException}
|
|
103
103
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
104
104
|
*
|
|
105
|
+
* @public
|
|
105
106
|
*/
|
|
106
107
|
export declare class ListGroupsCommand extends ListGroupsCommand_base {
|
|
107
108
|
}
|
|
@@ -22,10 +22,10 @@ export interface PutGroupConfigurationCommandOutput extends PutGroupConfiguratio
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutGroupConfigurationCommand_base: {
|
|
24
24
|
new (input: PutGroupConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<PutGroupConfigurationCommandInput, PutGroupConfigurationCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [PutGroupConfigurationCommandInput]): import("@smithy/smithy-client").CommandImpl<PutGroupConfigurationCommandInput, PutGroupConfigurationCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Attaches a service configuration to the specified group. This occurs asynchronously,
|
|
30
30
|
* and can take time to complete. You can use <a>GetGroupConfiguration</a> to
|
|
31
31
|
* check the status of the update.</p>
|
|
@@ -96,6 +96,7 @@ declare const PutGroupConfigurationCommand_base: {
|
|
|
96
96
|
* @throws {@link ResourceGroupsServiceException}
|
|
97
97
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
98
98
|
*
|
|
99
|
+
* @public
|
|
99
100
|
*/
|
|
100
101
|
export declare class PutGroupConfigurationCommand extends PutGroupConfigurationCommand_base {
|
|
101
102
|
}
|
|
@@ -22,10 +22,10 @@ export interface SearchResourcesCommandOutput extends SearchResourcesOutput, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const SearchResourcesCommand_base: {
|
|
24
24
|
new (input: SearchResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<SearchResourcesCommandInput, SearchResourcesCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SearchResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<SearchResourcesCommandInput, SearchResourcesCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of Amazon Web Services resource identifiers that matches the specified query. The
|
|
30
30
|
* query uses the same format as a resource query in a <a>CreateGroup</a> or
|
|
31
31
|
* <a>UpdateGroupQuery</a> operation.</p>
|
|
@@ -118,6 +118,7 @@ declare const SearchResourcesCommand_base: {
|
|
|
118
118
|
* @throws {@link ResourceGroupsServiceException}
|
|
119
119
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
120
120
|
*
|
|
121
|
+
* @public
|
|
121
122
|
*/
|
|
122
123
|
export declare class SearchResourcesCommand extends SearchResourcesCommand_base {
|
|
123
124
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagCommandOutput extends TagOutput, __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagCommand_base: {
|
|
24
24
|
new (input: TagCommandInput): import("@smithy/smithy-client").CommandImpl<TagCommandInput, TagCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagCommandInput): import("@smithy/smithy-client").CommandImpl<TagCommandInput, TagCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds tags to a resource group with the specified ARN. Existing tags on a resource
|
|
30
30
|
* group are not changed if they are not specified in the request parameters.</p>
|
|
31
31
|
* <important>
|
|
@@ -96,6 +96,7 @@ declare const TagCommand_base: {
|
|
|
96
96
|
* @throws {@link ResourceGroupsServiceException}
|
|
97
97
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
98
98
|
*
|
|
99
|
+
* @public
|
|
99
100
|
*/
|
|
100
101
|
export declare class TagCommand extends TagCommand_base {
|
|
101
102
|
}
|
|
@@ -22,10 +22,10 @@ export interface UngroupResourcesCommandOutput extends UngroupResourcesOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const UngroupResourcesCommand_base: {
|
|
24
24
|
new (input: UngroupResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<UngroupResourcesCommandInput, UngroupResourcesCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UngroupResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<UngroupResourcesCommandInput, UngroupResourcesCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes the specified resources from the specified group. This operation works only
|
|
30
30
|
* with static groups that you populated using the <a>GroupResources</a>
|
|
31
31
|
* operation. It doesn't work with any resource groups that are automatically populated by
|
|
@@ -103,6 +103,7 @@ declare const UngroupResourcesCommand_base: {
|
|
|
103
103
|
* @throws {@link ResourceGroupsServiceException}
|
|
104
104
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
105
105
|
*
|
|
106
|
+
* @public
|
|
106
107
|
*/
|
|
107
108
|
export declare class UngroupResourcesCommand extends UngroupResourcesCommand_base {
|
|
108
109
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagCommandOutput extends UntagOutput, __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagCommand_base: {
|
|
24
24
|
new (input: UntagCommandInput): import("@smithy/smithy-client").CommandImpl<UntagCommandInput, UntagCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagCommandInput): import("@smithy/smithy-client").CommandImpl<UntagCommandInput, UntagCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes tags from a specified resource group.</p>
|
|
30
30
|
* <p>
|
|
31
31
|
* <b>Minimum permissions</b>
|
|
@@ -89,6 +89,7 @@ declare const UntagCommand_base: {
|
|
|
89
89
|
* @throws {@link ResourceGroupsServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class UntagCommand extends UntagCommand_base {
|
|
94
95
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateAccountSettingsCommand_base: {
|
|
24
24
|
new (input: UpdateAccountSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [UpdateAccountSettingsCommandInput]): import("@smithy/smithy-client").CommandImpl<UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Turns on or turns off optional features in Resource Groups.</p>
|
|
30
30
|
* <p>The preceding example shows that the request to turn on group lifecycle events is
|
|
31
31
|
* <code>IN_PROGRESS</code>. You can call the <a>GetAccountSettings</a>
|
|
@@ -77,6 +77,7 @@ declare const UpdateAccountSettingsCommand_base: {
|
|
|
77
77
|
* @throws {@link ResourceGroupsServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class UpdateAccountSettingsCommand extends UpdateAccountSettingsCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateGroupCommandOutput extends UpdateGroupOutput, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateGroupCommand_base: {
|
|
24
24
|
new (input: UpdateGroupCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateGroupCommandInput, UpdateGroupCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [UpdateGroupCommandInput]): import("@smithy/smithy-client").CommandImpl<UpdateGroupCommandInput, UpdateGroupCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the description for an existing group. You cannot update the name of a
|
|
30
30
|
* resource group.</p>
|
|
31
31
|
* <p>
|
|
@@ -90,6 +90,7 @@ declare const UpdateGroupCommand_base: {
|
|
|
90
90
|
* @throws {@link ResourceGroupsServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
92
92
|
*
|
|
93
|
+
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class UpdateGroupCommand extends UpdateGroupCommand_base {
|
|
95
96
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateGroupQueryCommandOutput extends UpdateGroupQueryOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateGroupQueryCommand_base: {
|
|
24
24
|
new (input: UpdateGroupQueryCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateGroupQueryCommandInput, UpdateGroupQueryCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateGroupQueryCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateGroupQueryCommandInput, UpdateGroupQueryCommandOutput, ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the resource query of a group. For more information about resource queries,
|
|
30
30
|
* 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>
|
|
31
31
|
* <p>
|
|
@@ -95,6 +95,7 @@ declare const UpdateGroupQueryCommand_base: {
|
|
|
95
95
|
* @throws {@link ResourceGroupsServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from ResourceGroups service.</p>
|
|
97
97
|
*
|
|
98
|
+
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class UpdateGroupQueryCommand extends UpdateGroupQueryCommand_base {
|
|
100
101
|
}
|