aws-sdk-ssm 1.190.0 → 1.192.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +137 -44
- data/lib/aws-sdk-ssm/client_api.rb +9 -0
- data/lib/aws-sdk-ssm/types.rb +201 -49
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +7 -1
- data/sig/types.rbs +8 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b392c9f39b462f9232bf07b416e09ddc1f864a90813afdf24489e2c02084953
|
4
|
+
data.tar.gz: 86e0fcc4a634784174b93e8e9761fcd42385b9659f3565b4e49a98fa544880c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28969f382a189fbb73c78319bb941f9b6f6f414cd3727a06796559588d220e1829fbc10f19b109a5c82d422416e83ec2f68ba0e706c2a274eb42206d57df13f5
|
7
|
+
data.tar.gz: 47be473f1547beadffd6487ae69ac945cbcc7c1cb596647c402177614897d47f03c2225b1a2fc88962ddb418c3f989076245c37e7b9e1f2c2d0b62a96afcb3d6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.192.0 (2025-03-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds the AvailableSecurityUpdatesComplianceStatus field to patch baseline operations, as well as the AvailableSecurityUpdateCount and InstancesWithAvailableSecurityUpdates to patch state operations. Applies to Windows Server managed nodes only.
|
8
|
+
|
9
|
+
1.191.0 (2025-02-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Systems Manager doc-only updates for Feb. 2025.
|
13
|
+
|
4
14
|
1.190.0 (2025-02-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.192.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -978,15 +978,27 @@ module Aws::SSM
|
|
978
978
|
# @option params [Boolean] :apply_only_at_cron_interval
|
979
979
|
# By default, when you create a new association, the system runs it
|
980
980
|
# immediately after it is created and then according to the schedule you
|
981
|
-
# specified
|
982
|
-
#
|
983
|
-
#
|
981
|
+
# specified and when target changes are detected. Specify `true` for
|
982
|
+
# `ApplyOnlyAtCronInterval`if you want the association to run only
|
983
|
+
# according to the schedule you specified.
|
984
|
+
#
|
985
|
+
# For more information, see [Understanding when associations are applied
|
986
|
+
# to resources][1] and [>About target updates with Automation
|
987
|
+
# runbooks][2] in the *Amazon Web Services Systems Manager User Guide*.
|
988
|
+
#
|
989
|
+
# This parameter isn't supported for rate expressions.
|
990
|
+
#
|
991
|
+
#
|
992
|
+
#
|
993
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#state-manager-about-scheduling
|
994
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#runbook-target-updates
|
984
995
|
#
|
985
996
|
# @option params [Array<String>] :calendar_names
|
986
|
-
# The names
|
997
|
+
# The names of Amazon Resource Names (ARNs) of the Change Calendar type
|
987
998
|
# documents you want to gate your associations under. The associations
|
988
999
|
# only run when that change calendar is open. For more information, see
|
989
|
-
# [Amazon Web Services Systems Manager Change Calendar][1]
|
1000
|
+
# [Amazon Web Services Systems Manager Change Calendar][1] in the
|
1001
|
+
# *Amazon Web Services Systems Manager User Guide*.
|
990
1002
|
#
|
991
1003
|
#
|
992
1004
|
#
|
@@ -2165,6 +2177,20 @@ module Aws::SSM
|
|
2165
2177
|
# including target operating systems and source repositories. Applies to
|
2166
2178
|
# Linux managed nodes only.
|
2167
2179
|
#
|
2180
|
+
# @option params [String] :available_security_updates_compliance_status
|
2181
|
+
# Indicates the status you want to assign to security patches that are
|
2182
|
+
# available but not approved because they don't meet the installation
|
2183
|
+
# criteria specified in the patch baseline.
|
2184
|
+
#
|
2185
|
+
# Example scenario: Security patches that you might want installed can
|
2186
|
+
# be skipped if you have specified a long period to wait after a patch
|
2187
|
+
# is released before installation. If an update to the patch is released
|
2188
|
+
# during your specified waiting period, the waiting period for
|
2189
|
+
# installing the patch starts over. If the waiting period is too long,
|
2190
|
+
# multiple versions of the patch could be released but never installed.
|
2191
|
+
#
|
2192
|
+
# Supported for Windows Server managed nodes only.
|
2193
|
+
#
|
2168
2194
|
# @option params [String] :client_token
|
2169
2195
|
# User-provided idempotency token.
|
2170
2196
|
#
|
@@ -2236,6 +2262,7 @@ module Aws::SSM
|
|
2236
2262
|
# configuration: "PatchSourceConfiguration", # required
|
2237
2263
|
# },
|
2238
2264
|
# ],
|
2265
|
+
# available_security_updates_compliance_status: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT
|
2239
2266
|
# client_token: "ClientToken",
|
2240
2267
|
# tags: [
|
2241
2268
|
# {
|
@@ -2821,9 +2848,20 @@ module Aws::SSM
|
|
2821
2848
|
end
|
2822
2849
|
|
2823
2850
|
# Removes the server or virtual machine from the list of registered
|
2824
|
-
# servers.
|
2825
|
-
#
|
2826
|
-
#
|
2851
|
+
# servers.
|
2852
|
+
#
|
2853
|
+
# If you want to reregister an on-premises server, edge device, or VM,
|
2854
|
+
# you must use a different Activation Code and Activation ID than used
|
2855
|
+
# to register the machine previously. The Activation Code and Activation
|
2856
|
+
# ID must not have already been used on the maximum number of
|
2857
|
+
# activations specified when they were created. For more information,
|
2858
|
+
# see [Deregistering managed nodes in a hybrid and multicloud
|
2859
|
+
# environment][1] in the *Amazon Web Services Systems Manager User
|
2860
|
+
# Guide*.
|
2861
|
+
#
|
2862
|
+
#
|
2863
|
+
#
|
2864
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/fleet-manager-deregister-hybrid-nodes.html
|
2827
2865
|
#
|
2828
2866
|
# @option params [required, String] :instance_id
|
2829
2867
|
# The ID assigned to the managed node when you registered it using the
|
@@ -4168,6 +4206,7 @@ module Aws::SSM
|
|
4168
4206
|
# resp.instance_patch_states[0].failed_count #=> Integer
|
4169
4207
|
# resp.instance_patch_states[0].unreported_not_applicable_count #=> Integer
|
4170
4208
|
# resp.instance_patch_states[0].not_applicable_count #=> Integer
|
4209
|
+
# resp.instance_patch_states[0].available_security_update_count #=> Integer
|
4171
4210
|
# resp.instance_patch_states[0].operation_start_time #=> Time
|
4172
4211
|
# resp.instance_patch_states[0].operation_end_time #=> Time
|
4173
4212
|
# resp.instance_patch_states[0].operation #=> String, one of "Scan", "Install"
|
@@ -4249,6 +4288,7 @@ module Aws::SSM
|
|
4249
4288
|
# resp.instance_patch_states[0].failed_count #=> Integer
|
4250
4289
|
# resp.instance_patch_states[0].unreported_not_applicable_count #=> Integer
|
4251
4290
|
# resp.instance_patch_states[0].not_applicable_count #=> Integer
|
4291
|
+
# resp.instance_patch_states[0].available_security_update_count #=> Integer
|
4252
4292
|
# resp.instance_patch_states[0].operation_start_time #=> Time
|
4253
4293
|
# resp.instance_patch_states[0].operation_end_time #=> Time
|
4254
4294
|
# resp.instance_patch_states[0].operation #=> String, one of "Scan", "Install"
|
@@ -4340,7 +4380,7 @@ module Aws::SSM
|
|
4340
4380
|
# resp.patches[0].kb_id #=> String
|
4341
4381
|
# resp.patches[0].classification #=> String
|
4342
4382
|
# resp.patches[0].severity #=> String
|
4343
|
-
# resp.patches[0].state #=> String, one of "INSTALLED", "INSTALLED_OTHER", "INSTALLED_PENDING_REBOOT", "INSTALLED_REJECTED", "MISSING", "NOT_APPLICABLE", "FAILED"
|
4383
|
+
# resp.patches[0].state #=> String, one of "INSTALLED", "INSTALLED_OTHER", "INSTALLED_PENDING_REBOOT", "INSTALLED_REJECTED", "MISSING", "NOT_APPLICABLE", "FAILED", "AVAILABLE_SECURITY_UPDATE"
|
4344
4384
|
# resp.patches[0].installed_time #=> Time
|
4345
4385
|
# resp.patches[0].cve_ids #=> String
|
4346
4386
|
# resp.next_token #=> String
|
@@ -5396,6 +5436,7 @@ module Aws::SSM
|
|
5396
5436
|
# * {Types::DescribePatchGroupStateResult#instances_with_critical_non_compliant_patches #instances_with_critical_non_compliant_patches} => Integer
|
5397
5437
|
# * {Types::DescribePatchGroupStateResult#instances_with_security_non_compliant_patches #instances_with_security_non_compliant_patches} => Integer
|
5398
5438
|
# * {Types::DescribePatchGroupStateResult#instances_with_other_non_compliant_patches #instances_with_other_non_compliant_patches} => Integer
|
5439
|
+
# * {Types::DescribePatchGroupStateResult#instances_with_available_security_updates #instances_with_available_security_updates} => Integer
|
5399
5440
|
#
|
5400
5441
|
# @example Request syntax with placeholder values
|
5401
5442
|
#
|
@@ -5417,6 +5458,7 @@ module Aws::SSM
|
|
5417
5458
|
# resp.instances_with_critical_non_compliant_patches #=> Integer
|
5418
5459
|
# resp.instances_with_security_non_compliant_patches #=> Integer
|
5419
5460
|
# resp.instances_with_other_non_compliant_patches #=> Integer
|
5461
|
+
# resp.instances_with_available_security_updates #=> Integer
|
5420
5462
|
#
|
5421
5463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupState AWS API Documentation
|
5422
5464
|
#
|
@@ -5920,7 +5962,7 @@ module Aws::SSM
|
|
5920
5962
|
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar.html
|
5921
5963
|
#
|
5922
5964
|
# @option params [required, Array<String>] :calendar_names
|
5923
|
-
# The names
|
5965
|
+
# The names of Amazon Resource Names (ARNs) of the Systems Manager
|
5924
5966
|
# documents (SSM documents) that represent the calendar entries for
|
5925
5967
|
# which you want to get the state.
|
5926
5968
|
#
|
@@ -6208,6 +6250,7 @@ module Aws::SSM
|
|
6208
6250
|
# configuration: "PatchSourceConfiguration", # required
|
6209
6251
|
# },
|
6210
6252
|
# ],
|
6253
|
+
# available_security_updates_compliance_status: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT
|
6211
6254
|
# },
|
6212
6255
|
# })
|
6213
6256
|
#
|
@@ -7411,6 +7454,7 @@ module Aws::SSM
|
|
7411
7454
|
# * {Types::GetPatchBaselineResult#modified_date #modified_date} => Time
|
7412
7455
|
# * {Types::GetPatchBaselineResult#description #description} => String
|
7413
7456
|
# * {Types::GetPatchBaselineResult#sources #sources} => Array<Types::PatchSource>
|
7457
|
+
# * {Types::GetPatchBaselineResult#available_security_updates_compliance_status #available_security_updates_compliance_status} => String
|
7414
7458
|
#
|
7415
7459
|
# @example Request syntax with placeholder values
|
7416
7460
|
#
|
@@ -7453,6 +7497,7 @@ module Aws::SSM
|
|
7453
7497
|
# resp.sources[0].products #=> Array
|
7454
7498
|
# resp.sources[0].products[0] #=> String
|
7455
7499
|
# resp.sources[0].configuration #=> String
|
7500
|
+
# resp.available_security_updates_compliance_status #=> String, one of "COMPLIANT", "NON_COMPLIANT"
|
7456
7501
|
#
|
7457
7502
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaseline AWS API Documentation
|
7458
7503
|
#
|
@@ -8500,9 +8545,15 @@ module Aws::SSM
|
|
8500
8545
|
# filter criteria.
|
8501
8546
|
#
|
8502
8547
|
# @option params [String] :sync_name
|
8503
|
-
# The name of the resource data sync to
|
8504
|
-
#
|
8505
|
-
#
|
8548
|
+
# The name of the Amazon Web Services managed resource data sync to
|
8549
|
+
# retrieve information about.
|
8550
|
+
#
|
8551
|
+
# For cross-account/cross-Region configurations, this parameter is
|
8552
|
+
# required, and the name of the supported resource data sync is
|
8553
|
+
# `AWS-QuickSetup-ManagedNode`.
|
8554
|
+
#
|
8555
|
+
# For single account/single-Region configurations, the parameter is not
|
8556
|
+
# required.
|
8506
8557
|
#
|
8507
8558
|
# @option params [Array<Types::NodeFilter>] :filters
|
8508
8559
|
# One or more filters. Use a filter to return a more specific list of
|
@@ -8624,9 +8675,15 @@ module Aws::SSM
|
|
8624
8675
|
# aggregator you specify.
|
8625
8676
|
#
|
8626
8677
|
# @option params [String] :sync_name
|
8627
|
-
# The name of the resource data sync to
|
8628
|
-
#
|
8629
|
-
#
|
8678
|
+
# The name of the Amazon Web Services managed resource data sync to
|
8679
|
+
# retrieve information about.
|
8680
|
+
#
|
8681
|
+
# For cross-account/cross-Region configurations, this parameter is
|
8682
|
+
# required, and the name of the supported resource data sync is
|
8683
|
+
# `AWS-QuickSetup-ManagedNode`.
|
8684
|
+
#
|
8685
|
+
# For single account/single-Region configurations, the parameter is not
|
8686
|
+
# required.
|
8630
8687
|
#
|
8631
8688
|
# @option params [Array<Types::NodeFilter>] :filters
|
8632
8689
|
# One or more filters. Use a filter to generate a summary that matches
|
@@ -9124,14 +9181,17 @@ module Aws::SSM
|
|
9124
9181
|
#
|
9125
9182
|
# @option params [Array<String>] :account_ids_to_add
|
9126
9183
|
# The Amazon Web Services users that should have access to the document.
|
9127
|
-
# The account IDs can either be a group of account IDs or *All*.
|
9184
|
+
# The account IDs can either be a group of account IDs or *All*. You
|
9185
|
+
# must specify a value for this parameter or the `AccountIdsToRemove`
|
9186
|
+
# parameter.
|
9128
9187
|
#
|
9129
9188
|
# @option params [Array<String>] :account_ids_to_remove
|
9130
9189
|
# The Amazon Web Services users that should no longer have access to the
|
9131
9190
|
# document. The Amazon Web Services user can either be a group of
|
9132
9191
|
# account IDs or *All*. This action has a higher priority than
|
9133
9192
|
# `AccountIdsToAdd`. If you specify an ID to add and the same ID to
|
9134
|
-
# remove, the system removes access to the document.
|
9193
|
+
# remove, the system removes access to the document. You must specify a
|
9194
|
+
# value for this parameter or the `AccountIdsToAdd` parameter.
|
9135
9195
|
#
|
9136
9196
|
# @option params [String] :shared_document_version
|
9137
9197
|
# (Optional) The version of the document to share. If it isn't
|
@@ -9333,11 +9393,11 @@ module Aws::SSM
|
|
9333
9393
|
req.send_request(options)
|
9334
9394
|
end
|
9335
9395
|
|
9336
|
-
#
|
9396
|
+
# Create or update a parameter in Parameter Store.
|
9337
9397
|
#
|
9338
9398
|
# @option params [required, String] :name
|
9339
|
-
# The fully qualified name of the parameter that you want to
|
9340
|
-
#
|
9399
|
+
# The fully qualified name of the parameter that you want to create or
|
9400
|
+
# update.
|
9341
9401
|
#
|
9342
9402
|
# <note markdown="1"> You can't enter the Amazon Resource Name (ARN) for a parameter, only
|
9343
9403
|
# the parameter name itself.
|
@@ -9374,11 +9434,16 @@ module Aws::SSM
|
|
9374
9434
|
# [Creating Systems Manager parameters][1] in the *Amazon Web Services
|
9375
9435
|
# Systems Manager User Guide*.
|
9376
9436
|
#
|
9377
|
-
# <note markdown="1"> The maximum length
|
9378
|
-
# 1037 characters reserved for internal use by Systems
|
9379
|
-
# maximum length for a parameter name that you
|
9380
|
-
# characters.
|
9381
|
-
#
|
9437
|
+
# <note markdown="1"> The reported maximum length of 2048 characters for a parameter name
|
9438
|
+
# includes 1037 characters that are reserved for internal use by Systems
|
9439
|
+
# Manager. The maximum length for a parameter name that you specify is
|
9440
|
+
# 1011 characters.
|
9441
|
+
#
|
9442
|
+
# This count of 1011 characters includes the characters in the ARN that
|
9443
|
+
# precede the name you specify. This ARN length will vary depending on
|
9444
|
+
# your partition and Region. For example, the following 45 characters
|
9445
|
+
# count toward the 1011 character maximum for a parameter created in the
|
9446
|
+
# US East (Ohio) Region:
|
9382
9447
|
# `arn:aws:ssm:us-east-2:111122223333:parameter/`.
|
9383
9448
|
#
|
9384
9449
|
# </note>
|
@@ -9405,7 +9470,7 @@ module Aws::SSM
|
|
9405
9470
|
# </note>
|
9406
9471
|
#
|
9407
9472
|
# @option params [String] :type
|
9408
|
-
# The type of parameter that you want to
|
9473
|
+
# The type of parameter that you want to create.
|
9409
9474
|
#
|
9410
9475
|
# <note markdown="1"> `SecureString` isn't currently supported for CloudFormation
|
9411
9476
|
# templates.
|
@@ -9426,7 +9491,7 @@ module Aws::SSM
|
|
9426
9491
|
# parameters that use the `SecureString` data type.
|
9427
9492
|
#
|
9428
9493
|
# If you don't specify a key ID, the system uses the default key
|
9429
|
-
# associated with your Amazon Web Services account which is not as
|
9494
|
+
# associated with your Amazon Web Services account, which is not as
|
9430
9495
|
# secure as using a custom key.
|
9431
9496
|
#
|
9432
9497
|
# * To use a custom KMS key, choose the `SecureString` data type with
|
@@ -11487,32 +11552,43 @@ module Aws::SSM
|
|
11487
11552
|
# @option params [Boolean] :apply_only_at_cron_interval
|
11488
11553
|
# By default, when you update an association, the system runs it
|
11489
11554
|
# immediately after it is updated and then according to the schedule you
|
11490
|
-
# specified. Specify
|
11491
|
-
#
|
11492
|
-
# for rate expressions.
|
11555
|
+
# specified. Specify `true` for `ApplyOnlyAtCronInterval` if you want
|
11556
|
+
# the association to run only according to the schedule you specified.
|
11493
11557
|
#
|
11494
11558
|
# If you chose this option when you created an association and later you
|
11495
|
-
# edit that association or you make changes to the
|
11496
|
-
# that association is based
|
11497
|
-
#
|
11498
|
-
#
|
11499
|
-
#
|
11500
|
-
#
|
11501
|
-
#
|
11502
|
-
#
|
11503
|
-
#
|
11504
|
-
#
|
11505
|
-
#
|
11559
|
+
# edit that association or you make changes to the Automation runbook or
|
11560
|
+
# SSM document on which that association is based, State Manager applies
|
11561
|
+
# the association at the next specified cron interval. For example, if
|
11562
|
+
# you chose the `Latest` version of an SSM document when you created an
|
11563
|
+
# association and you edit the association by choosing a different
|
11564
|
+
# document version on the Documents page, State Manager applies the
|
11565
|
+
# association at the next specified cron interval if you previously set
|
11566
|
+
# `ApplyOnlyAtCronInterval` to `true`. If this option wasn't selected,
|
11567
|
+
# State Manager immediately runs the association.
|
11568
|
+
#
|
11569
|
+
# For more information, see [Understanding when associations are applied
|
11570
|
+
# to resources][1] and [About target updates with Automation
|
11571
|
+
# runbooks][2] in the *Amazon Web Services Systems Manager User Guide*.
|
11572
|
+
#
|
11573
|
+
# This parameter isn't supported for rate expressions.
|
11574
|
+
#
|
11575
|
+
# You can reset this parameter. To do so, specify the
|
11506
11576
|
# `no-apply-only-at-cron-interval` parameter when you update the
|
11507
11577
|
# association from the command line. This parameter forces the
|
11508
11578
|
# association to run immediately after updating it and according to the
|
11509
11579
|
# interval specified.
|
11510
11580
|
#
|
11581
|
+
#
|
11582
|
+
#
|
11583
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#state-manager-about-scheduling
|
11584
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#runbook-target-updates
|
11585
|
+
#
|
11511
11586
|
# @option params [Array<String>] :calendar_names
|
11512
11587
|
# The names or Amazon Resource Names (ARNs) of the Change Calendar type
|
11513
11588
|
# documents you want to gate your associations under. The associations
|
11514
11589
|
# only run when that change calendar is open. For more information, see
|
11515
|
-
# [Amazon Web Services Systems Manager Change Calendar][1]
|
11590
|
+
# [Amazon Web Services Systems Manager Change Calendar][1] in the
|
11591
|
+
# *Amazon Web Services Systems Manager User Guide*.
|
11516
11592
|
#
|
11517
11593
|
#
|
11518
11594
|
#
|
@@ -12993,6 +13069,20 @@ module Aws::SSM
|
|
12993
13069
|
# including target operating systems and source repositories. Applies to
|
12994
13070
|
# Linux managed nodes only.
|
12995
13071
|
#
|
13072
|
+
# @option params [String] :available_security_updates_compliance_status
|
13073
|
+
# Indicates the status to be assigned to security patches that are
|
13074
|
+
# available but not approved because they don't meet the installation
|
13075
|
+
# criteria specified in the patch baseline.
|
13076
|
+
#
|
13077
|
+
# Example scenario: Security patches that you might want installed can
|
13078
|
+
# be skipped if you have specified a long period to wait after a patch
|
13079
|
+
# is released before installation. If an update to the patch is released
|
13080
|
+
# during your specified waiting period, the waiting period for
|
13081
|
+
# installing the patch starts over. If the waiting period is too long,
|
13082
|
+
# multiple versions of the patch could be released but never installed.
|
13083
|
+
#
|
13084
|
+
# Supported for Windows Server managed nodes only.
|
13085
|
+
#
|
12996
13086
|
# @option params [Boolean] :replace
|
12997
13087
|
# If True, then all fields that are required by the CreatePatchBaseline
|
12998
13088
|
# operation are also required for this API request. Optional fields that
|
@@ -13014,6 +13104,7 @@ module Aws::SSM
|
|
13014
13104
|
# * {Types::UpdatePatchBaselineResult#modified_date #modified_date} => Time
|
13015
13105
|
# * {Types::UpdatePatchBaselineResult#description #description} => String
|
13016
13106
|
# * {Types::UpdatePatchBaselineResult#sources #sources} => Array<Types::PatchSource>
|
13107
|
+
# * {Types::UpdatePatchBaselineResult#available_security_updates_compliance_status #available_security_updates_compliance_status} => String
|
13017
13108
|
#
|
13018
13109
|
# @example Request syntax with placeholder values
|
13019
13110
|
#
|
@@ -13059,6 +13150,7 @@ module Aws::SSM
|
|
13059
13150
|
# configuration: "PatchSourceConfiguration", # required
|
13060
13151
|
# },
|
13061
13152
|
# ],
|
13153
|
+
# available_security_updates_compliance_status: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT
|
13062
13154
|
# replace: false,
|
13063
13155
|
# })
|
13064
13156
|
#
|
@@ -13095,6 +13187,7 @@ module Aws::SSM
|
|
13095
13187
|
# resp.sources[0].products #=> Array
|
13096
13188
|
# resp.sources[0].products[0] #=> String
|
13097
13189
|
# resp.sources[0].configuration #=> String
|
13190
|
+
# resp.available_security_updates_compliance_status #=> String, one of "COMPLIANT", "NON_COMPLIANT"
|
13098
13191
|
#
|
13099
13192
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdatePatchBaseline AWS API Documentation
|
13100
13193
|
#
|
@@ -13278,7 +13371,7 @@ module Aws::SSM
|
|
13278
13371
|
tracer: tracer
|
13279
13372
|
)
|
13280
13373
|
context[:gem_name] = 'aws-sdk-ssm'
|
13281
|
-
context[:gem_version] = '1.
|
13374
|
+
context[:gem_version] = '1.192.0'
|
13282
13375
|
Seahorse::Client::Request.new(handlers, context)
|
13283
13376
|
end
|
13284
13377
|
|
@@ -947,6 +947,7 @@ module Aws::SSM
|
|
947
947
|
PatchAdvisoryId = Shapes::StringShape.new(name: 'PatchAdvisoryId')
|
948
948
|
PatchAdvisoryIdList = Shapes::ListShape.new(name: 'PatchAdvisoryIdList')
|
949
949
|
PatchArch = Shapes::StringShape.new(name: 'PatchArch')
|
950
|
+
PatchAvailableSecurityUpdateCount = Shapes::IntegerShape.new(name: 'PatchAvailableSecurityUpdateCount')
|
950
951
|
PatchBaselineIdentity = Shapes::StructureShape.new(name: 'PatchBaselineIdentity')
|
951
952
|
PatchBaselineIdentityList = Shapes::ListShape.new(name: 'PatchBaselineIdentityList')
|
952
953
|
PatchBaselineMaxResults = Shapes::IntegerShape.new(name: 'PatchBaselineMaxResults')
|
@@ -961,6 +962,7 @@ module Aws::SSM
|
|
961
962
|
PatchComplianceDataState = Shapes::StringShape.new(name: 'PatchComplianceDataState')
|
962
963
|
PatchComplianceLevel = Shapes::StringShape.new(name: 'PatchComplianceLevel')
|
963
964
|
PatchComplianceMaxResults = Shapes::IntegerShape.new(name: 'PatchComplianceMaxResults')
|
965
|
+
PatchComplianceStatus = Shapes::StringShape.new(name: 'PatchComplianceStatus')
|
964
966
|
PatchContentUrl = Shapes::StringShape.new(name: 'PatchContentUrl')
|
965
967
|
PatchCriticalNonCompliantCount = Shapes::IntegerShape.new(name: 'PatchCriticalNonCompliantCount')
|
966
968
|
PatchDeploymentStatus = Shapes::StringShape.new(name: 'PatchDeploymentStatus')
|
@@ -1644,6 +1646,7 @@ module Aws::SSM
|
|
1644
1646
|
BaselineOverride.add_member(:rejected_patches_action, Shapes::ShapeRef.new(shape: PatchAction, location_name: "RejectedPatchesAction"))
|
1645
1647
|
BaselineOverride.add_member(:approved_patches_enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApprovedPatchesEnableNonSecurity"))
|
1646
1648
|
BaselineOverride.add_member(:sources, Shapes::ShapeRef.new(shape: PatchSourceList, location_name: "Sources"))
|
1649
|
+
BaselineOverride.add_member(:available_security_updates_compliance_status, Shapes::ShapeRef.new(shape: PatchComplianceStatus, location_name: "AvailableSecurityUpdatesComplianceStatus"))
|
1647
1650
|
BaselineOverride.struct_class = Types::BaselineOverride
|
1648
1651
|
|
1649
1652
|
CalendarNameOrARNList.member = Shapes::ShapeRef.new(shape: CalendarNameOrARN)
|
@@ -1940,6 +1943,7 @@ module Aws::SSM
|
|
1940
1943
|
CreatePatchBaselineRequest.add_member(:rejected_patches_action, Shapes::ShapeRef.new(shape: PatchAction, location_name: "RejectedPatchesAction"))
|
1941
1944
|
CreatePatchBaselineRequest.add_member(:description, Shapes::ShapeRef.new(shape: BaselineDescription, location_name: "Description"))
|
1942
1945
|
CreatePatchBaselineRequest.add_member(:sources, Shapes::ShapeRef.new(shape: PatchSourceList, location_name: "Sources"))
|
1946
|
+
CreatePatchBaselineRequest.add_member(:available_security_updates_compliance_status, Shapes::ShapeRef.new(shape: PatchComplianceStatus, location_name: "AvailableSecurityUpdatesComplianceStatus"))
|
1943
1947
|
CreatePatchBaselineRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
1944
1948
|
CreatePatchBaselineRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1945
1949
|
CreatePatchBaselineRequest.struct_class = Types::CreatePatchBaselineRequest
|
@@ -2370,6 +2374,7 @@ module Aws::SSM
|
|
2370
2374
|
DescribePatchGroupStateResult.add_member(:instances_with_critical_non_compliant_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithCriticalNonCompliantPatches", metadata: {"box"=>true}))
|
2371
2375
|
DescribePatchGroupStateResult.add_member(:instances_with_security_non_compliant_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithSecurityNonCompliantPatches", metadata: {"box"=>true}))
|
2372
2376
|
DescribePatchGroupStateResult.add_member(:instances_with_other_non_compliant_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithOtherNonCompliantPatches", metadata: {"box"=>true}))
|
2377
|
+
DescribePatchGroupStateResult.add_member(:instances_with_available_security_updates, Shapes::ShapeRef.new(shape: Integer, location_name: "InstancesWithAvailableSecurityUpdates", metadata: {"box"=>true}))
|
2373
2378
|
DescribePatchGroupStateResult.struct_class = Types::DescribePatchGroupStateResult
|
2374
2379
|
|
2375
2380
|
DescribePatchGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchBaselineMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
@@ -2891,6 +2896,7 @@ module Aws::SSM
|
|
2891
2896
|
GetPatchBaselineResult.add_member(:modified_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "ModifiedDate"))
|
2892
2897
|
GetPatchBaselineResult.add_member(:description, Shapes::ShapeRef.new(shape: BaselineDescription, location_name: "Description"))
|
2893
2898
|
GetPatchBaselineResult.add_member(:sources, Shapes::ShapeRef.new(shape: PatchSourceList, location_name: "Sources"))
|
2899
|
+
GetPatchBaselineResult.add_member(:available_security_updates_compliance_status, Shapes::ShapeRef.new(shape: PatchComplianceStatus, location_name: "AvailableSecurityUpdatesComplianceStatus"))
|
2894
2900
|
GetPatchBaselineResult.struct_class = Types::GetPatchBaselineResult
|
2895
2901
|
|
2896
2902
|
GetResourcePoliciesRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
|
@@ -3031,6 +3037,7 @@ module Aws::SSM
|
|
3031
3037
|
InstancePatchState.add_member(:failed_count, Shapes::ShapeRef.new(shape: PatchFailedCount, location_name: "FailedCount"))
|
3032
3038
|
InstancePatchState.add_member(:unreported_not_applicable_count, Shapes::ShapeRef.new(shape: PatchUnreportedNotApplicableCount, location_name: "UnreportedNotApplicableCount", metadata: {"box"=>true}))
|
3033
3039
|
InstancePatchState.add_member(:not_applicable_count, Shapes::ShapeRef.new(shape: PatchNotApplicableCount, location_name: "NotApplicableCount"))
|
3040
|
+
InstancePatchState.add_member(:available_security_update_count, Shapes::ShapeRef.new(shape: PatchAvailableSecurityUpdateCount, location_name: "AvailableSecurityUpdateCount", metadata: {"box"=>true}))
|
3034
3041
|
InstancePatchState.add_member(:operation_start_time, Shapes::ShapeRef.new(shape: DateTime, required: true, location_name: "OperationStartTime"))
|
3035
3042
|
InstancePatchState.add_member(:operation_end_time, Shapes::ShapeRef.new(shape: DateTime, required: true, location_name: "OperationEndTime"))
|
3036
3043
|
InstancePatchState.add_member(:operation, Shapes::ShapeRef.new(shape: PatchOperationType, required: true, location_name: "Operation"))
|
@@ -4986,6 +4993,7 @@ module Aws::SSM
|
|
4986
4993
|
UpdatePatchBaselineRequest.add_member(:rejected_patches_action, Shapes::ShapeRef.new(shape: PatchAction, location_name: "RejectedPatchesAction"))
|
4987
4994
|
UpdatePatchBaselineRequest.add_member(:description, Shapes::ShapeRef.new(shape: BaselineDescription, location_name: "Description"))
|
4988
4995
|
UpdatePatchBaselineRequest.add_member(:sources, Shapes::ShapeRef.new(shape: PatchSourceList, location_name: "Sources"))
|
4996
|
+
UpdatePatchBaselineRequest.add_member(:available_security_updates_compliance_status, Shapes::ShapeRef.new(shape: PatchComplianceStatus, location_name: "AvailableSecurityUpdatesComplianceStatus"))
|
4989
4997
|
UpdatePatchBaselineRequest.add_member(:replace, Shapes::ShapeRef.new(shape: Boolean, location_name: "Replace", metadata: {"box"=>true}))
|
4990
4998
|
UpdatePatchBaselineRequest.struct_class = Types::UpdatePatchBaselineRequest
|
4991
4999
|
|
@@ -5003,6 +5011,7 @@ module Aws::SSM
|
|
5003
5011
|
UpdatePatchBaselineResult.add_member(:modified_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "ModifiedDate"))
|
5004
5012
|
UpdatePatchBaselineResult.add_member(:description, Shapes::ShapeRef.new(shape: BaselineDescription, location_name: "Description"))
|
5005
5013
|
UpdatePatchBaselineResult.add_member(:sources, Shapes::ShapeRef.new(shape: PatchSourceList, location_name: "Sources"))
|
5014
|
+
UpdatePatchBaselineResult.add_member(:available_security_updates_compliance_status, Shapes::ShapeRef.new(shape: PatchComplianceStatus, location_name: "AvailableSecurityUpdatesComplianceStatus"))
|
5006
5015
|
UpdatePatchBaselineResult.struct_class = Types::UpdatePatchBaselineResult
|
5007
5016
|
|
5008
5017
|
UpdateResourceDataSyncRequest.add_member(:sync_name, Shapes::ShapeRef.new(shape: ResourceDataSyncName, required: true, location_name: "SyncName"))
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -529,7 +529,8 @@ module Aws::SSM
|
|
529
529
|
# The names or Amazon Resource Names (ARNs) of the Change Calendar
|
530
530
|
# type documents your associations are gated under. The associations
|
531
531
|
# only run when that change calendar is open. For more information,
|
532
|
-
# see [Amazon Web Services Systems Manager Change Calendar][1]
|
532
|
+
# see [Amazon Web Services Systems Manager Change Calendar][1] in the
|
533
|
+
# *Amazon Web Services Systems Manager User Guide*.
|
533
534
|
#
|
534
535
|
#
|
535
536
|
#
|
@@ -975,7 +976,7 @@ module Aws::SSM
|
|
975
976
|
# @return [String]
|
976
977
|
#
|
977
978
|
# @!attribute [rw] apply_only_at_cron_interval
|
978
|
-
# By default, when you create
|
979
|
+
# By default, when you create new associations, the system runs it
|
979
980
|
# immediately after it is created and then according to the schedule
|
980
981
|
# you specified. Specify this option if you don't want an association
|
981
982
|
# to run immediately after you create it. This parameter isn't
|
@@ -987,7 +988,8 @@ module Aws::SSM
|
|
987
988
|
# type documents your associations are gated under. The associations
|
988
989
|
# for this version only run when that Change Calendar is open. For
|
989
990
|
# more information, see [Amazon Web Services Systems Manager Change
|
990
|
-
# Calendar][1]
|
991
|
+
# Calendar][1] in the *Amazon Web Services Systems Manager User
|
992
|
+
# Guide*.
|
991
993
|
#
|
992
994
|
#
|
993
995
|
#
|
@@ -1827,6 +1829,16 @@ module Aws::SSM
|
|
1827
1829
|
# to Linux managed nodes only.
|
1828
1830
|
# @return [Array<Types::PatchSource>]
|
1829
1831
|
#
|
1832
|
+
# @!attribute [rw] available_security_updates_compliance_status
|
1833
|
+
# Indicates whether managed nodes for which there are available
|
1834
|
+
# security-related patches that have not been approved by the baseline
|
1835
|
+
# are being defined as `COMPLIANT` or `NON_COMPLIANT`. This option is
|
1836
|
+
# specified when the `CreatePatchBaseline` or `UpdatePatchBaseline`
|
1837
|
+
# commands are run.
|
1838
|
+
#
|
1839
|
+
# Applies to Windows Server managed nodes only.
|
1840
|
+
# @return [String]
|
1841
|
+
#
|
1830
1842
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/BaselineOverride AWS API Documentation
|
1831
1843
|
#
|
1832
1844
|
class BaselineOverride < Struct.new(
|
@@ -1838,7 +1850,8 @@ module Aws::SSM
|
|
1838
1850
|
:rejected_patches,
|
1839
1851
|
:rejected_patches_action,
|
1840
1852
|
:approved_patches_enable_non_security,
|
1841
|
-
:sources
|
1853
|
+
:sources,
|
1854
|
+
:available_security_updates_compliance_status)
|
1842
1855
|
SENSITIVE = []
|
1843
1856
|
include Aws::Structure
|
1844
1857
|
end
|
@@ -3045,18 +3058,31 @@ module Aws::SSM
|
|
3045
3058
|
# @return [String]
|
3046
3059
|
#
|
3047
3060
|
# @!attribute [rw] apply_only_at_cron_interval
|
3048
|
-
# By default, when you create a new
|
3061
|
+
# By default, when you create a new association, the system runs it
|
3049
3062
|
# immediately after it is created and then according to the schedule
|
3050
|
-
# you specified
|
3051
|
-
#
|
3052
|
-
#
|
3063
|
+
# you specified and when target changes are detected. Specify `true`
|
3064
|
+
# for `ApplyOnlyAtCronInterval` if you want the association to run
|
3065
|
+
# only according to the schedule you specified.
|
3066
|
+
#
|
3067
|
+
# For more information, see [Understanding when associations are
|
3068
|
+
# applied to resources][1] and [>About target updates with
|
3069
|
+
# Automation runbooks][2] in the *Amazon Web Services Systems Manager
|
3070
|
+
# User Guide*.
|
3071
|
+
#
|
3072
|
+
# This parameter isn't supported for rate expressions.
|
3073
|
+
#
|
3074
|
+
#
|
3075
|
+
#
|
3076
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#state-manager-about-scheduling
|
3077
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#runbook-target-updates
|
3053
3078
|
# @return [Boolean]
|
3054
3079
|
#
|
3055
3080
|
# @!attribute [rw] calendar_names
|
3056
3081
|
# The names or Amazon Resource Names (ARNs) of the Change Calendar
|
3057
3082
|
# type documents your associations are gated under. The associations
|
3058
3083
|
# only run when that Change Calendar is open. For more information,
|
3059
|
-
# see [Amazon Web Services Systems Manager Change Calendar][1]
|
3084
|
+
# see [Amazon Web Services Systems Manager Change Calendar][1] in the
|
3085
|
+
# *Amazon Web Services Systems Manager User Guide*.
|
3060
3086
|
#
|
3061
3087
|
#
|
3062
3088
|
#
|
@@ -3292,17 +3318,30 @@ module Aws::SSM
|
|
3292
3318
|
# @!attribute [rw] apply_only_at_cron_interval
|
3293
3319
|
# By default, when you create a new association, the system runs it
|
3294
3320
|
# immediately after it is created and then according to the schedule
|
3295
|
-
# you specified
|
3296
|
-
#
|
3297
|
-
#
|
3321
|
+
# you specified and when target changes are detected. Specify `true`
|
3322
|
+
# for `ApplyOnlyAtCronInterval`if you want the association to run only
|
3323
|
+
# according to the schedule you specified.
|
3324
|
+
#
|
3325
|
+
# For more information, see [Understanding when associations are
|
3326
|
+
# applied to resources][1] and [>About target updates with
|
3327
|
+
# Automation runbooks][2] in the *Amazon Web Services Systems Manager
|
3328
|
+
# User Guide*.
|
3329
|
+
#
|
3330
|
+
# This parameter isn't supported for rate expressions.
|
3331
|
+
#
|
3332
|
+
#
|
3333
|
+
#
|
3334
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#state-manager-about-scheduling
|
3335
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#runbook-target-updates
|
3298
3336
|
# @return [Boolean]
|
3299
3337
|
#
|
3300
3338
|
# @!attribute [rw] calendar_names
|
3301
|
-
# The names
|
3339
|
+
# The names of Amazon Resource Names (ARNs) of the Change Calendar
|
3302
3340
|
# type documents you want to gate your associations under. The
|
3303
3341
|
# associations only run when that change calendar is open. For more
|
3304
3342
|
# information, see [Amazon Web Services Systems Manager Change
|
3305
|
-
# Calendar][1]
|
3343
|
+
# Calendar][1] in the *Amazon Web Services Systems Manager User
|
3344
|
+
# Guide*.
|
3306
3345
|
#
|
3307
3346
|
#
|
3308
3347
|
#
|
@@ -4032,6 +4071,22 @@ module Aws::SSM
|
|
4032
4071
|
# to Linux managed nodes only.
|
4033
4072
|
# @return [Array<Types::PatchSource>]
|
4034
4073
|
#
|
4074
|
+
# @!attribute [rw] available_security_updates_compliance_status
|
4075
|
+
# Indicates the status you want to assign to security patches that are
|
4076
|
+
# available but not approved because they don't meet the installation
|
4077
|
+
# criteria specified in the patch baseline.
|
4078
|
+
#
|
4079
|
+
# Example scenario: Security patches that you might want installed can
|
4080
|
+
# be skipped if you have specified a long period to wait after a patch
|
4081
|
+
# is released before installation. If an update to the patch is
|
4082
|
+
# released during your specified waiting period, the waiting period
|
4083
|
+
# for installing the patch starts over. If the waiting period is too
|
4084
|
+
# long, multiple versions of the patch could be released but never
|
4085
|
+
# installed.
|
4086
|
+
#
|
4087
|
+
# Supported for Windows Server managed nodes only.
|
4088
|
+
# @return [String]
|
4089
|
+
#
|
4035
4090
|
# @!attribute [rw] client_token
|
4036
4091
|
# User-provided idempotency token.
|
4037
4092
|
#
|
@@ -4071,6 +4126,7 @@ module Aws::SSM
|
|
4071
4126
|
:rejected_patches_action,
|
4072
4127
|
:description,
|
4073
4128
|
:sources,
|
4129
|
+
:available_security_updates_compliance_status,
|
4074
4130
|
:client_token,
|
4075
4131
|
:tags)
|
4076
4132
|
SENSITIVE = []
|
@@ -6383,6 +6439,16 @@ module Aws::SSM
|
|
6383
6439
|
# is `NON_COMPLIANT`.
|
6384
6440
|
# @return [Integer]
|
6385
6441
|
#
|
6442
|
+
# @!attribute [rw] instances_with_available_security_updates
|
6443
|
+
# The number of managed nodes for which security-related patches are
|
6444
|
+
# available but not approved because because they didn't meet the
|
6445
|
+
# patch baseline requirements. For example, an updated version of a
|
6446
|
+
# patch might have been released before the specified auto-approval
|
6447
|
+
# period was over.
|
6448
|
+
#
|
6449
|
+
# Applies to Windows Server managed nodes only.
|
6450
|
+
# @return [Integer]
|
6451
|
+
#
|
6386
6452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupStateResult AWS API Documentation
|
6387
6453
|
#
|
6388
6454
|
class DescribePatchGroupStateResult < Struct.new(
|
@@ -6397,7 +6463,8 @@ module Aws::SSM
|
|
6397
6463
|
:instances_with_unreported_not_applicable_patches,
|
6398
6464
|
:instances_with_critical_non_compliant_patches,
|
6399
6465
|
:instances_with_security_non_compliant_patches,
|
6400
|
-
:instances_with_other_non_compliant_patches
|
6466
|
+
:instances_with_other_non_compliant_patches,
|
6467
|
+
:instances_with_available_security_updates)
|
6401
6468
|
SENSITIVE = []
|
6402
6469
|
include Aws::Structure
|
6403
6470
|
end
|
@@ -7529,7 +7596,7 @@ module Aws::SSM
|
|
7529
7596
|
end
|
7530
7597
|
|
7531
7598
|
# @!attribute [rw] calendar_names
|
7532
|
-
# The names
|
7599
|
+
# The names of Amazon Resource Names (ARNs) of the Systems Manager
|
7533
7600
|
# documents (SSM documents) that represent the calendar entries for
|
7534
7601
|
# which you want to get the state.
|
7535
7602
|
# @return [Array<String>]
|
@@ -9250,6 +9317,15 @@ module Aws::SSM
|
|
9250
9317
|
# to Linux managed nodes only.
|
9251
9318
|
# @return [Array<Types::PatchSource>]
|
9252
9319
|
#
|
9320
|
+
# @!attribute [rw] available_security_updates_compliance_status
|
9321
|
+
# Indicates the compliance status of managed nodes for which
|
9322
|
+
# security-related patches are available but were not approved. This
|
9323
|
+
# preference is specified when the `CreatePatchBaseline` or
|
9324
|
+
# `UpdatePatchBaseline` commands are run.
|
9325
|
+
#
|
9326
|
+
# Applies to Windows Server managed nodes only.
|
9327
|
+
# @return [String]
|
9328
|
+
#
|
9253
9329
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineResult AWS API Documentation
|
9254
9330
|
#
|
9255
9331
|
class GetPatchBaselineResult < Struct.new(
|
@@ -9267,7 +9343,8 @@ module Aws::SSM
|
|
9267
9343
|
:created_date,
|
9268
9344
|
:modified_date,
|
9269
9345
|
:description,
|
9270
|
-
:sources
|
9346
|
+
:sources,
|
9347
|
+
:available_security_updates_compliance_status)
|
9271
9348
|
SENSITIVE = []
|
9272
9349
|
include Aws::Structure
|
9273
9350
|
end
|
@@ -10021,6 +10098,15 @@ module Aws::SSM
|
|
10021
10098
|
# `UnreportedNotApplicableCount`.
|
10022
10099
|
# @return [Integer]
|
10023
10100
|
#
|
10101
|
+
# @!attribute [rw] available_security_update_count
|
10102
|
+
# The number of security-related patches that are available but not
|
10103
|
+
# approved because they didn't meet the patch baseline requirements.
|
10104
|
+
# For example, an updated version of a patch might have been released
|
10105
|
+
# before the specified auto-approval period was over.
|
10106
|
+
#
|
10107
|
+
# Applies to Windows Server managed nodes only.
|
10108
|
+
# @return [Integer]
|
10109
|
+
#
|
10024
10110
|
# @!attribute [rw] operation_start_time
|
10025
10111
|
# The time the most recent patching operation was started on the
|
10026
10112
|
# managed node.
|
@@ -10101,6 +10187,7 @@ module Aws::SSM
|
|
10101
10187
|
:failed_count,
|
10102
10188
|
:unreported_not_applicable_count,
|
10103
10189
|
:not_applicable_count,
|
10190
|
+
:available_security_update_count,
|
10104
10191
|
:operation_start_time,
|
10105
10192
|
:operation_end_time,
|
10106
10193
|
:operation,
|
@@ -12055,9 +12142,15 @@ module Aws::SSM
|
|
12055
12142
|
end
|
12056
12143
|
|
12057
12144
|
# @!attribute [rw] sync_name
|
12058
|
-
# The name of the resource data sync to
|
12059
|
-
#
|
12060
|
-
#
|
12145
|
+
# The name of the Amazon Web Services managed resource data sync to
|
12146
|
+
# retrieve information about.
|
12147
|
+
#
|
12148
|
+
# For cross-account/cross-Region configurations, this parameter is
|
12149
|
+
# required, and the name of the supported resource data sync is
|
12150
|
+
# `AWS-QuickSetup-ManagedNode`.
|
12151
|
+
#
|
12152
|
+
# For single account/single-Region configurations, the parameter is
|
12153
|
+
# not required.
|
12061
12154
|
# @return [String]
|
12062
12155
|
#
|
12063
12156
|
# @!attribute [rw] filters
|
@@ -12106,9 +12199,15 @@ module Aws::SSM
|
|
12106
12199
|
end
|
12107
12200
|
|
12108
12201
|
# @!attribute [rw] sync_name
|
12109
|
-
# The name of the resource data sync to
|
12110
|
-
#
|
12111
|
-
#
|
12202
|
+
# The name of the Amazon Web Services managed resource data sync to
|
12203
|
+
# retrieve information about.
|
12204
|
+
#
|
12205
|
+
# For cross-account/cross-Region configurations, this parameter is
|
12206
|
+
# required, and the name of the supported resource data sync is
|
12207
|
+
# `AWS-QuickSetup-ManagedNode`.
|
12208
|
+
#
|
12209
|
+
# For single account/single-Region configurations, the parameter is
|
12210
|
+
# not required.
|
12112
12211
|
# @return [String]
|
12113
12212
|
#
|
12114
12213
|
# @!attribute [rw] filters
|
@@ -13342,7 +13441,8 @@ module Aws::SSM
|
|
13342
13441
|
# @!attribute [rw] account_ids_to_add
|
13343
13442
|
# The Amazon Web Services users that should have access to the
|
13344
13443
|
# document. The account IDs can either be a group of account IDs or
|
13345
|
-
# *All*.
|
13444
|
+
# *All*. You must specify a value for this parameter or the
|
13445
|
+
# `AccountIdsToRemove` parameter.
|
13346
13446
|
# @return [Array<String>]
|
13347
13447
|
#
|
13348
13448
|
# @!attribute [rw] account_ids_to_remove
|
@@ -13350,7 +13450,8 @@ module Aws::SSM
|
|
13350
13450
|
# the document. The Amazon Web Services user can either be a group of
|
13351
13451
|
# account IDs or *All*. This action has a higher priority than
|
13352
13452
|
# `AccountIdsToAdd`. If you specify an ID to add and the same ID to
|
13353
|
-
# remove, the system removes access to the document.
|
13453
|
+
# remove, the system removes access to the document. You must specify
|
13454
|
+
# a value for this parameter or the `AccountIdsToAdd` parameter.
|
13354
13455
|
# @return [Array<String>]
|
13355
13456
|
#
|
13356
13457
|
# @!attribute [rw] shared_document_version
|
@@ -14886,6 +14987,12 @@ module Aws::SSM
|
|
14886
14987
|
|
14887
14988
|
# The parameter couldn't be found. Verify the name and try again.
|
14888
14989
|
#
|
14990
|
+
# <note markdown="1"> For the `DeleteParameter` and `GetParameter` actions, if the specified
|
14991
|
+
# parameter doesn't exist, the `ParameterNotFound` exception is *not*
|
14992
|
+
# recorded in CloudTrail event logs.
|
14993
|
+
#
|
14994
|
+
# </note>
|
14995
|
+
#
|
14889
14996
|
# @!attribute [rw] message
|
14890
14997
|
# @return [String]
|
14891
14998
|
#
|
@@ -15722,8 +15829,8 @@ module Aws::SSM
|
|
15722
15829
|
end
|
15723
15830
|
|
15724
15831
|
# @!attribute [rw] name
|
15725
|
-
# The fully qualified name of the parameter that you want to
|
15726
|
-
#
|
15832
|
+
# The fully qualified name of the parameter that you want to create or
|
15833
|
+
# update.
|
15727
15834
|
#
|
15728
15835
|
# <note markdown="1"> You can't enter the Amazon Resource Name (ARN) for a parameter,
|
15729
15836
|
# only the parameter name itself.
|
@@ -15762,11 +15869,16 @@ module Aws::SSM
|
|
15762
15869
|
# see [Creating Systems Manager parameters][1] in the *Amazon Web
|
15763
15870
|
# Services Systems Manager User Guide*.
|
15764
15871
|
#
|
15765
|
-
# <note markdown="1"> The maximum length
|
15766
|
-
# includes 1037 characters reserved for internal use by
|
15767
|
-
# Manager. The maximum length for a parameter name that you
|
15768
|
-
# 1011 characters.
|
15769
|
-
#
|
15872
|
+
# <note markdown="1"> The reported maximum length of 2048 characters for a parameter name
|
15873
|
+
# includes 1037 characters that are reserved for internal use by
|
15874
|
+
# Systems Manager. The maximum length for a parameter name that you
|
15875
|
+
# specify is 1011 characters.
|
15876
|
+
#
|
15877
|
+
# This count of 1011 characters includes the characters in the ARN
|
15878
|
+
# that precede the name you specify. This ARN length will vary
|
15879
|
+
# depending on your partition and Region. For example, the following
|
15880
|
+
# 45 characters count toward the 1011 character maximum for a
|
15881
|
+
# parameter created in the US East (Ohio) Region:
|
15770
15882
|
# `arn:aws:ssm:us-east-2:111122223333:parameter/`.
|
15771
15883
|
#
|
15772
15884
|
# </note>
|
@@ -15796,7 +15908,7 @@ module Aws::SSM
|
|
15796
15908
|
# @return [String]
|
15797
15909
|
#
|
15798
15910
|
# @!attribute [rw] type
|
15799
|
-
# The type of parameter that you want to
|
15911
|
+
# The type of parameter that you want to create.
|
15800
15912
|
#
|
15801
15913
|
# <note markdown="1"> `SecureString` isn't currently supported for CloudFormation
|
15802
15914
|
# templates.
|
@@ -15819,7 +15931,7 @@ module Aws::SSM
|
|
15819
15931
|
# parameters that use the `SecureString` data type.
|
15820
15932
|
#
|
15821
15933
|
# If you don't specify a key ID, the system uses the default key
|
15822
|
-
# associated with your Amazon Web Services account which is not as
|
15934
|
+
# associated with your Amazon Web Services account, which is not as
|
15823
15935
|
# secure as using a custom key.
|
15824
15936
|
#
|
15825
15937
|
# * To use a custom KMS key, choose the `SecureString` data type with
|
@@ -19204,27 +19316,39 @@ module Aws::SSM
|
|
19204
19316
|
# @!attribute [rw] apply_only_at_cron_interval
|
19205
19317
|
# By default, when you update an association, the system runs it
|
19206
19318
|
# immediately after it is updated and then according to the schedule
|
19207
|
-
# you specified. Specify
|
19208
|
-
# to run
|
19209
|
-
#
|
19319
|
+
# you specified. Specify `true` for `ApplyOnlyAtCronInterval` if you
|
19320
|
+
# want the association to run only according to the schedule you
|
19321
|
+
# specified.
|
19210
19322
|
#
|
19211
19323
|
# If you chose this option when you created an association and later
|
19212
|
-
# you edit that association or you make changes to the
|
19213
|
-
# which that association is based
|
19214
|
-
#
|
19215
|
-
#
|
19216
|
-
#
|
19217
|
-
#
|
19218
|
-
#
|
19219
|
-
#
|
19220
|
-
#
|
19324
|
+
# you edit that association or you make changes to the Automation
|
19325
|
+
# runbook or SSM document on which that association is based, State
|
19326
|
+
# Manager applies the association at the next specified cron interval.
|
19327
|
+
# For example, if you chose the `Latest` version of an SSM document
|
19328
|
+
# when you created an association and you edit the association by
|
19329
|
+
# choosing a different document version on the Documents page, State
|
19330
|
+
# Manager applies the association at the next specified cron interval
|
19331
|
+
# if you previously set `ApplyOnlyAtCronInterval` to `true`. If this
|
19332
|
+
# option wasn't selected, State Manager immediately runs the
|
19221
19333
|
# association.
|
19222
19334
|
#
|
19223
|
-
#
|
19335
|
+
# For more information, see [Understanding when associations are
|
19336
|
+
# applied to resources][1] and [About target updates with Automation
|
19337
|
+
# runbooks][2] in the *Amazon Web Services Systems Manager User
|
19338
|
+
# Guide*.
|
19339
|
+
#
|
19340
|
+
# This parameter isn't supported for rate expressions.
|
19341
|
+
#
|
19342
|
+
# You can reset this parameter. To do so, specify the
|
19224
19343
|
# `no-apply-only-at-cron-interval` parameter when you update the
|
19225
19344
|
# association from the command line. This parameter forces the
|
19226
19345
|
# association to run immediately after updating it and according to
|
19227
19346
|
# the interval specified.
|
19347
|
+
#
|
19348
|
+
#
|
19349
|
+
#
|
19350
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#state-manager-about-scheduling
|
19351
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#runbook-target-updates
|
19228
19352
|
# @return [Boolean]
|
19229
19353
|
#
|
19230
19354
|
# @!attribute [rw] calendar_names
|
@@ -19232,7 +19356,8 @@ module Aws::SSM
|
|
19232
19356
|
# type documents you want to gate your associations under. The
|
19233
19357
|
# associations only run when that change calendar is open. For more
|
19234
19358
|
# information, see [Amazon Web Services Systems Manager Change
|
19235
|
-
# Calendar][1]
|
19359
|
+
# Calendar][1] in the *Amazon Web Services Systems Manager User
|
19360
|
+
# Guide*.
|
19236
19361
|
#
|
19237
19362
|
#
|
19238
19363
|
#
|
@@ -20419,6 +20544,22 @@ module Aws::SSM
|
|
20419
20544
|
# to Linux managed nodes only.
|
20420
20545
|
# @return [Array<Types::PatchSource>]
|
20421
20546
|
#
|
20547
|
+
# @!attribute [rw] available_security_updates_compliance_status
|
20548
|
+
# Indicates the status to be assigned to security patches that are
|
20549
|
+
# available but not approved because they don't meet the installation
|
20550
|
+
# criteria specified in the patch baseline.
|
20551
|
+
#
|
20552
|
+
# Example scenario: Security patches that you might want installed can
|
20553
|
+
# be skipped if you have specified a long period to wait after a patch
|
20554
|
+
# is released before installation. If an update to the patch is
|
20555
|
+
# released during your specified waiting period, the waiting period
|
20556
|
+
# for installing the patch starts over. If the waiting period is too
|
20557
|
+
# long, multiple versions of the patch could be released but never
|
20558
|
+
# installed.
|
20559
|
+
#
|
20560
|
+
# Supported for Windows Server managed nodes only.
|
20561
|
+
# @return [String]
|
20562
|
+
#
|
20422
20563
|
# @!attribute [rw] replace
|
20423
20564
|
# If True, then all fields that are required by the
|
20424
20565
|
# CreatePatchBaseline operation are also required for this API
|
@@ -20439,6 +20580,7 @@ module Aws::SSM
|
|
20439
20580
|
:rejected_patches_action,
|
20440
20581
|
:description,
|
20441
20582
|
:sources,
|
20583
|
+
:available_security_updates_compliance_status,
|
20442
20584
|
:replace)
|
20443
20585
|
SENSITIVE = []
|
20444
20586
|
include Aws::Structure
|
@@ -20508,6 +20650,15 @@ module Aws::SSM
|
|
20508
20650
|
# to Linux managed nodes only.
|
20509
20651
|
# @return [Array<Types::PatchSource>]
|
20510
20652
|
#
|
20653
|
+
# @!attribute [rw] available_security_updates_compliance_status
|
20654
|
+
# Indicates the compliance status of managed nodes for which
|
20655
|
+
# security-related patches are available but were not approved. This
|
20656
|
+
# preference is specified when the `CreatePatchBaseline` or
|
20657
|
+
# `UpdatePatchBaseline` commands are run.
|
20658
|
+
#
|
20659
|
+
# Applies to Windows Server managed nodes only.
|
20660
|
+
# @return [String]
|
20661
|
+
#
|
20511
20662
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdatePatchBaselineResult AWS API Documentation
|
20512
20663
|
#
|
20513
20664
|
class UpdatePatchBaselineResult < Struct.new(
|
@@ -20524,7 +20675,8 @@ module Aws::SSM
|
|
20524
20675
|
:created_date,
|
20525
20676
|
:modified_date,
|
20526
20677
|
:description,
|
20527
|
-
:sources
|
20678
|
+
:sources,
|
20679
|
+
:available_security_updates_compliance_status)
|
20528
20680
|
SENSITIVE = []
|
20529
20681
|
include Aws::Structure
|
20530
20682
|
end
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -486,6 +486,7 @@ module Aws
|
|
486
486
|
configuration: ::String
|
487
487
|
},
|
488
488
|
],
|
489
|
+
?available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT"),
|
489
490
|
?client_token: ::String,
|
490
491
|
?tags: Array[
|
491
492
|
{
|
@@ -1245,6 +1246,7 @@ module Aws
|
|
1245
1246
|
def instances_with_critical_non_compliant_patches: () -> ::Integer
|
1246
1247
|
def instances_with_security_non_compliant_patches: () -> ::Integer
|
1247
1248
|
def instances_with_other_non_compliant_patches: () -> ::Integer
|
1249
|
+
def instances_with_available_security_updates: () -> ::Integer
|
1248
1250
|
end
|
1249
1251
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#describe_patch_group_state-instance_method
|
1250
1252
|
def describe_patch_group_state: (
|
@@ -1437,7 +1439,8 @@ module Aws
|
|
1437
1439
|
products: Array[::String],
|
1438
1440
|
configuration: ::String
|
1439
1441
|
},
|
1440
|
-
]
|
1442
|
+
]?,
|
1443
|
+
available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")?
|
1441
1444
|
}
|
1442
1445
|
) -> _GetDeployablePatchSnapshotForInstanceResponseSuccess
|
1443
1446
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeployablePatchSnapshotForInstanceResponseSuccess
|
@@ -1793,6 +1796,7 @@ module Aws
|
|
1793
1796
|
def modified_date: () -> ::Time
|
1794
1797
|
def description: () -> ::String
|
1795
1798
|
def sources: () -> ::Array[Types::PatchSource]
|
1799
|
+
def available_security_updates_compliance_status: () -> ("COMPLIANT" | "NON_COMPLIANT")
|
1796
1800
|
end
|
1797
1801
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#get_patch_baseline-instance_method
|
1798
1802
|
def get_patch_baseline: (
|
@@ -3121,6 +3125,7 @@ module Aws
|
|
3121
3125
|
def modified_date: () -> ::Time
|
3122
3126
|
def description: () -> ::String
|
3123
3127
|
def sources: () -> ::Array[Types::PatchSource]
|
3128
|
+
def available_security_updates_compliance_status: () -> ("COMPLIANT" | "NON_COMPLIANT")
|
3124
3129
|
end
|
3125
3130
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#update_patch_baseline-instance_method
|
3126
3131
|
def update_patch_baseline: (
|
@@ -3165,6 +3170,7 @@ module Aws
|
|
3165
3170
|
configuration: ::String
|
3166
3171
|
},
|
3167
3172
|
],
|
3173
|
+
?available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT"),
|
3168
3174
|
?replace: bool
|
3169
3175
|
) -> _UpdatePatchBaselineResponseSuccess
|
3170
3176
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePatchBaselineResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -391,6 +391,7 @@ module Aws::SSM
|
|
391
391
|
attr_accessor rejected_patches_action: ("ALLOW_AS_DEPENDENCY" | "BLOCK")
|
392
392
|
attr_accessor approved_patches_enable_non_security: bool
|
393
393
|
attr_accessor sources: ::Array[Types::PatchSource]
|
394
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
394
395
|
SENSITIVE: []
|
395
396
|
end
|
396
397
|
|
@@ -717,6 +718,7 @@ module Aws::SSM
|
|
717
718
|
attr_accessor rejected_patches_action: ("ALLOW_AS_DEPENDENCY" | "BLOCK")
|
718
719
|
attr_accessor description: ::String
|
719
720
|
attr_accessor sources: ::Array[Types::PatchSource]
|
721
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
720
722
|
attr_accessor client_token: ::String
|
721
723
|
attr_accessor tags: ::Array[Types::Tag]
|
722
724
|
SENSITIVE: []
|
@@ -1329,6 +1331,7 @@ module Aws::SSM
|
|
1329
1331
|
attr_accessor instances_with_critical_non_compliant_patches: ::Integer
|
1330
1332
|
attr_accessor instances_with_security_non_compliant_patches: ::Integer
|
1331
1333
|
attr_accessor instances_with_other_non_compliant_patches: ::Integer
|
1334
|
+
attr_accessor instances_with_available_security_updates: ::Integer
|
1332
1335
|
SENSITIVE: []
|
1333
1336
|
end
|
1334
1337
|
|
@@ -1994,6 +1997,7 @@ module Aws::SSM
|
|
1994
1997
|
attr_accessor modified_date: ::Time
|
1995
1998
|
attr_accessor description: ::String
|
1996
1999
|
attr_accessor sources: ::Array[Types::PatchSource]
|
2000
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
1997
2001
|
SENSITIVE: []
|
1998
2002
|
end
|
1999
2003
|
|
@@ -2153,6 +2157,7 @@ module Aws::SSM
|
|
2153
2157
|
attr_accessor failed_count: ::Integer
|
2154
2158
|
attr_accessor unreported_not_applicable_count: ::Integer
|
2155
2159
|
attr_accessor not_applicable_count: ::Integer
|
2160
|
+
attr_accessor available_security_update_count: ::Integer
|
2156
2161
|
attr_accessor operation_start_time: ::Time
|
2157
2162
|
attr_accessor operation_end_time: ::Time
|
2158
2163
|
attr_accessor operation: ("Scan" | "Install")
|
@@ -3448,7 +3453,7 @@ module Aws::SSM
|
|
3448
3453
|
attr_accessor kb_id: ::String
|
3449
3454
|
attr_accessor classification: ::String
|
3450
3455
|
attr_accessor severity: ::String
|
3451
|
-
attr_accessor state: ("INSTALLED" | "INSTALLED_OTHER" | "INSTALLED_PENDING_REBOOT" | "INSTALLED_REJECTED" | "MISSING" | "NOT_APPLICABLE" | "FAILED")
|
3456
|
+
attr_accessor state: ("INSTALLED" | "INSTALLED_OTHER" | "INSTALLED_PENDING_REBOOT" | "INSTALLED_REJECTED" | "MISSING" | "NOT_APPLICABLE" | "FAILED" | "AVAILABLE_SECURITY_UPDATE")
|
3452
3457
|
attr_accessor installed_time: ::Time
|
3453
3458
|
attr_accessor cve_ids: ::String
|
3454
3459
|
SENSITIVE: []
|
@@ -4438,6 +4443,7 @@ module Aws::SSM
|
|
4438
4443
|
attr_accessor rejected_patches_action: ("ALLOW_AS_DEPENDENCY" | "BLOCK")
|
4439
4444
|
attr_accessor description: ::String
|
4440
4445
|
attr_accessor sources: ::Array[Types::PatchSource]
|
4446
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
4441
4447
|
attr_accessor replace: bool
|
4442
4448
|
SENSITIVE: []
|
4443
4449
|
end
|
@@ -4457,6 +4463,7 @@ module Aws::SSM
|
|
4457
4463
|
attr_accessor modified_date: ::Time
|
4458
4464
|
attr_accessor description: ::String
|
4459
4465
|
attr_accessor sources: ::Array[Types::PatchSource]
|
4466
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
4460
4467
|
SENSITIVE: []
|
4461
4468
|
end
|
4462
4469
|
|
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.192.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: 2025-
|
11
|
+
date: 2025-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|