aws-sdk-ssm 1.177.0 → 1.179.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 +211 -37
- data/lib/aws-sdk-ssm/client_api.rb +13 -0
- data/lib/aws-sdk-ssm/endpoints.rb +140 -560
- data/lib/aws-sdk-ssm/plugins/endpoints.rb +10 -1
- data/lib/aws-sdk-ssm/types.rb +187 -102
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +57 -6
- data/sig/types.rbs +8 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e73984f022be7ab1a44bf310254fd0820e28a5c62014045ef3c893da37bb989d
|
4
|
+
data.tar.gz: f7d2aeae3dcacb63156f697bbb23c670c8926c3d82f41a9c363ff7a5fb734b74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af7d517baafa88bcbb13631128c283b5d8bf6c96b3adde027caf6b3c791f1c8d98431abc7f1740b7252aa1ace14e036891ea81585460cd3dbb13d1b452c5e7ec
|
7
|
+
data.tar.gz: 3c4b0510e04647a0c7b9a8b053d7abeea38652c3885b2d6961d21af9cd60d7c9b1687f5b86766e3e4cf7c00bc985856af2d131ced9c9e4a6851e20bf7bf77626
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.179.0 (2024-09-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Support for additional levels of cross-account, cross-Region organizational units in Automation. Various documentation updates.
|
8
|
+
|
9
|
+
1.178.0 (2024-09-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.177.0 (2024-09-10)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.179.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -678,9 +678,9 @@ module Aws::SSM
|
|
678
678
|
# capabilities. You use the activation code and ID when installing SSM
|
679
679
|
# Agent on machines in your hybrid environment. For more information
|
680
680
|
# about requirements for managing on-premises machines using Systems
|
681
|
-
# Manager, see [
|
682
|
-
#
|
683
|
-
#
|
681
|
+
# Manager, see [Using Amazon Web Services Systems Manager in hybrid and
|
682
|
+
# multicloud environments][1] in the *Amazon Web Services Systems
|
683
|
+
# Manager User Guide*.
|
684
684
|
#
|
685
685
|
# <note markdown="1"> Amazon Elastic Compute Cloud (Amazon EC2) instances, edge devices, and
|
686
686
|
# on-premises servers and VMs that are configured for Systems Manager
|
@@ -690,7 +690,7 @@ module Aws::SSM
|
|
690
690
|
#
|
691
691
|
#
|
692
692
|
#
|
693
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-
|
693
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-hybrid-multicloud.html
|
694
694
|
#
|
695
695
|
# @option params [String] :description
|
696
696
|
# A user-defined description of the resource that you want to register
|
@@ -710,9 +710,9 @@ module Aws::SSM
|
|
710
710
|
# want to assign to the managed node. This IAM role must provide
|
711
711
|
# AssumeRole permissions for the Amazon Web Services Systems Manager
|
712
712
|
# service principal `ssm.amazonaws.com`. For more information, see
|
713
|
-
# [Create
|
714
|
-
#
|
715
|
-
# Guide*.
|
713
|
+
# [Create the IAM service role required for Systems Manager in a hybrid
|
714
|
+
# and multicloud environments][1] in the *Amazon Web Services Systems
|
715
|
+
# Manager User Guide*.
|
716
716
|
#
|
717
717
|
# <note markdown="1"> You can't specify an IAM service-linked role for this parameter. You
|
718
718
|
# must create a unique role.
|
@@ -721,7 +721,7 @@ module Aws::SSM
|
|
721
721
|
#
|
722
722
|
#
|
723
723
|
#
|
724
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
724
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/hybrid-multicloud-service-role.html
|
725
725
|
#
|
726
726
|
# @option params [Integer] :registration_limit
|
727
727
|
# Specify the maximum number of managed nodes you want to register. The
|
@@ -729,7 +729,7 @@ module Aws::SSM
|
|
729
729
|
#
|
730
730
|
# @option params [Time,DateTime,Date,Integer,String] :expiration_date
|
731
731
|
# The date by which this activation request should expire, in timestamp
|
732
|
-
# format, such as "
|
732
|
+
# format, such as "2024-07-07T00:00:00". You can specify a date up to
|
733
733
|
# 30 days in advance. If you don't provide an expiration date, the
|
734
734
|
# activation code expires in 24 hours.
|
735
735
|
#
|
@@ -876,9 +876,10 @@ module Aws::SSM
|
|
876
876
|
# Amazon Web Services account, or individual managed node IDs. You can
|
877
877
|
# target all managed nodes in an Amazon Web Services account by
|
878
878
|
# specifying the `InstanceIds` key with a value of `*`. For more
|
879
|
-
# information about choosing targets for an association, see
|
880
|
-
# targets and rate controls in State Manager
|
881
|
-
# *Amazon Web Services Systems Manager User
|
879
|
+
# information about choosing targets for an association, see
|
880
|
+
# [Understanding targets and rate controls in State Manager
|
881
|
+
# associations][1] in the *Amazon Web Services Systems Manager User
|
882
|
+
# Guide*.
|
882
883
|
#
|
883
884
|
#
|
884
885
|
#
|
@@ -1072,6 +1073,16 @@ module Aws::SSM
|
|
1072
1073
|
# },
|
1073
1074
|
# ],
|
1074
1075
|
# },
|
1076
|
+
# include_child_organization_units: false,
|
1077
|
+
# exclude_accounts: ["ExcludeAccount"],
|
1078
|
+
# targets: [
|
1079
|
+
# {
|
1080
|
+
# key: "TargetKey",
|
1081
|
+
# values: ["TargetValue"],
|
1082
|
+
# },
|
1083
|
+
# ],
|
1084
|
+
# targets_max_concurrency: "MaxConcurrency",
|
1085
|
+
# targets_max_errors: "MaxErrors",
|
1075
1086
|
# },
|
1076
1087
|
# ],
|
1077
1088
|
# schedule_offset: 1,
|
@@ -1147,6 +1158,15 @@ module Aws::SSM
|
|
1147
1158
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
1148
1159
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
1149
1160
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
1161
|
+
# resp.association_description.target_locations[0].include_child_organization_units #=> Boolean
|
1162
|
+
# resp.association_description.target_locations[0].exclude_accounts #=> Array
|
1163
|
+
# resp.association_description.target_locations[0].exclude_accounts[0] #=> String
|
1164
|
+
# resp.association_description.target_locations[0].targets #=> Array
|
1165
|
+
# resp.association_description.target_locations[0].targets[0].key #=> String
|
1166
|
+
# resp.association_description.target_locations[0].targets[0].values #=> Array
|
1167
|
+
# resp.association_description.target_locations[0].targets[0].values[0] #=> String
|
1168
|
+
# resp.association_description.target_locations[0].targets_max_concurrency #=> String
|
1169
|
+
# resp.association_description.target_locations[0].targets_max_errors #=> String
|
1150
1170
|
# resp.association_description.schedule_offset #=> Integer
|
1151
1171
|
# resp.association_description.duration #=> Integer
|
1152
1172
|
# resp.association_description.target_maps #=> Array
|
@@ -1237,6 +1257,16 @@ module Aws::SSM
|
|
1237
1257
|
# },
|
1238
1258
|
# ],
|
1239
1259
|
# },
|
1260
|
+
# include_child_organization_units: false,
|
1261
|
+
# exclude_accounts: ["ExcludeAccount"],
|
1262
|
+
# targets: [
|
1263
|
+
# {
|
1264
|
+
# key: "TargetKey",
|
1265
|
+
# values: ["TargetValue"],
|
1266
|
+
# },
|
1267
|
+
# ],
|
1268
|
+
# targets_max_concurrency: "MaxConcurrency",
|
1269
|
+
# targets_max_errors: "MaxErrors",
|
1240
1270
|
# },
|
1241
1271
|
# ],
|
1242
1272
|
# schedule_offset: 1,
|
@@ -1309,6 +1339,15 @@ module Aws::SSM
|
|
1309
1339
|
# resp.successful[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
1310
1340
|
# resp.successful[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
1311
1341
|
# resp.successful[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
1342
|
+
# resp.successful[0].target_locations[0].include_child_organization_units #=> Boolean
|
1343
|
+
# resp.successful[0].target_locations[0].exclude_accounts #=> Array
|
1344
|
+
# resp.successful[0].target_locations[0].exclude_accounts[0] #=> String
|
1345
|
+
# resp.successful[0].target_locations[0].targets #=> Array
|
1346
|
+
# resp.successful[0].target_locations[0].targets[0].key #=> String
|
1347
|
+
# resp.successful[0].target_locations[0].targets[0].values #=> Array
|
1348
|
+
# resp.successful[0].target_locations[0].targets[0].values[0] #=> String
|
1349
|
+
# resp.successful[0].target_locations[0].targets_max_concurrency #=> String
|
1350
|
+
# resp.successful[0].target_locations[0].targets_max_errors #=> String
|
1312
1351
|
# resp.successful[0].schedule_offset #=> Integer
|
1313
1352
|
# resp.successful[0].duration #=> Integer
|
1314
1353
|
# resp.successful[0].target_maps #=> Array
|
@@ -1356,6 +1395,15 @@ module Aws::SSM
|
|
1356
1395
|
# resp.failed[0].entry.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
1357
1396
|
# resp.failed[0].entry.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
1358
1397
|
# resp.failed[0].entry.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
1398
|
+
# resp.failed[0].entry.target_locations[0].include_child_organization_units #=> Boolean
|
1399
|
+
# resp.failed[0].entry.target_locations[0].exclude_accounts #=> Array
|
1400
|
+
# resp.failed[0].entry.target_locations[0].exclude_accounts[0] #=> String
|
1401
|
+
# resp.failed[0].entry.target_locations[0].targets #=> Array
|
1402
|
+
# resp.failed[0].entry.target_locations[0].targets[0].key #=> String
|
1403
|
+
# resp.failed[0].entry.target_locations[0].targets[0].values #=> Array
|
1404
|
+
# resp.failed[0].entry.target_locations[0].targets[0].values[0] #=> String
|
1405
|
+
# resp.failed[0].entry.target_locations[0].targets_max_concurrency #=> String
|
1406
|
+
# resp.failed[0].entry.target_locations[0].targets_max_errors #=> String
|
1359
1407
|
# resp.failed[0].entry.schedule_offset #=> Integer
|
1360
1408
|
# resp.failed[0].entry.duration #=> Integer
|
1361
1409
|
# resp.failed[0].entry.target_maps #=> Array
|
@@ -1386,7 +1434,7 @@ module Aws::SSM
|
|
1386
1434
|
#
|
1387
1435
|
#
|
1388
1436
|
#
|
1389
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
1437
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/documents.html
|
1390
1438
|
#
|
1391
1439
|
# @option params [required, String] :content
|
1392
1440
|
# The content for the new SSM document in JSON or YAML format. The
|
@@ -2021,7 +2069,7 @@ module Aws::SSM
|
|
2021
2069
|
# A list of explicitly approved patches for the baseline.
|
2022
2070
|
#
|
2023
2071
|
# For information about accepted formats for lists of approved patches
|
2024
|
-
# and rejected patches, see [
|
2072
|
+
# and rejected patches, see [Package name formats for approved and
|
2025
2073
|
# rejected patch lists][1] in the *Amazon Web Services Systems Manager
|
2026
2074
|
# User Guide*.
|
2027
2075
|
#
|
@@ -2043,7 +2091,7 @@ module Aws::SSM
|
|
2043
2091
|
# A list of explicitly rejected patches for the baseline.
|
2044
2092
|
#
|
2045
2093
|
# For information about accepted formats for lists of approved patches
|
2046
|
-
# and rejected patches, see [
|
2094
|
+
# and rejected patches, see [Package name formats for approved and
|
2047
2095
|
# rejected patch lists][1] in the *Amazon Web Services Systems Manager
|
2048
2096
|
# User Guide*.
|
2049
2097
|
#
|
@@ -2186,7 +2234,7 @@ module Aws::SSM
|
|
2186
2234
|
# You can configure Systems Manager Inventory to use the
|
2187
2235
|
# `SyncToDestination` type to synchronize Inventory data from multiple
|
2188
2236
|
# Amazon Web Services Regions to a single Amazon Simple Storage Service
|
2189
|
-
# (Amazon S3) bucket. For more information, see [
|
2237
|
+
# (Amazon S3) bucket. For more information, see [Creatinga a resource
|
2190
2238
|
# data sync for Inventory][1] in the *Amazon Web Services Systems
|
2191
2239
|
# Manager User Guide*.
|
2192
2240
|
#
|
@@ -2214,7 +2262,7 @@ module Aws::SSM
|
|
2214
2262
|
#
|
2215
2263
|
#
|
2216
2264
|
#
|
2217
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
2265
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/inventory-create-resource-data-sync.html
|
2218
2266
|
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/Explorer-resource-data-sync.html
|
2219
2267
|
#
|
2220
2268
|
# @option params [required, String] :sync_name
|
@@ -3022,6 +3070,15 @@ module Aws::SSM
|
|
3022
3070
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
3023
3071
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
3024
3072
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
3073
|
+
# resp.association_description.target_locations[0].include_child_organization_units #=> Boolean
|
3074
|
+
# resp.association_description.target_locations[0].exclude_accounts #=> Array
|
3075
|
+
# resp.association_description.target_locations[0].exclude_accounts[0] #=> String
|
3076
|
+
# resp.association_description.target_locations[0].targets #=> Array
|
3077
|
+
# resp.association_description.target_locations[0].targets[0].key #=> String
|
3078
|
+
# resp.association_description.target_locations[0].targets[0].values #=> Array
|
3079
|
+
# resp.association_description.target_locations[0].targets[0].values[0] #=> String
|
3080
|
+
# resp.association_description.target_locations[0].targets_max_concurrency #=> String
|
3081
|
+
# resp.association_description.target_locations[0].targets_max_errors #=> String
|
3025
3082
|
# resp.association_description.schedule_offset #=> Integer
|
3026
3083
|
# resp.association_description.duration #=> Integer
|
3027
3084
|
# resp.association_description.target_maps #=> Array
|
@@ -3270,6 +3327,7 @@ module Aws::SSM
|
|
3270
3327
|
# resp.automation_execution_metadata_list[0].triggered_alarms #=> Array
|
3271
3328
|
# resp.automation_execution_metadata_list[0].triggered_alarms[0].name #=> String
|
3272
3329
|
# resp.automation_execution_metadata_list[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
3330
|
+
# resp.automation_execution_metadata_list[0].target_locations_url #=> String
|
3273
3331
|
# resp.automation_execution_metadata_list[0].automation_subtype #=> String, one of "ChangeRequest"
|
3274
3332
|
# resp.automation_execution_metadata_list[0].scheduled_time #=> Time
|
3275
3333
|
# resp.automation_execution_metadata_list[0].runbooks #=> Array
|
@@ -3300,6 +3358,15 @@ module Aws::SSM
|
|
3300
3358
|
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
3301
3359
|
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
3302
3360
|
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
3361
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].include_child_organization_units #=> Boolean
|
3362
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].exclude_accounts #=> Array
|
3363
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].exclude_accounts[0] #=> String
|
3364
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].targets #=> Array
|
3365
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].targets[0].key #=> String
|
3366
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].targets[0].values #=> Array
|
3367
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].targets[0].values[0] #=> String
|
3368
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].targets_max_concurrency #=> String
|
3369
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].targets_max_errors #=> String
|
3303
3370
|
# resp.automation_execution_metadata_list[0].ops_item_id #=> String
|
3304
3371
|
# resp.automation_execution_metadata_list[0].association_id #=> String
|
3305
3372
|
# resp.automation_execution_metadata_list[0].change_request_name #=> String
|
@@ -3407,6 +3474,15 @@ module Aws::SSM
|
|
3407
3474
|
# resp.step_executions[0].target_location.target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
3408
3475
|
# resp.step_executions[0].target_location.target_location_alarm_configuration.alarms #=> Array
|
3409
3476
|
# resp.step_executions[0].target_location.target_location_alarm_configuration.alarms[0].name #=> String
|
3477
|
+
# resp.step_executions[0].target_location.include_child_organization_units #=> Boolean
|
3478
|
+
# resp.step_executions[0].target_location.exclude_accounts #=> Array
|
3479
|
+
# resp.step_executions[0].target_location.exclude_accounts[0] #=> String
|
3480
|
+
# resp.step_executions[0].target_location.targets #=> Array
|
3481
|
+
# resp.step_executions[0].target_location.targets[0].key #=> String
|
3482
|
+
# resp.step_executions[0].target_location.targets[0].values #=> Array
|
3483
|
+
# resp.step_executions[0].target_location.targets[0].values[0] #=> String
|
3484
|
+
# resp.step_executions[0].target_location.targets_max_concurrency #=> String
|
3485
|
+
# resp.step_executions[0].target_location.targets_max_errors #=> String
|
3410
3486
|
# resp.step_executions[0].triggered_alarms #=> Array
|
3411
3487
|
# resp.step_executions[0].triggered_alarms[0].name #=> String
|
3412
3488
|
# resp.step_executions[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
@@ -4191,9 +4267,8 @@ module Aws::SSM
|
|
4191
4267
|
# Sample values: `Installed` \| `InstalledOther` \|
|
4192
4268
|
# `InstalledPendingReboot`
|
4193
4269
|
#
|
4194
|
-
# For lists of all `State` values, see [
|
4195
|
-
#
|
4196
|
-
# Guide*.
|
4270
|
+
# For lists of all `State` values, see [Patch compliance state
|
4271
|
+
# values][1] in the *Amazon Web Services Systems Manager User Guide*.
|
4197
4272
|
#
|
4198
4273
|
#
|
4199
4274
|
#
|
@@ -4551,7 +4626,7 @@ module Aws::SSM
|
|
4551
4626
|
#
|
4552
4627
|
# * Values. An array of strings, each between 1 and 256 characters.
|
4553
4628
|
# Supported values are date/time strings in a valid ISO 8601 date/time
|
4554
|
-
# format, such as `
|
4629
|
+
# format, such as `2024-11-04T05:00:00Z`.
|
4555
4630
|
#
|
4556
4631
|
# @option params [Integer] :max_results
|
4557
4632
|
# The maximum number of items to return for this call. The call also
|
@@ -5659,6 +5734,15 @@ module Aws::SSM
|
|
5659
5734
|
# resp.automation_execution.step_executions[0].target_location.target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
5660
5735
|
# resp.automation_execution.step_executions[0].target_location.target_location_alarm_configuration.alarms #=> Array
|
5661
5736
|
# resp.automation_execution.step_executions[0].target_location.target_location_alarm_configuration.alarms[0].name #=> String
|
5737
|
+
# resp.automation_execution.step_executions[0].target_location.include_child_organization_units #=> Boolean
|
5738
|
+
# resp.automation_execution.step_executions[0].target_location.exclude_accounts #=> Array
|
5739
|
+
# resp.automation_execution.step_executions[0].target_location.exclude_accounts[0] #=> String
|
5740
|
+
# resp.automation_execution.step_executions[0].target_location.targets #=> Array
|
5741
|
+
# resp.automation_execution.step_executions[0].target_location.targets[0].key #=> String
|
5742
|
+
# resp.automation_execution.step_executions[0].target_location.targets[0].values #=> Array
|
5743
|
+
# resp.automation_execution.step_executions[0].target_location.targets[0].values[0] #=> String
|
5744
|
+
# resp.automation_execution.step_executions[0].target_location.targets_max_concurrency #=> String
|
5745
|
+
# resp.automation_execution.step_executions[0].target_location.targets_max_errors #=> String
|
5662
5746
|
# resp.automation_execution.step_executions[0].triggered_alarms #=> Array
|
5663
5747
|
# resp.automation_execution.step_executions[0].triggered_alarms[0].name #=> String
|
5664
5748
|
# resp.automation_execution.step_executions[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
@@ -5706,6 +5790,15 @@ module Aws::SSM
|
|
5706
5790
|
# resp.automation_execution.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
5707
5791
|
# resp.automation_execution.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
5708
5792
|
# resp.automation_execution.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
5793
|
+
# resp.automation_execution.target_locations[0].include_child_organization_units #=> Boolean
|
5794
|
+
# resp.automation_execution.target_locations[0].exclude_accounts #=> Array
|
5795
|
+
# resp.automation_execution.target_locations[0].exclude_accounts[0] #=> String
|
5796
|
+
# resp.automation_execution.target_locations[0].targets #=> Array
|
5797
|
+
# resp.automation_execution.target_locations[0].targets[0].key #=> String
|
5798
|
+
# resp.automation_execution.target_locations[0].targets[0].values #=> Array
|
5799
|
+
# resp.automation_execution.target_locations[0].targets[0].values[0] #=> String
|
5800
|
+
# resp.automation_execution.target_locations[0].targets_max_concurrency #=> String
|
5801
|
+
# resp.automation_execution.target_locations[0].targets_max_errors #=> String
|
5709
5802
|
# resp.automation_execution.progress_counters.total_steps #=> Integer
|
5710
5803
|
# resp.automation_execution.progress_counters.success_steps #=> Integer
|
5711
5804
|
# resp.automation_execution.progress_counters.failed_steps #=> Integer
|
@@ -5717,6 +5810,7 @@ module Aws::SSM
|
|
5717
5810
|
# resp.automation_execution.triggered_alarms #=> Array
|
5718
5811
|
# resp.automation_execution.triggered_alarms[0].name #=> String
|
5719
5812
|
# resp.automation_execution.triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
5813
|
+
# resp.automation_execution.target_locations_url #=> String
|
5720
5814
|
# resp.automation_execution.automation_subtype #=> String, one of "ChangeRequest"
|
5721
5815
|
# resp.automation_execution.scheduled_time #=> Time
|
5722
5816
|
# resp.automation_execution.runbooks #=> Array
|
@@ -5747,6 +5841,15 @@ module Aws::SSM
|
|
5747
5841
|
# resp.automation_execution.runbooks[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
5748
5842
|
# resp.automation_execution.runbooks[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
5749
5843
|
# resp.automation_execution.runbooks[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
5844
|
+
# resp.automation_execution.runbooks[0].target_locations[0].include_child_organization_units #=> Boolean
|
5845
|
+
# resp.automation_execution.runbooks[0].target_locations[0].exclude_accounts #=> Array
|
5846
|
+
# resp.automation_execution.runbooks[0].target_locations[0].exclude_accounts[0] #=> String
|
5847
|
+
# resp.automation_execution.runbooks[0].target_locations[0].targets #=> Array
|
5848
|
+
# resp.automation_execution.runbooks[0].target_locations[0].targets[0].key #=> String
|
5849
|
+
# resp.automation_execution.runbooks[0].target_locations[0].targets[0].values #=> Array
|
5850
|
+
# resp.automation_execution.runbooks[0].target_locations[0].targets[0].values[0] #=> String
|
5851
|
+
# resp.automation_execution.runbooks[0].target_locations[0].targets_max_concurrency #=> String
|
5852
|
+
# resp.automation_execution.runbooks[0].target_locations[0].targets_max_errors #=> String
|
5750
5853
|
# resp.automation_execution.ops_item_id #=> String
|
5751
5854
|
# resp.automation_execution.association_id #=> String
|
5752
5855
|
# resp.automation_execution.change_request_name #=> String
|
@@ -6894,7 +6997,7 @@ module Aws::SSM
|
|
6894
6997
|
#
|
6895
6998
|
#
|
6896
6999
|
#
|
6897
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
7000
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-shared-parameters.html
|
6898
7001
|
#
|
6899
7002
|
# @option params [Boolean] :with_decryption
|
6900
7003
|
# Return decrypted values for secure string parameters. This flag is
|
@@ -7554,6 +7657,15 @@ module Aws::SSM
|
|
7554
7657
|
# resp.association_versions[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
7555
7658
|
# resp.association_versions[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
7556
7659
|
# resp.association_versions[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
7660
|
+
# resp.association_versions[0].target_locations[0].include_child_organization_units #=> Boolean
|
7661
|
+
# resp.association_versions[0].target_locations[0].exclude_accounts #=> Array
|
7662
|
+
# resp.association_versions[0].target_locations[0].exclude_accounts[0] #=> String
|
7663
|
+
# resp.association_versions[0].target_locations[0].targets #=> Array
|
7664
|
+
# resp.association_versions[0].target_locations[0].targets[0].key #=> String
|
7665
|
+
# resp.association_versions[0].target_locations[0].targets[0].values #=> Array
|
7666
|
+
# resp.association_versions[0].target_locations[0].targets[0].values[0] #=> String
|
7667
|
+
# resp.association_versions[0].target_locations[0].targets_max_concurrency #=> String
|
7668
|
+
# resp.association_versions[0].target_locations[0].targets_max_errors #=> String
|
7557
7669
|
# resp.association_versions[0].schedule_offset #=> Integer
|
7558
7670
|
# resp.association_versions[0].duration #=> Integer
|
7559
7671
|
# resp.association_versions[0].target_maps #=> Array
|
@@ -9500,7 +9612,7 @@ module Aws::SSM
|
|
9500
9612
|
# creating a custom policy and custom service role for running your
|
9501
9613
|
# maintenance window tasks. The policy can be crafted to provide only
|
9502
9614
|
# the permissions needed for your particular maintenance window tasks.
|
9503
|
-
# For more information, see [Setting up
|
9615
|
+
# For more information, see [Setting up Maintenance Windows][1] in the
|
9504
9616
|
# in the *Amazon Web Services Systems Manager User Guide*.
|
9505
9617
|
#
|
9506
9618
|
#
|
@@ -10254,6 +10366,9 @@ module Aws::SSM
|
|
10254
10366
|
# A key-value mapping to target resources. Required if you specify
|
10255
10367
|
# TargetParameterName.
|
10256
10368
|
#
|
10369
|
+
# If both this parameter and the `TargetLocation:Targets` parameter are
|
10370
|
+
# supplied, `TargetLocation:Targets` takes precedence.
|
10371
|
+
#
|
10257
10372
|
# @option params [Array<Hash>] :target_maps
|
10258
10373
|
# A key-value mapping of document parameters to target resources. Both
|
10259
10374
|
# Targets and TargetMaps can't be specified together.
|
@@ -10263,6 +10378,9 @@ module Aws::SSM
|
|
10263
10378
|
# You can specify a number, such as 10, or a percentage, such as 10%.
|
10264
10379
|
# The default value is `10`.
|
10265
10380
|
#
|
10381
|
+
# If both this parameter and the `TargetLocation:TargetsMaxConcurrency`
|
10382
|
+
# are supplied, `TargetLocation:TargetsMaxConcurrency` takes precedence.
|
10383
|
+
#
|
10266
10384
|
# @option params [String] :max_errors
|
10267
10385
|
# The number of errors that are allowed before the system stops running
|
10268
10386
|
# the automation on additional targets. You can specify either an
|
@@ -10281,14 +10399,17 @@ module Aws::SSM
|
|
10281
10399
|
# max-errors failed executions, set max-concurrency to 1 so the
|
10282
10400
|
# executions proceed one at a time.
|
10283
10401
|
#
|
10402
|
+
# If this parameter and the `TargetLocation:TargetsMaxErrors` parameter
|
10403
|
+
# are both supplied, `TargetLocation:TargetsMaxErrors` takes precedence.
|
10404
|
+
#
|
10284
10405
|
# @option params [Array<Types::TargetLocation>] :target_locations
|
10285
10406
|
# A location is a combination of Amazon Web Services Regions and/or
|
10286
10407
|
# Amazon Web Services accounts where you want to run the automation. Use
|
10287
10408
|
# this operation to start an automation in multiple Amazon Web Services
|
10288
10409
|
# Regions and multiple Amazon Web Services accounts. For more
|
10289
|
-
# information, see [Running
|
10290
|
-
#
|
10291
|
-
#
|
10410
|
+
# information, see [Running automations in multiple Amazon Web Services
|
10411
|
+
# Regions and accounts][1] in the *Amazon Web Services Systems Manager
|
10412
|
+
# User Guide*.
|
10292
10413
|
#
|
10293
10414
|
#
|
10294
10415
|
#
|
@@ -10314,6 +10435,11 @@ module Aws::SSM
|
|
10314
10435
|
# @option params [Types::AlarmConfiguration] :alarm_configuration
|
10315
10436
|
# The CloudWatch alarm you want to apply to your automation.
|
10316
10437
|
#
|
10438
|
+
# @option params [String] :target_locations_url
|
10439
|
+
# Specify a publicly accessible URL for a file that contains the
|
10440
|
+
# `TargetLocations` body. Currently, only files in presigned Amazon S3
|
10441
|
+
# buckets are supported.
|
10442
|
+
#
|
10317
10443
|
# @return [Types::StartAutomationExecutionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10318
10444
|
#
|
10319
10445
|
# * {Types::StartAutomationExecutionResult#automation_execution_id #automation_execution_id} => String
|
@@ -10357,6 +10483,16 @@ module Aws::SSM
|
|
10357
10483
|
# },
|
10358
10484
|
# ],
|
10359
10485
|
# },
|
10486
|
+
# include_child_organization_units: false,
|
10487
|
+
# exclude_accounts: ["ExcludeAccount"],
|
10488
|
+
# targets: [
|
10489
|
+
# {
|
10490
|
+
# key: "TargetKey",
|
10491
|
+
# values: ["TargetValue"],
|
10492
|
+
# },
|
10493
|
+
# ],
|
10494
|
+
# targets_max_concurrency: "MaxConcurrency",
|
10495
|
+
# targets_max_errors: "MaxErrors",
|
10360
10496
|
# },
|
10361
10497
|
# ],
|
10362
10498
|
# tags: [
|
@@ -10373,6 +10509,7 @@ module Aws::SSM
|
|
10373
10509
|
# },
|
10374
10510
|
# ],
|
10375
10511
|
# },
|
10512
|
+
# target_locations_url: "TargetLocationsURL",
|
10376
10513
|
# })
|
10377
10514
|
#
|
10378
10515
|
# @example Response structure
|
@@ -10522,6 +10659,16 @@ module Aws::SSM
|
|
10522
10659
|
# },
|
10523
10660
|
# ],
|
10524
10661
|
# },
|
10662
|
+
# include_child_organization_units: false,
|
10663
|
+
# exclude_accounts: ["ExcludeAccount"],
|
10664
|
+
# targets: [
|
10665
|
+
# {
|
10666
|
+
# key: "TargetKey",
|
10667
|
+
# values: ["TargetValue"],
|
10668
|
+
# },
|
10669
|
+
# ],
|
10670
|
+
# targets_max_concurrency: "MaxConcurrency",
|
10671
|
+
# targets_max_errors: "MaxErrors",
|
10525
10672
|
# },
|
10526
10673
|
# ],
|
10527
10674
|
# },
|
@@ -11005,6 +11152,16 @@ module Aws::SSM
|
|
11005
11152
|
# },
|
11006
11153
|
# ],
|
11007
11154
|
# },
|
11155
|
+
# include_child_organization_units: false,
|
11156
|
+
# exclude_accounts: ["ExcludeAccount"],
|
11157
|
+
# targets: [
|
11158
|
+
# {
|
11159
|
+
# key: "TargetKey",
|
11160
|
+
# values: ["TargetValue"],
|
11161
|
+
# },
|
11162
|
+
# ],
|
11163
|
+
# targets_max_concurrency: "MaxConcurrency",
|
11164
|
+
# targets_max_errors: "MaxErrors",
|
11008
11165
|
# },
|
11009
11166
|
# ],
|
11010
11167
|
# schedule_offset: 1,
|
@@ -11074,6 +11231,15 @@ module Aws::SSM
|
|
11074
11231
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
11075
11232
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
11076
11233
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
11234
|
+
# resp.association_description.target_locations[0].include_child_organization_units #=> Boolean
|
11235
|
+
# resp.association_description.target_locations[0].exclude_accounts #=> Array
|
11236
|
+
# resp.association_description.target_locations[0].exclude_accounts[0] #=> String
|
11237
|
+
# resp.association_description.target_locations[0].targets #=> Array
|
11238
|
+
# resp.association_description.target_locations[0].targets[0].key #=> String
|
11239
|
+
# resp.association_description.target_locations[0].targets[0].values #=> Array
|
11240
|
+
# resp.association_description.target_locations[0].targets[0].values[0] #=> String
|
11241
|
+
# resp.association_description.target_locations[0].targets_max_concurrency #=> String
|
11242
|
+
# resp.association_description.target_locations[0].targets_max_errors #=> String
|
11077
11243
|
# resp.association_description.schedule_offset #=> Integer
|
11078
11244
|
# resp.association_description.duration #=> Integer
|
11079
11245
|
# resp.association_description.target_maps #=> Array
|
@@ -11180,6 +11346,15 @@ module Aws::SSM
|
|
11180
11346
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
11181
11347
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
11182
11348
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
11349
|
+
# resp.association_description.target_locations[0].include_child_organization_units #=> Boolean
|
11350
|
+
# resp.association_description.target_locations[0].exclude_accounts #=> Array
|
11351
|
+
# resp.association_description.target_locations[0].exclude_accounts[0] #=> String
|
11352
|
+
# resp.association_description.target_locations[0].targets #=> Array
|
11353
|
+
# resp.association_description.target_locations[0].targets[0].key #=> String
|
11354
|
+
# resp.association_description.target_locations[0].targets[0].values #=> Array
|
11355
|
+
# resp.association_description.target_locations[0].targets[0].values[0] #=> String
|
11356
|
+
# resp.association_description.target_locations[0].targets_max_concurrency #=> String
|
11357
|
+
# resp.association_description.target_locations[0].targets_max_errors #=> String
|
11183
11358
|
# resp.association_description.schedule_offset #=> Integer
|
11184
11359
|
# resp.association_description.duration #=> Integer
|
11185
11360
|
# resp.association_description.target_maps #=> Array
|
@@ -11728,7 +11903,7 @@ module Aws::SSM
|
|
11728
11903
|
# creating a custom policy and custom service role for running your
|
11729
11904
|
# maintenance window tasks. The policy can be crafted to provide only
|
11730
11905
|
# the permissions needed for your particular maintenance window tasks.
|
11731
|
-
# For more information, see [Setting up
|
11906
|
+
# For more information, see [Setting up Maintenance Windows][1] in the
|
11732
11907
|
# in the *Amazon Web Services Systems Manager User Guide*.
|
11733
11908
|
#
|
11734
11909
|
#
|
@@ -12032,9 +12207,9 @@ module Aws::SSM
|
|
12032
12207
|
# want to assign to the managed node. This IAM role must provide
|
12033
12208
|
# AssumeRole permissions for the Amazon Web Services Systems Manager
|
12034
12209
|
# service principal `ssm.amazonaws.com`. For more information, see
|
12035
|
-
# [Create
|
12036
|
-
#
|
12037
|
-
# Guide*.
|
12210
|
+
# [Create the IAM service role required for Systems Manager in hybrid
|
12211
|
+
# and multicloud environments][1] in the *Amazon Web Services Systems
|
12212
|
+
# Manager User Guide*.
|
12038
12213
|
#
|
12039
12214
|
# <note markdown="1"> You can't specify an IAM service-linked role for this parameter. You
|
12040
12215
|
# must create a unique role.
|
@@ -12043,7 +12218,7 @@ module Aws::SSM
|
|
12043
12218
|
#
|
12044
12219
|
#
|
12045
12220
|
#
|
12046
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
12221
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/hybrid-multicloud-service-role.html
|
12047
12222
|
#
|
12048
12223
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
12049
12224
|
#
|
@@ -12134,9 +12309,8 @@ module Aws::SSM
|
|
12134
12309
|
# impacted resource.
|
12135
12310
|
#
|
12136
12311
|
# @option params [String] :status
|
12137
|
-
# The OpsItem status.
|
12138
|
-
#
|
12139
|
-
# the *Amazon Web Services Systems Manager User Guide*.
|
12312
|
+
# The OpsItem status. For more information, see [Editing OpsItem
|
12313
|
+
# details][1] in the *Amazon Web Services Systems Manager User Guide*.
|
12140
12314
|
#
|
12141
12315
|
#
|
12142
12316
|
#
|
@@ -12285,7 +12459,7 @@ module Aws::SSM
|
|
12285
12459
|
# A list of explicitly approved patches for the baseline.
|
12286
12460
|
#
|
12287
12461
|
# For information about accepted formats for lists of approved patches
|
12288
|
-
# and rejected patches, see [
|
12462
|
+
# and rejected patches, see [Package name formats for approved and
|
12289
12463
|
# rejected patch lists][1] in the *Amazon Web Services Systems Manager
|
12290
12464
|
# User Guide*.
|
12291
12465
|
#
|
@@ -12305,7 +12479,7 @@ module Aws::SSM
|
|
12305
12479
|
# A list of explicitly rejected patches for the baseline.
|
12306
12480
|
#
|
12307
12481
|
# For information about accepted formats for lists of approved patches
|
12308
|
-
# and rejected patches, see [
|
12482
|
+
# and rejected patches, see [Package name formats for approved and
|
12309
12483
|
# rejected patch lists][1] in the *Amazon Web Services Systems Manager
|
12310
12484
|
# User Guide*.
|
12311
12485
|
#
|
@@ -12627,7 +12801,7 @@ module Aws::SSM
|
|
12627
12801
|
tracer: tracer
|
12628
12802
|
)
|
12629
12803
|
context[:gem_name] = 'aws-sdk-ssm'
|
12630
|
-
context[:gem_version] = '1.
|
12804
|
+
context[:gem_version] = '1.179.0'
|
12631
12805
|
Seahorse::Client::Request.new(handlers, context)
|
12632
12806
|
end
|
12633
12807
|
|