aws-sdk-resourcegroups 1.27.0 → 1.28.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/lib/aws-sdk-resourcegroups.rb +1 -1
- data/lib/aws-sdk-resourcegroups/client.rb +4 -4
- data/lib/aws-sdk-resourcegroups/types.rb +25 -19
- 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: 23f39cc4f5026e0dc2c82b6f0d1f27af639f37d533e3745619f1396346d17767
|
|
4
|
+
data.tar.gz: 7b8a568cf9111a52645a438f807378624f377b9c82391fa8cfc5fea090eda738
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7273a02b0539ad28f76adff569b92d01c63c79be20890a2dd00db6a6ee1c786ed96ee0036daa68f8d7e4cb40056ca4d2f3aba295f2c452a56bfcd916720ddeb9
|
|
7
|
+
data.tar.gz: 91d08d85858c9f2f745e976daa04215c7196d89ad99122db7c1eb2f6f1aca92878a25ace291f573ae62dc0cfef776b31f717d7722de923fcc8d4dbe0de29ed19
|
|
@@ -642,8 +642,8 @@ module Aws::ResourceGroups
|
|
|
642
642
|
req.send_request(options)
|
|
643
643
|
end
|
|
644
644
|
|
|
645
|
-
# Returns a list of ARNs of resources that are members of a
|
|
646
|
-
# resource group.
|
|
645
|
+
# Returns a list of ARNs of the resources that are members of a
|
|
646
|
+
# specified resource group.
|
|
647
647
|
#
|
|
648
648
|
# @option params [String] :group_name
|
|
649
649
|
# Don't use this parameter. Use `Group` instead.
|
|
@@ -821,7 +821,7 @@ module Aws::ResourceGroups
|
|
|
821
821
|
req.send_request(options)
|
|
822
822
|
end
|
|
823
823
|
|
|
824
|
-
# Returns a list of AWS resource identifiers that matches
|
|
824
|
+
# Returns a list of AWS resource identifiers that matches tne specified
|
|
825
825
|
# query. The query uses the same format as a resource query in a
|
|
826
826
|
# CreateGroup or UpdateGroupQuery operation.
|
|
827
827
|
#
|
|
@@ -1103,7 +1103,7 @@ module Aws::ResourceGroups
|
|
|
1103
1103
|
params: params,
|
|
1104
1104
|
config: config)
|
|
1105
1105
|
context[:gem_name] = 'aws-sdk-resourcegroups'
|
|
1106
|
-
context[:gem_version] = '1.
|
|
1106
|
+
context[:gem_version] = '1.28.0'
|
|
1107
1107
|
Seahorse::Client::Request.new(handlers, context)
|
|
1108
1108
|
end
|
|
1109
1109
|
|
|
@@ -987,22 +987,27 @@ module Aws::ResourceGroups
|
|
|
987
987
|
# }
|
|
988
988
|
#
|
|
989
989
|
# @!attribute [rw] type
|
|
990
|
-
# The type of the query.
|
|
991
|
-
#
|
|
990
|
+
# The type of the query. You can use the following values:
|
|
991
|
+
#
|
|
992
|
+
# * <i> <code>CLOUDFORMATION_STACK_1_0:</code> </i> A JSON syntax that
|
|
993
|
+
# lets you specify a CloudFormation stack ARN.
|
|
992
994
|
#
|
|
993
995
|
# * <i> <code>TAG_FILTERS_1_0:</code> </i> A JSON syntax that lets you
|
|
994
996
|
# specify a collection of simple tag filters for resource types and
|
|
995
|
-
# tags, as supported by the AWS Tagging API [
|
|
996
|
-
#
|
|
997
|
-
#
|
|
998
|
-
#
|
|
999
|
-
#
|
|
1000
|
-
# key
|
|
997
|
+
# tags, as supported by the AWS Tagging API [ `ResourceTypeFilters`
|
|
998
|
+
# parameter of the `tagging:GetResources` ][1] operation. If you
|
|
999
|
+
# specify more than one tag key, only resources that match all tag
|
|
1000
|
+
# keys, and at least one value of each specified tag key, are
|
|
1001
|
+
# returned in your query. If you specify more than one value for a
|
|
1002
|
+
# tag key, a resource matches the filter if it has a tag key value
|
|
1003
|
+
# that matches *any* of the specified values.
|
|
1001
1004
|
#
|
|
1002
1005
|
# For example, consider the following sample query for resources
|
|
1003
|
-
# that have two tags, `Stage` and `Version`, with two values each
|
|
1004
|
-
#
|
|
1005
|
-
#
|
|
1006
|
+
# that have two tags, `Stage` and `Version`, with two values each:
|
|
1007
|
+
#
|
|
1008
|
+
# `[\{"Key":"Stage","Values":["Test","Deploy"]\},\{"Key":"Version","Values":["1","2"]\}]`
|
|
1009
|
+
#
|
|
1010
|
+
# The results of this query could include the following.
|
|
1006
1011
|
#
|
|
1007
1012
|
# * An EC2 instance that has the following two tags:
|
|
1008
1013
|
# `\{"Key":"Stage","Value":"Deploy"\}`, and
|
|
@@ -1012,25 +1017,26 @@ module Aws::ResourceGroups
|
|
|
1012
1017
|
# `\{"Key":"Stage","Value":"Test"\}`, and
|
|
1013
1018
|
# `\{"Key":"Version","Value":"1"\}`
|
|
1014
1019
|
#
|
|
1015
|
-
# The query would not
|
|
1016
|
-
#
|
|
1017
|
-
# filter, so it is rejected. The RDS database has all of the tag
|
|
1018
|
-
# keys, but no values that match at least one of the specified tag
|
|
1019
|
-
# key values in the filter.
|
|
1020
|
+
# The query would not include the following items in the results,
|
|
1021
|
+
# however.
|
|
1020
1022
|
#
|
|
1021
1023
|
# * An EC2 instance that has only the following tag:
|
|
1022
1024
|
# `\{"Key":"Stage","Value":"Deploy"\}`.
|
|
1023
1025
|
#
|
|
1026
|
+
# The instance does not have **all** of the tag keys specified in
|
|
1027
|
+
# the filter, so it is excluded from the results.
|
|
1028
|
+
#
|
|
1024
1029
|
# * An RDS database that has the following two tags:
|
|
1025
1030
|
# `\{"Key":"Stage","Value":"Archived"\}`, and
|
|
1026
1031
|
# `\{"Key":"Version","Value":"4"\}`
|
|
1027
1032
|
#
|
|
1028
|
-
#
|
|
1029
|
-
#
|
|
1033
|
+
# The database has all of the tag keys, but none of those keys has
|
|
1034
|
+
# an associated value that matches at least one of the specified
|
|
1035
|
+
# values in the filter.
|
|
1030
1036
|
#
|
|
1031
1037
|
#
|
|
1032
1038
|
#
|
|
1033
|
-
# [1]: https://docs.aws.amazon.com/resourcegroupstagging/latest/APIReference/API_GetResources.html
|
|
1039
|
+
# [1]: https://docs.aws.amazon.com/resourcegroupstagging/latest/APIReference/API_GetResources.html#resourcegrouptagging-GetResources-request-ResourceTypeFilters
|
|
1034
1040
|
# @return [String]
|
|
1035
1041
|
#
|
|
1036
1042
|
# @!attribute [rw] query
|
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.28.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: 2020-07-
|
|
11
|
+
date: 2020-07-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|