aws-sdk-resourcegroups 1.74.0 → 1.76.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-resourcegroups/client.rb +1 -1
- data/lib/aws-sdk-resourcegroups/types.rb +8 -11
- data/lib/aws-sdk-resourcegroups.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27b71f7bc1c373f37649444a2cf0df1592549634d9e553f6671bc59a8b21755d
|
|
4
|
+
data.tar.gz: 2493caf7e1318937e2981f26428bab4e5ad9419c780f2269f7fd0c6910db535c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5aaa1054aea7b0cf12d2936fc50f859efda5f462a8630c7b8728302ffb9ffdb4e543dc29f0c55e4ea170d5732f9f2937aa06758b6d4769af232be63ff0e1dc9d
|
|
7
|
+
data.tar.gz: e3a8092184ab8351f519e0731486cac42281d8c9d705b2a43d1ad2fb68446584b4c2e5d112b50d9c2ebf33a7ebba83436e3b619ae0dd25e86bb510ec172ee24f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.76.0 (2024-11-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.75.0 (2024-11-06)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.74.0 (2024-10-18)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.76.0
|
|
@@ -1922,7 +1922,7 @@ module Aws::ResourceGroups
|
|
|
1922
1922
|
tracer: tracer
|
|
1923
1923
|
)
|
|
1924
1924
|
context[:gem_name] = 'aws-sdk-resourcegroups'
|
|
1925
|
-
context[:gem_version] = '1.
|
|
1925
|
+
context[:gem_version] = '1.76.0'
|
|
1926
1926
|
Seahorse::Client::Request.new(handlers, context)
|
|
1927
1927
|
end
|
|
1928
1928
|
|
|
@@ -1381,7 +1381,7 @@ module Aws::ResourceGroups
|
|
|
1381
1381
|
# parameter must be formatted like the following CLI parameter example:
|
|
1382
1382
|
#
|
|
1383
1383
|
# `--resource-query
|
|
1384
|
-
# '
|
|
1384
|
+
# '{"Type":"TAG_FILTERS_1_0","Query":"{"ResourceTypeFilters":["AWS::AllSupported"],"TagFilters":[{"Key":"Stage","Values":["Test"]}]}"}'`
|
|
1385
1385
|
#
|
|
1386
1386
|
# In the preceding example, all of the double quote characters in the
|
|
1387
1387
|
# value part of the `Query` element must be escaped because the value
|
|
@@ -1430,7 +1430,6 @@ module Aws::ResourceGroups
|
|
|
1430
1430
|
# value for `ResourceTypeFilters`, see [Resources you can use with
|
|
1431
1431
|
# Resource Groups and Tag Editor][1] in the *Resource Groups User
|
|
1432
1432
|
# Guide*.
|
|
1433
|
-
#
|
|
1434
1433
|
# Example: `"ResourceTypeFilters": ["AWS::AllSupported"]` or
|
|
1435
1434
|
# `"ResourceTypeFilters": ["AWS::EC2::Instance", "AWS::S3::Bucket"]`
|
|
1436
1435
|
#
|
|
@@ -1448,34 +1447,32 @@ module Aws::ResourceGroups
|
|
|
1448
1447
|
# For example, consider the following sample query for resources
|
|
1449
1448
|
# that have two tags, `Stage` and `Version`, with two values each:
|
|
1450
1449
|
#
|
|
1451
|
-
# `[
|
|
1450
|
+
# `[{"Stage":["Test","Deploy"]},{"Version":["1","2"]}]`
|
|
1452
1451
|
#
|
|
1453
1452
|
# The results of this resource query could include the following.
|
|
1454
1453
|
#
|
|
1455
1454
|
# * An Amazon EC2 instance that has the following two tags:
|
|
1456
|
-
#
|
|
1455
|
+
# `{"Stage":"Deploy"}`, and `{"Version":"2"}`
|
|
1457
1456
|
#
|
|
1458
1457
|
# * An S3 bucket that has the following two tags:
|
|
1459
|
-
#
|
|
1460
|
-
#
|
|
1458
|
+
# `{"Stage":"Test"}`, and `{"Version":"1"}`
|
|
1461
1459
|
# The resource query results would *not* include the following items
|
|
1462
1460
|
# in the results, however.
|
|
1463
1461
|
#
|
|
1464
1462
|
# * An Amazon EC2 instance that has only the following tag:
|
|
1465
|
-
#
|
|
1463
|
+
# `{"Stage":"Deploy"}`.
|
|
1466
1464
|
#
|
|
1467
1465
|
# The instance does not have **all** of the tag keys specified in
|
|
1468
1466
|
# the filter, so it is excluded from the results.
|
|
1469
1467
|
#
|
|
1470
1468
|
# * An RDS database that has the following two tags:
|
|
1471
|
-
#
|
|
1469
|
+
# `{"Stage":"Archived"}` and `{"Version":"4"}`
|
|
1472
1470
|
#
|
|
1473
1471
|
# The database has all of the tag keys, but none of those keys has
|
|
1474
1472
|
# an associated value that matches at least one of the specified
|
|
1475
1473
|
# values in the filter.
|
|
1476
|
-
#
|
|
1477
|
-
#
|
|
1478
|
-
# "Beta" ] \}`
|
|
1474
|
+
# Example: `"TagFilters": [ { "Key": "Stage", "Values": [ "Gamma",
|
|
1475
|
+
# "Beta" ] }`
|
|
1479
1476
|
#
|
|
1480
1477
|
# * `StackIdentifier` – applicable only if `Type` =
|
|
1481
1478
|
# `CLOUDFORMATION_STACK_1_0`. The value of this parameter is the
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-resourcegroups
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.76.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-11-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|