aws-sdk-ssm 1.101.0 → 1.104.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +48 -12
- data/lib/aws-sdk-ssm/client_api.rb +6 -0
- data/lib/aws-sdk-ssm/types.rb +75 -25
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0813c0b30e0c5a98b02822c0c7a9fc9816ad3a8e33df106b8fa7681eb1c42ee6'
|
4
|
+
data.tar.gz: dd81e09f4c6a719827a5abb6a36ecb0be98c7030581ea2f8e725d13764829531
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 101f8efbfa360d1e4a252a6bb98283dd73e7b4b5d40c98ed4ece161ea65d54bbdb214b919da7dc636ec4761575fe4713bc2c09a8ac00bfa738071f02c30a5d0a
|
7
|
+
data.tar.gz: 1b2d389c45a6f1a7c608cff7915b5da751eb1d6b04ff905baa514aaa8061e042ad9c2af123332015aefdaa19e1c74f9b50c4b8328bc57626435b9e37f3dd865c
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -2941,16 +2941,28 @@ module Aws::SSM
|
|
2941
2941
|
# The permission type for the document. The permission type can be
|
2942
2942
|
# *Share*.
|
2943
2943
|
#
|
2944
|
+
# @option params [Integer] :max_results
|
2945
|
+
# The maximum number of items to return for this call. The call also
|
2946
|
+
# returns a token that you can specify in a subsequent call to get the
|
2947
|
+
# next set of results.
|
2948
|
+
#
|
2949
|
+
# @option params [String] :next_token
|
2950
|
+
# The token for the next set of items to return. (You received this
|
2951
|
+
# token from a previous call.)
|
2952
|
+
#
|
2944
2953
|
# @return [Types::DescribeDocumentPermissionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2945
2954
|
#
|
2946
2955
|
# * {Types::DescribeDocumentPermissionResponse#account_ids #account_ids} => Array<String>
|
2947
2956
|
# * {Types::DescribeDocumentPermissionResponse#account_sharing_info_list #account_sharing_info_list} => Array<Types::AccountSharingInfo>
|
2957
|
+
# * {Types::DescribeDocumentPermissionResponse#next_token #next_token} => String
|
2948
2958
|
#
|
2949
2959
|
# @example Request syntax with placeholder values
|
2950
2960
|
#
|
2951
2961
|
# resp = client.describe_document_permission({
|
2952
2962
|
# name: "DocumentName", # required
|
2953
2963
|
# permission_type: "Share", # required, accepts Share
|
2964
|
+
# max_results: 1,
|
2965
|
+
# next_token: "NextToken",
|
2954
2966
|
# })
|
2955
2967
|
#
|
2956
2968
|
# @example Response structure
|
@@ -2960,6 +2972,7 @@ module Aws::SSM
|
|
2960
2972
|
# resp.account_sharing_info_list #=> Array
|
2961
2973
|
# resp.account_sharing_info_list[0].account_id #=> String
|
2962
2974
|
# resp.account_sharing_info_list[0].shared_document_version #=> String
|
2975
|
+
# resp.next_token #=> String
|
2963
2976
|
#
|
2964
2977
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocumentPermission AWS API Documentation
|
2965
2978
|
#
|
@@ -5911,9 +5924,11 @@ module Aws::SSM
|
|
5911
5924
|
#
|
5912
5925
|
# @option params [required, String] :path
|
5913
5926
|
# The hierarchy for the parameter. Hierarchies start with a forward
|
5914
|
-
# slash (/)
|
5915
|
-
#
|
5916
|
-
#
|
5927
|
+
# slash (/). The hierachy is the parameter name except the last part of
|
5928
|
+
# the parameter. For the API call to succeeed, the last part of the
|
5929
|
+
# parameter name cannot be in the path. A parameter name hierarchy can
|
5930
|
+
# have a maximum of 15 levels. Here is an example of a hierarchy:
|
5931
|
+
# `/Finance/Prod/IAD/WinServ2016/license33 `
|
5917
5932
|
#
|
5918
5933
|
# @option params [Boolean] :recursive
|
5919
5934
|
# Retrieve all parameters within a hierarchy.
|
@@ -6842,14 +6857,20 @@ module Aws::SSM
|
|
6842
6857
|
# This data type is deprecated. Instead, use `Filters`.
|
6843
6858
|
#
|
6844
6859
|
# @option params [Array<Types::DocumentKeyValuesFilter>] :filters
|
6845
|
-
# One or more DocumentKeyValuesFilter objects. Use a filter to return
|
6846
|
-
# 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
|
6847
6862
|
# key-value pair tags that have been applied to a document. Other valid
|
6848
6863
|
# keys include `Owner`, `Name`, `PlatformTypes`, `DocumentType`, and
|
6849
6864
|
# `TargetType`. For example, to return documents you own use
|
6850
6865
|
# `Key=Owner,Values=Self`. To specify a custom key-value pair, use the
|
6851
6866
|
# format `Key=tag:tagName,Values=valueName`.
|
6852
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
|
+
#
|
6853
6874
|
# @option params [Integer] :max_results
|
6854
6875
|
# The maximum number of items to return for this call. The call also
|
6855
6876
|
# returns a token that you can specify in a subsequent call to get the
|
@@ -7981,7 +8002,7 @@ module Aws::SSM
|
|
7981
8002
|
# Command-type tasks. Depending on the task, targets are optional for
|
7982
8003
|
# other maintenance window task types (Automation, AWS Lambda, and AWS
|
7983
8004
|
# Step Functions). For more information about running tasks that do not
|
7984
|
-
# specify targets, see
|
8005
|
+
# specify targets, see [Registering maintenance window tasks without
|
7985
8006
|
# targets][1] in the *AWS Systems Manager User Guide*.
|
7986
8007
|
#
|
7987
8008
|
# </note>
|
@@ -8413,8 +8434,15 @@ module Aws::SSM
|
|
8413
8434
|
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html
|
8414
8435
|
#
|
8415
8436
|
# @option params [required, String] :document_name
|
8416
|
-
#
|
8417
|
-
# a
|
8437
|
+
# The name of the Systems Manager document to run. This can be a public
|
8438
|
+
# document or a custom document. To run a shared document belonging to
|
8439
|
+
# another account, specify the document ARN. For more information about
|
8440
|
+
# how to use shared documents, see [Using shared SSM documents][1] in
|
8441
|
+
# the *AWS Systems Manager User Guide*.
|
8442
|
+
#
|
8443
|
+
#
|
8444
|
+
#
|
8445
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-using-shared.html
|
8418
8446
|
#
|
8419
8447
|
# @option params [String] :document_version
|
8420
8448
|
# The SSM document version to use in the request. You can specify
|
@@ -8617,7 +8645,15 @@ module Aws::SSM
|
|
8617
8645
|
# Initiates execution of an Automation document.
|
8618
8646
|
#
|
8619
8647
|
# @option params [required, String] :document_name
|
8620
|
-
# The name of the
|
8648
|
+
# The name of the Systems Manager document to run. This can be a public
|
8649
|
+
# document or a custom document. To run a shared document belonging to
|
8650
|
+
# another account, specify the document ARN. For more information about
|
8651
|
+
# how to use shared documents, see [Using shared SSM documents][1] in
|
8652
|
+
# the *AWS Systems Manager User Guide*.
|
8653
|
+
#
|
8654
|
+
#
|
8655
|
+
#
|
8656
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-using-shared.html
|
8621
8657
|
#
|
8622
8658
|
# @option params [String] :document_version
|
8623
8659
|
# The version of the Automation document to use for this execution.
|
@@ -9749,7 +9785,7 @@ module Aws::SSM
|
|
9749
9785
|
# Command-type tasks. Depending on the task, targets are optional for
|
9750
9786
|
# other maintenance window task types (Automation, AWS Lambda, and AWS
|
9751
9787
|
# Step Functions). For more information about running tasks that do not
|
9752
|
-
# specify targets, see
|
9788
|
+
# specify targets, see [Registering maintenance window tasks without
|
9753
9789
|
# targets][1] in the *AWS Systems Manager User Guide*.
|
9754
9790
|
#
|
9755
9791
|
# </note>
|
@@ -9789,7 +9825,7 @@ module Aws::SSM
|
|
9789
9825
|
# Command-type tasks. Depending on the task, targets are optional for
|
9790
9826
|
# other maintenance window task types (Automation, AWS Lambda, and AWS
|
9791
9827
|
# Step Functions). For more information about running tasks that do not
|
9792
|
-
# specify targets, see
|
9828
|
+
# specify targets, see [Registering maintenance window tasks without
|
9793
9829
|
# targets][1] in the *AWS Systems Manager User Guide*.
|
9794
9830
|
#
|
9795
9831
|
# </note>
|
@@ -10592,7 +10628,7 @@ module Aws::SSM
|
|
10592
10628
|
params: params,
|
10593
10629
|
config: config)
|
10594
10630
|
context[:gem_name] = 'aws-sdk-ssm'
|
10595
|
-
context[:gem_version] = '1.
|
10631
|
+
context[:gem_version] = '1.104.0'
|
10596
10632
|
Seahorse::Client::Request.new(handlers, context)
|
10597
10633
|
end
|
10598
10634
|
|
@@ -337,6 +337,7 @@ module Aws::SSM
|
|
337
337
|
DocumentParameterName = Shapes::StringShape.new(name: 'DocumentParameterName')
|
338
338
|
DocumentParameterType = Shapes::StringShape.new(name: 'DocumentParameterType')
|
339
339
|
DocumentPermissionLimit = Shapes::StructureShape.new(name: 'DocumentPermissionLimit')
|
340
|
+
DocumentPermissionMaxResults = Shapes::IntegerShape.new(name: 'DocumentPermissionMaxResults')
|
340
341
|
DocumentPermissionType = Shapes::StringShape.new(name: 'DocumentPermissionType')
|
341
342
|
DocumentRequires = Shapes::StructureShape.new(name: 'DocumentRequires')
|
342
343
|
DocumentRequiresList = Shapes::ListShape.new(name: 'DocumentRequiresList')
|
@@ -1878,10 +1879,13 @@ module Aws::SSM
|
|
1878
1879
|
|
1879
1880
|
DescribeDocumentPermissionRequest.add_member(:name, Shapes::ShapeRef.new(shape: DocumentName, required: true, location_name: "Name"))
|
1880
1881
|
DescribeDocumentPermissionRequest.add_member(:permission_type, Shapes::ShapeRef.new(shape: DocumentPermissionType, required: true, location_name: "PermissionType"))
|
1882
|
+
DescribeDocumentPermissionRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DocumentPermissionMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
1883
|
+
DescribeDocumentPermissionRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1881
1884
|
DescribeDocumentPermissionRequest.struct_class = Types::DescribeDocumentPermissionRequest
|
1882
1885
|
|
1883
1886
|
DescribeDocumentPermissionResponse.add_member(:account_ids, Shapes::ShapeRef.new(shape: AccountIdList, location_name: "AccountIds"))
|
1884
1887
|
DescribeDocumentPermissionResponse.add_member(:account_sharing_info_list, Shapes::ShapeRef.new(shape: AccountSharingInfoList, location_name: "AccountSharingInfoList"))
|
1888
|
+
DescribeDocumentPermissionResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1885
1889
|
DescribeDocumentPermissionResponse.struct_class = Types::DescribeDocumentPermissionResponse
|
1886
1890
|
|
1887
1891
|
DescribeDocumentRequest.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, required: true, location_name: "Name"))
|
@@ -4842,7 +4846,9 @@ module Aws::SSM
|
|
4842
4846
|
o.output = Shapes::ShapeRef.new(shape: DescribeDocumentPermissionResponse)
|
4843
4847
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4844
4848
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocument)
|
4849
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4845
4850
|
o.errors << Shapes::ShapeRef.new(shape: InvalidPermissionType)
|
4851
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentOperation)
|
4846
4852
|
end)
|
4847
4853
|
|
4848
4854
|
api.add_operation(:describe_effective_instance_associations, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -1219,10 +1219,7 @@ module Aws::SSM
|
|
1219
1219
|
# }
|
1220
1220
|
#
|
1221
1221
|
# @!attribute [rw] key
|
1222
|
-
# One or more keys to limit the results.
|
1223
|
-
# following: DocumentNamePrefix, ExecutionStatus, ExecutionId,
|
1224
|
-
# ParentExecutionId, CurrentAction, StartTimeBefore, StartTimeAfter,
|
1225
|
-
# TargetResourceGroup.
|
1222
|
+
# One or more keys to limit the results.
|
1226
1223
|
# @return [String]
|
1227
1224
|
#
|
1228
1225
|
# @!attribute [rw] values
|
@@ -4822,6 +4819,8 @@ module Aws::SSM
|
|
4822
4819
|
# {
|
4823
4820
|
# name: "DocumentName", # required
|
4824
4821
|
# permission_type: "Share", # required, accepts Share
|
4822
|
+
# max_results: 1,
|
4823
|
+
# next_token: "NextToken",
|
4825
4824
|
# }
|
4826
4825
|
#
|
4827
4826
|
# @!attribute [rw] name
|
@@ -4833,11 +4832,24 @@ module Aws::SSM
|
|
4833
4832
|
# *Share*.
|
4834
4833
|
# @return [String]
|
4835
4834
|
#
|
4835
|
+
# @!attribute [rw] max_results
|
4836
|
+
# The maximum number of items to return for this call. The call also
|
4837
|
+
# returns a token that you can specify in a subsequent call to get the
|
4838
|
+
# next set of results.
|
4839
|
+
# @return [Integer]
|
4840
|
+
#
|
4841
|
+
# @!attribute [rw] next_token
|
4842
|
+
# The token for the next set of items to return. (You received this
|
4843
|
+
# token from a previous call.)
|
4844
|
+
# @return [String]
|
4845
|
+
#
|
4836
4846
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocumentPermissionRequest AWS API Documentation
|
4837
4847
|
#
|
4838
4848
|
class DescribeDocumentPermissionRequest < Struct.new(
|
4839
4849
|
:name,
|
4840
|
-
:permission_type
|
4850
|
+
:permission_type,
|
4851
|
+
:max_results,
|
4852
|
+
:next_token)
|
4841
4853
|
SENSITIVE = []
|
4842
4854
|
include Aws::Structure
|
4843
4855
|
end
|
@@ -4852,11 +4864,17 @@ module Aws::SSM
|
|
4852
4864
|
# version shared with each account.
|
4853
4865
|
# @return [Array<Types::AccountSharingInfo>]
|
4854
4866
|
#
|
4867
|
+
# @!attribute [rw] next_token
|
4868
|
+
# The token for the next set of items to return. Use this token to get
|
4869
|
+
# the next set of results.
|
4870
|
+
# @return [String]
|
4871
|
+
#
|
4855
4872
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocumentPermissionResponse AWS API Documentation
|
4856
4873
|
#
|
4857
4874
|
class DescribeDocumentPermissionResponse < Struct.new(
|
4858
4875
|
:account_ids,
|
4859
|
-
:account_sharing_info_list
|
4876
|
+
:account_sharing_info_list,
|
4877
|
+
:next_token)
|
4860
4878
|
SENSITIVE = []
|
4861
4879
|
include Aws::Structure
|
4862
4880
|
end
|
@@ -8917,9 +8935,11 @@ module Aws::SSM
|
|
8917
8935
|
#
|
8918
8936
|
# @!attribute [rw] path
|
8919
8937
|
# The hierarchy for the parameter. Hierarchies start with a forward
|
8920
|
-
# slash (/)
|
8921
|
-
#
|
8922
|
-
# hierarchy
|
8938
|
+
# slash (/). The hierachy is the parameter name except the last part
|
8939
|
+
# of the parameter. For the API call to succeeed, the last part of the
|
8940
|
+
# parameter name cannot be in the path. A parameter name hierarchy can
|
8941
|
+
# have a maximum of 15 levels. Here is an example of a hierarchy:
|
8942
|
+
# `/Finance/Prod/IAD/WinServ2016/license33 `
|
8923
8943
|
# @return [String]
|
8924
8944
|
#
|
8925
8945
|
# @!attribute [rw] recursive
|
@@ -11611,13 +11631,19 @@ module Aws::SSM
|
|
11611
11631
|
# @return [Array<Types::DocumentFilter>]
|
11612
11632
|
#
|
11613
11633
|
# @!attribute [rw] filters
|
11614
|
-
# One or more DocumentKeyValuesFilter objects. Use a filter to
|
11615
|
-
# a more specific list of results. For keys, you can specify
|
11616
|
-
# more key-value pair tags that have been applied to a
|
11617
|
-
# valid keys include `Owner`, `Name`, `PlatformTypes`,
|
11618
|
-
# and `TargetType`. For example, to return documents
|
11619
|
-
# `Key=Owner,Values=Self`. To specify a custom key-value
|
11620
|
-
# 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>
|
11621
11647
|
# @return [Array<Types::DocumentKeyValuesFilter>]
|
11622
11648
|
#
|
11623
11649
|
# @!attribute [rw] max_results
|
@@ -14877,11 +14903,20 @@ module Aws::SSM
|
|
14877
14903
|
#
|
14878
14904
|
# `[main]`
|
14879
14905
|
#
|
14880
|
-
# `
|
14906
|
+
# `name=MyCustomRepository`
|
14907
|
+
#
|
14908
|
+
# `baseurl=https://my-custom-repository`
|
14909
|
+
#
|
14910
|
+
# `enabled=1`
|
14911
|
+
#
|
14912
|
+
# <note markdown="1"> For information about other options available for your yum
|
14913
|
+
# repository configuration, see [dnf.conf(5)][1].
|
14914
|
+
#
|
14915
|
+
# </note>
|
14916
|
+
#
|
14881
14917
|
#
|
14882
|
-
# `keepcache=0`
|
14883
14918
|
#
|
14884
|
-
#
|
14919
|
+
# [1]: https://man7.org/linux/man-pages/man5/dnf.conf.5.html
|
14885
14920
|
# @return [String]
|
14886
14921
|
#
|
14887
14922
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchSource AWS API Documentation
|
@@ -15722,7 +15757,7 @@ module Aws::SSM
|
|
15722
15757
|
# Command-type tasks. Depending on the task, targets are optional for
|
15723
15758
|
# other maintenance window task types (Automation, AWS Lambda, and AWS
|
15724
15759
|
# Step Functions). For more information about running tasks that do
|
15725
|
-
# not specify targets, see
|
15760
|
+
# not specify targets, see [Registering maintenance window tasks
|
15726
15761
|
# without targets][1] in the *AWS Systems Manager User Guide*.
|
15727
15762
|
#
|
15728
15763
|
# </note>
|
@@ -16908,8 +16943,15 @@ module Aws::SSM
|
|
16908
16943
|
# @return [Array<Types::Target>]
|
16909
16944
|
#
|
16910
16945
|
# @!attribute [rw] document_name
|
16911
|
-
#
|
16912
|
-
#
|
16946
|
+
# The name of the Systems Manager document to run. This can be a
|
16947
|
+
# public document or a custom document. To run a shared document
|
16948
|
+
# belonging to another account, specify the document ARN. For more
|
16949
|
+
# information about how to use shared documents, see [Using shared SSM
|
16950
|
+
# documents][1] in the *AWS Systems Manager User Guide*.
|
16951
|
+
#
|
16952
|
+
#
|
16953
|
+
#
|
16954
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-using-shared.html
|
16913
16955
|
# @return [String]
|
16914
16956
|
#
|
16915
16957
|
# @!attribute [rw] document_version
|
@@ -17387,7 +17429,15 @@ module Aws::SSM
|
|
17387
17429
|
# }
|
17388
17430
|
#
|
17389
17431
|
# @!attribute [rw] document_name
|
17390
|
-
# The name of the
|
17432
|
+
# The name of the Systems Manager document to run. This can be a
|
17433
|
+
# public document or a custom document. To run a shared document
|
17434
|
+
# belonging to another account, specify the document ARN. For more
|
17435
|
+
# information about how to use shared documents, see [Using shared SSM
|
17436
|
+
# documents][1] in the *AWS Systems Manager User Guide*.
|
17437
|
+
#
|
17438
|
+
#
|
17439
|
+
#
|
17440
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-using-shared.html
|
17391
17441
|
# @return [String]
|
17392
17442
|
#
|
17393
17443
|
# @!attribute [rw] document_version
|
@@ -17971,7 +18021,7 @@ module Aws::SSM
|
|
17971
18021
|
# Command-type tasks. Depending on the task, targets are optional for
|
17972
18022
|
# other maintenance window task types (Automation, AWS Lambda, and AWS
|
17973
18023
|
# Step Functions). For more information about running tasks that do not
|
17974
|
-
# specify targets, see
|
18024
|
+
# specify targets, see [Registering maintenance window tasks without
|
17975
18025
|
# targets][1] in the *AWS Systems Manager User Guide*.
|
17976
18026
|
#
|
17977
18027
|
# </note>
|
@@ -19154,7 +19204,7 @@ module Aws::SSM
|
|
19154
19204
|
# Command-type tasks. Depending on the task, targets are optional for
|
19155
19205
|
# other maintenance window task types (Automation, AWS Lambda, and AWS
|
19156
19206
|
# Step Functions). For more information about running tasks that do
|
19157
|
-
# not specify targets, see
|
19207
|
+
# not specify targets, see [Registering maintenance window tasks
|
19158
19208
|
# without targets][1] in the *AWS Systems Manager User Guide*.
|
19159
19209
|
#
|
19160
19210
|
# </note>
|
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.104.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:
|
11
|
+
date: 2021-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.112.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.112.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|