aws-sdk-ssm 1.175.0 → 1.182.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 +35 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +245 -44
- data/lib/aws-sdk-ssm/client_api.rb +14 -0
- data/lib/aws-sdk-ssm/endpoints.rb +140 -560
- data/lib/aws-sdk-ssm/plugins/endpoints.rb +18 -6
- data/lib/aws-sdk-ssm/types.rb +188 -102
- data/lib/aws-sdk-ssm.rb +16 -12
- data/sig/client.rbs +59 -6
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +8 -0
- metadata +4 -4
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
module Aws::SSM
|
11
12
|
# @api private
|
12
13
|
module ClientApi
|
@@ -394,6 +395,8 @@ module Aws::SSM
|
|
394
395
|
EffectivePatch = Shapes::StructureShape.new(name: 'EffectivePatch')
|
395
396
|
EffectivePatchList = Shapes::ListShape.new(name: 'EffectivePatchList')
|
396
397
|
ErrorCount = Shapes::IntegerShape.new(name: 'ErrorCount')
|
398
|
+
ExcludeAccount = Shapes::StringShape.new(name: 'ExcludeAccount')
|
399
|
+
ExcludeAccounts = Shapes::ListShape.new(name: 'ExcludeAccounts')
|
397
400
|
ExecutionMode = Shapes::StringShape.new(name: 'ExecutionMode')
|
398
401
|
ExecutionRoleName = Shapes::StringShape.new(name: 'ExecutionRoleName')
|
399
402
|
ExpirationDate = Shapes::TimestampShape.new(name: 'ExpirationDate')
|
@@ -1170,6 +1173,7 @@ module Aws::SSM
|
|
1170
1173
|
TargetKey = Shapes::StringShape.new(name: 'TargetKey')
|
1171
1174
|
TargetLocation = Shapes::StructureShape.new(name: 'TargetLocation')
|
1172
1175
|
TargetLocations = Shapes::ListShape.new(name: 'TargetLocations')
|
1176
|
+
TargetLocationsURL = Shapes::StringShape.new(name: 'TargetLocationsURL')
|
1173
1177
|
TargetMap = Shapes::MapShape.new(name: 'TargetMap')
|
1174
1178
|
TargetMapKey = Shapes::StringShape.new(name: 'TargetMapKey')
|
1175
1179
|
TargetMapValue = Shapes::StringShape.new(name: 'TargetMapValue')
|
@@ -1500,6 +1504,7 @@ module Aws::SSM
|
|
1500
1504
|
AutomationExecution.add_member(:progress_counters, Shapes::ShapeRef.new(shape: ProgressCounters, location_name: "ProgressCounters"))
|
1501
1505
|
AutomationExecution.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
1502
1506
|
AutomationExecution.add_member(:triggered_alarms, Shapes::ShapeRef.new(shape: AlarmStateInformationList, location_name: "TriggeredAlarms"))
|
1507
|
+
AutomationExecution.add_member(:target_locations_url, Shapes::ShapeRef.new(shape: TargetLocationsURL, location_name: "TargetLocationsURL"))
|
1503
1508
|
AutomationExecution.add_member(:automation_subtype, Shapes::ShapeRef.new(shape: AutomationSubtype, location_name: "AutomationSubtype"))
|
1504
1509
|
AutomationExecution.add_member(:scheduled_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "ScheduledTime"))
|
1505
1510
|
AutomationExecution.add_member(:runbooks, Shapes::ShapeRef.new(shape: Runbooks, location_name: "Runbooks"))
|
@@ -1544,6 +1549,7 @@ module Aws::SSM
|
|
1544
1549
|
AutomationExecutionMetadata.add_member(:automation_type, Shapes::ShapeRef.new(shape: AutomationType, location_name: "AutomationType"))
|
1545
1550
|
AutomationExecutionMetadata.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
1546
1551
|
AutomationExecutionMetadata.add_member(:triggered_alarms, Shapes::ShapeRef.new(shape: AlarmStateInformationList, location_name: "TriggeredAlarms"))
|
1552
|
+
AutomationExecutionMetadata.add_member(:target_locations_url, Shapes::ShapeRef.new(shape: TargetLocationsURL, location_name: "TargetLocationsURL"))
|
1547
1553
|
AutomationExecutionMetadata.add_member(:automation_subtype, Shapes::ShapeRef.new(shape: AutomationSubtype, location_name: "AutomationSubtype"))
|
1548
1554
|
AutomationExecutionMetadata.add_member(:scheduled_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "ScheduledTime"))
|
1549
1555
|
AutomationExecutionMetadata.add_member(:runbooks, Shapes::ShapeRef.new(shape: Runbooks, location_name: "Runbooks"))
|
@@ -2489,6 +2495,8 @@ module Aws::SSM
|
|
2489
2495
|
|
2490
2496
|
EffectivePatchList.member = Shapes::ShapeRef.new(shape: EffectivePatch)
|
2491
2497
|
|
2498
|
+
ExcludeAccounts.member = Shapes::ShapeRef.new(shape: ExcludeAccount)
|
2499
|
+
|
2492
2500
|
FailedCreateAssociation.add_member(:entry, Shapes::ShapeRef.new(shape: CreateAssociationBatchRequestEntry, location_name: "Entry"))
|
2493
2501
|
FailedCreateAssociation.add_member(:message, Shapes::ShapeRef.new(shape: BatchErrorMessage, location_name: "Message"))
|
2494
2502
|
FailedCreateAssociation.add_member(:fault, Shapes::ShapeRef.new(shape: Fault, location_name: "Fault"))
|
@@ -4437,6 +4445,7 @@ module Aws::SSM
|
|
4437
4445
|
StartAutomationExecutionRequest.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations", metadata: {"box"=>true}))
|
4438
4446
|
StartAutomationExecutionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
4439
4447
|
StartAutomationExecutionRequest.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
4448
|
+
StartAutomationExecutionRequest.add_member(:target_locations_url, Shapes::ShapeRef.new(shape: TargetLocationsURL, location_name: "TargetLocationsURL"))
|
4440
4449
|
StartAutomationExecutionRequest.struct_class = Types::StartAutomationExecutionRequest
|
4441
4450
|
|
4442
4451
|
StartAutomationExecutionResult.add_member(:automation_execution_id, Shapes::ShapeRef.new(shape: AutomationExecutionId, location_name: "AutomationExecutionId"))
|
@@ -4537,6 +4546,11 @@ module Aws::SSM
|
|
4537
4546
|
TargetLocation.add_member(:target_location_max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "TargetLocationMaxErrors", metadata: {"box"=>true}))
|
4538
4547
|
TargetLocation.add_member(:execution_role_name, Shapes::ShapeRef.new(shape: ExecutionRoleName, location_name: "ExecutionRoleName", metadata: {"box"=>true}))
|
4539
4548
|
TargetLocation.add_member(:target_location_alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "TargetLocationAlarmConfiguration", metadata: {"box"=>true}))
|
4549
|
+
TargetLocation.add_member(:include_child_organization_units, Shapes::ShapeRef.new(shape: Boolean, location_name: "IncludeChildOrganizationUnits"))
|
4550
|
+
TargetLocation.add_member(:exclude_accounts, Shapes::ShapeRef.new(shape: ExcludeAccounts, location_name: "ExcludeAccounts"))
|
4551
|
+
TargetLocation.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets"))
|
4552
|
+
TargetLocation.add_member(:targets_max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "TargetsMaxConcurrency"))
|
4553
|
+
TargetLocation.add_member(:targets_max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "TargetsMaxErrors"))
|
4540
4554
|
TargetLocation.struct_class = Types::TargetLocation
|
4541
4555
|
|
4542
4556
|
TargetLocations.member = Shapes::ShapeRef.new(shape: TargetLocation)
|