aws-sdk-resourcegroups 1.74.0 → 1.75.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d830b91c1cf30450596a4b4057334dbb01e0bd70d0bfa858ae96a0a8e5815cc9
4
- data.tar.gz: 3493d8170f60c771bbd4eebefa75cbff3018b9ef9a9b892bf2a441f3189c8da9
3
+ metadata.gz: e7fd22f9cda1a8af69d62833424275d366192f5bcd470a804ec5c48a0944384c
4
+ data.tar.gz: 1d34b9475e544da1a97238e57b600c809441614734e0e8e9724c23f2fd59cd79
5
5
  SHA512:
6
- metadata.gz: 0ddcba03677ba6544fbe0de4fed4e10710710a9cfb9544b0609ef38e5d30afa982dd6c2950ae4176fa2de9a940e6680fef54b359e59d5a2e47c0c181338a80d8
7
- data.tar.gz: 130a142b32dc86a485bd57d98a0460c7d9c3502906a461b2b7fea834886ba69b63c45ebdae8e69780760dd717a5695b71864c16b07b9ae3ef22b096f00ccef9b
6
+ metadata.gz: 31fca3be04199087efe3fded2ee65fa2cf86a035516a74644302a1d4d98a24c10241005f7ee4d32db987fd8b65befff2e5eceb3896af5f16361124aba97041b7
7
+ data.tar.gz: eaa5384fd8d6e699eb5fa1888ef526363286e6f8e67511845209bab6507576a202367b89a65b6b7377218d1dd974791dd323080eb9db104bb2a619cafa625e14
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.75.0 (2024-11-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.74.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.74.0
1
+ 1.75.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.74.0'
1925
+ context[:gem_version] = '1.75.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
- # '\{"Type":"TAG_FILTERS_1_0","Query":"\{"ResourceTypeFilters":["AWS::AllSupported"],"TagFilters":[\{"Key":"Stage","Values":["Test"]\}]\}"\}'`
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
@@ -1448,34 +1448,34 @@ module Aws::ResourceGroups
1448
1448
  # For example, consider the following sample query for resources
1449
1449
  # that have two tags, `Stage` and `Version`, with two values each:
1450
1450
  #
1451
- # `[\{"Stage":["Test","Deploy"]\},\{"Version":["1","2"]\}]`
1451
+ # `[{"Stage":["Test","Deploy"]},{"Version":["1","2"]}]`
1452
1452
  #
1453
1453
  # The results of this resource query could include the following.
1454
1454
  #
1455
1455
  # * An Amazon EC2 instance that has the following two tags:
1456
- # `\{"Stage":"Deploy"\}`, and `\{"Version":"2"\}`
1456
+ # `{"Stage":"Deploy"}`, and `{"Version":"2"}`
1457
1457
  #
1458
1458
  # * An S3 bucket that has the following two tags:
1459
- # `\{"Stage":"Test"\}`, and `\{"Version":"1"\}`
1459
+ # `{"Stage":"Test"}`, and `{"Version":"1"}`
1460
1460
  #
1461
1461
  # The resource query results would *not* include the following items
1462
1462
  # in the results, however.
1463
1463
  #
1464
1464
  # * An Amazon EC2 instance that has only the following tag:
1465
- # `\{"Stage":"Deploy"\}`.
1465
+ # `{"Stage":"Deploy"}`.
1466
1466
  #
1467
1467
  # The instance does not have **all** of the tag keys specified in
1468
1468
  # the filter, so it is excluded from the results.
1469
1469
  #
1470
1470
  # * An RDS database that has the following two tags:
1471
- # `\{"Stage":"Archived"\}` and `\{"Version":"4"\}`
1471
+ # `{"Stage":"Archived"}` and `{"Version":"4"}`
1472
1472
  #
1473
1473
  # The database has all of the tag keys, but none of those keys has
1474
1474
  # an associated value that matches at least one of the specified
1475
1475
  # values in the filter.
1476
1476
  #
1477
- # Example: `"TagFilters": [ \{ "Key": "Stage", "Values": [ "Gamma",
1478
- # "Beta" ] \}`
1477
+ # Example: `"TagFilters": [ { "Key": "Stage", "Values": [ "Gamma",
1478
+ # "Beta" ] }`
1479
1479
  #
1480
1480
  # * `StackIdentifier` – applicable only if `Type` =
1481
1481
  # `CLOUDFORMATION_STACK_1_0`. The value of this parameter is the
@@ -54,7 +54,7 @@ module Aws::ResourceGroups
54
54
  autoload :EndpointProvider, 'aws-sdk-resourcegroups/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-resourcegroups/endpoints'
56
56
 
57
- GEM_VERSION = '1.74.0'
57
+ GEM_VERSION = '1.75.0'
58
58
 
59
59
  end
60
60
 
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.74.0
4
+ version: 1.75.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-10-18 00:00:00.000000000 Z
11
+ date: 2024-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core