@aws-sdk/client-resource-groups 3.296.0 → 3.298.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/dist-cjs/commands/CreateGroupCommand.js +2 -3
  2. package/dist-cjs/commands/DeleteGroupCommand.js +2 -3
  3. package/dist-cjs/commands/GetAccountSettingsCommand.js +2 -3
  4. package/dist-cjs/commands/GetGroupCommand.js +2 -3
  5. package/dist-cjs/commands/GetGroupConfigurationCommand.js +2 -3
  6. package/dist-cjs/commands/GetGroupQueryCommand.js +2 -3
  7. package/dist-cjs/commands/GetTagsCommand.js +2 -3
  8. package/dist-cjs/commands/GroupResourcesCommand.js +2 -3
  9. package/dist-cjs/commands/ListGroupResourcesCommand.js +2 -3
  10. package/dist-cjs/commands/ListGroupsCommand.js +2 -3
  11. package/dist-cjs/commands/PutGroupConfigurationCommand.js +2 -3
  12. package/dist-cjs/commands/SearchResourcesCommand.js +2 -3
  13. package/dist-cjs/commands/TagCommand.js +2 -3
  14. package/dist-cjs/commands/UngroupResourcesCommand.js +2 -3
  15. package/dist-cjs/commands/UntagCommand.js +2 -3
  16. package/dist-cjs/commands/UpdateAccountSettingsCommand.js +2 -3
  17. package/dist-cjs/commands/UpdateGroupCommand.js +2 -3
  18. package/dist-cjs/commands/UpdateGroupQueryCommand.js +2 -3
  19. package/dist-cjs/models/models_0.js +1 -206
  20. package/dist-es/commands/CreateGroupCommand.js +2 -3
  21. package/dist-es/commands/DeleteGroupCommand.js +2 -3
  22. package/dist-es/commands/GetAccountSettingsCommand.js +2 -3
  23. package/dist-es/commands/GetGroupCommand.js +2 -3
  24. package/dist-es/commands/GetGroupConfigurationCommand.js +2 -3
  25. package/dist-es/commands/GetGroupQueryCommand.js +2 -3
  26. package/dist-es/commands/GetTagsCommand.js +2 -3
  27. package/dist-es/commands/GroupResourcesCommand.js +2 -3
  28. package/dist-es/commands/ListGroupResourcesCommand.js +2 -3
  29. package/dist-es/commands/ListGroupsCommand.js +2 -3
  30. package/dist-es/commands/PutGroupConfigurationCommand.js +2 -3
  31. package/dist-es/commands/SearchResourcesCommand.js +2 -3
  32. package/dist-es/commands/TagCommand.js +2 -3
  33. package/dist-es/commands/UngroupResourcesCommand.js +2 -3
  34. package/dist-es/commands/UntagCommand.js +2 -3
  35. package/dist-es/commands/UpdateAccountSettingsCommand.js +2 -3
  36. package/dist-es/commands/UpdateGroupCommand.js +2 -3
  37. package/dist-es/commands/UpdateGroupQueryCommand.js +2 -3
  38. package/dist-es/models/models_0.js +0 -153
  39. package/dist-types/ResourceGroups.d.ts +19 -0
  40. package/dist-types/ResourceGroupsClient.d.ts +24 -4
  41. package/dist-types/commands/CreateGroupCommand.d.ts +16 -0
  42. package/dist-types/commands/DeleteGroupCommand.d.ts +16 -0
  43. package/dist-types/commands/GetAccountSettingsCommand.d.ts +16 -0
  44. package/dist-types/commands/GetGroupCommand.d.ts +16 -0
  45. package/dist-types/commands/GetGroupConfigurationCommand.d.ts +16 -0
  46. package/dist-types/commands/GetGroupQueryCommand.d.ts +16 -0
  47. package/dist-types/commands/GetTagsCommand.d.ts +16 -0
  48. package/dist-types/commands/GroupResourcesCommand.d.ts +16 -0
  49. package/dist-types/commands/ListGroupResourcesCommand.d.ts +16 -0
  50. package/dist-types/commands/ListGroupsCommand.d.ts +16 -0
  51. package/dist-types/commands/PutGroupConfigurationCommand.d.ts +16 -0
  52. package/dist-types/commands/SearchResourcesCommand.d.ts +16 -0
  53. package/dist-types/commands/TagCommand.d.ts +16 -0
  54. package/dist-types/commands/UngroupResourcesCommand.d.ts +16 -0
  55. package/dist-types/commands/UntagCommand.d.ts +16 -0
  56. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +16 -0
  57. package/dist-types/commands/UpdateGroupCommand.d.ts +16 -0
  58. package/dist-types/commands/UpdateGroupQueryCommand.d.ts +16 -0
  59. package/dist-types/models/ResourceGroupsServiceException.d.ts +2 -0
  60. package/dist-types/models/models_0.d.ts +163 -215
  61. package/dist-types/pagination/Interfaces.d.ts +3 -0
  62. package/dist-types/pagination/ListGroupResourcesPaginator.d.ts +3 -0
  63. package/dist-types/pagination/ListGroupsPaginator.d.ts +3 -0
  64. package/dist-types/pagination/SearchResourcesPaginator.d.ts +3 -0
  65. package/dist-types/ts3.4/models/models_0.d.ts +0 -135
  66. package/package.json +4 -3
@@ -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 __Checksum} interface
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 __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
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
- * The configuration interface of ResourceGroupsClient class constructor that set the region, credentials and other options.
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
- * The resolved configuration interface of ResourceGroupsClient class. This is resolved and normalized from the {@link ResourceGroupsClientConfig | constructor configuration interface}.
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
  }
@@ -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
  }