aws-sdk-ssm 1.127.0 → 1.131.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3464fe169e9ba162b9f958c4cbcb4600fefaecb01b4059f242426cb3f7811ab1
4
- data.tar.gz: 8dda0c55f076aa8cd9bb9deaf4522935287d0f260268fc2f407a1b5b8af52df2
3
+ metadata.gz: dd21c7771580aa53bdc4a8ecbec9686b677ffd48262a0ee0a06b17c9010c042d
4
+ data.tar.gz: 2e504a5c9f21d1c586a9bc4895a8cf734ec1275eb5d382d85817cdfcdbb5cbc2
5
5
  SHA512:
6
- metadata.gz: 3db9b576377d41d5432867ad1ddcce103c7489290b9cd37bebbacd71e72eae60b93650cf5897e04af13a6036f2d6a59fc92a535ac4f86c7ef62037551829d60c
7
- data.tar.gz: 8f2108f071afbdb5b4ffa41dab4318e8c21b0a7947e35ce91a7edeb2365428c800b9c4366861d1ce8251cfd88ab354ee1fe455a8ffaa14a0bb9d736cba9fb382
6
+ metadata.gz: 17ca57b657c4698de8c81341eb6d2aaab53ac01088dfc0358fed83c5b3331d3f86ab54ea8e69f660591da487fefeff0da4061114fc4a87e0a856e4fd213cacb8
7
+ data.tar.gz: dca25ba35249e1cf64a2979135d1661ba160ee2e99ea9823825a46344423642037f8ca0eb8822d03edc5d1abfb411de45c534a96691ddb1c6e01017b067e0606
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.131.0 (2022-02-16)
5
+ ------------------
6
+
7
+ * Feature - Assorted ticket fixes and updates for AWS Systems Manager.
8
+
9
+ 1.130.0 (2022-02-11)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for AWS Systems Manager.
13
+
14
+ 1.129.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.128.0 (2022-01-13)
20
+ ------------------
21
+
22
+ * Feature - AWS Systems Manager adds category support for DescribeDocument API
23
+
4
24
  1.127.0 (2021-12-21)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.127.0
1
+ 1.131.0
@@ -28,6 +28,7 @@ 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
30
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
33
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
33
34
 
@@ -75,6 +76,7 @@ module Aws::SSM
75
76
  add_plugin(Aws::Plugins::TransferEncoding)
76
77
  add_plugin(Aws::Plugins::HttpChecksum)
77
78
  add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
78
80
  add_plugin(Aws::Plugins::SignatureV4)
79
81
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
80
82
 
@@ -741,6 +743,14 @@ module Aws::SSM
741
743
  # The document version you want to associate with the target(s). Can be
742
744
  # a specific version or the default version.
743
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
+ #
744
754
  # @option params [String] :instance_id
745
755
  # The managed node ID.
746
756
  #
@@ -1195,6 +1205,11 @@ module Aws::SSM
1195
1205
  # @option params [String] :document_type
1196
1206
  # The type of document to create.
1197
1207
  #
1208
+ # <note markdown="1"> The `DeploymentStrategy` document type is an internal-use-only
1209
+ # document type reserved for AppConfig.
1210
+ #
1211
+ # </note>
1212
+ #
1198
1213
  # @option params [String] :document_format
1199
1214
  # Specify the document format for the request. The document format can
1200
1215
  # be JSON, YAML, or TEXT. JSON is the default format.
@@ -1306,6 +1321,10 @@ module Aws::SSM
1306
1321
  # resp.document_description.approved_version #=> String
1307
1322
  # resp.document_description.pending_review_version #=> String
1308
1323
  # resp.document_description.review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
1324
+ # resp.document_description.category #=> Array
1325
+ # resp.document_description.category[0] #=> String
1326
+ # resp.document_description.category_enum #=> Array
1327
+ # resp.document_description.category_enum[0] #=> String
1309
1328
  #
1310
1329
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateDocument AWS API Documentation
1311
1330
  #
@@ -3186,6 +3205,10 @@ module Aws::SSM
3186
3205
  # resp.document.approved_version #=> String
3187
3206
  # resp.document.pending_review_version #=> String
3188
3207
  # resp.document.review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
3208
+ # resp.document.category #=> Array
3209
+ # resp.document.category[0] #=> String
3210
+ # resp.document.category_enum #=> Array
3211
+ # resp.document.category_enum[0] #=> String
3189
3212
  #
3190
3213
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocument AWS API Documentation
3191
3214
  #
@@ -6378,8 +6401,8 @@ module Aws::SSM
6378
6401
  #
6379
6402
  # @option params [required, String] :path
6380
6403
  # The hierarchy for the parameter. Hierarchies start with a forward
6381
- # slash (/). The hierachy is the parameter name except the last part of
6382
- # the parameter. For the API call to succeeed, the last part of the
6404
+ # slash (/). The hierarchy is the parameter name except the last part of
6405
+ # the parameter. For the API call to succeed, the last part of the
6383
6406
  # parameter name can't be in the path. A parameter name hierarchy can
6384
6407
  # have a maximum of 15 levels. Here is an example of a hierarchy:
6385
6408
  # `/Finance/Prod/IAD/WinServ2016/license33 `
@@ -8327,6 +8350,8 @@ module Aws::SSM
8327
8350
  #
8328
8351
  # * `aws:ec2:image`
8329
8352
  #
8353
+ # * `aws:ssm:integration`
8354
+ #
8330
8355
  # When you create a `String` parameter and specify `aws:ec2:image`,
8331
8356
  # Amazon Web Services Systems Manager validates the parameter value is
8332
8357
  # in the required format, such as `ami-12345abcdeEXAMPLE`, and that the
@@ -8637,26 +8662,42 @@ module Aws::SSM
8637
8662
  # scheduled in parallel.
8638
8663
  #
8639
8664
  # @option params [String] :max_concurrency
8640
- # The maximum number of targets this task can be run for in parallel.
8665
+ # The maximum number of targets this task can be run for, in parallel.
8666
+ #
8667
+ # <note markdown="1"> Although this element is listed as "Required: No", a value can be
8668
+ # omitted only when you are registering or updating a [targetless
8669
+ # task][1] You must provide a value in all other cases.
8641
8670
  #
8642
- # <note markdown="1"> For maintenance window tasks without a target specified, you can't
8671
+ # For maintenance window tasks without a target specified, you can't
8643
8672
  # supply a value for this option. Instead, the system inserts a
8644
8673
  # placeholder value of `1`. This value doesn't affect the running of
8645
8674
  # your task.
8646
8675
  #
8647
8676
  # </note>
8648
8677
  #
8678
+ #
8679
+ #
8680
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html
8681
+ #
8649
8682
  # @option params [String] :max_errors
8650
8683
  # The maximum number of errors allowed before this task stops being
8651
8684
  # scheduled.
8652
8685
  #
8653
- # <note markdown="1"> For maintenance window tasks without a target specified, you can't
8686
+ # <note markdown="1"> Although this element is listed as "Required: No", a value can be
8687
+ # omitted only when you are registering or updating a [targetless
8688
+ # task][1] You must provide a value in all other cases.
8689
+ #
8690
+ # For maintenance window tasks without a target specified, you can't
8654
8691
  # supply a value for this option. Instead, the system inserts a
8655
8692
  # placeholder value of `1`. This value doesn't affect the running of
8656
8693
  # your task.
8657
8694
  #
8658
8695
  # </note>
8659
8696
  #
8697
+ #
8698
+ #
8699
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html
8700
+ #
8660
8701
  # @option params [Types::LoggingInfo] :logging_info
8661
8702
  # A structure containing information about an Amazon Simple Storage
8662
8703
  # Service (Amazon S3) bucket to write managed node-level logs to.
@@ -9661,7 +9702,7 @@ module Aws::SSM
9661
9702
 
9662
9703
  # Permanently ends a session and closes the data connection between the
9663
9704
  # Session Manager client and SSM Agent on the managed node. A terminated
9664
- # session isn't be resumed.
9705
+ # session can't be resumed.
9665
9706
  #
9666
9707
  # @option params [required, String] :session_id
9667
9708
  # The ID of the session to terminate.
@@ -9733,7 +9774,14 @@ module Aws::SSM
9733
9774
 
9734
9775
  # Updates an association. You can update the association name and
9735
9776
  # version, the document version, schedule, parameters, and Amazon Simple
9736
- # Storage Service (Amazon S3) output.
9777
+ # Storage Service (Amazon S3) output. When you call `UpdateAssociation`,
9778
+ # the system removes all optional parameters from the request and
9779
+ # overwrites the association with null values for those parameters. This
9780
+ # is by design. You must specify all optional parameters in the call,
9781
+ # even if you are not changing the parameters. This includes the `Name`
9782
+ # parameter. Before calling this API action, we recommend that you call
9783
+ # the DescribeAssociation API operation and make a note of all optional
9784
+ # parameters required for your `UpdateAssociation` call.
9737
9785
  #
9738
9786
  # In order to call this API operation, your Identity and Access
9739
9787
  # Management (IAM) user account, group, or role must be configured with
@@ -9745,7 +9793,9 @@ module Aws::SSM
9745
9793
  # <resource_arn>`
9746
9794
  #
9747
9795
  # When you update an association, the association immediately runs
9748
- # against the specified targets.
9796
+ # against the specified targets. You can add the
9797
+ # `ApplyOnlyAtCronInterval` parameter to run the association during the
9798
+ # next schedule run.
9749
9799
  #
9750
9800
  # @option params [required, String] :association_id
9751
9801
  # The ID of the association you want to update.
@@ -9759,6 +9809,14 @@ module Aws::SSM
9759
9809
  # @option params [String] :document_version
9760
9810
  # The document version you want update for the association.
9761
9811
  #
9812
+ # State Manager doesn't support running associations that use a new
9813
+ # version of a document if that document is shared from another account.
9814
+ # State Manager always runs the `default` version of a document if
9815
+ # shared from another account, even though the Systems Manager console
9816
+ # shows that a new version was processed. If you want to run an
9817
+ # association using a new version of a document shared form another
9818
+ # account, you must set the document version to `default`.
9819
+ #
9762
9820
  # @option params [String] :schedule_expression
9763
9821
  # The cron expression used to schedule the association that you want to
9764
9822
  # update.
@@ -10182,6 +10240,10 @@ module Aws::SSM
10182
10240
  # resp.document_description.approved_version #=> String
10183
10241
  # resp.document_description.pending_review_version #=> String
10184
10242
  # resp.document_description.review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
10243
+ # resp.document_description.category #=> Array
10244
+ # resp.document_description.category[0] #=> String
10245
+ # resp.document_description.category_enum #=> Array
10246
+ # resp.document_description.category_enum[0] #=> String
10185
10247
  #
10186
10248
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocument AWS API Documentation
10187
10249
  #
@@ -10291,14 +10353,9 @@ module Aws::SSM
10291
10353
  # An optional description for the update request.
10292
10354
  #
10293
10355
  # @option params [String] :start_date
10294
- # The time zone that the scheduled maintenance window executions are
10295
- # based on, in Internet Assigned Numbers Authority (IANA) format. For
10296
- # example: "America/Los\_Angeles", "UTC", or "Asia/Seoul". For
10297
- # more information, see the [Time Zone Database][1] on the IANA website.
10298
- #
10299
- #
10300
- #
10301
- # [1]: https://www.iana.org/time-zones
10356
+ # The date and time, in ISO-8601 Extended format, for when you want the
10357
+ # maintenance window to become active. `StartDate` allows you to delay
10358
+ # activation of the maintenance window until the specified future date.
10302
10359
  #
10303
10360
  # @option params [String] :end_date
10304
10361
  # The date and time, in ISO-8601 Extended format, for when you want the
@@ -10636,30 +10693,44 @@ module Aws::SSM
10636
10693
  #
10637
10694
  # @option params [String] :max_concurrency
10638
10695
  # The new `MaxConcurrency` value you want to specify. `MaxConcurrency`
10639
- # is the number of targets that are allowed to run this task in
10696
+ # is the number of targets that are allowed to run this task, in
10640
10697
  # parallel.
10641
10698
  #
10642
- # <note markdown="1"> For maintenance window tasks without a target specified, you can't
10699
+ # <note markdown="1"> Although this element is listed as "Required: No", a value can be
10700
+ # omitted only when you are registering or updating a [targetless
10701
+ # task][1] You must provide a value in all other cases.
10702
+ #
10703
+ # For maintenance window tasks without a target specified, you can't
10643
10704
  # supply a value for this option. Instead, the system inserts a
10644
- # placeholder value of `1`, which may be reported in the response to
10645
- # this command. This value doesn't affect the running of your task and
10646
- # can be ignored.
10705
+ # placeholder value of `1`. This value doesn't affect the running of
10706
+ # your task.
10647
10707
  #
10648
10708
  # </note>
10649
10709
  #
10710
+ #
10711
+ #
10712
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html
10713
+ #
10650
10714
  # @option params [String] :max_errors
10651
10715
  # The new `MaxErrors` value to specify. `MaxErrors` is the maximum
10652
10716
  # number of errors that are allowed before the task stops being
10653
10717
  # scheduled.
10654
10718
  #
10655
- # <note markdown="1"> For maintenance window tasks without a target specified, you can't
10719
+ # <note markdown="1"> Although this element is listed as "Required: No", a value can be
10720
+ # omitted only when you are registering or updating a [targetless
10721
+ # task][1] You must provide a value in all other cases.
10722
+ #
10723
+ # For maintenance window tasks without a target specified, you can't
10656
10724
  # supply a value for this option. Instead, the system inserts a
10657
- # placeholder value of `1`, which may be reported in the response to
10658
- # this command. This value doesn't affect the running of your task and
10659
- # can be ignored.
10725
+ # placeholder value of `1`. This value doesn't affect the running of
10726
+ # your task.
10660
10727
  #
10661
10728
  # </note>
10662
10729
  #
10730
+ #
10731
+ #
10732
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html
10733
+ #
10663
10734
  # @option params [Types::LoggingInfo] :logging_info
10664
10735
  # The new logging location in Amazon S3 to specify.
10665
10736
  #
@@ -11038,7 +11109,7 @@ module Aws::SSM
11038
11109
  # edit OpsMetadata in Application Manager.
11039
11110
  #
11040
11111
  # @option params [required, String] :ops_metadata_arn
11041
- # The Amazon Resoure Name (ARN) of the OpsMetadata Object to update.
11112
+ # The Amazon Resource Name (ARN) of the OpsMetadata Object to update.
11042
11113
  #
11043
11114
  # @option params [Hash<String,Types::MetadataValue>] :metadata_to_update
11044
11115
  # Metadata to add to an OpsMetadata object.
@@ -11408,7 +11479,7 @@ module Aws::SSM
11408
11479
  params: params,
11409
11480
  config: config)
11410
11481
  context[:gem_name] = 'aws-sdk-ssm'
11411
- context[:gem_version] = '1.127.0'
11482
+ context[:gem_version] = '1.131.0'
11412
11483
  Seahorse::Client::Request.new(handlers, context)
11413
11484
  end
11414
11485
 
@@ -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"))
@@ -6224,7 +6233,6 @@ module Aws::SSM
6224
6233
  o.http_request_uri = "/"
6225
6234
  o.input = Shapes::ShapeRef.new(shape: TerminateSessionRequest)
6226
6235
  o.output = Shapes::ShapeRef.new(shape: TerminateSessionResponse)
6227
- o.errors << Shapes::ShapeRef.new(shape: DoesNotExistException)
6228
6236
  o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
6229
6237
  end)
6230
6238
 
@@ -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
- # * Canceled: The command was terminated before it was completed. This
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, Canceled,
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
- # * Canceled: The command was terminated before it was completed. This
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
- # * Canceled: The command was terminated before it was completed. This
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
@@ -3430,6 +3446,11 @@ module Aws::SSM
3430
3446
  #
3431
3447
  # @!attribute [rw] document_type
3432
3448
  # The type of document to create.
3449
+ #
3450
+ # <note markdown="1"> The `DeploymentStrategy` document type is an internal-use-only
3451
+ # document type reserved for AppConfig.
3452
+ #
3453
+ # </note>
3433
3454
  # @return [String]
3434
3455
  #
3435
3456
  # @!attribute [rw] document_format
@@ -7100,7 +7121,7 @@ module Aws::SSM
7100
7121
  include Aws::Structure
7101
7122
  end
7102
7123
 
7103
- # Describes a Amazon Web Services Systems Manager document (SSM
7124
+ # Describes an Amazon Web Services Systems Manager document (SSM
7104
7125
  # document).
7105
7126
  #
7106
7127
  # @!attribute [rw] sha_1
@@ -7172,7 +7193,8 @@ module Aws::SSM
7172
7193
  # @return [Array<Types::DocumentParameter>]
7173
7194
  #
7174
7195
  # @!attribute [rw] platform_types
7175
- # The list of OS platforms compatible with this SSM document.
7196
+ # The list of operating system (OS) platforms compatible with this SSM
7197
+ # document.
7176
7198
  # @return [Array<String>]
7177
7199
  #
7178
7200
  # @!attribute [rw] document_type
@@ -7242,6 +7264,15 @@ module Aws::SSM
7242
7264
  # The current status of the review.
7243
7265
  # @return [String]
7244
7266
  #
7267
+ # @!attribute [rw] category
7268
+ # The classification of a document to help you identify and categorize
7269
+ # its use.
7270
+ # @return [Array<String>]
7271
+ #
7272
+ # @!attribute [rw] category_enum
7273
+ # The value that identifies a document's category.
7274
+ # @return [Array<String>]
7275
+ #
7245
7276
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DocumentDescription AWS API Documentation
7246
7277
  #
7247
7278
  class DocumentDescription < Struct.new(
@@ -7272,7 +7303,9 @@ module Aws::SSM
7272
7303
  :review_information,
7273
7304
  :approved_version,
7274
7305
  :pending_review_version,
7275
- :review_status)
7306
+ :review_status,
7307
+ :category,
7308
+ :category_enum)
7276
7309
  SENSITIVE = []
7277
7310
  include Aws::Structure
7278
7311
  end
@@ -7422,8 +7455,6 @@ module Aws::SSM
7422
7455
  #
7423
7456
  # * `Command`
7424
7457
  #
7425
- # * `DeploymentStrategy`
7426
- #
7427
7458
  # * `Package`
7428
7459
  #
7429
7460
  # * `Policy`
@@ -8213,8 +8244,8 @@ module Aws::SSM
8213
8244
  # against the `MaxErrors` limit of the parent command. This is a
8214
8245
  # terminal state.
8215
8246
  #
8216
- # * Canceled: The command was terminated before it was completed. This
8217
- # is a terminal state.
8247
+ # * Cancelled: The command was terminated before it was completed.
8248
+ # This is a terminal state.
8218
8249
  #
8219
8250
  # * Undeliverable: The command can't be delivered to the managed
8220
8251
  # node. The node might not exist or might not be responding.
@@ -9622,8 +9653,8 @@ module Aws::SSM
9622
9653
  #
9623
9654
  # @!attribute [rw] path
9624
9655
  # The hierarchy for the parameter. Hierarchies start with a forward
9625
- # slash (/). The hierachy is the parameter name except the last part
9626
- # of the parameter. For the API call to succeeed, the last part of the
9656
+ # slash (/). The hierarchy is the parameter name except the last part
9657
+ # of the parameter. For the API call to succeed, the last part of the
9627
9658
  # parameter name can't be in the path. A parameter name hierarchy can
9628
9659
  # have a maximum of 15 levels. Here is an example of a hierarchy:
9629
9660
  # `/Finance/Prod/IAD/WinServ2016/license33 `
@@ -13682,11 +13713,41 @@ module Aws::SSM
13682
13713
  #
13683
13714
  # @!attribute [rw] max_concurrency
13684
13715
  # The maximum number of targets this task can be run for, in parallel.
13716
+ #
13717
+ # <note markdown="1"> Although this element is listed as "Required: No", a value can be
13718
+ # omitted only when you are registering or updating a [targetless
13719
+ # task][1] You must provide a value in all other cases.
13720
+ #
13721
+ # For maintenance window tasks without a target specified, you can't
13722
+ # supply a value for this option. Instead, the system inserts a
13723
+ # placeholder value of `1`. This value doesn't affect the running of
13724
+ # your task.
13725
+ #
13726
+ # </note>
13727
+ #
13728
+ #
13729
+ #
13730
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html
13685
13731
  # @return [String]
13686
13732
  #
13687
13733
  # @!attribute [rw] max_errors
13688
13734
  # The maximum number of errors allowed before this task stops being
13689
13735
  # scheduled.
13736
+ #
13737
+ # <note markdown="1"> Although this element is listed as "Required: No", a value can be
13738
+ # omitted only when you are registering or updating a [targetless
13739
+ # task][1] You must provide a value in all other cases.
13740
+ #
13741
+ # For maintenance window tasks without a target specified, you can't
13742
+ # supply a value for this option. Instead, the system inserts a
13743
+ # placeholder value of `1`. This value doesn't affect the running of
13744
+ # your task.
13745
+ #
13746
+ # </note>
13747
+ #
13748
+ #
13749
+ #
13750
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html
13690
13751
  # @return [String]
13691
13752
  #
13692
13753
  # @!attribute [rw] name
@@ -15010,10 +15071,20 @@ module Aws::SSM
15010
15071
  # @!attribute [rw] type
15011
15072
  # The type of parameter. Valid values include the following: `String`,
15012
15073
  # `StringList`, and `SecureString`.
15074
+ #
15075
+ # <note markdown="1"> If type is `StringList`, the system returns a comma-separated string
15076
+ # with no spaces between commas in the `Value` field.
15077
+ #
15078
+ # </note>
15013
15079
  # @return [String]
15014
15080
  #
15015
15081
  # @!attribute [rw] value
15016
15082
  # The parameter value.
15083
+ #
15084
+ # <note markdown="1"> If type is `StringList`, the system returns a comma-separated string
15085
+ # with no spaces between commas in the `Value` field.
15086
+ #
15087
+ # </note>
15017
15088
  # @return [String]
15018
15089
  #
15019
15090
  # @!attribute [rw] version
@@ -15171,7 +15242,7 @@ module Aws::SSM
15171
15242
  # @return [String]
15172
15243
  #
15173
15244
  # @!attribute [rw] policy_type
15174
- # The type of policy. Parameter Store, a capablility of Amazon Web
15245
+ # The type of policy. Parameter Store, a capability of Amazon Web
15175
15246
  # Services Systems Manager, supports the following policy types:
15176
15247
  # Expiration, ExpirationNotification, and NoChangeNotification.
15177
15248
  # @return [String]
@@ -15660,7 +15731,7 @@ module Aws::SSM
15660
15731
  # @return [String]
15661
15732
  #
15662
15733
  # @!attribute [rw] severity
15663
- # The severity of the patchsuch as `Critical`, `Important`, and
15734
+ # The severity of the patch such as `Critical`, `Important`, and
15664
15735
  # `Moderate`.
15665
15736
  # @return [String]
15666
15737
  #
@@ -16500,6 +16571,8 @@ module Aws::SSM
16500
16571
  #
16501
16572
  # * `aws:ec2:image`
16502
16573
  #
16574
+ # * `aws:ssm:integration`
16575
+ #
16503
16576
  # When you create a `String` parameter and specify `aws:ec2:image`,
16504
16577
  # Amazon Web Services Systems Manager validates the parameter value is
16505
16578
  # in the required format, such as `ami-12345abcdeEXAMPLE`, and that
@@ -16913,26 +16986,42 @@ module Aws::SSM
16913
16986
  # @return [Integer]
16914
16987
  #
16915
16988
  # @!attribute [rw] max_concurrency
16916
- # The maximum number of targets this task can be run for in parallel.
16989
+ # The maximum number of targets this task can be run for, in parallel.
16917
16990
  #
16918
- # <note markdown="1"> For maintenance window tasks without a target specified, you can't
16991
+ # <note markdown="1"> Although this element is listed as "Required: No", a value can be
16992
+ # omitted only when you are registering or updating a [targetless
16993
+ # task][1] You must provide a value in all other cases.
16994
+ #
16995
+ # For maintenance window tasks without a target specified, you can't
16919
16996
  # supply a value for this option. Instead, the system inserts a
16920
16997
  # placeholder value of `1`. This value doesn't affect the running of
16921
16998
  # your task.
16922
16999
  #
16923
17000
  # </note>
17001
+ #
17002
+ #
17003
+ #
17004
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html
16924
17005
  # @return [String]
16925
17006
  #
16926
17007
  # @!attribute [rw] max_errors
16927
17008
  # The maximum number of errors allowed before this task stops being
16928
17009
  # scheduled.
16929
17010
  #
16930
- # <note markdown="1"> For maintenance window tasks without a target specified, you can't
17011
+ # <note markdown="1"> Although this element is listed as "Required: No", a value can be
17012
+ # omitted only when you are registering or updating a [targetless
17013
+ # task][1] You must provide a value in all other cases.
17014
+ #
17015
+ # For maintenance window tasks without a target specified, you can't
16931
17016
  # supply a value for this option. Instead, the system inserts a
16932
17017
  # placeholder value of `1`. This value doesn't affect the running of
16933
17018
  # your task.
16934
17019
  #
16935
17020
  # </note>
17021
+ #
17022
+ #
17023
+ #
17024
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html
16936
17025
  # @return [String]
16937
17026
  #
16938
17027
  # @!attribute [rw] logging_info
@@ -19746,6 +19835,14 @@ module Aws::SSM
19746
19835
  #
19747
19836
  # @!attribute [rw] document_version
19748
19837
  # The document version you want update for the association.
19838
+ #
19839
+ # State Manager doesn't support running associations that use a new
19840
+ # version of a document if that document is shared from another
19841
+ # account. State Manager always runs the `default` version of a
19842
+ # document if shared from another account, even though the Systems
19843
+ # Manager console shows that a new version was processed. If you want
19844
+ # to run an association using a new version of a document shared form
19845
+ # another account, you must set the document version to `default`.
19749
19846
  # @return [String]
19750
19847
  #
19751
19848
  # @!attribute [rw] schedule_expression
@@ -20180,15 +20277,10 @@ module Aws::SSM
20180
20277
  # @return [String]
20181
20278
  #
20182
20279
  # @!attribute [rw] start_date
20183
- # The time zone that the scheduled maintenance window executions are
20184
- # based on, in Internet Assigned Numbers Authority (IANA) format. For
20185
- # example: "America/Los\_Angeles", "UTC", or "Asia/Seoul". For
20186
- # more information, see the [Time Zone Database][1] on the IANA
20187
- # website.
20188
- #
20189
- #
20190
- #
20191
- # [1]: https://www.iana.org/time-zones
20280
+ # The date and time, in ISO-8601 Extended format, for when you want
20281
+ # the maintenance window to become active. `StartDate` allows you to
20282
+ # delay activation of the maintenance window until the specified
20283
+ # future date.
20192
20284
  # @return [String]
20193
20285
  #
20194
20286
  # @!attribute [rw] end_date
@@ -20629,16 +20721,23 @@ module Aws::SSM
20629
20721
  #
20630
20722
  # @!attribute [rw] max_concurrency
20631
20723
  # The new `MaxConcurrency` value you want to specify. `MaxConcurrency`
20632
- # is the number of targets that are allowed to run this task in
20724
+ # is the number of targets that are allowed to run this task, in
20633
20725
  # parallel.
20634
20726
  #
20635
- # <note markdown="1"> For maintenance window tasks without a target specified, you can't
20727
+ # <note markdown="1"> Although this element is listed as "Required: No", a value can be
20728
+ # omitted only when you are registering or updating a [targetless
20729
+ # task][1] You must provide a value in all other cases.
20730
+ #
20731
+ # For maintenance window tasks without a target specified, you can't
20636
20732
  # supply a value for this option. Instead, the system inserts a
20637
- # placeholder value of `1`, which may be reported in the response to
20638
- # this command. This value doesn't affect the running of your task
20639
- # and can be ignored.
20733
+ # placeholder value of `1`. This value doesn't affect the running of
20734
+ # your task.
20640
20735
  #
20641
20736
  # </note>
20737
+ #
20738
+ #
20739
+ #
20740
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html
20642
20741
  # @return [String]
20643
20742
  #
20644
20743
  # @!attribute [rw] max_errors
@@ -20646,13 +20745,20 @@ module Aws::SSM
20646
20745
  # number of errors that are allowed before the task stops being
20647
20746
  # scheduled.
20648
20747
  #
20649
- # <note markdown="1"> For maintenance window tasks without a target specified, you can't
20748
+ # <note markdown="1"> Although this element is listed as "Required: No", a value can be
20749
+ # omitted only when you are registering or updating a [targetless
20750
+ # task][1] You must provide a value in all other cases.
20751
+ #
20752
+ # For maintenance window tasks without a target specified, you can't
20650
20753
  # supply a value for this option. Instead, the system inserts a
20651
- # placeholder value of `1`, which may be reported in the response to
20652
- # this command. This value doesn't affect the running of your task
20653
- # and can be ignored.
20754
+ # placeholder value of `1`. This value doesn't affect the running of
20755
+ # your task.
20654
20756
  #
20655
20757
  # </note>
20758
+ #
20759
+ #
20760
+ #
20761
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html
20656
20762
  # @return [String]
20657
20763
  #
20658
20764
  # @!attribute [rw] logging_info
@@ -21040,7 +21146,7 @@ module Aws::SSM
21040
21146
  # }
21041
21147
  #
21042
21148
  # @!attribute [rw] ops_metadata_arn
21043
- # The Amazon Resoure Name (ARN) of the OpsMetadata Object to update.
21149
+ # The Amazon Resource Name (ARN) of the OpsMetadata Object to update.
21044
21150
  # @return [String]
21045
21151
  #
21046
21152
  # @!attribute [rw] metadata_to_update
data/lib/aws-sdk-ssm.rb CHANGED
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-ssm/customizations'
49
49
  # @!group service
50
50
  module Aws::SSM
51
51
 
52
- GEM_VERSION = '1.127.0'
52
+ GEM_VERSION = '1.131.0'
53
53
 
54
54
  end
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.127.0
4
+ version: 1.131.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-12-21 00:00:00.000000000 Z
11
+ date: 2022-02-16 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.125.0
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.125.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement