aws-sdk-ssm 1.125.0 → 1.129.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +55 -5
- data/lib/aws-sdk-ssm/client_api.rb +9 -0
- data/lib/aws-sdk-ssm/types.rb +48 -12
- data/lib/aws-sdk-ssm.rb +1 -1
- 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: e610dabbef82d5f737364b54bb9c4a2a5a76323f566871df69b373ab7fcd630d
|
4
|
+
data.tar.gz: 8ac00ec3410a2df7855e485ef07107be0ce3087dc9236a01adf6096814a2a520
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '095e426f3e7f14bb04d12df14329d96b1491e864d9655c6aeb8c5565ce5da55a63768517c0539ff40d2bb2fffd1a9dfabb4d0251eb0754ea3fd794e25910a00b'
|
7
|
+
data.tar.gz: 98ea86f33d31f3c333f4a1690f1c14736261213a3c89bb16b58a038be7736b45e1b0298753afa9e89b68bb26aee558f43ff904844bbcf65d6a35c7099cc0600a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.129.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.128.0 (2022-01-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS Systems Manager adds category support for DescribeDocument API
|
13
|
+
|
14
|
+
1.127.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.126.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.125.0 (2021-11-29)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.129.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::SSM
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::SSM
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::SSM
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -305,7 +315,7 @@ module Aws::SSM
|
|
305
315
|
# seconds to wait when opening a HTTP session before raising a
|
306
316
|
# `Timeout::Error`.
|
307
317
|
#
|
308
|
-
# @option options [
|
318
|
+
# @option options [Float] :http_read_timeout (60) The default
|
309
319
|
# number of seconds to wait for response data. This value can
|
310
320
|
# safely be set per-request on the session.
|
311
321
|
#
|
@@ -321,6 +331,9 @@ module Aws::SSM
|
|
321
331
|
# disables this behaviour. This value can safely be set per
|
322
332
|
# request on the session.
|
323
333
|
#
|
334
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
335
|
+
# in seconds.
|
336
|
+
#
|
324
337
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
325
338
|
# HTTP debug output will be sent to the `:logger`.
|
326
339
|
#
|
@@ -730,6 +743,14 @@ module Aws::SSM
|
|
730
743
|
# The document version you want to associate with the target(s). Can be
|
731
744
|
# a specific version or the default version.
|
732
745
|
#
|
746
|
+
# State Manager doesn't support running associations that use a new
|
747
|
+
# version of a document if that document is shared from another account.
|
748
|
+
# State Manager always runs the `default` version of a document if
|
749
|
+
# shared from another account, even though the Systems Manager console
|
750
|
+
# shows that a new version was processed. If you want to run an
|
751
|
+
# association using a new version of a document shared form another
|
752
|
+
# account, you must set the document version to `default`.
|
753
|
+
#
|
733
754
|
# @option params [String] :instance_id
|
734
755
|
# The managed node ID.
|
735
756
|
#
|
@@ -1295,6 +1316,10 @@ module Aws::SSM
|
|
1295
1316
|
# resp.document_description.approved_version #=> String
|
1296
1317
|
# resp.document_description.pending_review_version #=> String
|
1297
1318
|
# resp.document_description.review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
|
1319
|
+
# resp.document_description.category #=> Array
|
1320
|
+
# resp.document_description.category[0] #=> String
|
1321
|
+
# resp.document_description.category_enum #=> Array
|
1322
|
+
# resp.document_description.category_enum[0] #=> String
|
1298
1323
|
#
|
1299
1324
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateDocument AWS API Documentation
|
1300
1325
|
#
|
@@ -3175,6 +3200,10 @@ module Aws::SSM
|
|
3175
3200
|
# resp.document.approved_version #=> String
|
3176
3201
|
# resp.document.pending_review_version #=> String
|
3177
3202
|
# resp.document.review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
|
3203
|
+
# resp.document.category #=> Array
|
3204
|
+
# resp.document.category[0] #=> String
|
3205
|
+
# resp.document.category_enum #=> Array
|
3206
|
+
# resp.document.category_enum[0] #=> String
|
3178
3207
|
#
|
3179
3208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocument AWS API Documentation
|
3180
3209
|
#
|
@@ -9722,7 +9751,14 @@ module Aws::SSM
|
|
9722
9751
|
|
9723
9752
|
# Updates an association. You can update the association name and
|
9724
9753
|
# version, the document version, schedule, parameters, and Amazon Simple
|
9725
|
-
# Storage Service (Amazon S3) output.
|
9754
|
+
# Storage Service (Amazon S3) output. When you call `UpdateAssociation`,
|
9755
|
+
# the system drops all optional parameters from the request and
|
9756
|
+
# overwrites the association with null values for those parameters. This
|
9757
|
+
# is by design. You must specify all optional parameters in the call,
|
9758
|
+
# even if you are not changing the parameters. This includes the `Name`
|
9759
|
+
# parameter. Before calling this API action, we recommend that you call
|
9760
|
+
# the DescribeAssociation API operation and make a note of all optional
|
9761
|
+
# parameters required for your `UpdateAssociation` call.
|
9726
9762
|
#
|
9727
9763
|
# In order to call this API operation, your Identity and Access
|
9728
9764
|
# Management (IAM) user account, group, or role must be configured with
|
@@ -9734,7 +9770,9 @@ module Aws::SSM
|
|
9734
9770
|
# <resource_arn>`
|
9735
9771
|
#
|
9736
9772
|
# When you update an association, the association immediately runs
|
9737
|
-
# against the specified targets.
|
9773
|
+
# against the specified targets. You can add the
|
9774
|
+
# `ApplyOnlyAtCronInterval` parameter to run the association during the
|
9775
|
+
# next schedule run.
|
9738
9776
|
#
|
9739
9777
|
# @option params [required, String] :association_id
|
9740
9778
|
# The ID of the association you want to update.
|
@@ -9748,6 +9786,14 @@ module Aws::SSM
|
|
9748
9786
|
# @option params [String] :document_version
|
9749
9787
|
# The document version you want update for the association.
|
9750
9788
|
#
|
9789
|
+
# State Manager doesn't support running associations that use a new
|
9790
|
+
# version of a document if that document is shared from another account.
|
9791
|
+
# State Manager always runs the `default` version of a document if
|
9792
|
+
# shared from another account, even though the Systems Manager console
|
9793
|
+
# shows that a new version was processed. If you want to run an
|
9794
|
+
# association using a new version of a document shared form another
|
9795
|
+
# account, you must set the document version to `default`.
|
9796
|
+
#
|
9751
9797
|
# @option params [String] :schedule_expression
|
9752
9798
|
# The cron expression used to schedule the association that you want to
|
9753
9799
|
# update.
|
@@ -10171,6 +10217,10 @@ module Aws::SSM
|
|
10171
10217
|
# resp.document_description.approved_version #=> String
|
10172
10218
|
# resp.document_description.pending_review_version #=> String
|
10173
10219
|
# resp.document_description.review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
|
10220
|
+
# resp.document_description.category #=> Array
|
10221
|
+
# resp.document_description.category[0] #=> String
|
10222
|
+
# resp.document_description.category_enum #=> Array
|
10223
|
+
# resp.document_description.category_enum[0] #=> String
|
10174
10224
|
#
|
10175
10225
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocument AWS API Documentation
|
10176
10226
|
#
|
@@ -11397,7 +11447,7 @@ module Aws::SSM
|
|
11397
11447
|
params: params,
|
11398
11448
|
config: config)
|
11399
11449
|
context[:gem_name] = 'aws-sdk-ssm'
|
11400
|
-
context[:gem_version] = '1.
|
11450
|
+
context[:gem_version] = '1.129.0'
|
11401
11451
|
Seahorse::Client::Request.new(handlers, context)
|
11402
11452
|
end
|
11403
11453
|
|
@@ -129,6 +129,9 @@ module Aws::SSM
|
|
129
129
|
CancelCommandResult = Shapes::StructureShape.new(name: 'CancelCommandResult')
|
130
130
|
CancelMaintenanceWindowExecutionRequest = Shapes::StructureShape.new(name: 'CancelMaintenanceWindowExecutionRequest')
|
131
131
|
CancelMaintenanceWindowExecutionResult = Shapes::StructureShape.new(name: 'CancelMaintenanceWindowExecutionResult')
|
132
|
+
Category = Shapes::StringShape.new(name: 'Category')
|
133
|
+
CategoryEnumList = Shapes::ListShape.new(name: 'CategoryEnumList')
|
134
|
+
CategoryList = Shapes::ListShape.new(name: 'CategoryList')
|
132
135
|
ChangeDetailsValue = Shapes::StringShape.new(name: 'ChangeDetailsValue')
|
133
136
|
ChangeRequestName = Shapes::StringShape.new(name: 'ChangeRequestName')
|
134
137
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
@@ -1492,6 +1495,10 @@ module Aws::SSM
|
|
1492
1495
|
CancelMaintenanceWindowExecutionResult.add_member(:window_execution_id, Shapes::ShapeRef.new(shape: MaintenanceWindowExecutionId, location_name: "WindowExecutionId"))
|
1493
1496
|
CancelMaintenanceWindowExecutionResult.struct_class = Types::CancelMaintenanceWindowExecutionResult
|
1494
1497
|
|
1498
|
+
CategoryEnumList.member = Shapes::ShapeRef.new(shape: Category)
|
1499
|
+
|
1500
|
+
CategoryList.member = Shapes::ShapeRef.new(shape: Category)
|
1501
|
+
|
1495
1502
|
CloudWatchOutputConfig.add_member(:cloud_watch_log_group_name, Shapes::ShapeRef.new(shape: CloudWatchLogGroupName, location_name: "CloudWatchLogGroupName"))
|
1496
1503
|
CloudWatchOutputConfig.add_member(:cloud_watch_output_enabled, Shapes::ShapeRef.new(shape: CloudWatchOutputEnabled, location_name: "CloudWatchOutputEnabled"))
|
1497
1504
|
CloudWatchOutputConfig.struct_class = Types::CloudWatchOutputConfig
|
@@ -2236,6 +2243,8 @@ module Aws::SSM
|
|
2236
2243
|
DocumentDescription.add_member(:approved_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "ApprovedVersion"))
|
2237
2244
|
DocumentDescription.add_member(:pending_review_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "PendingReviewVersion"))
|
2238
2245
|
DocumentDescription.add_member(:review_status, Shapes::ShapeRef.new(shape: ReviewStatus, location_name: "ReviewStatus"))
|
2246
|
+
DocumentDescription.add_member(:category, Shapes::ShapeRef.new(shape: CategoryList, location_name: "Category"))
|
2247
|
+
DocumentDescription.add_member(:category_enum, Shapes::ShapeRef.new(shape: CategoryEnumList, location_name: "CategoryEnum"))
|
2239
2248
|
DocumentDescription.struct_class = Types::DocumentDescription
|
2240
2249
|
|
2241
2250
|
DocumentFilter.add_member(:key, Shapes::ShapeRef.new(shape: DocumentFilterKey, required: true, location_name: "key"))
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -275,6 +275,14 @@ module Aws::SSM
|
|
275
275
|
#
|
276
276
|
# @!attribute [rw] document_version
|
277
277
|
# The version of the document used in the association.
|
278
|
+
#
|
279
|
+
# State Manager doesn't support running associations that use a new
|
280
|
+
# version of a document if that document is shared from another
|
281
|
+
# account. State Manager always runs the `default` version of a
|
282
|
+
# document if shared from another account, even though the Systems
|
283
|
+
# Manager console shows that a new version was processed. If you want
|
284
|
+
# to run an association using a new version of a document shared form
|
285
|
+
# another account, you must set the document version to `default`.
|
278
286
|
# @return [String]
|
279
287
|
#
|
280
288
|
# @!attribute [rw] targets
|
@@ -1853,8 +1861,8 @@ module Aws::SSM
|
|
1853
1861
|
# enough invocations failed for the status to be Failed. This is a
|
1854
1862
|
# terminal state.
|
1855
1863
|
#
|
1856
|
-
# *
|
1857
|
-
# is a terminal state.
|
1864
|
+
# * Cancelled: The command was terminated before it was completed.
|
1865
|
+
# This is a terminal state.
|
1858
1866
|
#
|
1859
1867
|
# * Rate Exceeded: The number of managed nodes targeted by the command
|
1860
1868
|
# exceeded the account limit for pending invocations. The system has
|
@@ -1916,7 +1924,7 @@ module Aws::SSM
|
|
1916
1924
|
# @!attribute [rw] completed_count
|
1917
1925
|
# The number of targets for which the command invocation reached a
|
1918
1926
|
# terminal state. Terminal states include the following: Success,
|
1919
|
-
# Failed, Execution Timed Out, Delivery Timed Out,
|
1927
|
+
# Failed, Execution Timed Out, Delivery Timed Out, Cancelled,
|
1920
1928
|
# Terminated, or Undeliverable.
|
1921
1929
|
# @return [Integer]
|
1922
1930
|
#
|
@@ -2175,8 +2183,8 @@ module Aws::SSM
|
|
2175
2183
|
# more plugins wasn't zero. Invocation failures count against the
|
2176
2184
|
# `MaxErrors` limit of the parent command. This is a terminal state.
|
2177
2185
|
#
|
2178
|
-
# *
|
2179
|
-
# is a terminal state.
|
2186
|
+
# * Cancelled: The command was terminated before it was completed.
|
2187
|
+
# This is a terminal state.
|
2180
2188
|
#
|
2181
2189
|
# * Undeliverable: The command can't be delivered to the managed
|
2182
2190
|
# node. The managed node might not exist or might not be responding.
|
@@ -2306,8 +2314,8 @@ module Aws::SSM
|
|
2306
2314
|
# more plugins wasn't zero. Invocation failures count against the
|
2307
2315
|
# MaxErrors limit of the parent command. This is a terminal state.
|
2308
2316
|
#
|
2309
|
-
# *
|
2310
|
-
# is a terminal state.
|
2317
|
+
# * Cancelled: The command was terminated before it was completed.
|
2318
|
+
# This is a terminal state.
|
2311
2319
|
#
|
2312
2320
|
# * Undeliverable: The command can't be delivered to the managed
|
2313
2321
|
# node. The managed node might not exist, or it might not be
|
@@ -3158,6 +3166,14 @@ module Aws::SSM
|
|
3158
3166
|
# @!attribute [rw] document_version
|
3159
3167
|
# The document version you want to associate with the target(s). Can
|
3160
3168
|
# be a specific version or the default version.
|
3169
|
+
#
|
3170
|
+
# State Manager doesn't support running associations that use a new
|
3171
|
+
# version of a document if that document is shared from another
|
3172
|
+
# account. State Manager always runs the `default` version of a
|
3173
|
+
# document if shared from another account, even though the Systems
|
3174
|
+
# Manager console shows that a new version was processed. If you want
|
3175
|
+
# to run an association using a new version of a document shared form
|
3176
|
+
# another account, you must set the document version to `default`.
|
3161
3177
|
# @return [String]
|
3162
3178
|
#
|
3163
3179
|
# @!attribute [rw] instance_id
|
@@ -7100,7 +7116,7 @@ module Aws::SSM
|
|
7100
7116
|
include Aws::Structure
|
7101
7117
|
end
|
7102
7118
|
|
7103
|
-
# Describes
|
7119
|
+
# Describes an Amazon Web Services Systems Manager document (SSM
|
7104
7120
|
# document).
|
7105
7121
|
#
|
7106
7122
|
# @!attribute [rw] sha_1
|
@@ -7172,7 +7188,8 @@ module Aws::SSM
|
|
7172
7188
|
# @return [Array<Types::DocumentParameter>]
|
7173
7189
|
#
|
7174
7190
|
# @!attribute [rw] platform_types
|
7175
|
-
# The list of OS platforms compatible with this SSM
|
7191
|
+
# The list of operating system (OS) platforms compatible with this SSM
|
7192
|
+
# document.
|
7176
7193
|
# @return [Array<String>]
|
7177
7194
|
#
|
7178
7195
|
# @!attribute [rw] document_type
|
@@ -7242,6 +7259,15 @@ module Aws::SSM
|
|
7242
7259
|
# The current status of the review.
|
7243
7260
|
# @return [String]
|
7244
7261
|
#
|
7262
|
+
# @!attribute [rw] category
|
7263
|
+
# The classification of a document to help you identify and categorize
|
7264
|
+
# its use.
|
7265
|
+
# @return [Array<String>]
|
7266
|
+
#
|
7267
|
+
# @!attribute [rw] category_enum
|
7268
|
+
# The value that identifies a document's category.
|
7269
|
+
# @return [Array<String>]
|
7270
|
+
#
|
7245
7271
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DocumentDescription AWS API Documentation
|
7246
7272
|
#
|
7247
7273
|
class DocumentDescription < Struct.new(
|
@@ -7272,7 +7298,9 @@ module Aws::SSM
|
|
7272
7298
|
:review_information,
|
7273
7299
|
:approved_version,
|
7274
7300
|
:pending_review_version,
|
7275
|
-
:review_status
|
7301
|
+
:review_status,
|
7302
|
+
:category,
|
7303
|
+
:category_enum)
|
7276
7304
|
SENSITIVE = []
|
7277
7305
|
include Aws::Structure
|
7278
7306
|
end
|
@@ -8213,8 +8241,8 @@ module Aws::SSM
|
|
8213
8241
|
# against the `MaxErrors` limit of the parent command. This is a
|
8214
8242
|
# terminal state.
|
8215
8243
|
#
|
8216
|
-
# *
|
8217
|
-
# is a terminal state.
|
8244
|
+
# * Cancelled: The command was terminated before it was completed.
|
8245
|
+
# This is a terminal state.
|
8218
8246
|
#
|
8219
8247
|
# * Undeliverable: The command can't be delivered to the managed
|
8220
8248
|
# node. The node might not exist or might not be responding.
|
@@ -19746,6 +19774,14 @@ module Aws::SSM
|
|
19746
19774
|
#
|
19747
19775
|
# @!attribute [rw] document_version
|
19748
19776
|
# The document version you want update for the association.
|
19777
|
+
#
|
19778
|
+
# State Manager doesn't support running associations that use a new
|
19779
|
+
# version of a document if that document is shared from another
|
19780
|
+
# account. State Manager always runs the `default` version of a
|
19781
|
+
# document if shared from another account, even though the Systems
|
19782
|
+
# Manager console shows that a new version was processed. If you want
|
19783
|
+
# to run an association using a new version of a document shared form
|
19784
|
+
# another account, you must set the document version to `default`.
|
19749
19785
|
# @return [String]
|
19750
19786
|
#
|
19751
19787
|
# @!attribute [rw] schedule_expression
|
data/lib/aws-sdk-ssm.rb
CHANGED
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.129.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: 2022-02-03 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.126.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.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|