aws-sdk-ssm 1.102.0 → 1.103.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-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +9 -3
- data/lib/aws-sdk-ssm/types.rb +13 -7
- 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: 1e77bf4f76a3b850fe7d3c8b06101b2e0f55dce63e49b733b6d0d39c2545f939
|
|
4
|
+
data.tar.gz: 50c80be0d182e344bf8d118940110c70fb6562877757118ca975f2daf9e137f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82370b06d21ef96a08f787b4ce62188d3d4f0d1dcead7cd7028502b3b0d98a9929a0b4c62144364824042bdb780d7b7c8b9f5eb8e3048ac00157ab920a3107d8
|
|
7
|
+
data.tar.gz: 3b84c690e5524c4dd448f834f990b384053e96a047c6a10d2074d49c04e483fe0a0f4bb0206ca5522410ecde1f973c6879408bf536513c7ab2356299e6f236c6
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
|
@@ -6857,14 +6857,20 @@ module Aws::SSM
|
|
|
6857
6857
|
# This data type is deprecated. Instead, use `Filters`.
|
|
6858
6858
|
#
|
|
6859
6859
|
# @option params [Array<Types::DocumentKeyValuesFilter>] :filters
|
|
6860
|
-
# One or more DocumentKeyValuesFilter objects. Use a filter to return
|
|
6861
|
-
# more specific list of results. For keys, you can specify one or more
|
|
6860
|
+
# One or more `DocumentKeyValuesFilter` objects. Use a filter to return
|
|
6861
|
+
# a more specific list of results. For keys, you can specify one or more
|
|
6862
6862
|
# key-value pair tags that have been applied to a document. Other valid
|
|
6863
6863
|
# keys include `Owner`, `Name`, `PlatformTypes`, `DocumentType`, and
|
|
6864
6864
|
# `TargetType`. For example, to return documents you own use
|
|
6865
6865
|
# `Key=Owner,Values=Self`. To specify a custom key-value pair, use the
|
|
6866
6866
|
# format `Key=tag:tagName,Values=valueName`.
|
|
6867
6867
|
#
|
|
6868
|
+
# <note markdown="1"> This API action only supports filtering documents by using a single
|
|
6869
|
+
# tag key and one or more tag values. For example:
|
|
6870
|
+
# `Key=tag:tagName,Values=valueName1,valueName2`
|
|
6871
|
+
#
|
|
6872
|
+
# </note>
|
|
6873
|
+
#
|
|
6868
6874
|
# @option params [Integer] :max_results
|
|
6869
6875
|
# The maximum number of items to return for this call. The call also
|
|
6870
6876
|
# returns a token that you can specify in a subsequent call to get the
|
|
@@ -10622,7 +10628,7 @@ module Aws::SSM
|
|
|
10622
10628
|
params: params,
|
|
10623
10629
|
config: config)
|
|
10624
10630
|
context[:gem_name] = 'aws-sdk-ssm'
|
|
10625
|
-
context[:gem_version] = '1.
|
|
10631
|
+
context[:gem_version] = '1.103.0'
|
|
10626
10632
|
Seahorse::Client::Request.new(handlers, context)
|
|
10627
10633
|
end
|
|
10628
10634
|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
|
@@ -11631,13 +11631,19 @@ module Aws::SSM
|
|
|
11631
11631
|
# @return [Array<Types::DocumentFilter>]
|
|
11632
11632
|
#
|
|
11633
11633
|
# @!attribute [rw] filters
|
|
11634
|
-
# One or more DocumentKeyValuesFilter objects. Use a filter to
|
|
11635
|
-
# a more specific list of results. For keys, you can specify
|
|
11636
|
-
# more key-value pair tags that have been applied to a
|
|
11637
|
-
# valid keys include `Owner`, `Name`, `PlatformTypes`,
|
|
11638
|
-
# and `TargetType`. For example, to return documents
|
|
11639
|
-
# `Key=Owner,Values=Self`. To specify a custom key-value
|
|
11640
|
-
# format `Key=tag:tagName,Values=valueName`.
|
|
11634
|
+
# One or more `DocumentKeyValuesFilter` objects. Use a filter to
|
|
11635
|
+
# return a more specific list of results. For keys, you can specify
|
|
11636
|
+
# one or more key-value pair tags that have been applied to a
|
|
11637
|
+
# document. Other valid keys include `Owner`, `Name`, `PlatformTypes`,
|
|
11638
|
+
# `DocumentType`, and `TargetType`. For example, to return documents
|
|
11639
|
+
# you own use `Key=Owner,Values=Self`. To specify a custom key-value
|
|
11640
|
+
# pair, use the format `Key=tag:tagName,Values=valueName`.
|
|
11641
|
+
#
|
|
11642
|
+
# <note markdown="1"> This API action only supports filtering documents by using a single
|
|
11643
|
+
# tag key and one or more tag values. For example:
|
|
11644
|
+
# `Key=tag:tagName,Values=valueName1,valueName2`
|
|
11645
|
+
#
|
|
11646
|
+
# </note>
|
|
11641
11647
|
# @return [Array<Types::DocumentKeyValuesFilter>]
|
|
11642
11648
|
#
|
|
11643
11649
|
# @!attribute [rw] max_results
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ssm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.103.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: 2021-01-
|
|
11
|
+
date: 2021-01-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|