aws-sdk-ssm 1.133.0 → 1.134.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 356eaad6e39f4dd9946556bcef8479f79e7933622d813b878abe72dea6c0c8e9
4
- data.tar.gz: e0e69549e961702594febcd4dbd709d9312456110e85742cb8bf1439e5b00664
3
+ metadata.gz: c2512bb3a936e42c877b4a77ac1b32a1ddc1e62b6e25bef86714874e9ffca2e2
4
+ data.tar.gz: 9106e7b85920d41e79ef293bfd48588941fba1dc1bf5fb1029ad1bc40f68eafa
5
5
  SHA512:
6
- metadata.gz: 3541e515652d185db61cdb84ecddee9f2a4752a3769370151e267368a7784c5a0b6cde148d6567843d23f613d3073e75c7071384b69262c472a23f64f0a16996
7
- data.tar.gz: 03e2e6323460d22aa1df128d26bc4d2c5e8501a0f171a02a9e27f0d45477a4566108fb585cebc18d17d5bb130530ce8cf1f3eb80bed7de1d2588d85db1376c15
6
+ metadata.gz: 99cc9d2c0fefce4a1cacee4cd367e637288c967e3d90639dc0cec04c012ed1b6a9468fda8aa474074982abeed6367eb7dd36ccec6dbd0cfd1430e1cedc01bb7d
7
+ data.tar.gz: 0aae2c54b63d3d3062050fd949e5ce5780a217bb726d161d09b8539d16b6cf8bce2526a23c69f7737f2faa60e7ac8fdc9fb1e5f13466e5fc7ad112d97af883af
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.134.0 (2022-03-25)
5
+ ------------------
6
+
7
+ * Feature - This Patch Manager release supports creating, updating, and deleting Patch Baselines for Rocky Linux OS.
8
+
4
9
  1.133.0 (2022-03-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.133.0
1
+ 1.134.0
@@ -362,14 +362,13 @@ module Aws::SSM
362
362
  # @!group API Operations
363
363
 
364
364
  # Adds or overwrites one or more tags for the specified resource. Tags
365
- # are metadata that you can assign to your automations, documents,
366
- # managed nodes, maintenance windows, Parameter Store parameters, and
367
- # patch baselines. Tags enable you to categorize your resources in
368
- # different ways, for example, by purpose, owner, or environment. Each
369
- # tag consists of a key and an optional value, both of which you define.
370
- # For example, you could define a set of tags for your account's
371
- # managed nodes that helps you track each node's owner and stack level.
372
- # For example:
365
+ # are metadata that you can assign to your documents, managed nodes,
366
+ # maintenance windows, Parameter Store parameters, and patch baselines.
367
+ # Tags enable you to categorize your resources in different ways, for
368
+ # example, by purpose, owner, or environment. Each tag consists of a key
369
+ # and an optional value, both of which you define. For example, you
370
+ # could define a set of tags for your account's managed nodes that
371
+ # helps you track each node's owner and stack level. For example:
373
372
  #
374
373
  # * `Key=Owner,Value=DbAdmin`
375
374
  #
@@ -383,8 +382,7 @@ module Aws::SSM
383
382
  #
384
383
  # * `Key=Stack,Value=Test`
385
384
  #
386
- # Most resources can have a maximum of 50 tags. Automations can have a
387
- # maximum of 5 tags.
385
+ # Each resource can have a maximum of 50 tags.
388
386
  #
389
387
  # We recommend that you devise a set of tag keys that meets your needs
390
388
  # for each resource type. Using a consistent set of tag keys makes it
@@ -418,8 +416,6 @@ module Aws::SSM
418
416
  #
419
417
  # `PatchBaseline`\: `pb-012345abcde`
420
418
  #
421
- # `Automation`\: `example-c160-4567-8519-012345abcde`
422
- #
423
419
  # `OpsMetadata` object: `ResourceID` for tagging is created from the
424
420
  # Amazon Resource Name (ARN) for the object. Specifically, `ResourceID`
425
421
  # is created from the strings that come after the word `opsmetadata` in
@@ -1821,7 +1817,7 @@ module Aws::SSM
1821
1817
  # @example Request syntax with placeholder values
1822
1818
  #
1823
1819
  # resp = client.create_patch_baseline({
1824
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
1820
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
1825
1821
  # name: "BaselineName", # required
1826
1822
  # global_filters: {
1827
1823
  # patch_filters: [ # required
@@ -4661,7 +4657,7 @@ module Aws::SSM
4661
4657
  # resp.baseline_identities #=> Array
4662
4658
  # resp.baseline_identities[0].baseline_id #=> String
4663
4659
  # resp.baseline_identities[0].baseline_name #=> String
4664
- # resp.baseline_identities[0].operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
4660
+ # resp.baseline_identities[0].operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX"
4665
4661
  # resp.baseline_identities[0].baseline_description #=> String
4666
4662
  # resp.baseline_identities[0].default_baseline #=> Boolean
4667
4663
  # resp.next_token #=> String
@@ -4774,7 +4770,7 @@ module Aws::SSM
4774
4770
  # resp.mappings[0].patch_group #=> String
4775
4771
  # resp.mappings[0].baseline_identity.baseline_id #=> String
4776
4772
  # resp.mappings[0].baseline_identity.baseline_name #=> String
4777
- # resp.mappings[0].baseline_identity.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
4773
+ # resp.mappings[0].baseline_identity.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX"
4778
4774
  # resp.mappings[0].baseline_identity.baseline_description #=> String
4779
4775
  # resp.mappings[0].baseline_identity.default_baseline #=> Boolean
4780
4776
  # resp.next_token #=> String
@@ -4869,7 +4865,7 @@ module Aws::SSM
4869
4865
  # @example Request syntax with placeholder values
4870
4866
  #
4871
4867
  # resp = client.describe_patch_properties({
4872
- # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
4868
+ # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
4873
4869
  # property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
4874
4870
  # patch_set: "OS", # accepts OS, APPLICATION
4875
4871
  # max_results: 1,
@@ -5346,13 +5342,13 @@ module Aws::SSM
5346
5342
  # @example Request syntax with placeholder values
5347
5343
  #
5348
5344
  # resp = client.get_default_patch_baseline({
5349
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
5345
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
5350
5346
  # })
5351
5347
  #
5352
5348
  # @example Response structure
5353
5349
  #
5354
5350
  # resp.baseline_id #=> String
5355
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
5351
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX"
5356
5352
  #
5357
5353
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaseline AWS API Documentation
5358
5354
  #
@@ -5403,7 +5399,7 @@ module Aws::SSM
5403
5399
  # instance_id: "InstanceId", # required
5404
5400
  # snapshot_id: "SnapshotId", # required
5405
5401
  # baseline_override: {
5406
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
5402
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
5407
5403
  # global_filters: {
5408
5404
  # patch_filters: [ # required
5409
5405
  # {
@@ -5910,7 +5906,7 @@ module Aws::SSM
5910
5906
  req.send_request(options)
5911
5907
  end
5912
5908
 
5913
- # Lists the tasks in a maintenance window.
5909
+ # Retrieves the details of a maintenance window task.
5914
5910
  #
5915
5911
  # <note markdown="1"> For maintenance window tasks without a specified target, you can't
5916
5912
  # supply values for `--max-errors` and `--max-concurrency`. Instead, the
@@ -5920,6 +5916,9 @@ module Aws::SSM
5920
5916
  #
5921
5917
  # </note>
5922
5918
  #
5919
+ # To retrieve a list of tasks in a maintenance window, instead use the
5920
+ # DescribeMaintenanceWindowTasks command.
5921
+ #
5923
5922
  # @option params [required, String] :window_id
5924
5923
  # The maintenance window ID that includes the task to retrieve.
5925
5924
  #
@@ -6535,7 +6534,7 @@ module Aws::SSM
6535
6534
  #
6536
6535
  # resp.baseline_id #=> String
6537
6536
  # resp.name #=> String
6538
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
6537
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX"
6539
6538
  # resp.global_filters.patch_filters #=> Array
6540
6539
  # resp.global_filters.patch_filters[0].key #=> String, one of "ARCH", "ADVISORY_ID", "BUGZILLA_ID", "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "CVE_ID", "EPOCH", "MSRC_SEVERITY", "NAME", "PATCH_ID", "SECTION", "PRIORITY", "REPOSITORY", "RELEASE", "SEVERITY", "SECURITY", "VERSION"
6541
6540
  # resp.global_filters.patch_filters[0].values #=> Array
@@ -6596,14 +6595,14 @@ module Aws::SSM
6596
6595
  #
6597
6596
  # resp = client.get_patch_baseline_for_patch_group({
6598
6597
  # patch_group: "PatchGroup", # required
6599
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
6598
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
6600
6599
  # })
6601
6600
  #
6602
6601
  # @example Response structure
6603
6602
  #
6604
6603
  # resp.baseline_id #=> String
6605
6604
  # resp.patch_group #=> String
6606
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
6605
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX"
6607
6606
  #
6608
6607
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroup AWS API Documentation
6609
6608
  #
@@ -8857,8 +8856,6 @@ module Aws::SSM
8857
8856
  #
8858
8857
  # MaintenanceWindow: mw-012345abcde
8859
8858
  #
8860
- # `Automation`\: `example-c160-4567-8519-012345abcde`
8861
- #
8862
8859
  # PatchBaseline: pb-012345abcde
8863
8860
  #
8864
8861
  # OpsMetadata object: `ResourceID` for tagging is created from the
@@ -9399,7 +9396,7 @@ module Aws::SSM
9399
9396
  #
9400
9397
  # * `Key=OS,Value=Windows`
9401
9398
  #
9402
- # <note markdown="1"> To add tags to an existing automation, use the AddTagsToResource
9399
+ # <note markdown="1"> To add tags to an existing patch baseline, use the AddTagsToResource
9403
9400
  # operation.
9404
9401
  #
9405
9402
  # </note>
@@ -9927,8 +9924,18 @@ module Aws::SSM
9927
9924
  # run immediately after you update it. This parameter isn't supported
9928
9925
  # for rate expressions.
9929
9926
  #
9930
- # Also, if you specified this option when you created the association,
9931
- # you can reset it. To do so, specify the
9927
+ # If you chose this option when you created an association and later you
9928
+ # edit that association or you make changes to the SSM document on which
9929
+ # that association is based (by using the Documents page in the
9930
+ # console), State Manager applies the association at the next specified
9931
+ # cron interval. For example, if you chose the `Latest` version of an
9932
+ # SSM document when you created an association and you edit the
9933
+ # association by choosing a different document version on the Documents
9934
+ # page, State Manager applies the association at the next specified cron
9935
+ # interval if you previously selected this option. If this option
9936
+ # wasn't selected, State Manager immediately runs the association.
9937
+ #
9938
+ # You can reset this option. To do so, specify the
9932
9939
  # `no-apply-only-at-cron-interval` parameter when you update the
9933
9940
  # association from the command line. This parameter forces the
9934
9941
  # association to run immediately after updating it and according to the
@@ -10175,6 +10182,12 @@ module Aws::SSM
10175
10182
  # document. You can specify the version number of the latest version or
10176
10183
  # use the `$LATEST` variable.
10177
10184
  #
10185
+ # <note markdown="1"> If you change a document version for a State Manager association,
10186
+ # Systems Manager immediately runs the association unless you previously
10187
+ # specifed the `apply-only-at-cron-interval` parameter.
10188
+ #
10189
+ # </note>
10190
+ #
10178
10191
  # @option params [String] :document_format
10179
10192
  # Specify the document format for the new document version. Systems
10180
10193
  # Manager supports JSON and YAML documents. JSON is the default format.
@@ -10264,6 +10277,12 @@ module Aws::SSM
10264
10277
 
10265
10278
  # Set the default version of a document.
10266
10279
  #
10280
+ # <note markdown="1"> If you change a document version for a State Manager association,
10281
+ # Systems Manager immediately runs the association unless you previously
10282
+ # specifed the `apply-only-at-cron-interval` parameter.
10283
+ #
10284
+ # </note>
10285
+ #
10267
10286
  # @option params [required, String] :name
10268
10287
  # The name of a custom document that you want to set as the default
10269
10288
  # version.
@@ -11304,7 +11323,7 @@ module Aws::SSM
11304
11323
  #
11305
11324
  # resp.baseline_id #=> String
11306
11325
  # resp.name #=> String
11307
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
11326
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX"
11308
11327
  # resp.global_filters.patch_filters #=> Array
11309
11328
  # resp.global_filters.patch_filters[0].key #=> String, one of "ARCH", "ADVISORY_ID", "BUGZILLA_ID", "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "CVE_ID", "EPOCH", "MSRC_SEVERITY", "NAME", "PATCH_ID", "SECTION", "PRIORITY", "REPOSITORY", "RELEASE", "SEVERITY", "SECURITY", "VERSION"
11310
11329
  # resp.global_filters.patch_filters[0].values #=> Array
@@ -11487,7 +11506,7 @@ module Aws::SSM
11487
11506
  params: params,
11488
11507
  config: config)
11489
11508
  context[:gem_name] = 'aws-sdk-ssm'
11490
- context[:gem_version] = '1.133.0'
11509
+ context[:gem_version] = '1.134.0'
11491
11510
  Seahorse::Client::Request.new(handlers, context)
11492
11511
  end
11493
11512
 
@@ -130,8 +130,6 @@ module Aws::SSM
130
130
  #
131
131
  # `PatchBaseline`\: `pb-012345abcde`
132
132
  #
133
- # `Automation`\: `example-c160-4567-8519-012345abcde`
134
- #
135
133
  # `OpsMetadata` object: `ResourceID` for tagging is created from the
136
134
  # Amazon Resource Name (ARN) for the object. Specifically,
137
135
  # `ResourceID` is created from the strings that come after the word
@@ -276,7 +274,10 @@ module Aws::SSM
276
274
  # @return [String]
277
275
  #
278
276
  # @!attribute [rw] document_version
279
- # The version of the document used in the association.
277
+ # The version of the document used in the association. If you change a
278
+ # document version for a State Manager association, Systems Manager
279
+ # immediately runs the association unless you previously specifed the
280
+ # `apply-only-at-cron-interval` parameter.
280
281
  #
281
282
  # State Manager doesn't support running associations that use a new
282
283
  # version of a document if that document is shared from another
@@ -1564,7 +1565,7 @@ module Aws::SSM
1564
1565
  # data as a hash:
1565
1566
  #
1566
1567
  # {
1567
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
1568
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
1568
1569
  # global_filters: {
1569
1570
  # patch_filters: [ # required
1570
1571
  # {
@@ -3938,7 +3939,7 @@ module Aws::SSM
3938
3939
  # data as a hash:
3939
3940
  #
3940
3941
  # {
3941
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
3942
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
3942
3943
  # name: "BaselineName", # required
3943
3944
  # global_filters: {
3944
3945
  # patch_filters: [ # required
@@ -6927,7 +6928,7 @@ module Aws::SSM
6927
6928
  # data as a hash:
6928
6929
  #
6929
6930
  # {
6930
- # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
6931
+ # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
6931
6932
  # property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
6932
6933
  # patch_set: "OS", # accepts OS, APPLICATION
6933
6934
  # max_results: 1,
@@ -8357,7 +8358,7 @@ module Aws::SSM
8357
8358
  # data as a hash:
8358
8359
  #
8359
8360
  # {
8360
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
8361
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
8361
8362
  # }
8362
8363
  #
8363
8364
  # @!attribute [rw] operating_system
@@ -8397,7 +8398,7 @@ module Aws::SSM
8397
8398
  # instance_id: "InstanceId", # required
8398
8399
  # snapshot_id: "SnapshotId", # required
8399
8400
  # baseline_override: {
8400
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
8401
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
8401
8402
  # global_filters: {
8402
8403
  # patch_filters: [ # required
8403
8404
  # {
@@ -9785,7 +9786,7 @@ module Aws::SSM
9785
9786
  #
9786
9787
  # {
9787
9788
  # patch_group: "PatchGroup", # required
9788
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
9789
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
9789
9790
  # }
9790
9791
  #
9791
9792
  # @!attribute [rw] patch_group
@@ -17189,8 +17190,6 @@ module Aws::SSM
17189
17190
  #
17190
17191
  # MaintenanceWindow: mw-012345abcde
17191
17192
  #
17192
- # `Automation`\: `example-c160-4567-8519-012345abcde`
17193
- #
17194
17193
  # PatchBaseline: pb-012345abcde
17195
17194
  #
17196
17195
  # OpsMetadata object: `ResourceID` for tagging is created from the
@@ -18828,7 +18827,7 @@ module Aws::SSM
18828
18827
  #
18829
18828
  # * `Key=OS,Value=Windows`
18830
18829
  #
18831
- # <note markdown="1"> To add tags to an existing automation, use the AddTagsToResource
18830
+ # <note markdown="1"> To add tags to an existing patch baseline, use the AddTagsToResource
18832
18831
  # operation.
18833
18832
  #
18834
18833
  # </note>
@@ -19962,8 +19961,19 @@ module Aws::SSM
19962
19961
  # to run immediately after you update it. This parameter isn't
19963
19962
  # supported for rate expressions.
19964
19963
  #
19965
- # Also, if you specified this option when you created the association,
19966
- # you can reset it. To do so, specify the
19964
+ # If you chose this option when you created an association and later
19965
+ # you edit that association or you make changes to the SSM document on
19966
+ # which that association is based (by using the Documents page in the
19967
+ # console), State Manager applies the association at the next
19968
+ # specified cron interval. For example, if you chose the `Latest`
19969
+ # version of an SSM document when you created an association and you
19970
+ # edit the association by choosing a different document version on the
19971
+ # Documents page, State Manager applies the association at the next
19972
+ # specified cron interval if you previously selected this option. If
19973
+ # this option wasn't selected, State Manager immediately runs the
19974
+ # association.
19975
+ #
19976
+ # You can reset this option. To do so, specify the
19967
19977
  # `no-apply-only-at-cron-interval` parameter when you update the
19968
19978
  # association from the command line. This parameter forces the
19969
19979
  # association to run immediately after updating it and according to
@@ -20210,6 +20220,12 @@ module Aws::SSM
20210
20220
  # Systems Manager supports updating only the latest version of the
20211
20221
  # document. You can specify the version number of the latest version
20212
20222
  # or use the `$LATEST` variable.
20223
+ #
20224
+ # <note markdown="1"> If you change a document version for a State Manager association,
20225
+ # Systems Manager immediately runs the association unless you
20226
+ # previously specifed the `apply-only-at-cron-interval` parameter.
20227
+ #
20228
+ # </note>
20213
20229
  # @return [String]
20214
20230
  #
20215
20231
  # @!attribute [rw] document_format
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.133.0'
52
+ GEM_VERSION = '1.134.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.133.0
4
+ version: 1.134.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: 2022-03-23 00:00:00.000000000 Z
11
+ date: 2022-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core