@aws-sdk/client-resource-groups 3.658.1 → 3.661.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 (51) hide show
  1. package/README.md +41 -1
  2. package/dist-cjs/index.js +367 -35
  3. package/dist-es/ResourceGroups.js +10 -0
  4. package/dist-es/commands/CancelTagSyncTaskCommand.js +22 -0
  5. package/dist-es/commands/GetTagSyncTaskCommand.js +22 -0
  6. package/dist-es/commands/ListGroupingStatusesCommand.js +22 -0
  7. package/dist-es/commands/ListTagSyncTasksCommand.js +22 -0
  8. package/dist-es/commands/StartTagSyncTaskCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +43 -22
  11. package/dist-es/pagination/ListGroupingStatusesPaginator.js +4 -0
  12. package/dist-es/pagination/ListTagSyncTasksPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +2 -0
  14. package/dist-es/protocols/Aws_restJson1.js +204 -4
  15. package/dist-types/ResourceGroups.d.ts +37 -1
  16. package/dist-types/ResourceGroupsClient.d.ts +8 -3
  17. package/dist-types/commands/CancelTagSyncTaskCommand.d.ts +104 -0
  18. package/dist-types/commands/CreateGroupCommand.d.ts +9 -0
  19. package/dist-types/commands/DeleteGroupCommand.d.ts +6 -0
  20. package/dist-types/commands/GetGroupCommand.d.ts +6 -0
  21. package/dist-types/commands/GetTagSyncTaskCommand.d.ts +112 -0
  22. package/dist-types/commands/GetTagsCommand.d.ts +1 -1
  23. package/dist-types/commands/GroupResourcesCommand.d.ts +7 -3
  24. package/dist-types/commands/ListGroupResourcesCommand.d.ts +1 -1
  25. package/dist-types/commands/ListGroupingStatusesCommand.d.ts +109 -0
  26. package/dist-types/commands/ListGroupsCommand.d.ts +11 -1
  27. package/dist-types/commands/ListTagSyncTasksCommand.d.ts +122 -0
  28. package/dist-types/commands/StartTagSyncTaskCommand.d.ts +122 -0
  29. package/dist-types/commands/TagCommand.d.ts +1 -1
  30. package/dist-types/commands/UpdateGroupCommand.d.ts +9 -0
  31. package/dist-types/commands/index.d.ts +5 -0
  32. package/dist-types/index.d.ts +1 -1
  33. package/dist-types/models/models_0.d.ts +622 -93
  34. package/dist-types/pagination/ListGroupingStatusesPaginator.d.ts +7 -0
  35. package/dist-types/pagination/ListTagSyncTasksPaginator.d.ts +7 -0
  36. package/dist-types/pagination/index.d.ts +2 -0
  37. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  38. package/dist-types/ts3.4/ResourceGroups.d.ts +86 -0
  39. package/dist-types/ts3.4/ResourceGroupsClient.d.ts +30 -0
  40. package/dist-types/ts3.4/commands/CancelTagSyncTaskCommand.d.ts +45 -0
  41. package/dist-types/ts3.4/commands/GetTagSyncTaskCommand.d.ts +47 -0
  42. package/dist-types/ts3.4/commands/ListGroupingStatusesCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/ListTagSyncTasksCommand.d.ts +50 -0
  44. package/dist-types/ts3.4/commands/StartTagSyncTaskCommand.d.ts +50 -0
  45. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +158 -38
  47. package/dist-types/ts3.4/pagination/ListGroupingStatusesPaginator.d.ts +11 -0
  48. package/dist-types/ts3.4/pagination/ListTagSyncTasksPaginator.d.ts +11 -0
  49. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  50. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  51. package/package.json +1 -1
package/README.md CHANGED
@@ -30,7 +30,7 @@ resource query entities</p>
30
30
  <p>Applying, editing, and removing tags from resource groups</p>
31
31
  </li>
32
32
  <li>
33
- <p>Resolving resource group member ARNs so they can be returned as search
33
+ <p>Resolving resource group member Amazon resource names (ARN)s so they can be returned as search
34
34
  results</p>
35
35
  </li>
36
36
  <li>
@@ -236,6 +236,14 @@ see LICENSE for more information.
236
236
 
237
237
  ## Client Commands (Operations List)
238
238
 
239
+ <details>
240
+ <summary>
241
+ CancelTagSyncTask
242
+ </summary>
243
+
244
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/resource-groups/command/CancelTagSyncTaskCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/CancelTagSyncTaskCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/CancelTagSyncTaskCommandOutput/)
245
+
246
+ </details>
239
247
  <details>
240
248
  <summary>
241
249
  CreateGroup
@@ -291,6 +299,14 @@ GetTags
291
299
 
292
300
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/resource-groups/command/GetTagsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/GetTagsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/GetTagsCommandOutput/)
293
301
 
302
+ </details>
303
+ <details>
304
+ <summary>
305
+ GetTagSyncTask
306
+ </summary>
307
+
308
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/resource-groups/command/GetTagSyncTaskCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/GetTagSyncTaskCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/GetTagSyncTaskCommandOutput/)
309
+
294
310
  </details>
295
311
  <details>
296
312
  <summary>
@@ -299,6 +315,14 @@ GroupResources
299
315
 
300
316
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/resource-groups/command/GroupResourcesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/GroupResourcesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/GroupResourcesCommandOutput/)
301
317
 
318
+ </details>
319
+ <details>
320
+ <summary>
321
+ ListGroupingStatuses
322
+ </summary>
323
+
324
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/resource-groups/command/ListGroupingStatusesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/ListGroupingStatusesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/ListGroupingStatusesCommandOutput/)
325
+
302
326
  </details>
303
327
  <details>
304
328
  <summary>
@@ -315,6 +339,14 @@ ListGroups
315
339
 
316
340
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/resource-groups/command/ListGroupsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/ListGroupsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/ListGroupsCommandOutput/)
317
341
 
342
+ </details>
343
+ <details>
344
+ <summary>
345
+ ListTagSyncTasks
346
+ </summary>
347
+
348
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/resource-groups/command/ListTagSyncTasksCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/ListTagSyncTasksCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/ListTagSyncTasksCommandOutput/)
349
+
318
350
  </details>
319
351
  <details>
320
352
  <summary>
@@ -331,6 +363,14 @@ SearchResources
331
363
 
332
364
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/resource-groups/command/SearchResourcesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/SearchResourcesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/SearchResourcesCommandOutput/)
333
365
 
366
+ </details>
367
+ <details>
368
+ <summary>
369
+ StartTagSyncTask
370
+ </summary>
371
+
372
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/resource-groups/command/StartTagSyncTaskCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/StartTagSyncTaskCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-resource-groups/Interface/StartTagSyncTaskCommandOutput/)
373
+
334
374
  </details>
335
375
  <details>
336
376
  <summary>