@aws-sdk/client-resource-groups 3.325.0 → 3.326.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.
@@ -67,6 +67,51 @@ export interface CreateGroupCommandOutput extends CreateGroupOutput, __MetadataB
67
67
  * };
68
68
  * const command = new CreateGroupCommand(input);
69
69
  * const response = await client.send(command);
70
+ * // { // CreateGroupOutput
71
+ * // Group: { // Group
72
+ * // GroupArn: "STRING_VALUE", // required
73
+ * // Name: "STRING_VALUE", // required
74
+ * // Description: "STRING_VALUE",
75
+ * // },
76
+ * // ResourceQuery: { // ResourceQuery
77
+ * // Type: "TAG_FILTERS_1_0" || "CLOUDFORMATION_STACK_1_0", // required
78
+ * // Query: "STRING_VALUE", // required
79
+ * // },
80
+ * // Tags: { // Tags
81
+ * // "<keys>": "STRING_VALUE",
82
+ * // },
83
+ * // GroupConfiguration: { // GroupConfiguration
84
+ * // Configuration: [ // GroupConfigurationList
85
+ * // { // GroupConfigurationItem
86
+ * // Type: "STRING_VALUE", // required
87
+ * // Parameters: [ // GroupParameterList
88
+ * // { // GroupConfigurationParameter
89
+ * // Name: "STRING_VALUE", // required
90
+ * // Values: [ // GroupConfigurationParameterValueList
91
+ * // "STRING_VALUE",
92
+ * // ],
93
+ * // },
94
+ * // ],
95
+ * // },
96
+ * // ],
97
+ * // ProposedConfiguration: [
98
+ * // {
99
+ * // Type: "STRING_VALUE", // required
100
+ * // Parameters: [
101
+ * // {
102
+ * // Name: "STRING_VALUE", // required
103
+ * // Values: [
104
+ * // "STRING_VALUE",
105
+ * // ],
106
+ * // },
107
+ * // ],
108
+ * // },
109
+ * // ],
110
+ * // Status: "UPDATING" || "UPDATE_COMPLETE" || "UPDATE_FAILED",
111
+ * // FailureReason: "STRING_VALUE",
112
+ * // },
113
+ * // };
114
+ *
70
115
  * ```
71
116
  *
72
117
  * @param CreateGroupCommandInput - {@link CreateGroupCommandInput}
@@ -91,6 +136,8 @@ export interface CreateGroupCommandOutput extends CreateGroupOutput, __MetadataB
91
136
  * <p>You've exceeded throttling limits by making too many requests in a period of
92
137
  * time.</p>
93
138
  *
139
+ * @throws {@link ResourceGroupsServiceException}
140
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
94
141
  *
95
142
  */
96
143
  export declare class CreateGroupCommand extends $Command<CreateGroupCommandInput, CreateGroupCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -44,6 +44,14 @@ export interface DeleteGroupCommandOutput extends DeleteGroupOutput, __MetadataB
44
44
  * };
45
45
  * const command = new DeleteGroupCommand(input);
46
46
  * const response = await client.send(command);
47
+ * // { // DeleteGroupOutput
48
+ * // Group: { // Group
49
+ * // GroupArn: "STRING_VALUE", // required
50
+ * // Name: "STRING_VALUE", // required
51
+ * // Description: "STRING_VALUE",
52
+ * // },
53
+ * // };
54
+ *
47
55
  * ```
48
56
  *
49
57
  * @param DeleteGroupCommandInput - {@link DeleteGroupCommandInput}
@@ -71,6 +79,8 @@ export interface DeleteGroupCommandOutput extends DeleteGroupOutput, __MetadataB
71
79
  * <p>You've exceeded throttling limits by making too many requests in a period of
72
80
  * time.</p>
73
81
  *
82
+ * @throws {@link ResourceGroupsServiceException}
83
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
74
84
  *
75
85
  */
76
86
  export declare class DeleteGroupCommand extends $Command<DeleteGroupCommandInput, DeleteGroupCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -29,6 +29,14 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsOutpu
29
29
  * const input = {};
30
30
  * const command = new GetAccountSettingsCommand(input);
31
31
  * const response = await client.send(command);
32
+ * // { // GetAccountSettingsOutput
33
+ * // AccountSettings: { // AccountSettings
34
+ * // GroupLifecycleEventsDesiredStatus: "ACTIVE" || "INACTIVE",
35
+ * // GroupLifecycleEventsStatus: "ACTIVE" || "INACTIVE" || "IN_PROGRESS" || "ERROR",
36
+ * // GroupLifecycleEventsStatusMessage: "STRING_VALUE",
37
+ * // },
38
+ * // };
39
+ *
32
40
  * ```
33
41
  *
34
42
  * @param GetAccountSettingsCommandInput - {@link GetAccountSettingsCommandInput}
@@ -53,6 +61,8 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsOutpu
53
61
  * <p>You've exceeded throttling limits by making too many requests in a period of
54
62
  * time.</p>
55
63
  *
64
+ * @throws {@link ResourceGroupsServiceException}
65
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
56
66
  *
57
67
  */
58
68
  export declare class GetAccountSettingsCommand extends $Command<GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -43,6 +43,14 @@ export interface GetGroupCommandOutput extends GetGroupOutput, __MetadataBearer
43
43
  * };
44
44
  * const command = new GetGroupCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // GetGroupOutput
47
+ * // Group: { // Group
48
+ * // GroupArn: "STRING_VALUE", // required
49
+ * // Name: "STRING_VALUE", // required
50
+ * // Description: "STRING_VALUE",
51
+ * // },
52
+ * // };
53
+ *
46
54
  * ```
47
55
  *
48
56
  * @param GetGroupCommandInput - {@link GetGroupCommandInput}
@@ -70,6 +78,8 @@ export interface GetGroupCommandOutput extends GetGroupOutput, __MetadataBearer
70
78
  * <p>You've exceeded throttling limits by making too many requests in a period of
71
79
  * time.</p>
72
80
  *
81
+ * @throws {@link ResourceGroupsServiceException}
82
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
73
83
  *
74
84
  */
75
85
  export declare class GetGroupCommand extends $Command<GetGroupCommandInput, GetGroupCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -43,6 +43,39 @@ export interface GetGroupConfigurationCommandOutput extends GetGroupConfiguratio
43
43
  * };
44
44
  * const command = new GetGroupConfigurationCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // GetGroupConfigurationOutput
47
+ * // GroupConfiguration: { // GroupConfiguration
48
+ * // Configuration: [ // GroupConfigurationList
49
+ * // { // GroupConfigurationItem
50
+ * // Type: "STRING_VALUE", // required
51
+ * // Parameters: [ // GroupParameterList
52
+ * // { // GroupConfigurationParameter
53
+ * // Name: "STRING_VALUE", // required
54
+ * // Values: [ // GroupConfigurationParameterValueList
55
+ * // "STRING_VALUE",
56
+ * // ],
57
+ * // },
58
+ * // ],
59
+ * // },
60
+ * // ],
61
+ * // ProposedConfiguration: [
62
+ * // {
63
+ * // Type: "STRING_VALUE", // required
64
+ * // Parameters: [
65
+ * // {
66
+ * // Name: "STRING_VALUE", // required
67
+ * // Values: [
68
+ * // "STRING_VALUE",
69
+ * // ],
70
+ * // },
71
+ * // ],
72
+ * // },
73
+ * // ],
74
+ * // Status: "UPDATING" || "UPDATE_COMPLETE" || "UPDATE_FAILED",
75
+ * // FailureReason: "STRING_VALUE",
76
+ * // },
77
+ * // };
78
+ *
46
79
  * ```
47
80
  *
48
81
  * @param GetGroupConfigurationCommandInput - {@link GetGroupConfigurationCommandInput}
@@ -70,6 +103,8 @@ export interface GetGroupConfigurationCommandOutput extends GetGroupConfiguratio
70
103
  * <p>You've exceeded throttling limits by making too many requests in a period of
71
104
  * time.</p>
72
105
  *
106
+ * @throws {@link ResourceGroupsServiceException}
107
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
73
108
  *
74
109
  */
75
110
  export declare class GetGroupConfigurationCommand extends $Command<GetGroupConfigurationCommandInput, GetGroupConfigurationCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -45,6 +45,16 @@ export interface GetGroupQueryCommandOutput extends GetGroupQueryOutput, __Metad
45
45
  * };
46
46
  * const command = new GetGroupQueryCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // GetGroupQueryOutput
49
+ * // GroupQuery: { // GroupQuery
50
+ * // GroupName: "STRING_VALUE", // required
51
+ * // ResourceQuery: { // ResourceQuery
52
+ * // Type: "TAG_FILTERS_1_0" || "CLOUDFORMATION_STACK_1_0", // required
53
+ * // Query: "STRING_VALUE", // required
54
+ * // },
55
+ * // },
56
+ * // };
57
+ *
48
58
  * ```
49
59
  *
50
60
  * @param GetGroupQueryCommandInput - {@link GetGroupQueryCommandInput}
@@ -72,6 +82,8 @@ export interface GetGroupQueryCommandOutput extends GetGroupQueryOutput, __Metad
72
82
  * <p>You've exceeded throttling limits by making too many requests in a period of
73
83
  * time.</p>
74
84
  *
85
+ * @throws {@link ResourceGroupsServiceException}
86
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
75
87
  *
76
88
  */
77
89
  export declare class GetGroupQueryCommand extends $Command<GetGroupQueryCommandInput, GetGroupQueryCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -43,6 +43,13 @@ export interface GetTagsCommandOutput extends GetTagsOutput, __MetadataBearer {
43
43
  * };
44
44
  * const command = new GetTagsCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // GetTagsOutput
47
+ * // Arn: "STRING_VALUE",
48
+ * // Tags: { // Tags
49
+ * // "<keys>": "STRING_VALUE",
50
+ * // },
51
+ * // };
52
+ *
46
53
  * ```
47
54
  *
48
55
  * @param GetTagsCommandInput - {@link GetTagsCommandInput}
@@ -70,6 +77,8 @@ export interface GetTagsCommandOutput extends GetTagsOutput, __MetadataBearer {
70
77
  * <p>You've exceeded throttling limits by making too many requests in a period of
71
78
  * time.</p>
72
79
  *
80
+ * @throws {@link ResourceGroupsServiceException}
81
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
73
82
  *
74
83
  */
75
84
  export declare class GetTagsCommand extends $Command<GetTagsCommandInput, GetTagsCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -63,6 +63,24 @@ export interface GroupResourcesCommandOutput extends GroupResourcesOutput, __Met
63
63
  * };
64
64
  * const command = new GroupResourcesCommand(input);
65
65
  * const response = await client.send(command);
66
+ * // { // GroupResourcesOutput
67
+ * // Succeeded: [ // ResourceArnList
68
+ * // "STRING_VALUE",
69
+ * // ],
70
+ * // Failed: [ // FailedResourceList
71
+ * // { // FailedResource
72
+ * // ResourceArn: "STRING_VALUE",
73
+ * // ErrorMessage: "STRING_VALUE",
74
+ * // ErrorCode: "STRING_VALUE",
75
+ * // },
76
+ * // ],
77
+ * // Pending: [ // PendingResourceList
78
+ * // { // PendingResource
79
+ * // ResourceArn: "STRING_VALUE",
80
+ * // },
81
+ * // ],
82
+ * // };
83
+ *
66
84
  * ```
67
85
  *
68
86
  * @param GroupResourcesCommandInput - {@link GroupResourcesCommandInput}
@@ -90,6 +108,8 @@ export interface GroupResourcesCommandOutput extends GroupResourcesOutput, __Met
90
108
  * <p>You've exceeded throttling limits by making too many requests in a period of
91
109
  * time.</p>
92
110
  *
111
+ * @throws {@link ResourceGroupsServiceException}
112
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
93
113
  *
94
114
  */
95
115
  export declare class GroupResourcesCommand extends $Command<GroupResourcesCommandInput, GroupResourcesCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -69,6 +69,33 @@ export interface ListGroupResourcesCommandOutput extends ListGroupResourcesOutpu
69
69
  * };
70
70
  * const command = new ListGroupResourcesCommand(input);
71
71
  * const response = await client.send(command);
72
+ * // { // ListGroupResourcesOutput
73
+ * // Resources: [ // ListGroupResourcesItemList
74
+ * // { // ListGroupResourcesItem
75
+ * // Identifier: { // ResourceIdentifier
76
+ * // ResourceArn: "STRING_VALUE",
77
+ * // ResourceType: "STRING_VALUE",
78
+ * // },
79
+ * // Status: { // ResourceStatus
80
+ * // Name: "PENDING",
81
+ * // },
82
+ * // },
83
+ * // ],
84
+ * // ResourceIdentifiers: [ // ResourceIdentifierList
85
+ * // {
86
+ * // ResourceArn: "STRING_VALUE",
87
+ * // ResourceType: "STRING_VALUE",
88
+ * // },
89
+ * // ],
90
+ * // NextToken: "STRING_VALUE",
91
+ * // QueryErrors: [ // QueryErrorList
92
+ * // { // QueryError
93
+ * // ErrorCode: "CLOUDFORMATION_STACK_INACTIVE" || "CLOUDFORMATION_STACK_NOT_EXISTING" || "CLOUDFORMATION_STACK_UNASSUMABLE_ROLE",
94
+ * // Message: "STRING_VALUE",
95
+ * // },
96
+ * // ],
97
+ * // };
98
+ *
72
99
  * ```
73
100
  *
74
101
  * @param ListGroupResourcesCommandInput - {@link ListGroupResourcesCommandInput}
@@ -100,6 +127,8 @@ export interface ListGroupResourcesCommandOutput extends ListGroupResourcesOutpu
100
127
  * <p>The request was rejected because it doesn't have valid credentials for the target
101
128
  * resource.</p>
102
129
  *
130
+ * @throws {@link ResourceGroupsServiceException}
131
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
103
132
  *
104
133
  */
105
134
  export declare class ListGroupResourcesCommand extends $Command<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -51,6 +51,23 @@ export interface ListGroupsCommandOutput extends ListGroupsOutput, __MetadataBea
51
51
  * };
52
52
  * const command = new ListGroupsCommand(input);
53
53
  * const response = await client.send(command);
54
+ * // { // ListGroupsOutput
55
+ * // GroupIdentifiers: [ // GroupIdentifierList
56
+ * // { // GroupIdentifier
57
+ * // GroupName: "STRING_VALUE",
58
+ * // GroupArn: "STRING_VALUE",
59
+ * // },
60
+ * // ],
61
+ * // Groups: [ // GroupList
62
+ * // { // Group
63
+ * // GroupArn: "STRING_VALUE", // required
64
+ * // Name: "STRING_VALUE", // required
65
+ * // Description: "STRING_VALUE",
66
+ * // },
67
+ * // ],
68
+ * // NextToken: "STRING_VALUE",
69
+ * // };
70
+ *
54
71
  * ```
55
72
  *
56
73
  * @param ListGroupsCommandInput - {@link ListGroupsCommandInput}
@@ -75,6 +92,8 @@ export interface ListGroupsCommandOutput extends ListGroupsOutput, __MetadataBea
75
92
  * <p>You've exceeded throttling limits by making too many requests in a period of
76
93
  * time.</p>
77
94
  *
95
+ * @throws {@link ResourceGroupsServiceException}
96
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
78
97
  *
79
98
  */
80
99
  export declare class ListGroupsCommand extends $Command<ListGroupsCommandInput, ListGroupsCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -57,6 +57,8 @@ export interface PutGroupConfigurationCommandOutput extends PutGroupConfiguratio
57
57
  * };
58
58
  * const command = new PutGroupConfigurationCommand(input);
59
59
  * const response = await client.send(command);
60
+ * // {};
61
+ *
60
62
  * ```
61
63
  *
62
64
  * @param PutGroupConfigurationCommandInput - {@link PutGroupConfigurationCommandInput}
@@ -84,6 +86,8 @@ export interface PutGroupConfigurationCommandOutput extends PutGroupConfiguratio
84
86
  * <p>You've exceeded throttling limits by making too many requests in a period of
85
87
  * time.</p>
86
88
  *
89
+ * @throws {@link ResourceGroupsServiceException}
90
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
87
91
  *
88
92
  */
89
93
  export declare class PutGroupConfigurationCommand extends $Command<PutGroupConfigurationCommandInput, PutGroupConfigurationCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -64,6 +64,22 @@ export interface SearchResourcesCommandOutput extends SearchResourcesOutput, __M
64
64
  * };
65
65
  * const command = new SearchResourcesCommand(input);
66
66
  * const response = await client.send(command);
67
+ * // { // SearchResourcesOutput
68
+ * // ResourceIdentifiers: [ // ResourceIdentifierList
69
+ * // { // ResourceIdentifier
70
+ * // ResourceArn: "STRING_VALUE",
71
+ * // ResourceType: "STRING_VALUE",
72
+ * // },
73
+ * // ],
74
+ * // NextToken: "STRING_VALUE",
75
+ * // QueryErrors: [ // QueryErrorList
76
+ * // { // QueryError
77
+ * // ErrorCode: "CLOUDFORMATION_STACK_INACTIVE" || "CLOUDFORMATION_STACK_NOT_EXISTING" || "CLOUDFORMATION_STACK_UNASSUMABLE_ROLE",
78
+ * // Message: "STRING_VALUE",
79
+ * // },
80
+ * // ],
81
+ * // };
82
+ *
67
83
  * ```
68
84
  *
69
85
  * @param SearchResourcesCommandInput - {@link SearchResourcesCommandInput}
@@ -92,6 +108,8 @@ export interface SearchResourcesCommandOutput extends SearchResourcesOutput, __M
92
108
  * <p>The request was rejected because it doesn't have valid credentials for the target
93
109
  * resource.</p>
94
110
  *
111
+ * @throws {@link ResourceGroupsServiceException}
112
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
95
113
  *
96
114
  */
97
115
  export declare class SearchResourcesCommand extends $Command<SearchResourcesCommandInput, SearchResourcesCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -52,6 +52,13 @@ export interface TagCommandOutput extends TagOutput, __MetadataBearer {
52
52
  * };
53
53
  * const command = new TagCommand(input);
54
54
  * const response = await client.send(command);
55
+ * // { // TagOutput
56
+ * // Arn: "STRING_VALUE",
57
+ * // Tags: { // Tags
58
+ * // "<keys>": "STRING_VALUE",
59
+ * // },
60
+ * // };
61
+ *
55
62
  * ```
56
63
  *
57
64
  * @param TagCommandInput - {@link TagCommandInput}
@@ -79,6 +86,8 @@ export interface TagCommandOutput extends TagOutput, __MetadataBearer {
79
86
  * <p>You've exceeded throttling limits by making too many requests in a period of
80
87
  * time.</p>
81
88
  *
89
+ * @throws {@link ResourceGroupsServiceException}
90
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
82
91
  *
83
92
  */
84
93
  export declare class TagCommand extends $Command<TagCommandInput, TagCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -48,6 +48,24 @@ export interface UngroupResourcesCommandOutput extends UngroupResourcesOutput, _
48
48
  * };
49
49
  * const command = new UngroupResourcesCommand(input);
50
50
  * const response = await client.send(command);
51
+ * // { // UngroupResourcesOutput
52
+ * // Succeeded: [ // ResourceArnList
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // Failed: [ // FailedResourceList
56
+ * // { // FailedResource
57
+ * // ResourceArn: "STRING_VALUE",
58
+ * // ErrorMessage: "STRING_VALUE",
59
+ * // ErrorCode: "STRING_VALUE",
60
+ * // },
61
+ * // ],
62
+ * // Pending: [ // PendingResourceList
63
+ * // { // PendingResource
64
+ * // ResourceArn: "STRING_VALUE",
65
+ * // },
66
+ * // ],
67
+ * // };
68
+ *
51
69
  * ```
52
70
  *
53
71
  * @param UngroupResourcesCommandInput - {@link UngroupResourcesCommandInput}
@@ -75,6 +93,8 @@ export interface UngroupResourcesCommandOutput extends UngroupResourcesOutput, _
75
93
  * <p>You've exceeded throttling limits by making too many requests in a period of
76
94
  * time.</p>
77
95
  *
96
+ * @throws {@link ResourceGroupsServiceException}
97
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
78
98
  *
79
99
  */
80
100
  export declare class UngroupResourcesCommand extends $Command<UngroupResourcesCommandInput, UngroupResourcesCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -45,6 +45,13 @@ export interface UntagCommandOutput extends UntagOutput, __MetadataBearer {
45
45
  * };
46
46
  * const command = new UntagCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // UntagOutput
49
+ * // Arn: "STRING_VALUE",
50
+ * // Keys: [ // TagKeyList
51
+ * // "STRING_VALUE",
52
+ * // ],
53
+ * // };
54
+ *
48
55
  * ```
49
56
  *
50
57
  * @param UntagCommandInput - {@link UntagCommandInput}
@@ -72,6 +79,8 @@ export interface UntagCommandOutput extends UntagOutput, __MetadataBearer {
72
79
  * <p>You've exceeded throttling limits by making too many requests in a period of
73
80
  * time.</p>
74
81
  *
82
+ * @throws {@link ResourceGroupsServiceException}
83
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
75
84
  *
76
85
  */
77
86
  export declare class UntagCommand extends $Command<UntagCommandInput, UntagCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -35,6 +35,14 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting
35
35
  * };
36
36
  * const command = new UpdateAccountSettingsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // UpdateAccountSettingsOutput
39
+ * // AccountSettings: { // AccountSettings
40
+ * // GroupLifecycleEventsDesiredStatus: "ACTIVE" || "INACTIVE",
41
+ * // GroupLifecycleEventsStatus: "ACTIVE" || "INACTIVE" || "IN_PROGRESS" || "ERROR",
42
+ * // GroupLifecycleEventsStatusMessage: "STRING_VALUE",
43
+ * // },
44
+ * // };
45
+ *
38
46
  * ```
39
47
  *
40
48
  * @param UpdateAccountSettingsCommandInput - {@link UpdateAccountSettingsCommandInput}
@@ -59,6 +67,8 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting
59
67
  * <p>You've exceeded throttling limits by making too many requests in a period of
60
68
  * time.</p>
61
69
  *
70
+ * @throws {@link ResourceGroupsServiceException}
71
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
62
72
  *
63
73
  */
64
74
  export declare class UpdateAccountSettingsCommand extends $Command<UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -45,6 +45,14 @@ export interface UpdateGroupCommandOutput extends UpdateGroupOutput, __MetadataB
45
45
  * };
46
46
  * const command = new UpdateGroupCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // UpdateGroupOutput
49
+ * // Group: { // Group
50
+ * // GroupArn: "STRING_VALUE", // required
51
+ * // Name: "STRING_VALUE", // required
52
+ * // Description: "STRING_VALUE",
53
+ * // },
54
+ * // };
55
+ *
48
56
  * ```
49
57
  *
50
58
  * @param UpdateGroupCommandInput - {@link UpdateGroupCommandInput}
@@ -72,6 +80,8 @@ export interface UpdateGroupCommandOutput extends UpdateGroupOutput, __MetadataB
72
80
  * <p>You've exceeded throttling limits by making too many requests in a period of
73
81
  * time.</p>
74
82
  *
83
+ * @throws {@link ResourceGroupsServiceException}
84
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
75
85
  *
76
86
  */
77
87
  export declare class UpdateGroupCommand extends $Command<UpdateGroupCommandInput, UpdateGroupCommandOutput, ResourceGroupsClientResolvedConfig> {
@@ -48,6 +48,16 @@ export interface UpdateGroupQueryCommandOutput extends UpdateGroupQueryOutput, _
48
48
  * };
49
49
  * const command = new UpdateGroupQueryCommand(input);
50
50
  * const response = await client.send(command);
51
+ * // { // UpdateGroupQueryOutput
52
+ * // GroupQuery: { // GroupQuery
53
+ * // GroupName: "STRING_VALUE", // required
54
+ * // ResourceQuery: { // ResourceQuery
55
+ * // Type: "TAG_FILTERS_1_0" || "CLOUDFORMATION_STACK_1_0", // required
56
+ * // Query: "STRING_VALUE", // required
57
+ * // },
58
+ * // },
59
+ * // };
60
+ *
51
61
  * ```
52
62
  *
53
63
  * @param UpdateGroupQueryCommandInput - {@link UpdateGroupQueryCommandInput}
@@ -75,6 +85,8 @@ export interface UpdateGroupQueryCommandOutput extends UpdateGroupQueryOutput, _
75
85
  * <p>You've exceeded throttling limits by making too many requests in a period of
76
86
  * time.</p>
77
87
  *
88
+ * @throws {@link ResourceGroupsServiceException}
89
+ * <p>Base exception class for all service exceptions from ResourceGroups service.</p>
78
90
  *
79
91
  */
80
92
  export declare class UpdateGroupQueryCommand extends $Command<UpdateGroupQueryCommandInput, UpdateGroupQueryCommandOutput, ResourceGroupsClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-resource-groups",
3
3
  "description": "AWS SDK for JavaScript Resource Groups Client for Node.js, Browser and React Native",
4
- "version": "3.325.0",
4
+ "version": "3.326.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",