aws-sdk-ssm 1.210.0 → 1.211.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +86 -25
- data/lib/aws-sdk-ssm/client_api.rb +6 -0
- data/lib/aws-sdk-ssm/types.rb +99 -11
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +6 -3
- data/sig/types.rbs +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1bb3d9a9ea6b5ef061f0930c1121d605de3cc8ac60cdb073739a657f43414823
|
|
4
|
+
data.tar.gz: f0324595c495b6f95cc392270031920ca2909a54fe04c1de86d86560311423c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8824c8578263eb2311f0e1cdb7ee15641a477fb23b1b606bdbf1c7daaf7dd81bcaa84194f97f2ae552c9390326be51ed9080176e699b3e45be1274628b20f88f
|
|
7
|
+
data.tar.gz: ef28b9cf43ab78229491e9c36180b24f18cfa9af21cf5300490e25237a7d29b5ee92556016944f98832b15cd644fc3a2bad0571b1527e8e3fd053f1ed1ca9e92
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.211.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
|
@@ -1073,6 +1073,26 @@ module Aws::SSM
|
|
|
1073
1073
|
# The details for the CloudWatch alarm you want to apply to an
|
|
1074
1074
|
# automation or command.
|
|
1075
1075
|
#
|
|
1076
|
+
# @option params [String] :association_dispatch_assume_role
|
|
1077
|
+
# A role used by association to take actions on your behalf. State
|
|
1078
|
+
# Manager will assume this role and call required APIs when dispatching
|
|
1079
|
+
# configurations to nodes. If not specified, [ service-linked role for
|
|
1080
|
+
# Systems Manager][1] will be used by default.
|
|
1081
|
+
#
|
|
1082
|
+
# <note markdown="1"> It is recommended that you define a custom IAM role so that you have
|
|
1083
|
+
# full control of the permissions that State Manager has when taking
|
|
1084
|
+
# actions on your behalf.
|
|
1085
|
+
#
|
|
1086
|
+
# Service-linked role support in State Manager is being phased out.
|
|
1087
|
+
# Associations relying on service-linked role may require updates in the
|
|
1088
|
+
# future to continue functioning properly.
|
|
1089
|
+
#
|
|
1090
|
+
# </note>
|
|
1091
|
+
#
|
|
1092
|
+
#
|
|
1093
|
+
#
|
|
1094
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html
|
|
1095
|
+
#
|
|
1076
1096
|
# @return [Types::CreateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1077
1097
|
#
|
|
1078
1098
|
# * {Types::CreateAssociationResult#association_description #association_description} => Types::AssociationDescription
|
|
@@ -1156,6 +1176,7 @@ module Aws::SSM
|
|
|
1156
1176
|
# },
|
|
1157
1177
|
# ],
|
|
1158
1178
|
# },
|
|
1179
|
+
# association_dispatch_assume_role: "AssociationDispatchAssumeRoleArn",
|
|
1159
1180
|
# })
|
|
1160
1181
|
#
|
|
1161
1182
|
# @example Response structure
|
|
@@ -1229,6 +1250,7 @@ module Aws::SSM
|
|
|
1229
1250
|
# resp.association_description.triggered_alarms #=> Array
|
|
1230
1251
|
# resp.association_description.triggered_alarms[0].name #=> String
|
|
1231
1252
|
# resp.association_description.triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
|
1253
|
+
# resp.association_description.association_dispatch_assume_role #=> String
|
|
1232
1254
|
#
|
|
1233
1255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociation AWS API Documentation
|
|
1234
1256
|
#
|
|
@@ -1254,6 +1276,26 @@ module Aws::SSM
|
|
|
1254
1276
|
# @option params [required, Array<Types::CreateAssociationBatchRequestEntry>] :entries
|
|
1255
1277
|
# One or more associations.
|
|
1256
1278
|
#
|
|
1279
|
+
# @option params [String] :association_dispatch_assume_role
|
|
1280
|
+
# A role used by association to take actions on your behalf. State
|
|
1281
|
+
# Manager will assume this role and call required APIs when dispatching
|
|
1282
|
+
# configurations to nodes. If not specified, [ service-linked role for
|
|
1283
|
+
# Systems Manager][1] will be used by default.
|
|
1284
|
+
#
|
|
1285
|
+
# <note markdown="1"> It is recommended that you define a custom IAM role so that you have
|
|
1286
|
+
# full control of the permissions that State Manager has when taking
|
|
1287
|
+
# actions on your behalf.
|
|
1288
|
+
#
|
|
1289
|
+
# Service-linked role support in State Manager is being phased out.
|
|
1290
|
+
# Associations relying on service-linked role may require updates in the
|
|
1291
|
+
# future to continue functioning properly.
|
|
1292
|
+
#
|
|
1293
|
+
# </note>
|
|
1294
|
+
#
|
|
1295
|
+
#
|
|
1296
|
+
#
|
|
1297
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html
|
|
1298
|
+
#
|
|
1257
1299
|
# @return [Types::CreateAssociationBatchResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1258
1300
|
#
|
|
1259
1301
|
# * {Types::CreateAssociationBatchResult#successful #successful} => Array<Types::AssociationDescription>
|
|
@@ -1336,6 +1378,7 @@ module Aws::SSM
|
|
|
1336
1378
|
# },
|
|
1337
1379
|
# },
|
|
1338
1380
|
# ],
|
|
1381
|
+
# association_dispatch_assume_role: "AssociationDispatchAssumeRoleArn",
|
|
1339
1382
|
# })
|
|
1340
1383
|
#
|
|
1341
1384
|
# @example Response structure
|
|
@@ -1410,6 +1453,7 @@ module Aws::SSM
|
|
|
1410
1453
|
# resp.successful[0].triggered_alarms #=> Array
|
|
1411
1454
|
# resp.successful[0].triggered_alarms[0].name #=> String
|
|
1412
1455
|
# resp.successful[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
|
1456
|
+
# resp.successful[0].association_dispatch_assume_role #=> String
|
|
1413
1457
|
# resp.failed #=> Array
|
|
1414
1458
|
# resp.failed[0].entry.name #=> String
|
|
1415
1459
|
# resp.failed[0].entry.instance_id #=> String
|
|
@@ -1881,12 +1925,10 @@ module Aws::SSM
|
|
|
1881
1925
|
# This type of OpsItem is used by Change Manager for reviewing and
|
|
1882
1926
|
# approving or rejecting change requests.
|
|
1883
1927
|
#
|
|
1884
|
-
# Amazon Web Services Systems Manager Change Manager
|
|
1885
|
-
#
|
|
1886
|
-
#
|
|
1887
|
-
#
|
|
1888
|
-
# information, see [Amazon Web Services Systems Manager Change Manager
|
|
1889
|
-
# availability change][1].
|
|
1928
|
+
# Amazon Web Services Systems Manager Change Manager is no longer open
|
|
1929
|
+
# to new customers. Existing customers can continue to use the service
|
|
1930
|
+
# as normal. For more information, see [Amazon Web Services Systems
|
|
1931
|
+
# Manager Change Manager availability change][1].
|
|
1890
1932
|
#
|
|
1891
1933
|
#
|
|
1892
1934
|
#
|
|
@@ -3192,6 +3234,7 @@ module Aws::SSM
|
|
|
3192
3234
|
# resp.association_description.triggered_alarms #=> Array
|
|
3193
3235
|
# resp.association_description.triggered_alarms[0].name #=> String
|
|
3194
3236
|
# resp.association_description.triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
|
3237
|
+
# resp.association_description.association_dispatch_assume_role #=> String
|
|
3195
3238
|
#
|
|
3196
3239
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociation AWS API Documentation
|
|
3197
3240
|
#
|
|
@@ -7934,6 +7977,7 @@ module Aws::SSM
|
|
|
7934
7977
|
# resp.association_versions[0].target_maps[0] #=> Hash
|
|
7935
7978
|
# resp.association_versions[0].target_maps[0]["TargetMapKey"] #=> Array
|
|
7936
7979
|
# resp.association_versions[0].target_maps[0]["TargetMapKey"][0] #=> String
|
|
7980
|
+
# resp.association_versions[0].association_dispatch_assume_role #=> String
|
|
7937
7981
|
# resp.next_token #=> String
|
|
7938
7982
|
#
|
|
7939
7983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListAssociationVersions AWS API Documentation
|
|
@@ -8374,12 +8418,10 @@ module Aws::SSM
|
|
|
8374
8418
|
req.send_request(options)
|
|
8375
8419
|
end
|
|
8376
8420
|
|
|
8377
|
-
# Amazon Web Services Systems Manager Change Manager
|
|
8378
|
-
#
|
|
8379
|
-
#
|
|
8380
|
-
#
|
|
8381
|
-
# [Amazon Web Services Systems Manager Change Manager availability
|
|
8382
|
-
# change][1].
|
|
8421
|
+
# Amazon Web Services Systems Manager Change Manager is no longer open
|
|
8422
|
+
# to new customers. Existing customers can continue to use the service
|
|
8423
|
+
# as normal. For more information, see [Amazon Web Services Systems
|
|
8424
|
+
# Manager Change Manager availability change][1].
|
|
8383
8425
|
#
|
|
8384
8426
|
# Information about approval reviews for a version of a change template
|
|
8385
8427
|
# in Change Manager.
|
|
@@ -11122,12 +11164,10 @@ module Aws::SSM
|
|
|
11122
11164
|
req.send_request(options)
|
|
11123
11165
|
end
|
|
11124
11166
|
|
|
11125
|
-
# Amazon Web Services Systems Manager Change Manager
|
|
11126
|
-
#
|
|
11127
|
-
#
|
|
11128
|
-
#
|
|
11129
|
-
# [Amazon Web Services Systems Manager Change Manager availability
|
|
11130
|
-
# change][1].
|
|
11167
|
+
# Amazon Web Services Systems Manager Change Manager is no longer open
|
|
11168
|
+
# to new customers. Existing customers can continue to use the service
|
|
11169
|
+
# as normal. For more information, see [Amazon Web Services Systems
|
|
11170
|
+
# Manager Change Manager availability change][1].
|
|
11131
11171
|
#
|
|
11132
11172
|
# Creates a change request for Change Manager. The Automation runbooks
|
|
11133
11173
|
# specified in the change request run only after all required approvals
|
|
@@ -11845,6 +11885,26 @@ module Aws::SSM
|
|
|
11845
11885
|
# The details for the CloudWatch alarm you want to apply to an
|
|
11846
11886
|
# automation or command.
|
|
11847
11887
|
#
|
|
11888
|
+
# @option params [String] :association_dispatch_assume_role
|
|
11889
|
+
# A role used by association to take actions on your behalf. State
|
|
11890
|
+
# Manager will assume this role and call required APIs when dispatching
|
|
11891
|
+
# configurations to nodes. If not specified, [ service-linked role for
|
|
11892
|
+
# Systems Manager][1] will be used by default.
|
|
11893
|
+
#
|
|
11894
|
+
# <note markdown="1"> It is recommended that you define a custom IAM role so that you have
|
|
11895
|
+
# full control of the permissions that State Manager has when taking
|
|
11896
|
+
# actions on your behalf.
|
|
11897
|
+
#
|
|
11898
|
+
# Service-linked role support in State Manager is being phased out.
|
|
11899
|
+
# Associations relying on service-linked role may require updates in the
|
|
11900
|
+
# future to continue functioning properly.
|
|
11901
|
+
#
|
|
11902
|
+
# </note>
|
|
11903
|
+
#
|
|
11904
|
+
#
|
|
11905
|
+
#
|
|
11906
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html
|
|
11907
|
+
#
|
|
11848
11908
|
# @return [Types::UpdateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
11849
11909
|
#
|
|
11850
11910
|
# * {Types::UpdateAssociationResult#association_description #association_description} => Types::AssociationDescription
|
|
@@ -11923,6 +11983,7 @@ module Aws::SSM
|
|
|
11923
11983
|
# },
|
|
11924
11984
|
# ],
|
|
11925
11985
|
# },
|
|
11986
|
+
# association_dispatch_assume_role: "AssociationDispatchAssumeRoleArn",
|
|
11926
11987
|
# })
|
|
11927
11988
|
#
|
|
11928
11989
|
# @example Response structure
|
|
@@ -11996,6 +12057,7 @@ module Aws::SSM
|
|
|
11996
12057
|
# resp.association_description.triggered_alarms #=> Array
|
|
11997
12058
|
# resp.association_description.triggered_alarms[0].name #=> String
|
|
11998
12059
|
# resp.association_description.triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
|
12060
|
+
# resp.association_description.association_dispatch_assume_role #=> String
|
|
11999
12061
|
#
|
|
12000
12062
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociation AWS API Documentation
|
|
12001
12063
|
#
|
|
@@ -12111,6 +12173,7 @@ module Aws::SSM
|
|
|
12111
12173
|
# resp.association_description.triggered_alarms #=> Array
|
|
12112
12174
|
# resp.association_description.triggered_alarms[0].name #=> String
|
|
12113
12175
|
# resp.association_description.triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
|
|
12176
|
+
# resp.association_description.association_dispatch_assume_role #=> String
|
|
12114
12177
|
#
|
|
12115
12178
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationStatus AWS API Documentation
|
|
12116
12179
|
#
|
|
@@ -12287,12 +12350,10 @@ module Aws::SSM
|
|
|
12287
12350
|
req.send_request(options)
|
|
12288
12351
|
end
|
|
12289
12352
|
|
|
12290
|
-
# Amazon Web Services Systems Manager Change Manager
|
|
12291
|
-
#
|
|
12292
|
-
#
|
|
12293
|
-
#
|
|
12294
|
-
# [Amazon Web Services Systems Manager Change Manager availability
|
|
12295
|
-
# change][1].
|
|
12353
|
+
# Amazon Web Services Systems Manager Change Manager is no longer open
|
|
12354
|
+
# to new customers. Existing customers can continue to use the service
|
|
12355
|
+
# as normal. For more information, see [Amazon Web Services Systems
|
|
12356
|
+
# Manager Change Manager availability change][1].
|
|
12296
12357
|
#
|
|
12297
12358
|
# Updates information related to approval reviews for a specific version
|
|
12298
12359
|
# of a change template in Change Manager.
|
|
@@ -13592,7 +13653,7 @@ module Aws::SSM
|
|
|
13592
13653
|
tracer: tracer
|
|
13593
13654
|
)
|
|
13594
13655
|
context[:gem_name] = 'aws-sdk-ssm'
|
|
13595
|
-
context[:gem_version] = '1.
|
|
13656
|
+
context[:gem_version] = '1.211.0'
|
|
13596
13657
|
Seahorse::Client::Request.new(handlers, context)
|
|
13597
13658
|
end
|
|
13598
13659
|
|
|
@@ -56,6 +56,7 @@ module Aws::SSM
|
|
|
56
56
|
AssociationComplianceSeverity = Shapes::StringShape.new(name: 'AssociationComplianceSeverity')
|
|
57
57
|
AssociationDescription = Shapes::StructureShape.new(name: 'AssociationDescription')
|
|
58
58
|
AssociationDescriptionList = Shapes::ListShape.new(name: 'AssociationDescriptionList')
|
|
59
|
+
AssociationDispatchAssumeRoleArn = Shapes::StringShape.new(name: 'AssociationDispatchAssumeRoleArn')
|
|
59
60
|
AssociationDoesNotExist = Shapes::StructureShape.new(name: 'AssociationDoesNotExist')
|
|
60
61
|
AssociationExecution = Shapes::StructureShape.new(name: 'AssociationExecution')
|
|
61
62
|
AssociationExecutionDoesNotExist = Shapes::StructureShape.new(name: 'AssociationExecutionDoesNotExist')
|
|
@@ -1413,6 +1414,7 @@ module Aws::SSM
|
|
|
1413
1414
|
AssociationDescription.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box" => true}))
|
|
1414
1415
|
AssociationDescription.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
|
1415
1416
|
AssociationDescription.add_member(:triggered_alarms, Shapes::ShapeRef.new(shape: AlarmStateInformationList, location_name: "TriggeredAlarms"))
|
|
1417
|
+
AssociationDescription.add_member(:association_dispatch_assume_role, Shapes::ShapeRef.new(shape: AssociationDispatchAssumeRoleArn, location_name: "AssociationDispatchAssumeRole", metadata: {"box" => true}))
|
|
1416
1418
|
AssociationDescription.struct_class = Types::AssociationDescription
|
|
1417
1419
|
|
|
1418
1420
|
AssociationDescriptionList.member = Shapes::ShapeRef.new(shape: AssociationDescription)
|
|
@@ -1509,6 +1511,7 @@ module Aws::SSM
|
|
|
1509
1511
|
AssociationVersionInfo.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box" => true}))
|
|
1510
1512
|
AssociationVersionInfo.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box" => true}))
|
|
1511
1513
|
AssociationVersionInfo.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box" => true}))
|
|
1514
|
+
AssociationVersionInfo.add_member(:association_dispatch_assume_role, Shapes::ShapeRef.new(shape: AssociationDispatchAssumeRoleArn, location_name: "AssociationDispatchAssumeRole", metadata: {"box" => true}))
|
|
1512
1515
|
AssociationVersionInfo.struct_class = Types::AssociationVersionInfo
|
|
1513
1516
|
|
|
1514
1517
|
AssociationVersionLimitExceeded.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
@@ -1833,6 +1836,7 @@ module Aws::SSM
|
|
|
1833
1836
|
CreateActivationResult.struct_class = Types::CreateActivationResult
|
|
1834
1837
|
|
|
1835
1838
|
CreateAssociationBatchRequest.add_member(:entries, Shapes::ShapeRef.new(shape: CreateAssociationBatchRequestEntries, required: true, location_name: "Entries"))
|
|
1839
|
+
CreateAssociationBatchRequest.add_member(:association_dispatch_assume_role, Shapes::ShapeRef.new(shape: AssociationDispatchAssumeRoleArn, location_name: "AssociationDispatchAssumeRole", metadata: {"box" => true}))
|
|
1836
1840
|
CreateAssociationBatchRequest.struct_class = Types::CreateAssociationBatchRequest
|
|
1837
1841
|
|
|
1838
1842
|
CreateAssociationBatchRequestEntries.member = Shapes::ShapeRef.new(shape: CreateAssociationBatchRequestEntry)
|
|
@@ -1884,6 +1888,7 @@ module Aws::SSM
|
|
|
1884
1888
|
CreateAssociationRequest.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box" => true}))
|
|
1885
1889
|
CreateAssociationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags", metadata: {"box" => true}))
|
|
1886
1890
|
CreateAssociationRequest.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
|
1891
|
+
CreateAssociationRequest.add_member(:association_dispatch_assume_role, Shapes::ShapeRef.new(shape: AssociationDispatchAssumeRoleArn, location_name: "AssociationDispatchAssumeRole", metadata: {"box" => true}))
|
|
1887
1892
|
CreateAssociationRequest.struct_class = Types::CreateAssociationRequest
|
|
1888
1893
|
|
|
1889
1894
|
CreateAssociationResult.add_member(:association_description, Shapes::ShapeRef.new(shape: AssociationDescription, location_name: "AssociationDescription"))
|
|
@@ -4884,6 +4889,7 @@ module Aws::SSM
|
|
|
4884
4889
|
UpdateAssociationRequest.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box" => true}))
|
|
4885
4890
|
UpdateAssociationRequest.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box" => true}))
|
|
4886
4891
|
UpdateAssociationRequest.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
|
4892
|
+
UpdateAssociationRequest.add_member(:association_dispatch_assume_role, Shapes::ShapeRef.new(shape: AssociationDispatchAssumeRoleArn, location_name: "AssociationDispatchAssumeRole", metadata: {"box" => true}))
|
|
4887
4893
|
UpdateAssociationRequest.struct_class = Types::UpdateAssociationRequest
|
|
4888
4894
|
|
|
4889
4895
|
UpdateAssociationResult.add_member(:association_description, Shapes::ShapeRef.new(shape: AssociationDescription, location_name: "AssociationDescription"))
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
|
@@ -582,6 +582,17 @@ module Aws::SSM
|
|
|
582
582
|
# The CloudWatch alarm that was invoked during the association.
|
|
583
583
|
# @return [Array<Types::AlarmStateInformation>]
|
|
584
584
|
#
|
|
585
|
+
# @!attribute [rw] association_dispatch_assume_role
|
|
586
|
+
# A role used by association to take actions on your behalf. State
|
|
587
|
+
# Manager will assume this role and call required APIs when
|
|
588
|
+
# dispatching configurations to nodes. If not specified, [
|
|
589
|
+
# service-linked role for Systems Manager][1] will be used by default.
|
|
590
|
+
#
|
|
591
|
+
#
|
|
592
|
+
#
|
|
593
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html
|
|
594
|
+
# @return [String]
|
|
595
|
+
#
|
|
585
596
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationDescription AWS API Documentation
|
|
586
597
|
#
|
|
587
598
|
class AssociationDescription < Struct.new(
|
|
@@ -613,7 +624,8 @@ module Aws::SSM
|
|
|
613
624
|
:duration,
|
|
614
625
|
:target_maps,
|
|
615
626
|
:alarm_configuration,
|
|
616
|
-
:triggered_alarms
|
|
627
|
+
:triggered_alarms,
|
|
628
|
+
:association_dispatch_assume_role)
|
|
617
629
|
SENSITIVE = [:parameters]
|
|
618
630
|
include Aws::Structure
|
|
619
631
|
end
|
|
@@ -1033,6 +1045,17 @@ module Aws::SSM
|
|
|
1033
1045
|
# Targets and TargetMaps can't be specified together.
|
|
1034
1046
|
# @return [Array<Hash<String,Array<String>>>]
|
|
1035
1047
|
#
|
|
1048
|
+
# @!attribute [rw] association_dispatch_assume_role
|
|
1049
|
+
# A role used by association to take actions on your behalf. State
|
|
1050
|
+
# Manager will assume this role and call required APIs when
|
|
1051
|
+
# dispatching configurations to nodes. If not specified, [
|
|
1052
|
+
# service-linked role for Systems Manager][1] will be used by default.
|
|
1053
|
+
#
|
|
1054
|
+
#
|
|
1055
|
+
#
|
|
1056
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html
|
|
1057
|
+
# @return [String]
|
|
1058
|
+
#
|
|
1036
1059
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationVersionInfo AWS API Documentation
|
|
1037
1060
|
#
|
|
1038
1061
|
class AssociationVersionInfo < Struct.new(
|
|
@@ -1055,7 +1078,8 @@ module Aws::SSM
|
|
|
1055
1078
|
:target_locations,
|
|
1056
1079
|
:schedule_offset,
|
|
1057
1080
|
:duration,
|
|
1058
|
-
:target_maps
|
|
1081
|
+
:target_maps,
|
|
1082
|
+
:association_dispatch_assume_role)
|
|
1059
1083
|
SENSITIVE = [:parameters]
|
|
1060
1084
|
include Aws::Structure
|
|
1061
1085
|
end
|
|
@@ -2952,10 +2976,32 @@ module Aws::SSM
|
|
|
2952
2976
|
# One or more associations.
|
|
2953
2977
|
# @return [Array<Types::CreateAssociationBatchRequestEntry>]
|
|
2954
2978
|
#
|
|
2979
|
+
# @!attribute [rw] association_dispatch_assume_role
|
|
2980
|
+
# A role used by association to take actions on your behalf. State
|
|
2981
|
+
# Manager will assume this role and call required APIs when
|
|
2982
|
+
# dispatching configurations to nodes. If not specified, [
|
|
2983
|
+
# service-linked role for Systems Manager][1] will be used by default.
|
|
2984
|
+
#
|
|
2985
|
+
# <note markdown="1"> It is recommended that you define a custom IAM role so that you have
|
|
2986
|
+
# full control of the permissions that State Manager has when taking
|
|
2987
|
+
# actions on your behalf.
|
|
2988
|
+
#
|
|
2989
|
+
# Service-linked role support in State Manager is being phased out.
|
|
2990
|
+
# Associations relying on service-linked role may require updates in
|
|
2991
|
+
# the future to continue functioning properly.
|
|
2992
|
+
#
|
|
2993
|
+
# </note>
|
|
2994
|
+
#
|
|
2995
|
+
#
|
|
2996
|
+
#
|
|
2997
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html
|
|
2998
|
+
# @return [String]
|
|
2999
|
+
#
|
|
2955
3000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationBatchRequest AWS API Documentation
|
|
2956
3001
|
#
|
|
2957
3002
|
class CreateAssociationBatchRequest < Struct.new(
|
|
2958
|
-
:entries
|
|
3003
|
+
:entries,
|
|
3004
|
+
:association_dispatch_assume_role)
|
|
2959
3005
|
SENSITIVE = []
|
|
2960
3006
|
include Aws::Structure
|
|
2961
3007
|
end
|
|
@@ -3446,6 +3492,27 @@ module Aws::SSM
|
|
|
3446
3492
|
# automation or command.
|
|
3447
3493
|
# @return [Types::AlarmConfiguration]
|
|
3448
3494
|
#
|
|
3495
|
+
# @!attribute [rw] association_dispatch_assume_role
|
|
3496
|
+
# A role used by association to take actions on your behalf. State
|
|
3497
|
+
# Manager will assume this role and call required APIs when
|
|
3498
|
+
# dispatching configurations to nodes. If not specified, [
|
|
3499
|
+
# service-linked role for Systems Manager][1] will be used by default.
|
|
3500
|
+
#
|
|
3501
|
+
# <note markdown="1"> It is recommended that you define a custom IAM role so that you have
|
|
3502
|
+
# full control of the permissions that State Manager has when taking
|
|
3503
|
+
# actions on your behalf.
|
|
3504
|
+
#
|
|
3505
|
+
# Service-linked role support in State Manager is being phased out.
|
|
3506
|
+
# Associations relying on service-linked role may require updates in
|
|
3507
|
+
# the future to continue functioning properly.
|
|
3508
|
+
#
|
|
3509
|
+
# </note>
|
|
3510
|
+
#
|
|
3511
|
+
#
|
|
3512
|
+
#
|
|
3513
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html
|
|
3514
|
+
# @return [String]
|
|
3515
|
+
#
|
|
3449
3516
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationRequest AWS API Documentation
|
|
3450
3517
|
#
|
|
3451
3518
|
class CreateAssociationRequest < Struct.new(
|
|
@@ -3469,7 +3536,8 @@ module Aws::SSM
|
|
|
3469
3536
|
:duration,
|
|
3470
3537
|
:target_maps,
|
|
3471
3538
|
:tags,
|
|
3472
|
-
:alarm_configuration
|
|
3539
|
+
:alarm_configuration,
|
|
3540
|
+
:association_dispatch_assume_role)
|
|
3473
3541
|
SENSITIVE = [:parameters]
|
|
3474
3542
|
include Aws::Structure
|
|
3475
3543
|
end
|
|
@@ -3804,12 +3872,10 @@ module Aws::SSM
|
|
|
3804
3872
|
# This type of OpsItem is used by Change Manager for reviewing and
|
|
3805
3873
|
# approving or rejecting change requests.
|
|
3806
3874
|
#
|
|
3807
|
-
# Amazon Web Services Systems Manager Change Manager
|
|
3808
|
-
#
|
|
3809
|
-
#
|
|
3810
|
-
#
|
|
3811
|
-
# information, see [Amazon Web Services Systems Manager Change
|
|
3812
|
-
# Manager availability change][1].
|
|
3875
|
+
# Amazon Web Services Systems Manager Change Manager is no longer
|
|
3876
|
+
# open to new customers. Existing customers can continue to use the
|
|
3877
|
+
# service as normal. For more information, see [Amazon Web Services
|
|
3878
|
+
# Systems Manager Change Manager availability change][1].
|
|
3813
3879
|
#
|
|
3814
3880
|
#
|
|
3815
3881
|
#
|
|
@@ -19739,6 +19805,27 @@ module Aws::SSM
|
|
|
19739
19805
|
# automation or command.
|
|
19740
19806
|
# @return [Types::AlarmConfiguration]
|
|
19741
19807
|
#
|
|
19808
|
+
# @!attribute [rw] association_dispatch_assume_role
|
|
19809
|
+
# A role used by association to take actions on your behalf. State
|
|
19810
|
+
# Manager will assume this role and call required APIs when
|
|
19811
|
+
# dispatching configurations to nodes. If not specified, [
|
|
19812
|
+
# service-linked role for Systems Manager][1] will be used by default.
|
|
19813
|
+
#
|
|
19814
|
+
# <note markdown="1"> It is recommended that you define a custom IAM role so that you have
|
|
19815
|
+
# full control of the permissions that State Manager has when taking
|
|
19816
|
+
# actions on your behalf.
|
|
19817
|
+
#
|
|
19818
|
+
# Service-linked role support in State Manager is being phased out.
|
|
19819
|
+
# Associations relying on service-linked role may require updates in
|
|
19820
|
+
# the future to continue functioning properly.
|
|
19821
|
+
#
|
|
19822
|
+
# </note>
|
|
19823
|
+
#
|
|
19824
|
+
#
|
|
19825
|
+
#
|
|
19826
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html
|
|
19827
|
+
# @return [String]
|
|
19828
|
+
#
|
|
19742
19829
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationRequest AWS API Documentation
|
|
19743
19830
|
#
|
|
19744
19831
|
class UpdateAssociationRequest < Struct.new(
|
|
@@ -19762,7 +19849,8 @@ module Aws::SSM
|
|
|
19762
19849
|
:schedule_offset,
|
|
19763
19850
|
:duration,
|
|
19764
19851
|
:target_maps,
|
|
19765
|
-
:alarm_configuration
|
|
19852
|
+
:alarm_configuration,
|
|
19853
|
+
:association_dispatch_assume_role)
|
|
19766
19854
|
SENSITIVE = [:parameters]
|
|
19767
19855
|
include Aws::Structure
|
|
19768
19856
|
end
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -232,7 +232,8 @@ module Aws
|
|
|
232
232
|
name: ::String
|
|
233
233
|
},
|
|
234
234
|
]
|
|
235
|
-
}
|
|
235
|
+
},
|
|
236
|
+
?association_dispatch_assume_role: ::String
|
|
236
237
|
) -> _CreateAssociationResponseSuccess
|
|
237
238
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssociationResponseSuccess
|
|
238
239
|
|
|
@@ -312,7 +313,8 @@ module Aws
|
|
|
312
313
|
]
|
|
313
314
|
}?
|
|
314
315
|
},
|
|
315
|
-
]
|
|
316
|
+
],
|
|
317
|
+
?association_dispatch_assume_role: ::String
|
|
316
318
|
) -> _CreateAssociationBatchResponseSuccess
|
|
317
319
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssociationBatchResponseSuccess
|
|
318
320
|
|
|
@@ -2861,7 +2863,8 @@ module Aws
|
|
|
2861
2863
|
name: ::String
|
|
2862
2864
|
},
|
|
2863
2865
|
]
|
|
2864
|
-
}
|
|
2866
|
+
},
|
|
2867
|
+
?association_dispatch_assume_role: ::String
|
|
2865
2868
|
) -> _UpdateAssociationResponseSuccess
|
|
2866
2869
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssociationResponseSuccess
|
|
2867
2870
|
|
data/sig/types.rbs
CHANGED
|
@@ -131,6 +131,7 @@ module Aws::SSM
|
|
|
131
131
|
attr_accessor target_maps: ::Array[::Hash[::String, ::Array[::String]]]
|
|
132
132
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
|
133
133
|
attr_accessor triggered_alarms: ::Array[Types::AlarmStateInformation]
|
|
134
|
+
attr_accessor association_dispatch_assume_role: ::String
|
|
134
135
|
SENSITIVE: [:parameters]
|
|
135
136
|
end
|
|
136
137
|
|
|
@@ -229,6 +230,7 @@ module Aws::SSM
|
|
|
229
230
|
attr_accessor schedule_offset: ::Integer
|
|
230
231
|
attr_accessor duration: ::Integer
|
|
231
232
|
attr_accessor target_maps: ::Array[::Hash[::String, ::Array[::String]]]
|
|
233
|
+
attr_accessor association_dispatch_assume_role: ::String
|
|
232
234
|
SENSITIVE: [:parameters]
|
|
233
235
|
end
|
|
234
236
|
|
|
@@ -570,6 +572,7 @@ module Aws::SSM
|
|
|
570
572
|
|
|
571
573
|
class CreateAssociationBatchRequest
|
|
572
574
|
attr_accessor entries: ::Array[Types::CreateAssociationBatchRequestEntry]
|
|
575
|
+
attr_accessor association_dispatch_assume_role: ::String
|
|
573
576
|
SENSITIVE: []
|
|
574
577
|
end
|
|
575
578
|
|
|
@@ -625,6 +628,7 @@ module Aws::SSM
|
|
|
625
628
|
attr_accessor target_maps: ::Array[::Hash[::String, ::Array[::String]]]
|
|
626
629
|
attr_accessor tags: ::Array[Types::Tag]
|
|
627
630
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
|
631
|
+
attr_accessor association_dispatch_assume_role: ::String
|
|
628
632
|
SENSITIVE: [:parameters]
|
|
629
633
|
end
|
|
630
634
|
|
|
@@ -4295,6 +4299,7 @@ module Aws::SSM
|
|
|
4295
4299
|
attr_accessor duration: ::Integer
|
|
4296
4300
|
attr_accessor target_maps: ::Array[::Hash[::String, ::Array[::String]]]
|
|
4297
4301
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
|
4302
|
+
attr_accessor association_dispatch_assume_role: ::String
|
|
4298
4303
|
SENSITIVE: [:parameters]
|
|
4299
4304
|
end
|
|
4300
4305
|
|