aws-sdk-ssm 1.178.0 → 1.180.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 +221 -41
- data/lib/aws-sdk-ssm/client_api.rb +13 -0
- data/lib/aws-sdk-ssm/plugins/endpoints.rb +8 -5
- data/lib/aws-sdk-ssm/types.rb +187 -102
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +58 -6
- data/sig/resource.rbs +1 -0
- 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: 80e71ed47e3c178ef2a6f62949886c112e0f13fc7cbee5cbe2ee829491906177
|
4
|
+
data.tar.gz: 71ce3b03b1a95ca223ab794024747631380f0d35601de849c7f23ae396499238
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f9b1d2ffbee16d398e00967ab574f5c155d565dde673e29b4d5ea83a4ad379d9eb8b546783e1d9e4af1c18c146fd57bac8f2ffa943544987258323fc0dade67
|
7
|
+
data.tar.gz: a68b9b3e5aa6b4574482bc21408020c0b679ed7121689b0f22894f32dd5eb25da3e0292c82ce2a10353e92516204b2fea35535bd2b511f111d877bfbe1aeee8d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.180.0 (2024-09-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.179.0 (2024-09-17)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Support for additional levels of cross-account, cross-Region organizational units in Automation. Various documentation updates.
|
13
|
+
|
4
14
|
1.178.0 (2024-09-11)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.180.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -130,13 +130,15 @@ module Aws::SSM
|
|
130
130
|
# locations will be searched for credentials:
|
131
131
|
#
|
132
132
|
# * `Aws.config[:credentials]`
|
133
|
-
# * The `:access_key_id`, `:secret_access_key`,
|
134
|
-
#
|
133
|
+
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
134
|
+
# `:account_id` options.
|
135
|
+
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
|
136
|
+
# ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
|
135
137
|
# * `~/.aws/credentials`
|
136
138
|
# * `~/.aws/config`
|
137
139
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
140
|
# are very aggressive. Construct and pass an instance of
|
139
|
-
# `Aws::
|
141
|
+
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
142
|
# enable retries and extended timeouts. Instance profile credential
|
141
143
|
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
144
|
# to true.
|
@@ -155,6 +157,8 @@ module Aws::SSM
|
|
155
157
|
#
|
156
158
|
# @option options [String] :access_key_id
|
157
159
|
#
|
160
|
+
# @option options [String] :account_id
|
161
|
+
#
|
158
162
|
# @option options [Boolean] :active_endpoint_cache (false)
|
159
163
|
# When set to `true`, a thread polling for endpoints will be running in
|
160
164
|
# the background every 60 secs (default). Defaults to `false`.
|
@@ -376,7 +380,9 @@ module Aws::SSM
|
|
376
380
|
# sending the request.
|
377
381
|
#
|
378
382
|
# @option options [Aws::SSM::EndpointProvider] :endpoint_provider
|
379
|
-
# The endpoint provider used to resolve endpoints. Any object that responds to
|
383
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to
|
384
|
+
# `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
385
|
+
# `Aws::SSM::EndpointParameters`.
|
380
386
|
#
|
381
387
|
# @option options [Float] :http_continue_timeout (1)
|
382
388
|
# The number of seconds to wait for a 100-continue response before sending the
|
@@ -678,9 +684,9 @@ module Aws::SSM
|
|
678
684
|
# capabilities. You use the activation code and ID when installing SSM
|
679
685
|
# Agent on machines in your hybrid environment. For more information
|
680
686
|
# about requirements for managing on-premises machines using Systems
|
681
|
-
# Manager, see [
|
682
|
-
#
|
683
|
-
#
|
687
|
+
# Manager, see [Using Amazon Web Services Systems Manager in hybrid and
|
688
|
+
# multicloud environments][1] in the *Amazon Web Services Systems
|
689
|
+
# Manager User Guide*.
|
684
690
|
#
|
685
691
|
# <note markdown="1"> Amazon Elastic Compute Cloud (Amazon EC2) instances, edge devices, and
|
686
692
|
# on-premises servers and VMs that are configured for Systems Manager
|
@@ -690,7 +696,7 @@ module Aws::SSM
|
|
690
696
|
#
|
691
697
|
#
|
692
698
|
#
|
693
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-
|
699
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-hybrid-multicloud.html
|
694
700
|
#
|
695
701
|
# @option params [String] :description
|
696
702
|
# A user-defined description of the resource that you want to register
|
@@ -710,9 +716,9 @@ module Aws::SSM
|
|
710
716
|
# want to assign to the managed node. This IAM role must provide
|
711
717
|
# AssumeRole permissions for the Amazon Web Services Systems Manager
|
712
718
|
# service principal `ssm.amazonaws.com`. For more information, see
|
713
|
-
# [Create
|
714
|
-
#
|
715
|
-
# Guide*.
|
719
|
+
# [Create the IAM service role required for Systems Manager in a hybrid
|
720
|
+
# and multicloud environments][1] in the *Amazon Web Services Systems
|
721
|
+
# Manager User Guide*.
|
716
722
|
#
|
717
723
|
# <note markdown="1"> You can't specify an IAM service-linked role for this parameter. You
|
718
724
|
# must create a unique role.
|
@@ -721,7 +727,7 @@ module Aws::SSM
|
|
721
727
|
#
|
722
728
|
#
|
723
729
|
#
|
724
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
730
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/hybrid-multicloud-service-role.html
|
725
731
|
#
|
726
732
|
# @option params [Integer] :registration_limit
|
727
733
|
# Specify the maximum number of managed nodes you want to register. The
|
@@ -729,7 +735,7 @@ module Aws::SSM
|
|
729
735
|
#
|
730
736
|
# @option params [Time,DateTime,Date,Integer,String] :expiration_date
|
731
737
|
# The date by which this activation request should expire, in timestamp
|
732
|
-
# format, such as "
|
738
|
+
# format, such as "2024-07-07T00:00:00". You can specify a date up to
|
733
739
|
# 30 days in advance. If you don't provide an expiration date, the
|
734
740
|
# activation code expires in 24 hours.
|
735
741
|
#
|
@@ -876,9 +882,10 @@ module Aws::SSM
|
|
876
882
|
# Amazon Web Services account, or individual managed node IDs. You can
|
877
883
|
# target all managed nodes in an Amazon Web Services account by
|
878
884
|
# 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
|
885
|
+
# information about choosing targets for an association, see
|
886
|
+
# [Understanding targets and rate controls in State Manager
|
887
|
+
# associations][1] in the *Amazon Web Services Systems Manager User
|
888
|
+
# Guide*.
|
882
889
|
#
|
883
890
|
#
|
884
891
|
#
|
@@ -1072,6 +1079,16 @@ module Aws::SSM
|
|
1072
1079
|
# },
|
1073
1080
|
# ],
|
1074
1081
|
# },
|
1082
|
+
# include_child_organization_units: false,
|
1083
|
+
# exclude_accounts: ["ExcludeAccount"],
|
1084
|
+
# targets: [
|
1085
|
+
# {
|
1086
|
+
# key: "TargetKey",
|
1087
|
+
# values: ["TargetValue"],
|
1088
|
+
# },
|
1089
|
+
# ],
|
1090
|
+
# targets_max_concurrency: "MaxConcurrency",
|
1091
|
+
# targets_max_errors: "MaxErrors",
|
1075
1092
|
# },
|
1076
1093
|
# ],
|
1077
1094
|
# schedule_offset: 1,
|
@@ -1147,6 +1164,15 @@ module Aws::SSM
|
|
1147
1164
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
1148
1165
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
1149
1166
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
1167
|
+
# resp.association_description.target_locations[0].include_child_organization_units #=> Boolean
|
1168
|
+
# resp.association_description.target_locations[0].exclude_accounts #=> Array
|
1169
|
+
# resp.association_description.target_locations[0].exclude_accounts[0] #=> String
|
1170
|
+
# resp.association_description.target_locations[0].targets #=> Array
|
1171
|
+
# resp.association_description.target_locations[0].targets[0].key #=> String
|
1172
|
+
# resp.association_description.target_locations[0].targets[0].values #=> Array
|
1173
|
+
# resp.association_description.target_locations[0].targets[0].values[0] #=> String
|
1174
|
+
# resp.association_description.target_locations[0].targets_max_concurrency #=> String
|
1175
|
+
# resp.association_description.target_locations[0].targets_max_errors #=> String
|
1150
1176
|
# resp.association_description.schedule_offset #=> Integer
|
1151
1177
|
# resp.association_description.duration #=> Integer
|
1152
1178
|
# resp.association_description.target_maps #=> Array
|
@@ -1237,6 +1263,16 @@ module Aws::SSM
|
|
1237
1263
|
# },
|
1238
1264
|
# ],
|
1239
1265
|
# },
|
1266
|
+
# include_child_organization_units: false,
|
1267
|
+
# exclude_accounts: ["ExcludeAccount"],
|
1268
|
+
# targets: [
|
1269
|
+
# {
|
1270
|
+
# key: "TargetKey",
|
1271
|
+
# values: ["TargetValue"],
|
1272
|
+
# },
|
1273
|
+
# ],
|
1274
|
+
# targets_max_concurrency: "MaxConcurrency",
|
1275
|
+
# targets_max_errors: "MaxErrors",
|
1240
1276
|
# },
|
1241
1277
|
# ],
|
1242
1278
|
# schedule_offset: 1,
|
@@ -1309,6 +1345,15 @@ module Aws::SSM
|
|
1309
1345
|
# resp.successful[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
1310
1346
|
# resp.successful[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
1311
1347
|
# resp.successful[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
1348
|
+
# resp.successful[0].target_locations[0].include_child_organization_units #=> Boolean
|
1349
|
+
# resp.successful[0].target_locations[0].exclude_accounts #=> Array
|
1350
|
+
# resp.successful[0].target_locations[0].exclude_accounts[0] #=> String
|
1351
|
+
# resp.successful[0].target_locations[0].targets #=> Array
|
1352
|
+
# resp.successful[0].target_locations[0].targets[0].key #=> String
|
1353
|
+
# resp.successful[0].target_locations[0].targets[0].values #=> Array
|
1354
|
+
# resp.successful[0].target_locations[0].targets[0].values[0] #=> String
|
1355
|
+
# resp.successful[0].target_locations[0].targets_max_concurrency #=> String
|
1356
|
+
# resp.successful[0].target_locations[0].targets_max_errors #=> String
|
1312
1357
|
# resp.successful[0].schedule_offset #=> Integer
|
1313
1358
|
# resp.successful[0].duration #=> Integer
|
1314
1359
|
# resp.successful[0].target_maps #=> Array
|
@@ -1356,6 +1401,15 @@ module Aws::SSM
|
|
1356
1401
|
# resp.failed[0].entry.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
1357
1402
|
# resp.failed[0].entry.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
1358
1403
|
# resp.failed[0].entry.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
1404
|
+
# resp.failed[0].entry.target_locations[0].include_child_organization_units #=> Boolean
|
1405
|
+
# resp.failed[0].entry.target_locations[0].exclude_accounts #=> Array
|
1406
|
+
# resp.failed[0].entry.target_locations[0].exclude_accounts[0] #=> String
|
1407
|
+
# resp.failed[0].entry.target_locations[0].targets #=> Array
|
1408
|
+
# resp.failed[0].entry.target_locations[0].targets[0].key #=> String
|
1409
|
+
# resp.failed[0].entry.target_locations[0].targets[0].values #=> Array
|
1410
|
+
# resp.failed[0].entry.target_locations[0].targets[0].values[0] #=> String
|
1411
|
+
# resp.failed[0].entry.target_locations[0].targets_max_concurrency #=> String
|
1412
|
+
# resp.failed[0].entry.target_locations[0].targets_max_errors #=> String
|
1359
1413
|
# resp.failed[0].entry.schedule_offset #=> Integer
|
1360
1414
|
# resp.failed[0].entry.duration #=> Integer
|
1361
1415
|
# resp.failed[0].entry.target_maps #=> Array
|
@@ -1386,7 +1440,7 @@ module Aws::SSM
|
|
1386
1440
|
#
|
1387
1441
|
#
|
1388
1442
|
#
|
1389
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
1443
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/documents.html
|
1390
1444
|
#
|
1391
1445
|
# @option params [required, String] :content
|
1392
1446
|
# The content for the new SSM document in JSON or YAML format. The
|
@@ -2021,7 +2075,7 @@ module Aws::SSM
|
|
2021
2075
|
# A list of explicitly approved patches for the baseline.
|
2022
2076
|
#
|
2023
2077
|
# For information about accepted formats for lists of approved patches
|
2024
|
-
# and rejected patches, see [
|
2078
|
+
# and rejected patches, see [Package name formats for approved and
|
2025
2079
|
# rejected patch lists][1] in the *Amazon Web Services Systems Manager
|
2026
2080
|
# User Guide*.
|
2027
2081
|
#
|
@@ -2043,7 +2097,7 @@ module Aws::SSM
|
|
2043
2097
|
# A list of explicitly rejected patches for the baseline.
|
2044
2098
|
#
|
2045
2099
|
# For information about accepted formats for lists of approved patches
|
2046
|
-
# and rejected patches, see [
|
2100
|
+
# and rejected patches, see [Package name formats for approved and
|
2047
2101
|
# rejected patch lists][1] in the *Amazon Web Services Systems Manager
|
2048
2102
|
# User Guide*.
|
2049
2103
|
#
|
@@ -2186,7 +2240,7 @@ module Aws::SSM
|
|
2186
2240
|
# You can configure Systems Manager Inventory to use the
|
2187
2241
|
# `SyncToDestination` type to synchronize Inventory data from multiple
|
2188
2242
|
# Amazon Web Services Regions to a single Amazon Simple Storage Service
|
2189
|
-
# (Amazon S3) bucket. For more information, see [
|
2243
|
+
# (Amazon S3) bucket. For more information, see [Creatinga a resource
|
2190
2244
|
# data sync for Inventory][1] in the *Amazon Web Services Systems
|
2191
2245
|
# Manager User Guide*.
|
2192
2246
|
#
|
@@ -2214,7 +2268,7 @@ module Aws::SSM
|
|
2214
2268
|
#
|
2215
2269
|
#
|
2216
2270
|
#
|
2217
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
2271
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/inventory-create-resource-data-sync.html
|
2218
2272
|
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/Explorer-resource-data-sync.html
|
2219
2273
|
#
|
2220
2274
|
# @option params [required, String] :sync_name
|
@@ -3022,6 +3076,15 @@ module Aws::SSM
|
|
3022
3076
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
3023
3077
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
3024
3078
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
3079
|
+
# resp.association_description.target_locations[0].include_child_organization_units #=> Boolean
|
3080
|
+
# resp.association_description.target_locations[0].exclude_accounts #=> Array
|
3081
|
+
# resp.association_description.target_locations[0].exclude_accounts[0] #=> String
|
3082
|
+
# resp.association_description.target_locations[0].targets #=> Array
|
3083
|
+
# resp.association_description.target_locations[0].targets[0].key #=> String
|
3084
|
+
# resp.association_description.target_locations[0].targets[0].values #=> Array
|
3085
|
+
# resp.association_description.target_locations[0].targets[0].values[0] #=> String
|
3086
|
+
# resp.association_description.target_locations[0].targets_max_concurrency #=> String
|
3087
|
+
# resp.association_description.target_locations[0].targets_max_errors #=> String
|
3025
3088
|
# resp.association_description.schedule_offset #=> Integer
|
3026
3089
|
# resp.association_description.duration #=> Integer
|
3027
3090
|
# resp.association_description.target_maps #=> Array
|
@@ -3270,6 +3333,7 @@ module Aws::SSM
|
|
3270
3333
|
# resp.automation_execution_metadata_list[0].triggered_alarms #=> Array
|
3271
3334
|
# resp.automation_execution_metadata_list[0].triggered_alarms[0].name #=> String
|
3272
3335
|
# resp.automation_execution_metadata_list[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
3336
|
+
# resp.automation_execution_metadata_list[0].target_locations_url #=> String
|
3273
3337
|
# resp.automation_execution_metadata_list[0].automation_subtype #=> String, one of "ChangeRequest"
|
3274
3338
|
# resp.automation_execution_metadata_list[0].scheduled_time #=> Time
|
3275
3339
|
# resp.automation_execution_metadata_list[0].runbooks #=> Array
|
@@ -3300,6 +3364,15 @@ module Aws::SSM
|
|
3300
3364
|
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
3301
3365
|
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
3302
3366
|
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
3367
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].include_child_organization_units #=> Boolean
|
3368
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].exclude_accounts #=> Array
|
3369
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].exclude_accounts[0] #=> String
|
3370
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].targets #=> Array
|
3371
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].targets[0].key #=> String
|
3372
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].targets[0].values #=> Array
|
3373
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].targets[0].values[0] #=> String
|
3374
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].targets_max_concurrency #=> String
|
3375
|
+
# resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].targets_max_errors #=> String
|
3303
3376
|
# resp.automation_execution_metadata_list[0].ops_item_id #=> String
|
3304
3377
|
# resp.automation_execution_metadata_list[0].association_id #=> String
|
3305
3378
|
# resp.automation_execution_metadata_list[0].change_request_name #=> String
|
@@ -3407,6 +3480,15 @@ module Aws::SSM
|
|
3407
3480
|
# resp.step_executions[0].target_location.target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
3408
3481
|
# resp.step_executions[0].target_location.target_location_alarm_configuration.alarms #=> Array
|
3409
3482
|
# resp.step_executions[0].target_location.target_location_alarm_configuration.alarms[0].name #=> String
|
3483
|
+
# resp.step_executions[0].target_location.include_child_organization_units #=> Boolean
|
3484
|
+
# resp.step_executions[0].target_location.exclude_accounts #=> Array
|
3485
|
+
# resp.step_executions[0].target_location.exclude_accounts[0] #=> String
|
3486
|
+
# resp.step_executions[0].target_location.targets #=> Array
|
3487
|
+
# resp.step_executions[0].target_location.targets[0].key #=> String
|
3488
|
+
# resp.step_executions[0].target_location.targets[0].values #=> Array
|
3489
|
+
# resp.step_executions[0].target_location.targets[0].values[0] #=> String
|
3490
|
+
# resp.step_executions[0].target_location.targets_max_concurrency #=> String
|
3491
|
+
# resp.step_executions[0].target_location.targets_max_errors #=> String
|
3410
3492
|
# resp.step_executions[0].triggered_alarms #=> Array
|
3411
3493
|
# resp.step_executions[0].triggered_alarms[0].name #=> String
|
3412
3494
|
# resp.step_executions[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
@@ -4191,9 +4273,8 @@ module Aws::SSM
|
|
4191
4273
|
# Sample values: `Installed` \| `InstalledOther` \|
|
4192
4274
|
# `InstalledPendingReboot`
|
4193
4275
|
#
|
4194
|
-
# For lists of all `State` values, see [
|
4195
|
-
#
|
4196
|
-
# Guide*.
|
4276
|
+
# For lists of all `State` values, see [Patch compliance state
|
4277
|
+
# values][1] in the *Amazon Web Services Systems Manager User Guide*.
|
4197
4278
|
#
|
4198
4279
|
#
|
4199
4280
|
#
|
@@ -4551,7 +4632,7 @@ module Aws::SSM
|
|
4551
4632
|
#
|
4552
4633
|
# * Values. An array of strings, each between 1 and 256 characters.
|
4553
4634
|
# Supported values are date/time strings in a valid ISO 8601 date/time
|
4554
|
-
# format, such as `
|
4635
|
+
# format, such as `2024-11-04T05:00:00Z`.
|
4555
4636
|
#
|
4556
4637
|
# @option params [Integer] :max_results
|
4557
4638
|
# The maximum number of items to return for this call. The call also
|
@@ -5659,6 +5740,15 @@ module Aws::SSM
|
|
5659
5740
|
# resp.automation_execution.step_executions[0].target_location.target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
5660
5741
|
# resp.automation_execution.step_executions[0].target_location.target_location_alarm_configuration.alarms #=> Array
|
5661
5742
|
# resp.automation_execution.step_executions[0].target_location.target_location_alarm_configuration.alarms[0].name #=> String
|
5743
|
+
# resp.automation_execution.step_executions[0].target_location.include_child_organization_units #=> Boolean
|
5744
|
+
# resp.automation_execution.step_executions[0].target_location.exclude_accounts #=> Array
|
5745
|
+
# resp.automation_execution.step_executions[0].target_location.exclude_accounts[0] #=> String
|
5746
|
+
# resp.automation_execution.step_executions[0].target_location.targets #=> Array
|
5747
|
+
# resp.automation_execution.step_executions[0].target_location.targets[0].key #=> String
|
5748
|
+
# resp.automation_execution.step_executions[0].target_location.targets[0].values #=> Array
|
5749
|
+
# resp.automation_execution.step_executions[0].target_location.targets[0].values[0] #=> String
|
5750
|
+
# resp.automation_execution.step_executions[0].target_location.targets_max_concurrency #=> String
|
5751
|
+
# resp.automation_execution.step_executions[0].target_location.targets_max_errors #=> String
|
5662
5752
|
# resp.automation_execution.step_executions[0].triggered_alarms #=> Array
|
5663
5753
|
# resp.automation_execution.step_executions[0].triggered_alarms[0].name #=> String
|
5664
5754
|
# resp.automation_execution.step_executions[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
@@ -5706,6 +5796,15 @@ module Aws::SSM
|
|
5706
5796
|
# resp.automation_execution.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
5707
5797
|
# resp.automation_execution.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
5708
5798
|
# resp.automation_execution.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
5799
|
+
# resp.automation_execution.target_locations[0].include_child_organization_units #=> Boolean
|
5800
|
+
# resp.automation_execution.target_locations[0].exclude_accounts #=> Array
|
5801
|
+
# resp.automation_execution.target_locations[0].exclude_accounts[0] #=> String
|
5802
|
+
# resp.automation_execution.target_locations[0].targets #=> Array
|
5803
|
+
# resp.automation_execution.target_locations[0].targets[0].key #=> String
|
5804
|
+
# resp.automation_execution.target_locations[0].targets[0].values #=> Array
|
5805
|
+
# resp.automation_execution.target_locations[0].targets[0].values[0] #=> String
|
5806
|
+
# resp.automation_execution.target_locations[0].targets_max_concurrency #=> String
|
5807
|
+
# resp.automation_execution.target_locations[0].targets_max_errors #=> String
|
5709
5808
|
# resp.automation_execution.progress_counters.total_steps #=> Integer
|
5710
5809
|
# resp.automation_execution.progress_counters.success_steps #=> Integer
|
5711
5810
|
# resp.automation_execution.progress_counters.failed_steps #=> Integer
|
@@ -5717,6 +5816,7 @@ module Aws::SSM
|
|
5717
5816
|
# resp.automation_execution.triggered_alarms #=> Array
|
5718
5817
|
# resp.automation_execution.triggered_alarms[0].name #=> String
|
5719
5818
|
# resp.automation_execution.triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
5819
|
+
# resp.automation_execution.target_locations_url #=> String
|
5720
5820
|
# resp.automation_execution.automation_subtype #=> String, one of "ChangeRequest"
|
5721
5821
|
# resp.automation_execution.scheduled_time #=> Time
|
5722
5822
|
# resp.automation_execution.runbooks #=> Array
|
@@ -5747,6 +5847,15 @@ module Aws::SSM
|
|
5747
5847
|
# resp.automation_execution.runbooks[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
5748
5848
|
# resp.automation_execution.runbooks[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
5749
5849
|
# resp.automation_execution.runbooks[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
5850
|
+
# resp.automation_execution.runbooks[0].target_locations[0].include_child_organization_units #=> Boolean
|
5851
|
+
# resp.automation_execution.runbooks[0].target_locations[0].exclude_accounts #=> Array
|
5852
|
+
# resp.automation_execution.runbooks[0].target_locations[0].exclude_accounts[0] #=> String
|
5853
|
+
# resp.automation_execution.runbooks[0].target_locations[0].targets #=> Array
|
5854
|
+
# resp.automation_execution.runbooks[0].target_locations[0].targets[0].key #=> String
|
5855
|
+
# resp.automation_execution.runbooks[0].target_locations[0].targets[0].values #=> Array
|
5856
|
+
# resp.automation_execution.runbooks[0].target_locations[0].targets[0].values[0] #=> String
|
5857
|
+
# resp.automation_execution.runbooks[0].target_locations[0].targets_max_concurrency #=> String
|
5858
|
+
# resp.automation_execution.runbooks[0].target_locations[0].targets_max_errors #=> String
|
5750
5859
|
# resp.automation_execution.ops_item_id #=> String
|
5751
5860
|
# resp.automation_execution.association_id #=> String
|
5752
5861
|
# resp.automation_execution.change_request_name #=> String
|
@@ -6894,7 +7003,7 @@ module Aws::SSM
|
|
6894
7003
|
#
|
6895
7004
|
#
|
6896
7005
|
#
|
6897
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
7006
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-shared-parameters.html
|
6898
7007
|
#
|
6899
7008
|
# @option params [Boolean] :with_decryption
|
6900
7009
|
# Return decrypted values for secure string parameters. This flag is
|
@@ -7554,6 +7663,15 @@ module Aws::SSM
|
|
7554
7663
|
# resp.association_versions[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
7555
7664
|
# resp.association_versions[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
7556
7665
|
# resp.association_versions[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
7666
|
+
# resp.association_versions[0].target_locations[0].include_child_organization_units #=> Boolean
|
7667
|
+
# resp.association_versions[0].target_locations[0].exclude_accounts #=> Array
|
7668
|
+
# resp.association_versions[0].target_locations[0].exclude_accounts[0] #=> String
|
7669
|
+
# resp.association_versions[0].target_locations[0].targets #=> Array
|
7670
|
+
# resp.association_versions[0].target_locations[0].targets[0].key #=> String
|
7671
|
+
# resp.association_versions[0].target_locations[0].targets[0].values #=> Array
|
7672
|
+
# resp.association_versions[0].target_locations[0].targets[0].values[0] #=> String
|
7673
|
+
# resp.association_versions[0].target_locations[0].targets_max_concurrency #=> String
|
7674
|
+
# resp.association_versions[0].target_locations[0].targets_max_errors #=> String
|
7557
7675
|
# resp.association_versions[0].schedule_offset #=> Integer
|
7558
7676
|
# resp.association_versions[0].duration #=> Integer
|
7559
7677
|
# resp.association_versions[0].target_maps #=> Array
|
@@ -9500,7 +9618,7 @@ module Aws::SSM
|
|
9500
9618
|
# creating a custom policy and custom service role for running your
|
9501
9619
|
# maintenance window tasks. The policy can be crafted to provide only
|
9502
9620
|
# the permissions needed for your particular maintenance window tasks.
|
9503
|
-
# For more information, see [Setting up
|
9621
|
+
# For more information, see [Setting up Maintenance Windows][1] in the
|
9504
9622
|
# in the *Amazon Web Services Systems Manager User Guide*.
|
9505
9623
|
#
|
9506
9624
|
#
|
@@ -10254,6 +10372,9 @@ module Aws::SSM
|
|
10254
10372
|
# A key-value mapping to target resources. Required if you specify
|
10255
10373
|
# TargetParameterName.
|
10256
10374
|
#
|
10375
|
+
# If both this parameter and the `TargetLocation:Targets` parameter are
|
10376
|
+
# supplied, `TargetLocation:Targets` takes precedence.
|
10377
|
+
#
|
10257
10378
|
# @option params [Array<Hash>] :target_maps
|
10258
10379
|
# A key-value mapping of document parameters to target resources. Both
|
10259
10380
|
# Targets and TargetMaps can't be specified together.
|
@@ -10263,6 +10384,9 @@ module Aws::SSM
|
|
10263
10384
|
# You can specify a number, such as 10, or a percentage, such as 10%.
|
10264
10385
|
# The default value is `10`.
|
10265
10386
|
#
|
10387
|
+
# If both this parameter and the `TargetLocation:TargetsMaxConcurrency`
|
10388
|
+
# are supplied, `TargetLocation:TargetsMaxConcurrency` takes precedence.
|
10389
|
+
#
|
10266
10390
|
# @option params [String] :max_errors
|
10267
10391
|
# The number of errors that are allowed before the system stops running
|
10268
10392
|
# the automation on additional targets. You can specify either an
|
@@ -10281,14 +10405,17 @@ module Aws::SSM
|
|
10281
10405
|
# max-errors failed executions, set max-concurrency to 1 so the
|
10282
10406
|
# executions proceed one at a time.
|
10283
10407
|
#
|
10408
|
+
# If this parameter and the `TargetLocation:TargetsMaxErrors` parameter
|
10409
|
+
# are both supplied, `TargetLocation:TargetsMaxErrors` takes precedence.
|
10410
|
+
#
|
10284
10411
|
# @option params [Array<Types::TargetLocation>] :target_locations
|
10285
10412
|
# A location is a combination of Amazon Web Services Regions and/or
|
10286
10413
|
# Amazon Web Services accounts where you want to run the automation. Use
|
10287
10414
|
# this operation to start an automation in multiple Amazon Web Services
|
10288
10415
|
# Regions and multiple Amazon Web Services accounts. For more
|
10289
|
-
# information, see [Running
|
10290
|
-
#
|
10291
|
-
#
|
10416
|
+
# information, see [Running automations in multiple Amazon Web Services
|
10417
|
+
# Regions and accounts][1] in the *Amazon Web Services Systems Manager
|
10418
|
+
# User Guide*.
|
10292
10419
|
#
|
10293
10420
|
#
|
10294
10421
|
#
|
@@ -10314,6 +10441,11 @@ module Aws::SSM
|
|
10314
10441
|
# @option params [Types::AlarmConfiguration] :alarm_configuration
|
10315
10442
|
# The CloudWatch alarm you want to apply to your automation.
|
10316
10443
|
#
|
10444
|
+
# @option params [String] :target_locations_url
|
10445
|
+
# Specify a publicly accessible URL for a file that contains the
|
10446
|
+
# `TargetLocations` body. Currently, only files in presigned Amazon S3
|
10447
|
+
# buckets are supported.
|
10448
|
+
#
|
10317
10449
|
# @return [Types::StartAutomationExecutionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10318
10450
|
#
|
10319
10451
|
# * {Types::StartAutomationExecutionResult#automation_execution_id #automation_execution_id} => String
|
@@ -10357,6 +10489,16 @@ module Aws::SSM
|
|
10357
10489
|
# },
|
10358
10490
|
# ],
|
10359
10491
|
# },
|
10492
|
+
# include_child_organization_units: false,
|
10493
|
+
# exclude_accounts: ["ExcludeAccount"],
|
10494
|
+
# targets: [
|
10495
|
+
# {
|
10496
|
+
# key: "TargetKey",
|
10497
|
+
# values: ["TargetValue"],
|
10498
|
+
# },
|
10499
|
+
# ],
|
10500
|
+
# targets_max_concurrency: "MaxConcurrency",
|
10501
|
+
# targets_max_errors: "MaxErrors",
|
10360
10502
|
# },
|
10361
10503
|
# ],
|
10362
10504
|
# tags: [
|
@@ -10373,6 +10515,7 @@ module Aws::SSM
|
|
10373
10515
|
# },
|
10374
10516
|
# ],
|
10375
10517
|
# },
|
10518
|
+
# target_locations_url: "TargetLocationsURL",
|
10376
10519
|
# })
|
10377
10520
|
#
|
10378
10521
|
# @example Response structure
|
@@ -10522,6 +10665,16 @@ module Aws::SSM
|
|
10522
10665
|
# },
|
10523
10666
|
# ],
|
10524
10667
|
# },
|
10668
|
+
# include_child_organization_units: false,
|
10669
|
+
# exclude_accounts: ["ExcludeAccount"],
|
10670
|
+
# targets: [
|
10671
|
+
# {
|
10672
|
+
# key: "TargetKey",
|
10673
|
+
# values: ["TargetValue"],
|
10674
|
+
# },
|
10675
|
+
# ],
|
10676
|
+
# targets_max_concurrency: "MaxConcurrency",
|
10677
|
+
# targets_max_errors: "MaxErrors",
|
10525
10678
|
# },
|
10526
10679
|
# ],
|
10527
10680
|
# },
|
@@ -11005,6 +11158,16 @@ module Aws::SSM
|
|
11005
11158
|
# },
|
11006
11159
|
# ],
|
11007
11160
|
# },
|
11161
|
+
# include_child_organization_units: false,
|
11162
|
+
# exclude_accounts: ["ExcludeAccount"],
|
11163
|
+
# targets: [
|
11164
|
+
# {
|
11165
|
+
# key: "TargetKey",
|
11166
|
+
# values: ["TargetValue"],
|
11167
|
+
# },
|
11168
|
+
# ],
|
11169
|
+
# targets_max_concurrency: "MaxConcurrency",
|
11170
|
+
# targets_max_errors: "MaxErrors",
|
11008
11171
|
# },
|
11009
11172
|
# ],
|
11010
11173
|
# schedule_offset: 1,
|
@@ -11074,6 +11237,15 @@ module Aws::SSM
|
|
11074
11237
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
11075
11238
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
11076
11239
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
11240
|
+
# resp.association_description.target_locations[0].include_child_organization_units #=> Boolean
|
11241
|
+
# resp.association_description.target_locations[0].exclude_accounts #=> Array
|
11242
|
+
# resp.association_description.target_locations[0].exclude_accounts[0] #=> String
|
11243
|
+
# resp.association_description.target_locations[0].targets #=> Array
|
11244
|
+
# resp.association_description.target_locations[0].targets[0].key #=> String
|
11245
|
+
# resp.association_description.target_locations[0].targets[0].values #=> Array
|
11246
|
+
# resp.association_description.target_locations[0].targets[0].values[0] #=> String
|
11247
|
+
# resp.association_description.target_locations[0].targets_max_concurrency #=> String
|
11248
|
+
# resp.association_description.target_locations[0].targets_max_errors #=> String
|
11077
11249
|
# resp.association_description.schedule_offset #=> Integer
|
11078
11250
|
# resp.association_description.duration #=> Integer
|
11079
11251
|
# resp.association_description.target_maps #=> Array
|
@@ -11180,6 +11352,15 @@ module Aws::SSM
|
|
11180
11352
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
|
11181
11353
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
|
11182
11354
|
# resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
|
11355
|
+
# resp.association_description.target_locations[0].include_child_organization_units #=> Boolean
|
11356
|
+
# resp.association_description.target_locations[0].exclude_accounts #=> Array
|
11357
|
+
# resp.association_description.target_locations[0].exclude_accounts[0] #=> String
|
11358
|
+
# resp.association_description.target_locations[0].targets #=> Array
|
11359
|
+
# resp.association_description.target_locations[0].targets[0].key #=> String
|
11360
|
+
# resp.association_description.target_locations[0].targets[0].values #=> Array
|
11361
|
+
# resp.association_description.target_locations[0].targets[0].values[0] #=> String
|
11362
|
+
# resp.association_description.target_locations[0].targets_max_concurrency #=> String
|
11363
|
+
# resp.association_description.target_locations[0].targets_max_errors #=> String
|
11183
11364
|
# resp.association_description.schedule_offset #=> Integer
|
11184
11365
|
# resp.association_description.duration #=> Integer
|
11185
11366
|
# resp.association_description.target_maps #=> Array
|
@@ -11728,7 +11909,7 @@ module Aws::SSM
|
|
11728
11909
|
# creating a custom policy and custom service role for running your
|
11729
11910
|
# maintenance window tasks. The policy can be crafted to provide only
|
11730
11911
|
# the permissions needed for your particular maintenance window tasks.
|
11731
|
-
# For more information, see [Setting up
|
11912
|
+
# For more information, see [Setting up Maintenance Windows][1] in the
|
11732
11913
|
# in the *Amazon Web Services Systems Manager User Guide*.
|
11733
11914
|
#
|
11734
11915
|
#
|
@@ -12032,9 +12213,9 @@ module Aws::SSM
|
|
12032
12213
|
# want to assign to the managed node. This IAM role must provide
|
12033
12214
|
# AssumeRole permissions for the Amazon Web Services Systems Manager
|
12034
12215
|
# service principal `ssm.amazonaws.com`. For more information, see
|
12035
|
-
# [Create
|
12036
|
-
#
|
12037
|
-
# Guide*.
|
12216
|
+
# [Create the IAM service role required for Systems Manager in hybrid
|
12217
|
+
# and multicloud environments][1] in the *Amazon Web Services Systems
|
12218
|
+
# Manager User Guide*.
|
12038
12219
|
#
|
12039
12220
|
# <note markdown="1"> You can't specify an IAM service-linked role for this parameter. You
|
12040
12221
|
# must create a unique role.
|
@@ -12043,7 +12224,7 @@ module Aws::SSM
|
|
12043
12224
|
#
|
12044
12225
|
#
|
12045
12226
|
#
|
12046
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/
|
12227
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/hybrid-multicloud-service-role.html
|
12047
12228
|
#
|
12048
12229
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
12049
12230
|
#
|
@@ -12134,9 +12315,8 @@ module Aws::SSM
|
|
12134
12315
|
# impacted resource.
|
12135
12316
|
#
|
12136
12317
|
# @option params [String] :status
|
12137
|
-
# The OpsItem status.
|
12138
|
-
#
|
12139
|
-
# the *Amazon Web Services Systems Manager User Guide*.
|
12318
|
+
# The OpsItem status. For more information, see [Editing OpsItem
|
12319
|
+
# details][1] in the *Amazon Web Services Systems Manager User Guide*.
|
12140
12320
|
#
|
12141
12321
|
#
|
12142
12322
|
#
|
@@ -12285,7 +12465,7 @@ module Aws::SSM
|
|
12285
12465
|
# A list of explicitly approved patches for the baseline.
|
12286
12466
|
#
|
12287
12467
|
# For information about accepted formats for lists of approved patches
|
12288
|
-
# and rejected patches, see [
|
12468
|
+
# and rejected patches, see [Package name formats for approved and
|
12289
12469
|
# rejected patch lists][1] in the *Amazon Web Services Systems Manager
|
12290
12470
|
# User Guide*.
|
12291
12471
|
#
|
@@ -12305,7 +12485,7 @@ module Aws::SSM
|
|
12305
12485
|
# A list of explicitly rejected patches for the baseline.
|
12306
12486
|
#
|
12307
12487
|
# For information about accepted formats for lists of approved patches
|
12308
|
-
# and rejected patches, see [
|
12488
|
+
# and rejected patches, see [Package name formats for approved and
|
12309
12489
|
# rejected patch lists][1] in the *Amazon Web Services Systems Manager
|
12310
12490
|
# User Guide*.
|
12311
12491
|
#
|
@@ -12627,7 +12807,7 @@ module Aws::SSM
|
|
12627
12807
|
tracer: tracer
|
12628
12808
|
)
|
12629
12809
|
context[:gem_name] = 'aws-sdk-ssm'
|
12630
|
-
context[:gem_version] = '1.
|
12810
|
+
context[:gem_version] = '1.180.0'
|
12631
12811
|
Seahorse::Client::Request.new(handlers, context)
|
12632
12812
|
end
|
12633
12813
|
|