aws-sdk-resourcegroupstaggingapi 1.32.0 → 1.37.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +251 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-resourcegroupstaggingapi.rb +2 -2
- data/lib/aws-sdk-resourcegroupstaggingapi/client.rb +176 -129
- data/lib/aws-sdk-resourcegroupstaggingapi/client_api.rb +9 -5
- data/lib/aws-sdk-resourcegroupstaggingapi/errors.rb +1 -1
- data/lib/aws-sdk-resourcegroupstaggingapi/resource.rb +1 -1
- data/lib/aws-sdk-resourcegroupstaggingapi/types.rb +148 -120
- metadata +8 -5
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -47,7 +47,8 @@ module Aws::ResourceGroupsTaggingAPI
|
|
47
47
|
Region = Shapes::StringShape.new(name: 'Region')
|
48
48
|
RegionFilterList = Shapes::ListShape.new(name: 'RegionFilterList')
|
49
49
|
ResourceARN = Shapes::StringShape.new(name: 'ResourceARN')
|
50
|
-
|
50
|
+
ResourceARNListForGet = Shapes::ListShape.new(name: 'ResourceARNListForGet')
|
51
|
+
ResourceARNListForTagUntag = Shapes::ListShape.new(name: 'ResourceARNListForTagUntag')
|
51
52
|
ResourceTagMapping = Shapes::StructureShape.new(name: 'ResourceTagMapping')
|
52
53
|
ResourceTagMappingList = Shapes::ListShape.new(name: 'ResourceTagMappingList')
|
53
54
|
ResourceTypeFilterList = Shapes::ListShape.new(name: 'ResourceTypeFilterList')
|
@@ -128,6 +129,7 @@ module Aws::ResourceGroupsTaggingAPI
|
|
128
129
|
GetResourcesInput.add_member(:resource_type_filters, Shapes::ShapeRef.new(shape: ResourceTypeFilterList, location_name: "ResourceTypeFilters"))
|
129
130
|
GetResourcesInput.add_member(:include_compliance_details, Shapes::ShapeRef.new(shape: IncludeComplianceDetails, location_name: "IncludeComplianceDetails"))
|
130
131
|
GetResourcesInput.add_member(:exclude_compliant_resources, Shapes::ShapeRef.new(shape: ExcludeCompliantResources, location_name: "ExcludeCompliantResources"))
|
132
|
+
GetResourcesInput.add_member(:resource_arn_list, Shapes::ShapeRef.new(shape: ResourceARNListForGet, location_name: "ResourceARNList"))
|
131
133
|
GetResourcesInput.struct_class = Types::GetResourcesInput
|
132
134
|
|
133
135
|
GetResourcesOutput.add_member(:pagination_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "PaginationToken"))
|
@@ -162,7 +164,9 @@ module Aws::ResourceGroupsTaggingAPI
|
|
162
164
|
|
163
165
|
RegionFilterList.member = Shapes::ShapeRef.new(shape: Region)
|
164
166
|
|
165
|
-
|
167
|
+
ResourceARNListForGet.member = Shapes::ShapeRef.new(shape: ResourceARN)
|
168
|
+
|
169
|
+
ResourceARNListForTagUntag.member = Shapes::ShapeRef.new(shape: ResourceARN)
|
166
170
|
|
167
171
|
ResourceTagMapping.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "ResourceARN"))
|
168
172
|
ResourceTagMapping.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
@@ -209,7 +213,7 @@ module Aws::ResourceGroupsTaggingAPI
|
|
209
213
|
TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
210
214
|
TagMap.value = Shapes::ShapeRef.new(shape: TagValue)
|
211
215
|
|
212
|
-
TagResourcesInput.add_member(:resource_arn_list, Shapes::ShapeRef.new(shape:
|
216
|
+
TagResourcesInput.add_member(:resource_arn_list, Shapes::ShapeRef.new(shape: ResourceARNListForTagUntag, required: true, location_name: "ResourceARNList"))
|
213
217
|
TagResourcesInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, required: true, location_name: "Tags"))
|
214
218
|
TagResourcesInput.struct_class = Types::TagResourcesInput
|
215
219
|
|
@@ -225,7 +229,7 @@ module Aws::ResourceGroupsTaggingAPI
|
|
225
229
|
ThrottledException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
|
226
230
|
ThrottledException.struct_class = Types::ThrottledException
|
227
231
|
|
228
|
-
UntagResourcesInput.add_member(:resource_arn_list, Shapes::ShapeRef.new(shape:
|
232
|
+
UntagResourcesInput.add_member(:resource_arn_list, Shapes::ShapeRef.new(shape: ResourceARNListForTagUntag, required: true, location_name: "ResourceARNList"))
|
229
233
|
UntagResourcesInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyListForUntag, required: true, location_name: "TagKeys"))
|
230
234
|
UntagResourcesInput.struct_class = Types::UntagResourcesInput
|
231
235
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -198,24 +198,25 @@ module Aws::ResourceGroupsTaggingAPI
|
|
198
198
|
# }
|
199
199
|
#
|
200
200
|
# @!attribute [rw] target_id_filters
|
201
|
-
#
|
202
|
-
# output by. If you use this parameter, the count of
|
203
|
-
# noncompliant resources includes only resources with the
|
204
|
-
# target IDs.
|
201
|
+
# Specifies target identifiers (usually, specific account IDs) to
|
202
|
+
# limit the output by. If you use this parameter, the count of
|
203
|
+
# returned noncompliant resources includes only resources with the
|
204
|
+
# specified target IDs.
|
205
205
|
# @return [Array<String>]
|
206
206
|
#
|
207
207
|
# @!attribute [rw] region_filters
|
208
|
-
#
|
209
|
-
# the count of returned noncompliant resources
|
210
|
-
# in the specified Regions.
|
208
|
+
# Specifies a list of AWS Regions to limit the output by. If you use
|
209
|
+
# this parameter, the count of returned noncompliant resources
|
210
|
+
# includes only resources in the specified Regions.
|
211
211
|
# @return [Array<String>]
|
212
212
|
#
|
213
213
|
# @!attribute [rw] resource_type_filters
|
214
|
-
#
|
215
|
-
# of
|
216
|
-
# specifying a resource type
|
217
|
-
#
|
218
|
-
# `ec2:instance` returns
|
214
|
+
# Specifies that you want the response to include information for only
|
215
|
+
# resources of the specified types. The format of each resource type
|
216
|
+
# is `service[:resourceType]`. For example, specifying a resource type
|
217
|
+
# of `ec2` returns all Amazon EC2 resources (which includes EC2
|
218
|
+
# instances). Specifying a resource type of `ec2:instance` returns
|
219
|
+
# only EC2 instances.
|
219
220
|
#
|
220
221
|
# The string for each service name and resource type is the same as
|
221
222
|
# that embedded in a resource's Amazon Resource Name (ARN). Consult
|
@@ -229,38 +230,42 @@ module Aws::ResourceGroupsTaggingAPI
|
|
229
230
|
# * For more information about ARNs, see [Amazon Resource Names (ARNs)
|
230
231
|
# and AWS Service Namespaces][3].
|
231
232
|
#
|
232
|
-
# You can specify multiple resource types by using
|
233
|
-
# can include up to 100 items. Note that the length
|
234
|
-
# requirement applies to each resource type filter.
|
233
|
+
# You can specify multiple resource types by using a comma separated
|
234
|
+
# array. The array can include up to 100 items. Note that the length
|
235
|
+
# constraint requirement applies to each resource type filter.
|
235
236
|
#
|
236
237
|
#
|
237
238
|
#
|
238
|
-
# [1]:
|
239
|
-
# [2]:
|
240
|
-
# [3]:
|
239
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces
|
240
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arns-syntax
|
241
|
+
# [3]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
241
242
|
# @return [Array<String>]
|
242
243
|
#
|
243
244
|
# @!attribute [rw] tag_key_filters
|
244
|
-
#
|
245
|
-
#
|
246
|
-
#
|
245
|
+
# Specifies that you want the response to include information for only
|
246
|
+
# resources that have tags with the specified tag keys. If you use
|
247
|
+
# this parameter, the count of returned noncompliant resources
|
248
|
+
# includes only resources that have the specified tag keys.
|
247
249
|
# @return [Array<String>]
|
248
250
|
#
|
249
251
|
# @!attribute [rw] group_by
|
250
|
-
#
|
251
|
-
# by. If supplied, the counts are sorted by those
|
252
|
+
# Specifies a list of attributes to group the counts of noncompliant
|
253
|
+
# resources by. If supplied, the counts are sorted by those
|
254
|
+
# attributes.
|
252
255
|
# @return [Array<String>]
|
253
256
|
#
|
254
257
|
# @!attribute [rw] max_results
|
255
|
-
#
|
256
|
-
#
|
258
|
+
# Specifies the maximum number of results to be returned in each page.
|
259
|
+
# A query can return fewer than this maximum, even if there are more
|
260
|
+
# results still to return. You should always check the
|
261
|
+
# `PaginationToken` response value to see if there are more results.
|
262
|
+
# You can specify a minimum of 1 and a maximum value of 100.
|
257
263
|
# @return [Integer]
|
258
264
|
#
|
259
265
|
# @!attribute [rw] pagination_token
|
260
|
-
#
|
261
|
-
#
|
262
|
-
#
|
263
|
-
# additional page of data.
|
266
|
+
# Specifies a `PaginationToken` response value from a previous request
|
267
|
+
# to indicate that you want the next page of results. Leave this
|
268
|
+
# parameter empty in your initial request.
|
264
269
|
# @return [String]
|
265
270
|
#
|
266
271
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/GetComplianceSummaryInput AWS API Documentation
|
@@ -282,10 +287,10 @@ module Aws::ResourceGroupsTaggingAPI
|
|
282
287
|
# @return [Array<Types::Summary>]
|
283
288
|
#
|
284
289
|
# @!attribute [rw] pagination_token
|
285
|
-
# A string that indicates that
|
286
|
-
#
|
287
|
-
#
|
288
|
-
#
|
290
|
+
# A string that indicates that there is more data available than this
|
291
|
+
# response contains. To receive the next part of the response, specify
|
292
|
+
# this response value as the `PaginationToken` value in the request
|
293
|
+
# for the next page.
|
289
294
|
# @return [String]
|
290
295
|
#
|
291
296
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/GetComplianceSummaryOutput AWS API Documentation
|
@@ -313,70 +318,70 @@ module Aws::ResourceGroupsTaggingAPI
|
|
313
318
|
# resource_type_filters: ["AmazonResourceType"],
|
314
319
|
# include_compliance_details: false,
|
315
320
|
# exclude_compliant_resources: false,
|
321
|
+
# resource_arn_list: ["ResourceARN"],
|
316
322
|
# }
|
317
323
|
#
|
318
324
|
# @!attribute [rw] pagination_token
|
319
|
-
#
|
320
|
-
#
|
321
|
-
#
|
322
|
-
# additional page of data.
|
325
|
+
# Specifies a `PaginationToken` response value from a previous request
|
326
|
+
# to indicate that you want the next page of results. Leave this
|
327
|
+
# parameter empty in your initial request.
|
323
328
|
# @return [String]
|
324
329
|
#
|
325
330
|
# @!attribute [rw] tag_filters
|
326
|
-
#
|
327
|
-
#
|
328
|
-
#
|
331
|
+
# Specifies a list of TagFilters (keys and values) to restrict the
|
332
|
+
# output to only those resources that have the specified tag and, if
|
333
|
+
# included, the specified value. Each `TagFilter` must contain a key
|
334
|
+
# with values optional. A request can include up to 50 keys, and each
|
335
|
+
# key can include up to 20 values.
|
329
336
|
#
|
330
337
|
# Note the following when deciding how to use TagFilters:
|
331
338
|
#
|
332
|
-
# * If you *
|
333
|
-
# resources that are currently
|
334
|
-
#
|
335
|
-
#
|
336
|
-
# resources that were ever associated with tags. Resources that
|
337
|
-
# currently don't have associated tags are shown with an empty tag
|
338
|
-
# set, like this: `"Tags": []`.
|
339
|
+
# * If you *don't* specify a `TagFilter`, the response includes all
|
340
|
+
# resources that are currently tagged or ever had a tag. Resources
|
341
|
+
# that currently don't have tags are shown with an empty tag set,
|
342
|
+
# like this: `"Tags": []`.
|
339
343
|
#
|
340
344
|
# * If you specify more than one filter in a single request, the
|
341
|
-
# response returns only those resources that satisfy all
|
342
|
-
# filters.
|
345
|
+
# response returns only those resources that satisfy all filters.
|
343
346
|
#
|
344
347
|
# * If you specify a filter that contains more than one value for a
|
345
348
|
# key, the response returns resources that match any of the
|
346
349
|
# specified values for that key.
|
347
350
|
#
|
348
351
|
# * If you don't specify any values for a key, the response returns
|
349
|
-
# resources that are tagged with that key
|
352
|
+
# resources that are tagged with that key and any or no value.
|
350
353
|
#
|
351
|
-
# For example, for filters: filter1
|
352
|
-
#
|
353
|
-
#
|
354
|
+
# For example, for the following filters: `filter1=
|
355
|
+
# \{keyA,\{value1\}\}`, `filter2=\{keyB,\{value2,value3,value4\}\}`,
|
356
|
+
# `filter3= \{keyC\}`\:
|
354
357
|
#
|
355
|
-
# * GetResources(
|
356
|
-
# key1=value1
|
358
|
+
# * `GetResources(\{filter1\})` returns resources tagged with
|
359
|
+
# `key1=value1`
|
357
360
|
#
|
358
|
-
# * GetResources(
|
359
|
-
# key2=value2 or key2=value3 or key2=value4
|
361
|
+
# * `GetResources(\{filter2\})` returns resources tagged with
|
362
|
+
# `key2=value2` or `key2=value3` or `key2=value4`
|
360
363
|
#
|
361
|
-
# * GetResources(
|
362
|
-
# tag
|
364
|
+
# * `GetResources(\{filter3\})` returns resources tagged with any
|
365
|
+
# tag with the key `key3`, and with any or no value
|
363
366
|
#
|
364
|
-
# * GetResources(
|
365
|
-
# tagged with (
|
366
|
-
# key2=value4) and (key3,
|
367
|
+
# * `GetResources(\{filter1,filter2,filter3\})` returns resources
|
368
|
+
# tagged with `(key1=value1) and (key2=value2 or key2=value3 or
|
369
|
+
# key2=value4) and (key3, any or no value)`
|
367
370
|
# @return [Array<Types::TagFilter>]
|
368
371
|
#
|
369
372
|
# @!attribute [rw] resources_per_page
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
373
|
+
# Specifies the maximum number of results to be returned in each page.
|
374
|
+
# A query can return fewer than this maximum, even if there are more
|
375
|
+
# results still to return. You should always check the
|
376
|
+
# `PaginationToken` response value to see if there are more results.
|
377
|
+
# You can specify a minimum of 1 and a maximum value of 100.
|
373
378
|
# @return [Integer]
|
374
379
|
#
|
375
380
|
# @!attribute [rw] tags_per_page
|
376
381
|
# AWS recommends using `ResourcesPerPage` instead of this parameter.
|
377
382
|
#
|
378
383
|
# A limit that restricts the number of tags (key and value pairs)
|
379
|
-
# returned by GetResources in paginated output. A resource with no
|
384
|
+
# returned by `GetResources` in paginated output. A resource with no
|
380
385
|
# tags is counted as having one tag (one key and value pair).
|
381
386
|
#
|
382
387
|
# `GetResources` does not split a resource and its associated tags
|
@@ -391,28 +396,23 @@ module Aws::ResourceGroupsTaggingAPI
|
|
391
396
|
# each with its 10 tags. The third page displays the remaining 2
|
392
397
|
# resources, each with its 10 tags.
|
393
398
|
#
|
394
|
-
# You can set `TagsPerPage` to a minimum of 100 items
|
399
|
+
# You can set `TagsPerPage` to a minimum of 100 items up to a maximum
|
395
400
|
# of 500 items.
|
396
401
|
# @return [Integer]
|
397
402
|
#
|
398
403
|
# @!attribute [rw] resource_type_filters
|
399
|
-
#
|
400
|
-
# of each resource type is `service[:resourceType]`. For
|
401
|
-
# specifying a resource type of `ec2` returns all Amazon EC2
|
402
|
-
# (which includes EC2 instances). Specifying a resource type
|
403
|
-
# `ec2:instance` returns only EC2 instances.
|
404
|
+
# Specifies the resource types that you want included in the response.
|
405
|
+
# The format of each resource type is `service[:resourceType]`. For
|
406
|
+
# example, specifying a resource type of `ec2` returns all Amazon EC2
|
407
|
+
# resources (which includes EC2 instances). Specifying a resource type
|
408
|
+
# of `ec2:instance` returns only EC2 instances.
|
404
409
|
#
|
405
410
|
# The string for each service name and resource type is the same as
|
406
411
|
# that embedded in a resource's Amazon Resource Name (ARN). Consult
|
407
412
|
# the *AWS General Reference* for the following:
|
408
413
|
#
|
409
|
-
#
|
410
|
-
#
|
411
|
-
#
|
412
|
-
# * For resource type strings, see [Example ARNs][2].
|
413
|
-
#
|
414
|
-
# * For more information about ARNs, see [Amazon Resource Names (ARNs)
|
415
|
-
# and AWS Service Namespaces][3].
|
414
|
+
# For more information about ARNs, see [Amazon Resource Names (ARNs)
|
415
|
+
# and AWS Service Namespaces][1].
|
416
416
|
#
|
417
417
|
# You can specify multiple resource types by using an array. The array
|
418
418
|
# can include up to 100 items. Note that the length constraint
|
@@ -420,9 +420,7 @@ module Aws::ResourceGroupsTaggingAPI
|
|
420
420
|
#
|
421
421
|
#
|
422
422
|
#
|
423
|
-
# [1]:
|
424
|
-
# [2]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arns-syntax
|
425
|
-
# [3]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
423
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
426
424
|
# @return [Array<String>]
|
427
425
|
#
|
428
426
|
# @!attribute [rw] include_compliance_details
|
@@ -440,6 +438,26 @@ module Aws::ResourceGroupsTaggingAPI
|
|
440
438
|
# parameter is also set to `true`.
|
441
439
|
# @return [Boolean]
|
442
440
|
#
|
441
|
+
# @!attribute [rw] resource_arn_list
|
442
|
+
# Specifies a list of ARNs of resources for which you want to retrieve
|
443
|
+
# tag data. You can't specify both this parameter and any of the
|
444
|
+
# pagination parameters (`ResourcesPerPage`, `TagsPerPage`,
|
445
|
+
# `PaginationToken`) in the same request. If you specify both, you get
|
446
|
+
# an `Invalid Parameter` exception.
|
447
|
+
#
|
448
|
+
# If a resource specified by this parameter doesn't exist, it
|
449
|
+
# doesn't generate an error; it simply isn't included in the
|
450
|
+
# response.
|
451
|
+
#
|
452
|
+
# An ARN (Amazon Resource Name) uniquely identifies a resource. For
|
453
|
+
# more information, see [Amazon Resource Names (ARNs) and AWS Service
|
454
|
+
# Namespaces][1] in the *AWS General Reference*.
|
455
|
+
#
|
456
|
+
#
|
457
|
+
#
|
458
|
+
# [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
459
|
+
# @return [Array<String>]
|
460
|
+
#
|
443
461
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/GetResourcesInput AWS API Documentation
|
444
462
|
#
|
445
463
|
class GetResourcesInput < Struct.new(
|
@@ -449,21 +467,22 @@ module Aws::ResourceGroupsTaggingAPI
|
|
449
467
|
:tags_per_page,
|
450
468
|
:resource_type_filters,
|
451
469
|
:include_compliance_details,
|
452
|
-
:exclude_compliant_resources
|
470
|
+
:exclude_compliant_resources,
|
471
|
+
:resource_arn_list)
|
453
472
|
SENSITIVE = []
|
454
473
|
include Aws::Structure
|
455
474
|
end
|
456
475
|
|
457
476
|
# @!attribute [rw] pagination_token
|
458
|
-
# A string that indicates that
|
459
|
-
#
|
460
|
-
#
|
461
|
-
#
|
477
|
+
# A string that indicates that there is more data available than this
|
478
|
+
# response contains. To receive the next part of the response, specify
|
479
|
+
# this response value as the `PaginationToken` value in the request
|
480
|
+
# for the next page.
|
462
481
|
# @return [String]
|
463
482
|
#
|
464
483
|
# @!attribute [rw] resource_tag_mapping_list
|
465
484
|
# A list of resource ARNs and the tags (keys and values) associated
|
466
|
-
# with
|
485
|
+
# with those ARNs.
|
467
486
|
# @return [Array<Types::ResourceTagMapping>]
|
468
487
|
#
|
469
488
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/GetResourcesOutput AWS API Documentation
|
@@ -483,10 +502,9 @@ module Aws::ResourceGroupsTaggingAPI
|
|
483
502
|
# }
|
484
503
|
#
|
485
504
|
# @!attribute [rw] pagination_token
|
486
|
-
#
|
487
|
-
#
|
488
|
-
#
|
489
|
-
# additional page of data.
|
505
|
+
# Specifies a `PaginationToken` response value from a previous request
|
506
|
+
# to indicate that you want the next page of results. Leave this
|
507
|
+
# parameter empty in your initial request.
|
490
508
|
# @return [String]
|
491
509
|
#
|
492
510
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/GetTagKeysInput AWS API Documentation
|
@@ -498,10 +516,10 @@ module Aws::ResourceGroupsTaggingAPI
|
|
498
516
|
end
|
499
517
|
|
500
518
|
# @!attribute [rw] pagination_token
|
501
|
-
# A string that indicates that
|
502
|
-
#
|
503
|
-
#
|
504
|
-
#
|
519
|
+
# A string that indicates that there is more data available than this
|
520
|
+
# response contains. To receive the next part of the response, specify
|
521
|
+
# this response value as the `PaginationToken` value in the request
|
522
|
+
# for the next page.
|
505
523
|
# @return [String]
|
506
524
|
#
|
507
525
|
# @!attribute [rw] tag_keys
|
@@ -526,15 +544,15 @@ module Aws::ResourceGroupsTaggingAPI
|
|
526
544
|
# }
|
527
545
|
#
|
528
546
|
# @!attribute [rw] pagination_token
|
529
|
-
#
|
530
|
-
#
|
531
|
-
#
|
532
|
-
# additional page of data.
|
547
|
+
# Specifies a `PaginationToken` response value from a previous request
|
548
|
+
# to indicate that you want the next page of results. Leave this
|
549
|
+
# parameter empty in your initial request.
|
533
550
|
# @return [String]
|
534
551
|
#
|
535
552
|
# @!attribute [rw] key
|
536
|
-
#
|
537
|
-
# specified Region for the
|
553
|
+
# Specifies the tag key for which you want to list all existing values
|
554
|
+
# that are currently used in the specified AWS Region for the calling
|
555
|
+
# AWS account.
|
538
556
|
# @return [String]
|
539
557
|
#
|
540
558
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/GetTagValuesInput AWS API Documentation
|
@@ -547,14 +565,15 @@ module Aws::ResourceGroupsTaggingAPI
|
|
547
565
|
end
|
548
566
|
|
549
567
|
# @!attribute [rw] pagination_token
|
550
|
-
# A string that indicates that
|
551
|
-
#
|
552
|
-
#
|
553
|
-
#
|
568
|
+
# A string that indicates that there is more data available than this
|
569
|
+
# response contains. To receive the next part of the response, specify
|
570
|
+
# this response value as the `PaginationToken` value in the request
|
571
|
+
# for the next page.
|
554
572
|
# @return [String]
|
555
573
|
#
|
556
574
|
# @!attribute [rw] tag_values
|
557
|
-
# A list of all tag values for the specified key in the
|
575
|
+
# A list of all tag values for the specified key currently used in the
|
576
|
+
# specified AWS Region for the calling AWS account.
|
558
577
|
# @return [Array<String>]
|
559
578
|
#
|
560
579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/GetTagValuesOutput AWS API Documentation
|
@@ -796,9 +815,12 @@ module Aws::ResourceGroupsTaggingAPI
|
|
796
815
|
# }
|
797
816
|
#
|
798
817
|
# @!attribute [rw] resource_arn_list
|
799
|
-
#
|
800
|
-
#
|
801
|
-
#
|
818
|
+
# Specifies the list of ARNs of the resources that you want to apply
|
819
|
+
# tags to.
|
820
|
+
#
|
821
|
+
# An ARN (Amazon Resource Name) uniquely identifies a resource. For
|
822
|
+
# more information, see [Amazon Resource Names (ARNs) and AWS Service
|
823
|
+
# Namespaces][1] in the *AWS General Reference*.
|
802
824
|
#
|
803
825
|
#
|
804
826
|
#
|
@@ -806,8 +828,8 @@ module Aws::ResourceGroupsTaggingAPI
|
|
806
828
|
# @return [Array<String>]
|
807
829
|
#
|
808
830
|
# @!attribute [rw] tags
|
809
|
-
#
|
810
|
-
# consists of a key and a value that you define.
|
831
|
+
# Specifies a list of tags that you want to add to the specified
|
832
|
+
# resources. A tag consists of a key and a value that you define.
|
811
833
|
# @return [Hash<String,String>]
|
812
834
|
#
|
813
835
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/TagResourcesInput AWS API Documentation
|
@@ -857,9 +879,12 @@ module Aws::ResourceGroupsTaggingAPI
|
|
857
879
|
# }
|
858
880
|
#
|
859
881
|
# @!attribute [rw] resource_arn_list
|
860
|
-
#
|
861
|
-
#
|
862
|
-
#
|
882
|
+
# Specifies a list of ARNs of the resources that you want to remove
|
883
|
+
# tags from.
|
884
|
+
#
|
885
|
+
# An ARN (Amazon Resource Name) uniquely identifies a resource. For
|
886
|
+
# more information, see [Amazon Resource Names (ARNs) and AWS Service
|
887
|
+
# Namespaces][1] in the *AWS General Reference*.
|
863
888
|
#
|
864
889
|
#
|
865
890
|
#
|
@@ -867,8 +892,8 @@ module Aws::ResourceGroupsTaggingAPI
|
|
867
892
|
# @return [Array<String>]
|
868
893
|
#
|
869
894
|
# @!attribute [rw] tag_keys
|
870
|
-
#
|
871
|
-
# resources.
|
895
|
+
# Specifies a list of tag keys that you want to remove from the
|
896
|
+
# specified resources.
|
872
897
|
# @return [Array<String>]
|
873
898
|
#
|
874
899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/UntagResourcesInput AWS API Documentation
|
@@ -881,8 +906,11 @@ module Aws::ResourceGroupsTaggingAPI
|
|
881
906
|
end
|
882
907
|
|
883
908
|
# @!attribute [rw] failed_resources_map
|
884
|
-
#
|
885
|
-
#
|
909
|
+
# A map containing a key-value pair for each failed item that
|
910
|
+
# couldn't be untagged. The key is the ARN of the failed resource.
|
911
|
+
# The value is a `FailureInfo` object that contains an error code, a
|
912
|
+
# status code, and an error message. If there are no errors, the
|
913
|
+
# `FailedResourcesMap` is empty.
|
886
914
|
# @return [Hash<String,Types::FailureInfo>]
|
887
915
|
#
|
888
916
|
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/UntagResourcesOutput AWS API Documentation
|