aws-sdk-ssm 1.173.0 → 1.197.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 +120 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +1072 -191
- data/lib/aws-sdk-ssm/client_api.rb +502 -151
- data/lib/aws-sdk-ssm/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-ssm/endpoint_provider.rb +14 -18
- data/lib/aws-sdk-ssm/endpoints.rb +2 -1958
- data/lib/aws-sdk-ssm/errors.rb +115 -0
- data/lib/aws-sdk-ssm/plugins/endpoints.rb +19 -292
- data/lib/aws-sdk-ssm/types.rb +1413 -264
- data/lib/aws-sdk-ssm.rb +16 -12
- data/sig/client.rbs +223 -13
- data/sig/errors.rbs +22 -0
- data/sig/resource.rbs +4 -0
- data/sig/types.rbs +249 -13
- metadata +6 -9
@@ -7,12 +7,19 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
module Aws::SSM
|
11
12
|
# @api private
|
12
13
|
module ClientApi
|
13
14
|
|
14
15
|
include Seahorse::Model
|
15
16
|
|
17
|
+
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
18
|
+
AccessKeyIdType = Shapes::StringShape.new(name: 'AccessKeyIdType')
|
19
|
+
AccessKeySecretType = Shapes::StringShape.new(name: 'AccessKeySecretType')
|
20
|
+
AccessRequestId = Shapes::StringShape.new(name: 'AccessRequestId')
|
21
|
+
AccessRequestStatus = Shapes::StringShape.new(name: 'AccessRequestStatus')
|
22
|
+
AccessType = Shapes::StringShape.new(name: 'AccessType')
|
16
23
|
Account = Shapes::StringShape.new(name: 'Account')
|
17
24
|
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
18
25
|
AccountIdList = Shapes::ListShape.new(name: 'AccountIdList')
|
@@ -27,6 +34,8 @@ module Aws::SSM
|
|
27
34
|
AddTagsToResourceRequest = Shapes::StructureShape.new(name: 'AddTagsToResourceRequest')
|
28
35
|
AddTagsToResourceResult = Shapes::StructureShape.new(name: 'AddTagsToResourceResult')
|
29
36
|
AgentErrorCode = Shapes::StringShape.new(name: 'AgentErrorCode')
|
37
|
+
AgentType = Shapes::StringShape.new(name: 'AgentType')
|
38
|
+
AgentVersion = Shapes::StringShape.new(name: 'AgentVersion')
|
30
39
|
AggregatorSchemaOnly = Shapes::BooleanShape.new(name: 'AggregatorSchemaOnly')
|
31
40
|
Alarm = Shapes::StructureShape.new(name: 'Alarm')
|
32
41
|
AlarmConfiguration = Shapes::StructureShape.new(name: 'AlarmConfiguration')
|
@@ -110,10 +119,12 @@ module Aws::SSM
|
|
110
119
|
AutomationExecutionFilterValue = Shapes::StringShape.new(name: 'AutomationExecutionFilterValue')
|
111
120
|
AutomationExecutionFilterValueList = Shapes::ListShape.new(name: 'AutomationExecutionFilterValueList')
|
112
121
|
AutomationExecutionId = Shapes::StringShape.new(name: 'AutomationExecutionId')
|
122
|
+
AutomationExecutionInputs = Shapes::StructureShape.new(name: 'AutomationExecutionInputs')
|
113
123
|
AutomationExecutionLimitExceededException = Shapes::StructureShape.new(name: 'AutomationExecutionLimitExceededException')
|
114
124
|
AutomationExecutionMetadata = Shapes::StructureShape.new(name: 'AutomationExecutionMetadata')
|
115
125
|
AutomationExecutionMetadataList = Shapes::ListShape.new(name: 'AutomationExecutionMetadataList')
|
116
126
|
AutomationExecutionNotFoundException = Shapes::StructureShape.new(name: 'AutomationExecutionNotFoundException')
|
127
|
+
AutomationExecutionPreview = Shapes::StructureShape.new(name: 'AutomationExecutionPreview')
|
117
128
|
AutomationExecutionStatus = Shapes::StringShape.new(name: 'AutomationExecutionStatus')
|
118
129
|
AutomationParameterKey = Shapes::StringShape.new(name: 'AutomationParameterKey')
|
119
130
|
AutomationParameterMap = Shapes::MapShape.new(name: 'AutomationParameterMap')
|
@@ -218,6 +229,7 @@ module Aws::SSM
|
|
218
229
|
CreateResourceDataSyncRequest = Shapes::StructureShape.new(name: 'CreateResourceDataSyncRequest')
|
219
230
|
CreateResourceDataSyncResult = Shapes::StructureShape.new(name: 'CreateResourceDataSyncResult')
|
220
231
|
CreatedDate = Shapes::TimestampShape.new(name: 'CreatedDate')
|
232
|
+
Credentials = Shapes::StructureShape.new(name: 'Credentials')
|
221
233
|
CustomSchemaCountLimitExceededException = Shapes::StructureShape.new(name: 'CustomSchemaCountLimitExceededException')
|
222
234
|
DateTime = Shapes::TimestampShape.new(name: 'DateTime')
|
223
235
|
DefaultBaseline = Shapes::BooleanShape.new(name: 'DefaultBaseline')
|
@@ -394,7 +406,13 @@ module Aws::SSM
|
|
394
406
|
EffectivePatch = Shapes::StructureShape.new(name: 'EffectivePatch')
|
395
407
|
EffectivePatchList = Shapes::ListShape.new(name: 'EffectivePatchList')
|
396
408
|
ErrorCount = Shapes::IntegerShape.new(name: 'ErrorCount')
|
409
|
+
ExcludeAccount = Shapes::StringShape.new(name: 'ExcludeAccount')
|
410
|
+
ExcludeAccounts = Shapes::ListShape.new(name: 'ExcludeAccounts')
|
411
|
+
ExecutionInputs = Shapes::UnionShape.new(name: 'ExecutionInputs')
|
397
412
|
ExecutionMode = Shapes::StringShape.new(name: 'ExecutionMode')
|
413
|
+
ExecutionPreview = Shapes::UnionShape.new(name: 'ExecutionPreview')
|
414
|
+
ExecutionPreviewId = Shapes::StringShape.new(name: 'ExecutionPreviewId')
|
415
|
+
ExecutionPreviewStatus = Shapes::StringShape.new(name: 'ExecutionPreviewStatus')
|
398
416
|
ExecutionRoleName = Shapes::StringShape.new(name: 'ExecutionRoleName')
|
399
417
|
ExpirationDate = Shapes::TimestampShape.new(name: 'ExpirationDate')
|
400
418
|
ExternalAlarmState = Shapes::StringShape.new(name: 'ExternalAlarmState')
|
@@ -403,6 +421,8 @@ module Aws::SSM
|
|
403
421
|
FailureDetails = Shapes::StructureShape.new(name: 'FailureDetails')
|
404
422
|
Fault = Shapes::StringShape.new(name: 'Fault')
|
405
423
|
FeatureNotAvailableException = Shapes::StructureShape.new(name: 'FeatureNotAvailableException')
|
424
|
+
GetAccessTokenRequest = Shapes::StructureShape.new(name: 'GetAccessTokenRequest')
|
425
|
+
GetAccessTokenResponse = Shapes::StructureShape.new(name: 'GetAccessTokenResponse')
|
406
426
|
GetAutomationExecutionRequest = Shapes::StructureShape.new(name: 'GetAutomationExecutionRequest')
|
407
427
|
GetAutomationExecutionResult = Shapes::StructureShape.new(name: 'GetAutomationExecutionResult')
|
408
428
|
GetCalendarStateRequest = Shapes::StructureShape.new(name: 'GetCalendarStateRequest')
|
@@ -417,6 +437,8 @@ module Aws::SSM
|
|
417
437
|
GetDeployablePatchSnapshotForInstanceResult = Shapes::StructureShape.new(name: 'GetDeployablePatchSnapshotForInstanceResult')
|
418
438
|
GetDocumentRequest = Shapes::StructureShape.new(name: 'GetDocumentRequest')
|
419
439
|
GetDocumentResult = Shapes::StructureShape.new(name: 'GetDocumentResult')
|
440
|
+
GetExecutionPreviewRequest = Shapes::StructureShape.new(name: 'GetExecutionPreviewRequest')
|
441
|
+
GetExecutionPreviewResponse = Shapes::StructureShape.new(name: 'GetExecutionPreviewResponse')
|
420
442
|
GetInventoryRequest = Shapes::StructureShape.new(name: 'GetInventoryRequest')
|
421
443
|
GetInventoryResult = Shapes::StructureShape.new(name: 'GetInventoryResult')
|
422
444
|
GetInventorySchemaMaxResults = Shapes::IntegerShape.new(name: 'GetInventorySchemaMaxResults')
|
@@ -465,6 +487,7 @@ module Aws::SSM
|
|
465
487
|
IamRole = Shapes::StringShape.new(name: 'IamRole')
|
466
488
|
IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
|
467
489
|
IdempotentParameterMismatch = Shapes::StructureShape.new(name: 'IdempotentParameterMismatch')
|
490
|
+
ImpactType = Shapes::StringShape.new(name: 'ImpactType')
|
468
491
|
IncompatiblePolicyException = Shapes::StructureShape.new(name: 'IncompatiblePolicyException')
|
469
492
|
InstallOverrideList = Shapes::StringShape.new(name: 'InstallOverrideList')
|
470
493
|
InstanceAggregatedAssociationOverview = Shapes::StructureShape.new(name: 'InstanceAggregatedAssociationOverview')
|
@@ -479,6 +502,7 @@ module Aws::SSM
|
|
479
502
|
InstanceCount = Shapes::IntegerShape.new(name: 'InstanceCount')
|
480
503
|
InstanceId = Shapes::StringShape.new(name: 'InstanceId')
|
481
504
|
InstanceIdList = Shapes::ListShape.new(name: 'InstanceIdList')
|
505
|
+
InstanceInfo = Shapes::StructureShape.new(name: 'InstanceInfo')
|
482
506
|
InstanceInformation = Shapes::StructureShape.new(name: 'InstanceInformation')
|
483
507
|
InstanceInformationFilter = Shapes::StructureShape.new(name: 'InstanceInformationFilter')
|
484
508
|
InstanceInformationFilterKey = Shapes::StringShape.new(name: 'InstanceInformationFilterKey')
|
@@ -512,6 +536,7 @@ module Aws::SSM
|
|
512
536
|
InstancePropertyStringFilterList = Shapes::ListShape.new(name: 'InstancePropertyStringFilterList')
|
513
537
|
InstanceRole = Shapes::StringShape.new(name: 'InstanceRole')
|
514
538
|
InstanceState = Shapes::StringShape.new(name: 'InstanceState')
|
539
|
+
InstanceStatus = Shapes::StringShape.new(name: 'InstanceStatus')
|
515
540
|
InstanceTagName = Shapes::StringShape.new(name: 'InstanceTagName')
|
516
541
|
InstanceType = Shapes::StringShape.new(name: 'InstanceType')
|
517
542
|
InstancesCount = Shapes::IntegerShape.new(name: 'InstancesCount')
|
@@ -614,6 +639,7 @@ module Aws::SSM
|
|
614
639
|
InventoryTypeDisplayName = Shapes::StringShape.new(name: 'InventoryTypeDisplayName')
|
615
640
|
InvocationDoesNotExist = Shapes::StructureShape.new(name: 'InvocationDoesNotExist')
|
616
641
|
InvocationTraceOutput = Shapes::StringShape.new(name: 'InvocationTraceOutput')
|
642
|
+
IpAddress = Shapes::StringShape.new(name: 'IpAddress')
|
617
643
|
IsSubTypeSchema = Shapes::BooleanShape.new(name: 'IsSubTypeSchema')
|
618
644
|
ItemContentMismatchException = Shapes::StructureShape.new(name: 'ItemContentMismatchException')
|
619
645
|
ItemSizeLimitExceededException = Shapes::StructureShape.new(name: 'ItemSizeLimitExceededException')
|
@@ -645,6 +671,10 @@ module Aws::SSM
|
|
645
671
|
ListDocumentsResult = Shapes::StructureShape.new(name: 'ListDocumentsResult')
|
646
672
|
ListInventoryEntriesRequest = Shapes::StructureShape.new(name: 'ListInventoryEntriesRequest')
|
647
673
|
ListInventoryEntriesResult = Shapes::StructureShape.new(name: 'ListInventoryEntriesResult')
|
674
|
+
ListNodesRequest = Shapes::StructureShape.new(name: 'ListNodesRequest')
|
675
|
+
ListNodesResult = Shapes::StructureShape.new(name: 'ListNodesResult')
|
676
|
+
ListNodesSummaryRequest = Shapes::StructureShape.new(name: 'ListNodesSummaryRequest')
|
677
|
+
ListNodesSummaryResult = Shapes::StructureShape.new(name: 'ListNodesSummaryResult')
|
648
678
|
ListOpsItemEventsRequest = Shapes::StructureShape.new(name: 'ListOpsItemEventsRequest')
|
649
679
|
ListOpsItemEventsResponse = Shapes::StructureShape.new(name: 'ListOpsItemEventsResponse')
|
650
680
|
ListOpsItemRelatedItemsRequest = Shapes::StructureShape.new(name: 'ListOpsItemRelatedItemsRequest')
|
@@ -726,6 +756,7 @@ module Aws::SSM
|
|
726
756
|
MaintenanceWindowsForTargetList = Shapes::ListShape.new(name: 'MaintenanceWindowsForTargetList')
|
727
757
|
MalformedResourcePolicyDocumentException = Shapes::StructureShape.new(name: 'MalformedResourcePolicyDocumentException')
|
728
758
|
ManagedInstanceId = Shapes::StringShape.new(name: 'ManagedInstanceId')
|
759
|
+
ManagedStatus = Shapes::StringShape.new(name: 'ManagedStatus')
|
729
760
|
MaxConcurrency = Shapes::StringShape.new(name: 'MaxConcurrency')
|
730
761
|
MaxDocumentSizeExceeded = Shapes::StructureShape.new(name: 'MaxDocumentSizeExceeded')
|
731
762
|
MaxErrors = Shapes::StringShape.new(name: 'MaxErrors')
|
@@ -740,6 +771,29 @@ module Aws::SSM
|
|
740
771
|
ModifyDocumentPermissionRequest = Shapes::StructureShape.new(name: 'ModifyDocumentPermissionRequest')
|
741
772
|
ModifyDocumentPermissionResponse = Shapes::StructureShape.new(name: 'ModifyDocumentPermissionResponse')
|
742
773
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
774
|
+
Node = Shapes::StructureShape.new(name: 'Node')
|
775
|
+
NodeAccountId = Shapes::StringShape.new(name: 'NodeAccountId')
|
776
|
+
NodeAggregator = Shapes::StructureShape.new(name: 'NodeAggregator')
|
777
|
+
NodeAggregatorList = Shapes::ListShape.new(name: 'NodeAggregatorList')
|
778
|
+
NodeAggregatorType = Shapes::StringShape.new(name: 'NodeAggregatorType')
|
779
|
+
NodeAttributeName = Shapes::StringShape.new(name: 'NodeAttributeName')
|
780
|
+
NodeCaptureTime = Shapes::TimestampShape.new(name: 'NodeCaptureTime')
|
781
|
+
NodeFilter = Shapes::StructureShape.new(name: 'NodeFilter')
|
782
|
+
NodeFilterKey = Shapes::StringShape.new(name: 'NodeFilterKey')
|
783
|
+
NodeFilterList = Shapes::ListShape.new(name: 'NodeFilterList')
|
784
|
+
NodeFilterOperatorType = Shapes::StringShape.new(name: 'NodeFilterOperatorType')
|
785
|
+
NodeFilterValue = Shapes::StringShape.new(name: 'NodeFilterValue')
|
786
|
+
NodeFilterValueList = Shapes::ListShape.new(name: 'NodeFilterValueList')
|
787
|
+
NodeId = Shapes::StringShape.new(name: 'NodeId')
|
788
|
+
NodeList = Shapes::ListShape.new(name: 'NodeList')
|
789
|
+
NodeOrganizationalUnitId = Shapes::StringShape.new(name: 'NodeOrganizationalUnitId')
|
790
|
+
NodeOrganizationalUnitPath = Shapes::StringShape.new(name: 'NodeOrganizationalUnitPath')
|
791
|
+
NodeOwnerInfo = Shapes::StructureShape.new(name: 'NodeOwnerInfo')
|
792
|
+
NodeRegion = Shapes::StringShape.new(name: 'NodeRegion')
|
793
|
+
NodeSummary = Shapes::MapShape.new(name: 'NodeSummary')
|
794
|
+
NodeSummaryList = Shapes::ListShape.new(name: 'NodeSummaryList')
|
795
|
+
NodeType = Shapes::UnionShape.new(name: 'NodeType')
|
796
|
+
NodeTypeName = Shapes::StringShape.new(name: 'NodeTypeName')
|
743
797
|
NonCompliantSummary = Shapes::StructureShape.new(name: 'NonCompliantSummary')
|
744
798
|
NormalStringMap = Shapes::MapShape.new(name: 'NormalStringMap')
|
745
799
|
NotificationArn = Shapes::StringShape.new(name: 'NotificationArn')
|
@@ -902,6 +956,7 @@ module Aws::SSM
|
|
902
956
|
PatchAdvisoryId = Shapes::StringShape.new(name: 'PatchAdvisoryId')
|
903
957
|
PatchAdvisoryIdList = Shapes::ListShape.new(name: 'PatchAdvisoryIdList')
|
904
958
|
PatchArch = Shapes::StringShape.new(name: 'PatchArch')
|
959
|
+
PatchAvailableSecurityUpdateCount = Shapes::IntegerShape.new(name: 'PatchAvailableSecurityUpdateCount')
|
905
960
|
PatchBaselineIdentity = Shapes::StructureShape.new(name: 'PatchBaselineIdentity')
|
906
961
|
PatchBaselineIdentityList = Shapes::ListShape.new(name: 'PatchBaselineIdentityList')
|
907
962
|
PatchBaselineMaxResults = Shapes::IntegerShape.new(name: 'PatchBaselineMaxResults')
|
@@ -916,6 +971,7 @@ module Aws::SSM
|
|
916
971
|
PatchComplianceDataState = Shapes::StringShape.new(name: 'PatchComplianceDataState')
|
917
972
|
PatchComplianceLevel = Shapes::StringShape.new(name: 'PatchComplianceLevel')
|
918
973
|
PatchComplianceMaxResults = Shapes::IntegerShape.new(name: 'PatchComplianceMaxResults')
|
974
|
+
PatchComplianceStatus = Shapes::StringShape.new(name: 'PatchComplianceStatus')
|
919
975
|
PatchContentUrl = Shapes::StringShape.new(name: 'PatchContentUrl')
|
920
976
|
PatchCriticalNonCompliantCount = Shapes::IntegerShape.new(name: 'PatchCriticalNonCompliantCount')
|
921
977
|
PatchDeploymentStatus = Shapes::StringShape.new(name: 'PatchDeploymentStatus')
|
@@ -1000,6 +1056,7 @@ module Aws::SSM
|
|
1000
1056
|
PutResourcePolicyResponse = Shapes::StructureShape.new(name: 'PutResourcePolicyResponse')
|
1001
1057
|
RebootOption = Shapes::StringShape.new(name: 'RebootOption')
|
1002
1058
|
Region = Shapes::StringShape.new(name: 'Region')
|
1059
|
+
RegionList = Shapes::ListShape.new(name: 'RegionList')
|
1003
1060
|
Regions = Shapes::ListShape.new(name: 'Regions')
|
1004
1061
|
RegisterDefaultPatchBaselineRequest = Shapes::StructureShape.new(name: 'RegisterDefaultPatchBaselineRequest')
|
1005
1062
|
RegisterDefaultPatchBaselineResult = Shapes::StructureShape.new(name: 'RegisterDefaultPatchBaselineResult')
|
@@ -1097,6 +1154,7 @@ module Aws::SSM
|
|
1097
1154
|
SendAutomationSignalResult = Shapes::StructureShape.new(name: 'SendAutomationSignalResult')
|
1098
1155
|
SendCommandRequest = Shapes::StructureShape.new(name: 'SendCommandRequest')
|
1099
1156
|
SendCommandResult = Shapes::StructureShape.new(name: 'SendCommandResult')
|
1157
|
+
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
1100
1158
|
ServiceRole = Shapes::StringShape.new(name: 'ServiceRole')
|
1101
1159
|
ServiceSetting = Shapes::StructureShape.new(name: 'ServiceSetting')
|
1102
1160
|
ServiceSettingId = Shapes::StringShape.new(name: 'ServiceSettingId')
|
@@ -1123,6 +1181,7 @@ module Aws::SSM
|
|
1123
1181
|
SessionState = Shapes::StringShape.new(name: 'SessionState')
|
1124
1182
|
SessionStatus = Shapes::StringShape.new(name: 'SessionStatus')
|
1125
1183
|
SessionTarget = Shapes::StringShape.new(name: 'SessionTarget')
|
1184
|
+
SessionTokenType = Shapes::StringShape.new(name: 'SessionTokenType')
|
1126
1185
|
SeveritySummary = Shapes::StructureShape.new(name: 'SeveritySummary')
|
1127
1186
|
SharedDocumentVersion = Shapes::StringShape.new(name: 'SharedDocumentVersion')
|
1128
1187
|
SignalType = Shapes::StringShape.new(name: 'SignalType')
|
@@ -1132,12 +1191,16 @@ module Aws::SSM
|
|
1132
1191
|
SourceType = Shapes::StringShape.new(name: 'SourceType')
|
1133
1192
|
StandardErrorContent = Shapes::StringShape.new(name: 'StandardErrorContent')
|
1134
1193
|
StandardOutputContent = Shapes::StringShape.new(name: 'StandardOutputContent')
|
1194
|
+
StartAccessRequestRequest = Shapes::StructureShape.new(name: 'StartAccessRequestRequest')
|
1195
|
+
StartAccessRequestResponse = Shapes::StructureShape.new(name: 'StartAccessRequestResponse')
|
1135
1196
|
StartAssociationsOnceRequest = Shapes::StructureShape.new(name: 'StartAssociationsOnceRequest')
|
1136
1197
|
StartAssociationsOnceResult = Shapes::StructureShape.new(name: 'StartAssociationsOnceResult')
|
1137
1198
|
StartAutomationExecutionRequest = Shapes::StructureShape.new(name: 'StartAutomationExecutionRequest')
|
1138
1199
|
StartAutomationExecutionResult = Shapes::StructureShape.new(name: 'StartAutomationExecutionResult')
|
1139
1200
|
StartChangeRequestExecutionRequest = Shapes::StructureShape.new(name: 'StartChangeRequestExecutionRequest')
|
1140
1201
|
StartChangeRequestExecutionResult = Shapes::StructureShape.new(name: 'StartChangeRequestExecutionResult')
|
1202
|
+
StartExecutionPreviewRequest = Shapes::StructureShape.new(name: 'StartExecutionPreviewRequest')
|
1203
|
+
StartExecutionPreviewResponse = Shapes::StructureShape.new(name: 'StartExecutionPreviewResponse')
|
1141
1204
|
StartSessionRequest = Shapes::StructureShape.new(name: 'StartSessionRequest')
|
1142
1205
|
StartSessionResponse = Shapes::StructureShape.new(name: 'StartSessionResponse')
|
1143
1206
|
StatusAdditionalInfo = Shapes::StringShape.new(name: 'StatusAdditionalInfo')
|
@@ -1152,11 +1215,13 @@ module Aws::SSM
|
|
1152
1215
|
StepExecutionFilterValue = Shapes::StringShape.new(name: 'StepExecutionFilterValue')
|
1153
1216
|
StepExecutionFilterValueList = Shapes::ListShape.new(name: 'StepExecutionFilterValueList')
|
1154
1217
|
StepExecutionList = Shapes::ListShape.new(name: 'StepExecutionList')
|
1218
|
+
StepPreviewMap = Shapes::MapShape.new(name: 'StepPreviewMap')
|
1155
1219
|
StopAutomationExecutionRequest = Shapes::StructureShape.new(name: 'StopAutomationExecutionRequest')
|
1156
1220
|
StopAutomationExecutionResult = Shapes::StructureShape.new(name: 'StopAutomationExecutionResult')
|
1157
1221
|
StopType = Shapes::StringShape.new(name: 'StopType')
|
1158
1222
|
StreamUrl = Shapes::StringShape.new(name: 'StreamUrl')
|
1159
1223
|
String = Shapes::StringShape.new(name: 'String')
|
1224
|
+
String1to256 = Shapes::StringShape.new(name: 'String1to256')
|
1160
1225
|
StringDateTime = Shapes::StringShape.new(name: 'StringDateTime')
|
1161
1226
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
1162
1227
|
SubTypeCountLimitExceededException = Shapes::StructureShape.new(name: 'SubTypeCountLimitExceededException')
|
@@ -1170,6 +1235,7 @@ module Aws::SSM
|
|
1170
1235
|
TargetKey = Shapes::StringShape.new(name: 'TargetKey')
|
1171
1236
|
TargetLocation = Shapes::StructureShape.new(name: 'TargetLocation')
|
1172
1237
|
TargetLocations = Shapes::ListShape.new(name: 'TargetLocations')
|
1238
|
+
TargetLocationsURL = Shapes::StringShape.new(name: 'TargetLocationsURL')
|
1173
1239
|
TargetMap = Shapes::MapShape.new(name: 'TargetMap')
|
1174
1240
|
TargetMapKey = Shapes::StringShape.new(name: 'TargetMapKey')
|
1175
1241
|
TargetMapValue = Shapes::StringShape.new(name: 'TargetMapValue')
|
@@ -1177,12 +1243,15 @@ module Aws::SSM
|
|
1177
1243
|
TargetMaps = Shapes::ListShape.new(name: 'TargetMaps')
|
1178
1244
|
TargetNotConnected = Shapes::StructureShape.new(name: 'TargetNotConnected')
|
1179
1245
|
TargetParameterList = Shapes::ListShape.new(name: 'TargetParameterList')
|
1246
|
+
TargetPreview = Shapes::StructureShape.new(name: 'TargetPreview')
|
1247
|
+
TargetPreviewList = Shapes::ListShape.new(name: 'TargetPreviewList')
|
1180
1248
|
TargetType = Shapes::StringShape.new(name: 'TargetType')
|
1181
1249
|
TargetValue = Shapes::StringShape.new(name: 'TargetValue')
|
1182
1250
|
TargetValues = Shapes::ListShape.new(name: 'TargetValues')
|
1183
1251
|
Targets = Shapes::ListShape.new(name: 'Targets')
|
1184
1252
|
TerminateSessionRequest = Shapes::StructureShape.new(name: 'TerminateSessionRequest')
|
1185
1253
|
TerminateSessionResponse = Shapes::StructureShape.new(name: 'TerminateSessionResponse')
|
1254
|
+
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
1186
1255
|
TimeoutSeconds = Shapes::IntegerShape.new(name: 'TimeoutSeconds')
|
1187
1256
|
TokenValue = Shapes::StringShape.new(name: 'TokenValue')
|
1188
1257
|
TooManyTagsError = Shapes::StructureShape.new(name: 'TooManyTagsError')
|
@@ -1197,6 +1266,7 @@ module Aws::SSM
|
|
1197
1266
|
UnsupportedInventoryItemContextException = Shapes::StructureShape.new(name: 'UnsupportedInventoryItemContextException')
|
1198
1267
|
UnsupportedInventorySchemaVersionException = Shapes::StructureShape.new(name: 'UnsupportedInventorySchemaVersionException')
|
1199
1268
|
UnsupportedOperatingSystem = Shapes::StructureShape.new(name: 'UnsupportedOperatingSystem')
|
1269
|
+
UnsupportedOperationException = Shapes::StructureShape.new(name: 'UnsupportedOperationException')
|
1200
1270
|
UnsupportedParameterType = Shapes::StructureShape.new(name: 'UnsupportedParameterType')
|
1201
1271
|
UnsupportedPlatformType = Shapes::StructureShape.new(name: 'UnsupportedPlatformType')
|
1202
1272
|
UpdateAssociationRequest = Shapes::StructureShape.new(name: 'UpdateAssociationRequest')
|
@@ -1230,8 +1300,12 @@ module Aws::SSM
|
|
1230
1300
|
Url = Shapes::StringShape.new(name: 'Url')
|
1231
1301
|
ValidNextStep = Shapes::StringShape.new(name: 'ValidNextStep')
|
1232
1302
|
ValidNextStepList = Shapes::ListShape.new(name: 'ValidNextStepList')
|
1303
|
+
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
1233
1304
|
Version = Shapes::StringShape.new(name: 'Version')
|
1234
1305
|
|
1306
|
+
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
1307
|
+
AccessDeniedException.struct_class = Types::AccessDeniedException
|
1308
|
+
|
1235
1309
|
AccountIdList.member = Shapes::ShapeRef.new(shape: AccountId)
|
1236
1310
|
|
1237
1311
|
AccountSharingInfo.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
|
@@ -1302,9 +1376,9 @@ module Aws::SSM
|
|
1302
1376
|
Association.add_member(:overview, Shapes::ShapeRef.new(shape: AssociationOverview, location_name: "Overview"))
|
1303
1377
|
Association.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: ScheduleExpression, location_name: "ScheduleExpression"))
|
1304
1378
|
Association.add_member(:association_name, Shapes::ShapeRef.new(shape: AssociationName, location_name: "AssociationName"))
|
1305
|
-
Association.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
1306
|
-
Association.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box"=>true}))
|
1307
|
-
Association.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box"=>true}))
|
1379
|
+
Association.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box" => true}))
|
1380
|
+
Association.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box" => true}))
|
1381
|
+
Association.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box" => true}))
|
1308
1382
|
Association.struct_class = Types::Association
|
1309
1383
|
|
1310
1384
|
AssociationAlreadyExists.struct_class = Types::AssociationAlreadyExists
|
@@ -1333,9 +1407,9 @@ module Aws::SSM
|
|
1333
1407
|
AssociationDescription.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
1334
1408
|
AssociationDescription.add_member(:calendar_names, Shapes::ShapeRef.new(shape: CalendarNameOrARNList, location_name: "CalendarNames"))
|
1335
1409
|
AssociationDescription.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations"))
|
1336
|
-
AssociationDescription.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
1337
|
-
AssociationDescription.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box"=>true}))
|
1338
|
-
AssociationDescription.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box"=>true}))
|
1410
|
+
AssociationDescription.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box" => true}))
|
1411
|
+
AssociationDescription.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box" => true}))
|
1412
|
+
AssociationDescription.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box" => true}))
|
1339
1413
|
AssociationDescription.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
1340
1414
|
AssociationDescription.add_member(:triggered_alarms, Shapes::ShapeRef.new(shape: AlarmStateInformationList, location_name: "TriggeredAlarms"))
|
1341
1415
|
AssociationDescription.struct_class = Types::AssociationDescription
|
@@ -1431,9 +1505,9 @@ module Aws::SSM
|
|
1431
1505
|
AssociationVersionInfo.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
1432
1506
|
AssociationVersionInfo.add_member(:calendar_names, Shapes::ShapeRef.new(shape: CalendarNameOrARNList, location_name: "CalendarNames"))
|
1433
1507
|
AssociationVersionInfo.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations"))
|
1434
|
-
AssociationVersionInfo.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
1435
|
-
AssociationVersionInfo.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box"=>true}))
|
1436
|
-
AssociationVersionInfo.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box"=>true}))
|
1508
|
+
AssociationVersionInfo.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box" => true}))
|
1509
|
+
AssociationVersionInfo.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box" => true}))
|
1510
|
+
AssociationVersionInfo.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box" => true}))
|
1437
1511
|
AssociationVersionInfo.struct_class = Types::AssociationVersionInfo
|
1438
1512
|
|
1439
1513
|
AssociationVersionLimitExceeded.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -1496,10 +1570,11 @@ module Aws::SSM
|
|
1496
1570
|
AutomationExecution.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1497
1571
|
AutomationExecution.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
|
1498
1572
|
AutomationExecution.add_member(:target, Shapes::ShapeRef.new(shape: String, location_name: "Target"))
|
1499
|
-
AutomationExecution.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations", metadata: {"box"=>true}))
|
1573
|
+
AutomationExecution.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations", metadata: {"box" => true}))
|
1500
1574
|
AutomationExecution.add_member(:progress_counters, Shapes::ShapeRef.new(shape: ProgressCounters, location_name: "ProgressCounters"))
|
1501
1575
|
AutomationExecution.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
1502
1576
|
AutomationExecution.add_member(:triggered_alarms, Shapes::ShapeRef.new(shape: AlarmStateInformationList, location_name: "TriggeredAlarms"))
|
1577
|
+
AutomationExecution.add_member(:target_locations_url, Shapes::ShapeRef.new(shape: TargetLocationsURL, location_name: "TargetLocationsURL"))
|
1503
1578
|
AutomationExecution.add_member(:automation_subtype, Shapes::ShapeRef.new(shape: AutomationSubtype, location_name: "AutomationSubtype"))
|
1504
1579
|
AutomationExecution.add_member(:scheduled_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "ScheduledTime"))
|
1505
1580
|
AutomationExecution.add_member(:runbooks, Shapes::ShapeRef.new(shape: Runbooks, location_name: "Runbooks"))
|
@@ -1517,6 +1592,14 @@ module Aws::SSM
|
|
1517
1592
|
|
1518
1593
|
AutomationExecutionFilterValueList.member = Shapes::ShapeRef.new(shape: AutomationExecutionFilterValue)
|
1519
1594
|
|
1595
|
+
AutomationExecutionInputs.add_member(:parameters, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "Parameters"))
|
1596
|
+
AutomationExecutionInputs.add_member(:target_parameter_name, Shapes::ShapeRef.new(shape: AutomationParameterKey, location_name: "TargetParameterName"))
|
1597
|
+
AutomationExecutionInputs.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets"))
|
1598
|
+
AutomationExecutionInputs.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps"))
|
1599
|
+
AutomationExecutionInputs.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations"))
|
1600
|
+
AutomationExecutionInputs.add_member(:target_locations_url, Shapes::ShapeRef.new(shape: TargetLocationsURL, location_name: "TargetLocationsURL"))
|
1601
|
+
AutomationExecutionInputs.struct_class = Types::AutomationExecutionInputs
|
1602
|
+
|
1520
1603
|
AutomationExecutionLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
1521
1604
|
AutomationExecutionLimitExceededException.struct_class = Types::AutomationExecutionLimitExceededException
|
1522
1605
|
|
@@ -1544,6 +1627,7 @@ module Aws::SSM
|
|
1544
1627
|
AutomationExecutionMetadata.add_member(:automation_type, Shapes::ShapeRef.new(shape: AutomationType, location_name: "AutomationType"))
|
1545
1628
|
AutomationExecutionMetadata.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
1546
1629
|
AutomationExecutionMetadata.add_member(:triggered_alarms, Shapes::ShapeRef.new(shape: AlarmStateInformationList, location_name: "TriggeredAlarms"))
|
1630
|
+
AutomationExecutionMetadata.add_member(:target_locations_url, Shapes::ShapeRef.new(shape: TargetLocationsURL, location_name: "TargetLocationsURL"))
|
1547
1631
|
AutomationExecutionMetadata.add_member(:automation_subtype, Shapes::ShapeRef.new(shape: AutomationSubtype, location_name: "AutomationSubtype"))
|
1548
1632
|
AutomationExecutionMetadata.add_member(:scheduled_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "ScheduledTime"))
|
1549
1633
|
AutomationExecutionMetadata.add_member(:runbooks, Shapes::ShapeRef.new(shape: Runbooks, location_name: "Runbooks"))
|
@@ -1557,6 +1641,12 @@ module Aws::SSM
|
|
1557
1641
|
AutomationExecutionNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
1558
1642
|
AutomationExecutionNotFoundException.struct_class = Types::AutomationExecutionNotFoundException
|
1559
1643
|
|
1644
|
+
AutomationExecutionPreview.add_member(:step_previews, Shapes::ShapeRef.new(shape: StepPreviewMap, location_name: "StepPreviews"))
|
1645
|
+
AutomationExecutionPreview.add_member(:regions, Shapes::ShapeRef.new(shape: RegionList, location_name: "Regions"))
|
1646
|
+
AutomationExecutionPreview.add_member(:target_previews, Shapes::ShapeRef.new(shape: TargetPreviewList, location_name: "TargetPreviews"))
|
1647
|
+
AutomationExecutionPreview.add_member(:total_accounts, Shapes::ShapeRef.new(shape: Integer, location_name: "TotalAccounts"))
|
1648
|
+
AutomationExecutionPreview.struct_class = Types::AutomationExecutionPreview
|
1649
|
+
|
1560
1650
|
AutomationParameterMap.key = Shapes::ShapeRef.new(shape: AutomationParameterKey)
|
1561
1651
|
AutomationParameterMap.value = Shapes::ShapeRef.new(shape: AutomationParameterValueList)
|
1562
1652
|
|
@@ -1574,6 +1664,7 @@ module Aws::SSM
|
|
1574
1664
|
BaselineOverride.add_member(:rejected_patches_action, Shapes::ShapeRef.new(shape: PatchAction, location_name: "RejectedPatchesAction"))
|
1575
1665
|
BaselineOverride.add_member(:approved_patches_enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApprovedPatchesEnableNonSecurity"))
|
1576
1666
|
BaselineOverride.add_member(:sources, Shapes::ShapeRef.new(shape: PatchSourceList, location_name: "Sources"))
|
1667
|
+
BaselineOverride.add_member(:available_security_updates_compliance_status, Shapes::ShapeRef.new(shape: PatchComplianceStatus, location_name: "AvailableSecurityUpdatesComplianceStatus"))
|
1577
1668
|
BaselineOverride.struct_class = Types::BaselineOverride
|
1578
1669
|
|
1579
1670
|
CalendarNameOrARNList.member = Shapes::ShapeRef.new(shape: CalendarNameOrARN)
|
@@ -1730,7 +1821,7 @@ module Aws::SSM
|
|
1730
1821
|
CreateActivationRequest.add_member(:description, Shapes::ShapeRef.new(shape: ActivationDescription, location_name: "Description"))
|
1731
1822
|
CreateActivationRequest.add_member(:default_instance_name, Shapes::ShapeRef.new(shape: DefaultInstanceName, location_name: "DefaultInstanceName"))
|
1732
1823
|
CreateActivationRequest.add_member(:iam_role, Shapes::ShapeRef.new(shape: IamRole, required: true, location_name: "IamRole"))
|
1733
|
-
CreateActivationRequest.add_member(:registration_limit, Shapes::ShapeRef.new(shape: RegistrationLimit, location_name: "RegistrationLimit", metadata: {"box"=>true}))
|
1824
|
+
CreateActivationRequest.add_member(:registration_limit, Shapes::ShapeRef.new(shape: RegistrationLimit, location_name: "RegistrationLimit", metadata: {"box" => true}))
|
1734
1825
|
CreateActivationRequest.add_member(:expiration_date, Shapes::ShapeRef.new(shape: ExpirationDate, location_name: "ExpirationDate"))
|
1735
1826
|
CreateActivationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1736
1827
|
CreateActivationRequest.add_member(:registration_metadata, Shapes::ShapeRef.new(shape: RegistrationMetadataList, location_name: "RegistrationMetadata"))
|
@@ -1761,9 +1852,9 @@ module Aws::SSM
|
|
1761
1852
|
CreateAssociationBatchRequestEntry.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
1762
1853
|
CreateAssociationBatchRequestEntry.add_member(:calendar_names, Shapes::ShapeRef.new(shape: CalendarNameOrARNList, location_name: "CalendarNames"))
|
1763
1854
|
CreateAssociationBatchRequestEntry.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations"))
|
1764
|
-
CreateAssociationBatchRequestEntry.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
1765
|
-
CreateAssociationBatchRequestEntry.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box"=>true}))
|
1766
|
-
CreateAssociationBatchRequestEntry.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box"=>true}))
|
1855
|
+
CreateAssociationBatchRequestEntry.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box" => true}))
|
1856
|
+
CreateAssociationBatchRequestEntry.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box" => true}))
|
1857
|
+
CreateAssociationBatchRequestEntry.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box" => true}))
|
1767
1858
|
CreateAssociationBatchRequestEntry.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
1768
1859
|
CreateAssociationBatchRequestEntry.struct_class = Types::CreateAssociationBatchRequestEntry
|
1769
1860
|
|
@@ -1787,10 +1878,10 @@ module Aws::SSM
|
|
1787
1878
|
CreateAssociationRequest.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
1788
1879
|
CreateAssociationRequest.add_member(:calendar_names, Shapes::ShapeRef.new(shape: CalendarNameOrARNList, location_name: "CalendarNames"))
|
1789
1880
|
CreateAssociationRequest.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations"))
|
1790
|
-
CreateAssociationRequest.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
1791
|
-
CreateAssociationRequest.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box"=>true}))
|
1792
|
-
CreateAssociationRequest.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box"=>true}))
|
1793
|
-
CreateAssociationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags", metadata: {"box"=>true}))
|
1881
|
+
CreateAssociationRequest.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box" => true}))
|
1882
|
+
CreateAssociationRequest.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box" => true}))
|
1883
|
+
CreateAssociationRequest.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box" => true}))
|
1884
|
+
CreateAssociationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags", metadata: {"box" => true}))
|
1794
1885
|
CreateAssociationRequest.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
1795
1886
|
CreateAssociationRequest.struct_class = Types::CreateAssociationRequest
|
1796
1887
|
|
@@ -1818,11 +1909,11 @@ module Aws::SSM
|
|
1818
1909
|
CreateMaintenanceWindowRequest.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
1819
1910
|
CreateMaintenanceWindowRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, required: true, location_name: "Schedule"))
|
1820
1911
|
CreateMaintenanceWindowRequest.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
1821
|
-
CreateMaintenanceWindowRequest.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
1912
|
+
CreateMaintenanceWindowRequest.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box" => true}))
|
1822
1913
|
CreateMaintenanceWindowRequest.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, required: true, location_name: "Duration"))
|
1823
1914
|
CreateMaintenanceWindowRequest.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, required: true, location_name: "Cutoff"))
|
1824
1915
|
CreateMaintenanceWindowRequest.add_member(:allow_unassociated_targets, Shapes::ShapeRef.new(shape: MaintenanceWindowAllowUnassociatedTargets, required: true, location_name: "AllowUnassociatedTargets"))
|
1825
|
-
CreateMaintenanceWindowRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
1916
|
+
CreateMaintenanceWindowRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
1826
1917
|
CreateMaintenanceWindowRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1827
1918
|
CreateMaintenanceWindowRequest.struct_class = Types::CreateMaintenanceWindowRequest
|
1828
1919
|
|
@@ -1865,12 +1956,13 @@ module Aws::SSM
|
|
1865
1956
|
CreatePatchBaselineRequest.add_member(:approval_rules, Shapes::ShapeRef.new(shape: PatchRuleGroup, location_name: "ApprovalRules"))
|
1866
1957
|
CreatePatchBaselineRequest.add_member(:approved_patches, Shapes::ShapeRef.new(shape: PatchIdList, location_name: "ApprovedPatches"))
|
1867
1958
|
CreatePatchBaselineRequest.add_member(:approved_patches_compliance_level, Shapes::ShapeRef.new(shape: PatchComplianceLevel, location_name: "ApprovedPatchesComplianceLevel"))
|
1868
|
-
CreatePatchBaselineRequest.add_member(:approved_patches_enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApprovedPatchesEnableNonSecurity", metadata: {"box"=>true}))
|
1959
|
+
CreatePatchBaselineRequest.add_member(:approved_patches_enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApprovedPatchesEnableNonSecurity", metadata: {"box" => true}))
|
1869
1960
|
CreatePatchBaselineRequest.add_member(:rejected_patches, Shapes::ShapeRef.new(shape: PatchIdList, location_name: "RejectedPatches"))
|
1870
1961
|
CreatePatchBaselineRequest.add_member(:rejected_patches_action, Shapes::ShapeRef.new(shape: PatchAction, location_name: "RejectedPatchesAction"))
|
1871
1962
|
CreatePatchBaselineRequest.add_member(:description, Shapes::ShapeRef.new(shape: BaselineDescription, location_name: "Description"))
|
1872
1963
|
CreatePatchBaselineRequest.add_member(:sources, Shapes::ShapeRef.new(shape: PatchSourceList, location_name: "Sources"))
|
1873
|
-
CreatePatchBaselineRequest.add_member(:
|
1964
|
+
CreatePatchBaselineRequest.add_member(:available_security_updates_compliance_status, Shapes::ShapeRef.new(shape: PatchComplianceStatus, location_name: "AvailableSecurityUpdatesComplianceStatus"))
|
1965
|
+
CreatePatchBaselineRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
1874
1966
|
CreatePatchBaselineRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1875
1967
|
CreatePatchBaselineRequest.struct_class = Types::CreatePatchBaselineRequest
|
1876
1968
|
|
@@ -1885,6 +1977,12 @@ module Aws::SSM
|
|
1885
1977
|
|
1886
1978
|
CreateResourceDataSyncResult.struct_class = Types::CreateResourceDataSyncResult
|
1887
1979
|
|
1980
|
+
Credentials.add_member(:access_key_id, Shapes::ShapeRef.new(shape: AccessKeyIdType, required: true, location_name: "AccessKeyId"))
|
1981
|
+
Credentials.add_member(:secret_access_key, Shapes::ShapeRef.new(shape: AccessKeySecretType, required: true, location_name: "SecretAccessKey"))
|
1982
|
+
Credentials.add_member(:session_token, Shapes::ShapeRef.new(shape: SessionTokenType, required: true, location_name: "SessionToken"))
|
1983
|
+
Credentials.add_member(:expiration_time, Shapes::ShapeRef.new(shape: DateTime, required: true, location_name: "ExpirationTime"))
|
1984
|
+
Credentials.struct_class = Types::Credentials
|
1985
|
+
|
1888
1986
|
CustomSchemaCountLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
1889
1987
|
CustomSchemaCountLimitExceededException.struct_class = Types::CustomSchemaCountLimitExceededException
|
1890
1988
|
|
@@ -1911,7 +2009,7 @@ module Aws::SSM
|
|
1911
2009
|
DeleteInventoryRequest.add_member(:type_name, Shapes::ShapeRef.new(shape: InventoryItemTypeName, required: true, location_name: "TypeName"))
|
1912
2010
|
DeleteInventoryRequest.add_member(:schema_delete_option, Shapes::ShapeRef.new(shape: InventorySchemaDeleteOption, location_name: "SchemaDeleteOption"))
|
1913
2011
|
DeleteInventoryRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
|
1914
|
-
DeleteInventoryRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: UUID, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
2012
|
+
DeleteInventoryRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: UUID, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
1915
2013
|
DeleteInventoryRequest.struct_class = Types::DeleteInventoryRequest
|
1916
2014
|
|
1917
2015
|
DeleteInventoryResult.add_member(:deletion_id, Shapes::ShapeRef.new(shape: UUID, location_name: "DeletionId"))
|
@@ -1981,7 +2079,7 @@ module Aws::SSM
|
|
1981
2079
|
|
1982
2080
|
DeregisterTargetFromMaintenanceWindowRequest.add_member(:window_id, Shapes::ShapeRef.new(shape: MaintenanceWindowId, required: true, location_name: "WindowId"))
|
1983
2081
|
DeregisterTargetFromMaintenanceWindowRequest.add_member(:window_target_id, Shapes::ShapeRef.new(shape: MaintenanceWindowTargetId, required: true, location_name: "WindowTargetId"))
|
1984
|
-
DeregisterTargetFromMaintenanceWindowRequest.add_member(:safe, Shapes::ShapeRef.new(shape: Boolean, location_name: "Safe", metadata: {"box"=>true}))
|
2082
|
+
DeregisterTargetFromMaintenanceWindowRequest.add_member(:safe, Shapes::ShapeRef.new(shape: Boolean, location_name: "Safe", metadata: {"box" => true}))
|
1985
2083
|
DeregisterTargetFromMaintenanceWindowRequest.struct_class = Types::DeregisterTargetFromMaintenanceWindowRequest
|
1986
2084
|
|
1987
2085
|
DeregisterTargetFromMaintenanceWindowResult.add_member(:window_id, Shapes::ShapeRef.new(shape: MaintenanceWindowId, location_name: "WindowId"))
|
@@ -2003,7 +2101,7 @@ module Aws::SSM
|
|
2003
2101
|
DescribeActivationsFilterList.member = Shapes::ShapeRef.new(shape: DescribeActivationsFilter)
|
2004
2102
|
|
2005
2103
|
DescribeActivationsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: DescribeActivationsFilterList, location_name: "Filters"))
|
2006
|
-
DescribeActivationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2104
|
+
DescribeActivationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2007
2105
|
DescribeActivationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2008
2106
|
DescribeActivationsRequest.struct_class = Types::DescribeActivationsRequest
|
2009
2107
|
|
@@ -2014,7 +2112,7 @@ module Aws::SSM
|
|
2014
2112
|
DescribeAssociationExecutionTargetsRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, required: true, location_name: "AssociationId"))
|
2015
2113
|
DescribeAssociationExecutionTargetsRequest.add_member(:execution_id, Shapes::ShapeRef.new(shape: AssociationExecutionId, required: true, location_name: "ExecutionId"))
|
2016
2114
|
DescribeAssociationExecutionTargetsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: AssociationExecutionTargetsFilterList, location_name: "Filters"))
|
2017
|
-
DescribeAssociationExecutionTargetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2115
|
+
DescribeAssociationExecutionTargetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2018
2116
|
DescribeAssociationExecutionTargetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2019
2117
|
DescribeAssociationExecutionTargetsRequest.struct_class = Types::DescribeAssociationExecutionTargetsRequest
|
2020
2118
|
|
@@ -2024,7 +2122,7 @@ module Aws::SSM
|
|
2024
2122
|
|
2025
2123
|
DescribeAssociationExecutionsRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, required: true, location_name: "AssociationId"))
|
2026
2124
|
DescribeAssociationExecutionsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: AssociationExecutionFilterList, location_name: "Filters"))
|
2027
|
-
DescribeAssociationExecutionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2125
|
+
DescribeAssociationExecutionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2028
2126
|
DescribeAssociationExecutionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2029
2127
|
DescribeAssociationExecutionsRequest.struct_class = Types::DescribeAssociationExecutionsRequest
|
2030
2128
|
|
@@ -2042,7 +2140,7 @@ module Aws::SSM
|
|
2042
2140
|
DescribeAssociationResult.struct_class = Types::DescribeAssociationResult
|
2043
2141
|
|
2044
2142
|
DescribeAutomationExecutionsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: AutomationExecutionFilterList, location_name: "Filters"))
|
2045
|
-
DescribeAutomationExecutionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2143
|
+
DescribeAutomationExecutionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2046
2144
|
DescribeAutomationExecutionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2047
2145
|
DescribeAutomationExecutionsRequest.struct_class = Types::DescribeAutomationExecutionsRequest
|
2048
2146
|
|
@@ -2053,8 +2151,8 @@ module Aws::SSM
|
|
2053
2151
|
DescribeAutomationStepExecutionsRequest.add_member(:automation_execution_id, Shapes::ShapeRef.new(shape: AutomationExecutionId, required: true, location_name: "AutomationExecutionId"))
|
2054
2152
|
DescribeAutomationStepExecutionsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: StepExecutionFilterList, location_name: "Filters"))
|
2055
2153
|
DescribeAutomationStepExecutionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2056
|
-
DescribeAutomationStepExecutionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2057
|
-
DescribeAutomationStepExecutionsRequest.add_member(:reverse_order, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReverseOrder", metadata: {"box"=>true}))
|
2154
|
+
DescribeAutomationStepExecutionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2155
|
+
DescribeAutomationStepExecutionsRequest.add_member(:reverse_order, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReverseOrder", metadata: {"box" => true}))
|
2058
2156
|
DescribeAutomationStepExecutionsRequest.struct_class = Types::DescribeAutomationStepExecutionsRequest
|
2059
2157
|
|
2060
2158
|
DescribeAutomationStepExecutionsResult.add_member(:step_executions, Shapes::ShapeRef.new(shape: StepExecutionList, location_name: "StepExecutions"))
|
@@ -2062,7 +2160,7 @@ module Aws::SSM
|
|
2062
2160
|
DescribeAutomationStepExecutionsResult.struct_class = Types::DescribeAutomationStepExecutionsResult
|
2063
2161
|
|
2064
2162
|
DescribeAvailablePatchesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: PatchOrchestratorFilterList, location_name: "Filters"))
|
2065
|
-
DescribeAvailablePatchesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchBaselineMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2163
|
+
DescribeAvailablePatchesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchBaselineMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2066
2164
|
DescribeAvailablePatchesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2067
2165
|
DescribeAvailablePatchesRequest.struct_class = Types::DescribeAvailablePatchesRequest
|
2068
2166
|
|
@@ -2072,7 +2170,7 @@ module Aws::SSM
|
|
2072
2170
|
|
2073
2171
|
DescribeDocumentPermissionRequest.add_member(:name, Shapes::ShapeRef.new(shape: DocumentName, required: true, location_name: "Name"))
|
2074
2172
|
DescribeDocumentPermissionRequest.add_member(:permission_type, Shapes::ShapeRef.new(shape: DocumentPermissionType, required: true, location_name: "PermissionType"))
|
2075
|
-
DescribeDocumentPermissionRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DocumentPermissionMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2173
|
+
DescribeDocumentPermissionRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DocumentPermissionMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2076
2174
|
DescribeDocumentPermissionRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2077
2175
|
DescribeDocumentPermissionRequest.struct_class = Types::DescribeDocumentPermissionRequest
|
2078
2176
|
|
@@ -2090,7 +2188,7 @@ module Aws::SSM
|
|
2090
2188
|
DescribeDocumentResult.struct_class = Types::DescribeDocumentResult
|
2091
2189
|
|
2092
2190
|
DescribeEffectiveInstanceAssociationsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
2093
|
-
DescribeEffectiveInstanceAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: EffectiveInstanceAssociationMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2191
|
+
DescribeEffectiveInstanceAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: EffectiveInstanceAssociationMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2094
2192
|
DescribeEffectiveInstanceAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2095
2193
|
DescribeEffectiveInstanceAssociationsRequest.struct_class = Types::DescribeEffectiveInstanceAssociationsRequest
|
2096
2194
|
|
@@ -2099,7 +2197,7 @@ module Aws::SSM
|
|
2099
2197
|
DescribeEffectiveInstanceAssociationsResult.struct_class = Types::DescribeEffectiveInstanceAssociationsResult
|
2100
2198
|
|
2101
2199
|
DescribeEffectivePatchesForPatchBaselineRequest.add_member(:baseline_id, Shapes::ShapeRef.new(shape: BaselineId, required: true, location_name: "BaselineId"))
|
2102
|
-
DescribeEffectivePatchesForPatchBaselineRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchBaselineMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2200
|
+
DescribeEffectivePatchesForPatchBaselineRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchBaselineMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2103
2201
|
DescribeEffectivePatchesForPatchBaselineRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2104
2202
|
DescribeEffectivePatchesForPatchBaselineRequest.struct_class = Types::DescribeEffectivePatchesForPatchBaselineRequest
|
2105
2203
|
|
@@ -2108,7 +2206,7 @@ module Aws::SSM
|
|
2108
2206
|
DescribeEffectivePatchesForPatchBaselineResult.struct_class = Types::DescribeEffectivePatchesForPatchBaselineResult
|
2109
2207
|
|
2110
2208
|
DescribeInstanceAssociationsStatusRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
2111
|
-
DescribeInstanceAssociationsStatusRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2209
|
+
DescribeInstanceAssociationsStatusRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2112
2210
|
DescribeInstanceAssociationsStatusRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2113
2211
|
DescribeInstanceAssociationsStatusRequest.struct_class = Types::DescribeInstanceAssociationsStatusRequest
|
2114
2212
|
|
@@ -2118,7 +2216,7 @@ module Aws::SSM
|
|
2118
2216
|
|
2119
2217
|
DescribeInstanceInformationRequest.add_member(:instance_information_filter_list, Shapes::ShapeRef.new(shape: InstanceInformationFilterList, location_name: "InstanceInformationFilterList"))
|
2120
2218
|
DescribeInstanceInformationRequest.add_member(:filters, Shapes::ShapeRef.new(shape: InstanceInformationStringFilterList, location_name: "Filters"))
|
2121
|
-
DescribeInstanceInformationRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultsEC2Compatible, location_name: "MaxResults", metadata: {"box"=>true}))
|
2219
|
+
DescribeInstanceInformationRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultsEC2Compatible, location_name: "MaxResults", metadata: {"box" => true}))
|
2122
2220
|
DescribeInstanceInformationRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2123
2221
|
DescribeInstanceInformationRequest.struct_class = Types::DescribeInstanceInformationRequest
|
2124
2222
|
|
@@ -2129,7 +2227,7 @@ module Aws::SSM
|
|
2129
2227
|
DescribeInstancePatchStatesForPatchGroupRequest.add_member(:patch_group, Shapes::ShapeRef.new(shape: PatchGroup, required: true, location_name: "PatchGroup"))
|
2130
2228
|
DescribeInstancePatchStatesForPatchGroupRequest.add_member(:filters, Shapes::ShapeRef.new(shape: InstancePatchStateFilterList, location_name: "Filters"))
|
2131
2229
|
DescribeInstancePatchStatesForPatchGroupRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2132
|
-
DescribeInstancePatchStatesForPatchGroupRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchComplianceMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2230
|
+
DescribeInstancePatchStatesForPatchGroupRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchComplianceMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2133
2231
|
DescribeInstancePatchStatesForPatchGroupRequest.struct_class = Types::DescribeInstancePatchStatesForPatchGroupRequest
|
2134
2232
|
|
2135
2233
|
DescribeInstancePatchStatesForPatchGroupResult.add_member(:instance_patch_states, Shapes::ShapeRef.new(shape: InstancePatchStatesList, location_name: "InstancePatchStates"))
|
@@ -2138,7 +2236,7 @@ module Aws::SSM
|
|
2138
2236
|
|
2139
2237
|
DescribeInstancePatchStatesRequest.add_member(:instance_ids, Shapes::ShapeRef.new(shape: InstanceIdList, required: true, location_name: "InstanceIds"))
|
2140
2238
|
DescribeInstancePatchStatesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2141
|
-
DescribeInstancePatchStatesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchComplianceMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2239
|
+
DescribeInstancePatchStatesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchComplianceMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2142
2240
|
DescribeInstancePatchStatesRequest.struct_class = Types::DescribeInstancePatchStatesRequest
|
2143
2241
|
|
2144
2242
|
DescribeInstancePatchStatesResult.add_member(:instance_patch_states, Shapes::ShapeRef.new(shape: InstancePatchStateList, location_name: "InstancePatchStates"))
|
@@ -2148,7 +2246,7 @@ module Aws::SSM
|
|
2148
2246
|
DescribeInstancePatchesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
2149
2247
|
DescribeInstancePatchesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: PatchOrchestratorFilterList, location_name: "Filters"))
|
2150
2248
|
DescribeInstancePatchesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2151
|
-
DescribeInstancePatchesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchComplianceMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2249
|
+
DescribeInstancePatchesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchComplianceMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2152
2250
|
DescribeInstancePatchesRequest.struct_class = Types::DescribeInstancePatchesRequest
|
2153
2251
|
|
2154
2252
|
DescribeInstancePatchesResult.add_member(:patches, Shapes::ShapeRef.new(shape: PatchComplianceDataList, location_name: "Patches"))
|
@@ -2157,7 +2255,7 @@ module Aws::SSM
|
|
2157
2255
|
|
2158
2256
|
DescribeInstancePropertiesRequest.add_member(:instance_property_filter_list, Shapes::ShapeRef.new(shape: InstancePropertyFilterList, location_name: "InstancePropertyFilterList"))
|
2159
2257
|
DescribeInstancePropertiesRequest.add_member(:filters_with_operator, Shapes::ShapeRef.new(shape: InstancePropertyStringFilterList, location_name: "FiltersWithOperator"))
|
2160
|
-
DescribeInstancePropertiesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeInstancePropertiesMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2258
|
+
DescribeInstancePropertiesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeInstancePropertiesMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2161
2259
|
DescribeInstancePropertiesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2162
2260
|
DescribeInstancePropertiesRequest.struct_class = Types::DescribeInstancePropertiesRequest
|
2163
2261
|
|
@@ -2167,7 +2265,7 @@ module Aws::SSM
|
|
2167
2265
|
|
2168
2266
|
DescribeInventoryDeletionsRequest.add_member(:deletion_id, Shapes::ShapeRef.new(shape: UUID, location_name: "DeletionId"))
|
2169
2267
|
DescribeInventoryDeletionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2170
|
-
DescribeInventoryDeletionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2268
|
+
DescribeInventoryDeletionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2171
2269
|
DescribeInventoryDeletionsRequest.struct_class = Types::DescribeInventoryDeletionsRequest
|
2172
2270
|
|
2173
2271
|
DescribeInventoryDeletionsResult.add_member(:inventory_deletions, Shapes::ShapeRef.new(shape: InventoryDeletionsList, location_name: "InventoryDeletions"))
|
@@ -2177,7 +2275,7 @@ module Aws::SSM
|
|
2177
2275
|
DescribeMaintenanceWindowExecutionTaskInvocationsRequest.add_member(:window_execution_id, Shapes::ShapeRef.new(shape: MaintenanceWindowExecutionId, required: true, location_name: "WindowExecutionId"))
|
2178
2276
|
DescribeMaintenanceWindowExecutionTaskInvocationsRequest.add_member(:task_id, Shapes::ShapeRef.new(shape: MaintenanceWindowExecutionTaskId, required: true, location_name: "TaskId"))
|
2179
2277
|
DescribeMaintenanceWindowExecutionTaskInvocationsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: MaintenanceWindowFilterList, location_name: "Filters"))
|
2180
|
-
DescribeMaintenanceWindowExecutionTaskInvocationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2278
|
+
DescribeMaintenanceWindowExecutionTaskInvocationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2181
2279
|
DescribeMaintenanceWindowExecutionTaskInvocationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2182
2280
|
DescribeMaintenanceWindowExecutionTaskInvocationsRequest.struct_class = Types::DescribeMaintenanceWindowExecutionTaskInvocationsRequest
|
2183
2281
|
|
@@ -2187,7 +2285,7 @@ module Aws::SSM
|
|
2187
2285
|
|
2188
2286
|
DescribeMaintenanceWindowExecutionTasksRequest.add_member(:window_execution_id, Shapes::ShapeRef.new(shape: MaintenanceWindowExecutionId, required: true, location_name: "WindowExecutionId"))
|
2189
2287
|
DescribeMaintenanceWindowExecutionTasksRequest.add_member(:filters, Shapes::ShapeRef.new(shape: MaintenanceWindowFilterList, location_name: "Filters"))
|
2190
|
-
DescribeMaintenanceWindowExecutionTasksRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2288
|
+
DescribeMaintenanceWindowExecutionTasksRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2191
2289
|
DescribeMaintenanceWindowExecutionTasksRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2192
2290
|
DescribeMaintenanceWindowExecutionTasksRequest.struct_class = Types::DescribeMaintenanceWindowExecutionTasksRequest
|
2193
2291
|
|
@@ -2197,7 +2295,7 @@ module Aws::SSM
|
|
2197
2295
|
|
2198
2296
|
DescribeMaintenanceWindowExecutionsRequest.add_member(:window_id, Shapes::ShapeRef.new(shape: MaintenanceWindowId, required: true, location_name: "WindowId"))
|
2199
2297
|
DescribeMaintenanceWindowExecutionsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: MaintenanceWindowFilterList, location_name: "Filters"))
|
2200
|
-
DescribeMaintenanceWindowExecutionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2298
|
+
DescribeMaintenanceWindowExecutionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2201
2299
|
DescribeMaintenanceWindowExecutionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2202
2300
|
DescribeMaintenanceWindowExecutionsRequest.struct_class = Types::DescribeMaintenanceWindowExecutionsRequest
|
2203
2301
|
|
@@ -2209,7 +2307,7 @@ module Aws::SSM
|
|
2209
2307
|
DescribeMaintenanceWindowScheduleRequest.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets"))
|
2210
2308
|
DescribeMaintenanceWindowScheduleRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: MaintenanceWindowResourceType, location_name: "ResourceType"))
|
2211
2309
|
DescribeMaintenanceWindowScheduleRequest.add_member(:filters, Shapes::ShapeRef.new(shape: PatchOrchestratorFilterList, location_name: "Filters"))
|
2212
|
-
DescribeMaintenanceWindowScheduleRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowSearchMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2310
|
+
DescribeMaintenanceWindowScheduleRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowSearchMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2213
2311
|
DescribeMaintenanceWindowScheduleRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2214
2312
|
DescribeMaintenanceWindowScheduleRequest.struct_class = Types::DescribeMaintenanceWindowScheduleRequest
|
2215
2313
|
|
@@ -2219,7 +2317,7 @@ module Aws::SSM
|
|
2219
2317
|
|
2220
2318
|
DescribeMaintenanceWindowTargetsRequest.add_member(:window_id, Shapes::ShapeRef.new(shape: MaintenanceWindowId, required: true, location_name: "WindowId"))
|
2221
2319
|
DescribeMaintenanceWindowTargetsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: MaintenanceWindowFilterList, location_name: "Filters"))
|
2222
|
-
DescribeMaintenanceWindowTargetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2320
|
+
DescribeMaintenanceWindowTargetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2223
2321
|
DescribeMaintenanceWindowTargetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2224
2322
|
DescribeMaintenanceWindowTargetsRequest.struct_class = Types::DescribeMaintenanceWindowTargetsRequest
|
2225
2323
|
|
@@ -2229,7 +2327,7 @@ module Aws::SSM
|
|
2229
2327
|
|
2230
2328
|
DescribeMaintenanceWindowTasksRequest.add_member(:window_id, Shapes::ShapeRef.new(shape: MaintenanceWindowId, required: true, location_name: "WindowId"))
|
2231
2329
|
DescribeMaintenanceWindowTasksRequest.add_member(:filters, Shapes::ShapeRef.new(shape: MaintenanceWindowFilterList, location_name: "Filters"))
|
2232
|
-
DescribeMaintenanceWindowTasksRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2330
|
+
DescribeMaintenanceWindowTasksRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2233
2331
|
DescribeMaintenanceWindowTasksRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2234
2332
|
DescribeMaintenanceWindowTasksRequest.struct_class = Types::DescribeMaintenanceWindowTasksRequest
|
2235
2333
|
|
@@ -2239,7 +2337,7 @@ module Aws::SSM
|
|
2239
2337
|
|
2240
2338
|
DescribeMaintenanceWindowsForTargetRequest.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, required: true, location_name: "Targets"))
|
2241
2339
|
DescribeMaintenanceWindowsForTargetRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: MaintenanceWindowResourceType, required: true, location_name: "ResourceType"))
|
2242
|
-
DescribeMaintenanceWindowsForTargetRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowSearchMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2340
|
+
DescribeMaintenanceWindowsForTargetRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowSearchMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2243
2341
|
DescribeMaintenanceWindowsForTargetRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2244
2342
|
DescribeMaintenanceWindowsForTargetRequest.struct_class = Types::DescribeMaintenanceWindowsForTargetRequest
|
2245
2343
|
|
@@ -2248,7 +2346,7 @@ module Aws::SSM
|
|
2248
2346
|
DescribeMaintenanceWindowsForTargetResult.struct_class = Types::DescribeMaintenanceWindowsForTargetResult
|
2249
2347
|
|
2250
2348
|
DescribeMaintenanceWindowsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: MaintenanceWindowFilterList, location_name: "Filters"))
|
2251
|
-
DescribeMaintenanceWindowsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2349
|
+
DescribeMaintenanceWindowsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaintenanceWindowMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2252
2350
|
DescribeMaintenanceWindowsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2253
2351
|
DescribeMaintenanceWindowsRequest.struct_class = Types::DescribeMaintenanceWindowsRequest
|
2254
2352
|
|
@@ -2267,9 +2365,9 @@ module Aws::SSM
|
|
2267
2365
|
|
2268
2366
|
DescribeParametersRequest.add_member(:filters, Shapes::ShapeRef.new(shape: ParametersFilterList, location_name: "Filters"))
|
2269
2367
|
DescribeParametersRequest.add_member(:parameter_filters, Shapes::ShapeRef.new(shape: ParameterStringFilterList, location_name: "ParameterFilters"))
|
2270
|
-
DescribeParametersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2368
|
+
DescribeParametersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2271
2369
|
DescribeParametersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2272
|
-
DescribeParametersRequest.add_member(:shared, Shapes::ShapeRef.new(shape: Boolean, location_name: "Shared", metadata: {"box"=>true}))
|
2370
|
+
DescribeParametersRequest.add_member(:shared, Shapes::ShapeRef.new(shape: Boolean, location_name: "Shared", metadata: {"box" => true}))
|
2273
2371
|
DescribeParametersRequest.struct_class = Types::DescribeParametersRequest
|
2274
2372
|
|
2275
2373
|
DescribeParametersResult.add_member(:parameters, Shapes::ShapeRef.new(shape: ParameterMetadataList, location_name: "Parameters"))
|
@@ -2277,7 +2375,7 @@ module Aws::SSM
|
|
2277
2375
|
DescribeParametersResult.struct_class = Types::DescribeParametersResult
|
2278
2376
|
|
2279
2377
|
DescribePatchBaselinesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: PatchOrchestratorFilterList, location_name: "Filters"))
|
2280
|
-
DescribePatchBaselinesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchBaselineMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2378
|
+
DescribePatchBaselinesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchBaselineMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2281
2379
|
DescribePatchBaselinesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2282
2380
|
DescribePatchBaselinesRequest.struct_class = Types::DescribePatchBaselinesRequest
|
2283
2381
|
|
@@ -2291,18 +2389,19 @@ module Aws::SSM
|
|
2291
2389
|
DescribePatchGroupStateResult.add_member(:instances, Shapes::ShapeRef.new(shape: Integer, location_name: "Instances"))
|
2292
2390
|
DescribePatchGroupStateResult.add_member(:instances_with_installed_patches, Shapes::ShapeRef.new(shape: Integer, location_name: "InstancesWithInstalledPatches"))
|
2293
2391
|
DescribePatchGroupStateResult.add_member(:instances_with_installed_other_patches, Shapes::ShapeRef.new(shape: Integer, location_name: "InstancesWithInstalledOtherPatches"))
|
2294
|
-
DescribePatchGroupStateResult.add_member(:instances_with_installed_pending_reboot_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithInstalledPendingRebootPatches", metadata: {"box"=>true}))
|
2295
|
-
DescribePatchGroupStateResult.add_member(:instances_with_installed_rejected_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithInstalledRejectedPatches", metadata: {"box"=>true}))
|
2392
|
+
DescribePatchGroupStateResult.add_member(:instances_with_installed_pending_reboot_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithInstalledPendingRebootPatches", metadata: {"box" => true}))
|
2393
|
+
DescribePatchGroupStateResult.add_member(:instances_with_installed_rejected_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithInstalledRejectedPatches", metadata: {"box" => true}))
|
2296
2394
|
DescribePatchGroupStateResult.add_member(:instances_with_missing_patches, Shapes::ShapeRef.new(shape: Integer, location_name: "InstancesWithMissingPatches"))
|
2297
2395
|
DescribePatchGroupStateResult.add_member(:instances_with_failed_patches, Shapes::ShapeRef.new(shape: Integer, location_name: "InstancesWithFailedPatches"))
|
2298
2396
|
DescribePatchGroupStateResult.add_member(:instances_with_not_applicable_patches, Shapes::ShapeRef.new(shape: Integer, location_name: "InstancesWithNotApplicablePatches"))
|
2299
|
-
DescribePatchGroupStateResult.add_member(:instances_with_unreported_not_applicable_patches, Shapes::ShapeRef.new(shape: Integer, location_name: "InstancesWithUnreportedNotApplicablePatches", metadata: {"box"=>true}))
|
2300
|
-
DescribePatchGroupStateResult.add_member(:instances_with_critical_non_compliant_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithCriticalNonCompliantPatches", metadata: {"box"=>true}))
|
2301
|
-
DescribePatchGroupStateResult.add_member(:instances_with_security_non_compliant_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithSecurityNonCompliantPatches", metadata: {"box"=>true}))
|
2302
|
-
DescribePatchGroupStateResult.add_member(:instances_with_other_non_compliant_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithOtherNonCompliantPatches", metadata: {"box"=>true}))
|
2397
|
+
DescribePatchGroupStateResult.add_member(:instances_with_unreported_not_applicable_patches, Shapes::ShapeRef.new(shape: Integer, location_name: "InstancesWithUnreportedNotApplicablePatches", metadata: {"box" => true}))
|
2398
|
+
DescribePatchGroupStateResult.add_member(:instances_with_critical_non_compliant_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithCriticalNonCompliantPatches", metadata: {"box" => true}))
|
2399
|
+
DescribePatchGroupStateResult.add_member(:instances_with_security_non_compliant_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithSecurityNonCompliantPatches", metadata: {"box" => true}))
|
2400
|
+
DescribePatchGroupStateResult.add_member(:instances_with_other_non_compliant_patches, Shapes::ShapeRef.new(shape: InstancesCount, location_name: "InstancesWithOtherNonCompliantPatches", metadata: {"box" => true}))
|
2401
|
+
DescribePatchGroupStateResult.add_member(:instances_with_available_security_updates, Shapes::ShapeRef.new(shape: Integer, location_name: "InstancesWithAvailableSecurityUpdates", metadata: {"box" => true}))
|
2303
2402
|
DescribePatchGroupStateResult.struct_class = Types::DescribePatchGroupStateResult
|
2304
2403
|
|
2305
|
-
DescribePatchGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchBaselineMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2404
|
+
DescribePatchGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PatchBaselineMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2306
2405
|
DescribePatchGroupsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: PatchOrchestratorFilterList, location_name: "Filters"))
|
2307
2406
|
DescribePatchGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2308
2407
|
DescribePatchGroupsRequest.struct_class = Types::DescribePatchGroupsRequest
|
@@ -2314,7 +2413,7 @@ module Aws::SSM
|
|
2314
2413
|
DescribePatchPropertiesRequest.add_member(:operating_system, Shapes::ShapeRef.new(shape: OperatingSystem, required: true, location_name: "OperatingSystem"))
|
2315
2414
|
DescribePatchPropertiesRequest.add_member(:property, Shapes::ShapeRef.new(shape: PatchProperty, required: true, location_name: "Property"))
|
2316
2415
|
DescribePatchPropertiesRequest.add_member(:patch_set, Shapes::ShapeRef.new(shape: PatchSet, location_name: "PatchSet"))
|
2317
|
-
DescribePatchPropertiesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2416
|
+
DescribePatchPropertiesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2318
2417
|
DescribePatchPropertiesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2319
2418
|
DescribePatchPropertiesRequest.struct_class = Types::DescribePatchPropertiesRequest
|
2320
2419
|
|
@@ -2323,7 +2422,7 @@ module Aws::SSM
|
|
2323
2422
|
DescribePatchPropertiesResult.struct_class = Types::DescribePatchPropertiesResult
|
2324
2423
|
|
2325
2424
|
DescribeSessionsRequest.add_member(:state, Shapes::ShapeRef.new(shape: SessionState, required: true, location_name: "State"))
|
2326
|
-
DescribeSessionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: SessionMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2425
|
+
DescribeSessionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: SessionMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2327
2426
|
DescribeSessionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2328
2427
|
DescribeSessionsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: SessionFilterList, location_name: "Filters"))
|
2329
2428
|
DescribeSessionsRequest.struct_class = Types::DescribeSessionsRequest
|
@@ -2489,6 +2588,20 @@ module Aws::SSM
|
|
2489
2588
|
|
2490
2589
|
EffectivePatchList.member = Shapes::ShapeRef.new(shape: EffectivePatch)
|
2491
2590
|
|
2591
|
+
ExcludeAccounts.member = Shapes::ShapeRef.new(shape: ExcludeAccount)
|
2592
|
+
|
2593
|
+
ExecutionInputs.add_member(:automation, Shapes::ShapeRef.new(shape: AutomationExecutionInputs, location_name: "Automation"))
|
2594
|
+
ExecutionInputs.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
2595
|
+
ExecutionInputs.add_member_subclass(:automation, Types::ExecutionInputs::Automation)
|
2596
|
+
ExecutionInputs.add_member_subclass(:unknown, Types::ExecutionInputs::Unknown)
|
2597
|
+
ExecutionInputs.struct_class = Types::ExecutionInputs
|
2598
|
+
|
2599
|
+
ExecutionPreview.add_member(:automation, Shapes::ShapeRef.new(shape: AutomationExecutionPreview, location_name: "Automation"))
|
2600
|
+
ExecutionPreview.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
2601
|
+
ExecutionPreview.add_member_subclass(:automation, Types::ExecutionPreview::Automation)
|
2602
|
+
ExecutionPreview.add_member_subclass(:unknown, Types::ExecutionPreview::Unknown)
|
2603
|
+
ExecutionPreview.struct_class = Types::ExecutionPreview
|
2604
|
+
|
2492
2605
|
FailedCreateAssociation.add_member(:entry, Shapes::ShapeRef.new(shape: CreateAssociationBatchRequestEntry, location_name: "Entry"))
|
2493
2606
|
FailedCreateAssociation.add_member(:message, Shapes::ShapeRef.new(shape: BatchErrorMessage, location_name: "Message"))
|
2494
2607
|
FailedCreateAssociation.add_member(:fault, Shapes::ShapeRef.new(shape: Fault, location_name: "Fault"))
|
@@ -2504,6 +2617,13 @@ module Aws::SSM
|
|
2504
2617
|
FeatureNotAvailableException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
2505
2618
|
FeatureNotAvailableException.struct_class = Types::FeatureNotAvailableException
|
2506
2619
|
|
2620
|
+
GetAccessTokenRequest.add_member(:access_request_id, Shapes::ShapeRef.new(shape: AccessRequestId, required: true, location_name: "AccessRequestId"))
|
2621
|
+
GetAccessTokenRequest.struct_class = Types::GetAccessTokenRequest
|
2622
|
+
|
2623
|
+
GetAccessTokenResponse.add_member(:credentials, Shapes::ShapeRef.new(shape: Credentials, location_name: "Credentials"))
|
2624
|
+
GetAccessTokenResponse.add_member(:access_request_status, Shapes::ShapeRef.new(shape: AccessRequestStatus, location_name: "AccessRequestStatus"))
|
2625
|
+
GetAccessTokenResponse.struct_class = Types::GetAccessTokenResponse
|
2626
|
+
|
2507
2627
|
GetAutomationExecutionRequest.add_member(:automation_execution_id, Shapes::ShapeRef.new(shape: AutomationExecutionId, required: true, location_name: "AutomationExecutionId"))
|
2508
2628
|
GetAutomationExecutionRequest.struct_class = Types::GetAutomationExecutionRequest
|
2509
2629
|
|
@@ -2589,11 +2709,21 @@ module Aws::SSM
|
|
2589
2709
|
GetDocumentResult.add_member(:review_status, Shapes::ShapeRef.new(shape: ReviewStatus, location_name: "ReviewStatus"))
|
2590
2710
|
GetDocumentResult.struct_class = Types::GetDocumentResult
|
2591
2711
|
|
2712
|
+
GetExecutionPreviewRequest.add_member(:execution_preview_id, Shapes::ShapeRef.new(shape: ExecutionPreviewId, required: true, location_name: "ExecutionPreviewId"))
|
2713
|
+
GetExecutionPreviewRequest.struct_class = Types::GetExecutionPreviewRequest
|
2714
|
+
|
2715
|
+
GetExecutionPreviewResponse.add_member(:execution_preview_id, Shapes::ShapeRef.new(shape: ExecutionPreviewId, location_name: "ExecutionPreviewId"))
|
2716
|
+
GetExecutionPreviewResponse.add_member(:ended_at, Shapes::ShapeRef.new(shape: DateTime, location_name: "EndedAt"))
|
2717
|
+
GetExecutionPreviewResponse.add_member(:status, Shapes::ShapeRef.new(shape: ExecutionPreviewStatus, location_name: "Status"))
|
2718
|
+
GetExecutionPreviewResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "StatusMessage"))
|
2719
|
+
GetExecutionPreviewResponse.add_member(:execution_preview, Shapes::ShapeRef.new(shape: ExecutionPreview, location_name: "ExecutionPreview"))
|
2720
|
+
GetExecutionPreviewResponse.struct_class = Types::GetExecutionPreviewResponse
|
2721
|
+
|
2592
2722
|
GetInventoryRequest.add_member(:filters, Shapes::ShapeRef.new(shape: InventoryFilterList, location_name: "Filters"))
|
2593
2723
|
GetInventoryRequest.add_member(:aggregators, Shapes::ShapeRef.new(shape: InventoryAggregatorList, location_name: "Aggregators"))
|
2594
2724
|
GetInventoryRequest.add_member(:result_attributes, Shapes::ShapeRef.new(shape: ResultAttributeList, location_name: "ResultAttributes"))
|
2595
2725
|
GetInventoryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2596
|
-
GetInventoryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2726
|
+
GetInventoryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2597
2727
|
GetInventoryRequest.struct_class = Types::GetInventoryRequest
|
2598
2728
|
|
2599
2729
|
GetInventoryResult.add_member(:entities, Shapes::ShapeRef.new(shape: InventoryResultEntityList, location_name: "Entities"))
|
@@ -2602,9 +2732,9 @@ module Aws::SSM
|
|
2602
2732
|
|
2603
2733
|
GetInventorySchemaRequest.add_member(:type_name, Shapes::ShapeRef.new(shape: InventoryItemTypeNameFilter, location_name: "TypeName"))
|
2604
2734
|
GetInventorySchemaRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2605
|
-
GetInventorySchemaRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetInventorySchemaMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2735
|
+
GetInventorySchemaRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetInventorySchemaMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2606
2736
|
GetInventorySchemaRequest.add_member(:aggregator, Shapes::ShapeRef.new(shape: AggregatorSchemaOnly, location_name: "Aggregator"))
|
2607
|
-
GetInventorySchemaRequest.add_member(:sub_type, Shapes::ShapeRef.new(shape: IsSubTypeSchema, location_name: "SubType", metadata: {"box"=>true}))
|
2737
|
+
GetInventorySchemaRequest.add_member(:sub_type, Shapes::ShapeRef.new(shape: IsSubTypeSchema, location_name: "SubType", metadata: {"box" => true}))
|
2608
2738
|
GetInventorySchemaRequest.struct_class = Types::GetInventorySchemaRequest
|
2609
2739
|
|
2610
2740
|
GetInventorySchemaResult.add_member(:schemas, Shapes::ShapeRef.new(shape: InventoryItemSchemaResultList, location_name: "Schemas"))
|
@@ -2672,7 +2802,7 @@ module Aws::SSM
|
|
2672
2802
|
GetMaintenanceWindowResult.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
2673
2803
|
GetMaintenanceWindowResult.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, location_name: "Schedule"))
|
2674
2804
|
GetMaintenanceWindowResult.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
2675
|
-
GetMaintenanceWindowResult.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
2805
|
+
GetMaintenanceWindowResult.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box" => true}))
|
2676
2806
|
GetMaintenanceWindowResult.add_member(:next_execution_time, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "NextExecutionTime"))
|
2677
2807
|
GetMaintenanceWindowResult.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, location_name: "Duration"))
|
2678
2808
|
GetMaintenanceWindowResult.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff"))
|
@@ -2700,7 +2830,7 @@ module Aws::SSM
|
|
2700
2830
|
GetMaintenanceWindowTaskResult.add_member(:logging_info, Shapes::ShapeRef.new(shape: LoggingInfo, location_name: "LoggingInfo"))
|
2701
2831
|
GetMaintenanceWindowTaskResult.add_member(:name, Shapes::ShapeRef.new(shape: MaintenanceWindowName, location_name: "Name"))
|
2702
2832
|
GetMaintenanceWindowTaskResult.add_member(:description, Shapes::ShapeRef.new(shape: MaintenanceWindowDescription, location_name: "Description"))
|
2703
|
-
GetMaintenanceWindowTaskResult.add_member(:cutoff_behavior, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskCutoffBehavior, location_name: "CutoffBehavior", metadata: {"box"=>true}))
|
2833
|
+
GetMaintenanceWindowTaskResult.add_member(:cutoff_behavior, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskCutoffBehavior, location_name: "CutoffBehavior", metadata: {"box" => true}))
|
2704
2834
|
GetMaintenanceWindowTaskResult.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
2705
2835
|
GetMaintenanceWindowTaskResult.struct_class = Types::GetMaintenanceWindowTaskResult
|
2706
2836
|
|
@@ -2712,7 +2842,7 @@ module Aws::SSM
|
|
2712
2842
|
GetOpsItemResponse.struct_class = Types::GetOpsItemResponse
|
2713
2843
|
|
2714
2844
|
GetOpsMetadataRequest.add_member(:ops_metadata_arn, Shapes::ShapeRef.new(shape: OpsMetadataArn, required: true, location_name: "OpsMetadataArn"))
|
2715
|
-
GetOpsMetadataRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetOpsMetadataMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2845
|
+
GetOpsMetadataRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetOpsMetadataMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2716
2846
|
GetOpsMetadataRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2717
2847
|
GetOpsMetadataRequest.struct_class = Types::GetOpsMetadataRequest
|
2718
2848
|
|
@@ -2726,7 +2856,7 @@ module Aws::SSM
|
|
2726
2856
|
GetOpsSummaryRequest.add_member(:aggregators, Shapes::ShapeRef.new(shape: OpsAggregatorList, location_name: "Aggregators"))
|
2727
2857
|
GetOpsSummaryRequest.add_member(:result_attributes, Shapes::ShapeRef.new(shape: OpsResultAttributeList, location_name: "ResultAttributes"))
|
2728
2858
|
GetOpsSummaryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2729
|
-
GetOpsSummaryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2859
|
+
GetOpsSummaryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2730
2860
|
GetOpsSummaryRequest.struct_class = Types::GetOpsSummaryRequest
|
2731
2861
|
|
2732
2862
|
GetOpsSummaryResult.add_member(:entities, Shapes::ShapeRef.new(shape: OpsEntityList, location_name: "Entities"))
|
@@ -2734,8 +2864,8 @@ module Aws::SSM
|
|
2734
2864
|
GetOpsSummaryResult.struct_class = Types::GetOpsSummaryResult
|
2735
2865
|
|
2736
2866
|
GetParameterHistoryRequest.add_member(:name, Shapes::ShapeRef.new(shape: PSParameterName, required: true, location_name: "Name"))
|
2737
|
-
GetParameterHistoryRequest.add_member(:with_decryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "WithDecryption", metadata: {"box"=>true}))
|
2738
|
-
GetParameterHistoryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2867
|
+
GetParameterHistoryRequest.add_member(:with_decryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "WithDecryption", metadata: {"box" => true}))
|
2868
|
+
GetParameterHistoryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2739
2869
|
GetParameterHistoryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2740
2870
|
GetParameterHistoryRequest.struct_class = Types::GetParameterHistoryRequest
|
2741
2871
|
|
@@ -2744,17 +2874,17 @@ module Aws::SSM
|
|
2744
2874
|
GetParameterHistoryResult.struct_class = Types::GetParameterHistoryResult
|
2745
2875
|
|
2746
2876
|
GetParameterRequest.add_member(:name, Shapes::ShapeRef.new(shape: PSParameterName, required: true, location_name: "Name"))
|
2747
|
-
GetParameterRequest.add_member(:with_decryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "WithDecryption", metadata: {"box"=>true}))
|
2877
|
+
GetParameterRequest.add_member(:with_decryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "WithDecryption", metadata: {"box" => true}))
|
2748
2878
|
GetParameterRequest.struct_class = Types::GetParameterRequest
|
2749
2879
|
|
2750
2880
|
GetParameterResult.add_member(:parameter, Shapes::ShapeRef.new(shape: Parameter, location_name: "Parameter"))
|
2751
2881
|
GetParameterResult.struct_class = Types::GetParameterResult
|
2752
2882
|
|
2753
2883
|
GetParametersByPathRequest.add_member(:path, Shapes::ShapeRef.new(shape: PSParameterName, required: true, location_name: "Path"))
|
2754
|
-
GetParametersByPathRequest.add_member(:recursive, Shapes::ShapeRef.new(shape: Boolean, location_name: "Recursive", metadata: {"box"=>true}))
|
2884
|
+
GetParametersByPathRequest.add_member(:recursive, Shapes::ShapeRef.new(shape: Boolean, location_name: "Recursive", metadata: {"box" => true}))
|
2755
2885
|
GetParametersByPathRequest.add_member(:parameter_filters, Shapes::ShapeRef.new(shape: ParameterStringFilterList, location_name: "ParameterFilters"))
|
2756
|
-
GetParametersByPathRequest.add_member(:with_decryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "WithDecryption", metadata: {"box"=>true}))
|
2757
|
-
GetParametersByPathRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetParametersByPathMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2886
|
+
GetParametersByPathRequest.add_member(:with_decryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "WithDecryption", metadata: {"box" => true}))
|
2887
|
+
GetParametersByPathRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetParametersByPathMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
2758
2888
|
GetParametersByPathRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2759
2889
|
GetParametersByPathRequest.struct_class = Types::GetParametersByPathRequest
|
2760
2890
|
|
@@ -2763,7 +2893,7 @@ module Aws::SSM
|
|
2763
2893
|
GetParametersByPathResult.struct_class = Types::GetParametersByPathResult
|
2764
2894
|
|
2765
2895
|
GetParametersRequest.add_member(:names, Shapes::ShapeRef.new(shape: ParameterNameList, required: true, location_name: "Names"))
|
2766
|
-
GetParametersRequest.add_member(:with_decryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "WithDecryption", metadata: {"box"=>true}))
|
2896
|
+
GetParametersRequest.add_member(:with_decryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "WithDecryption", metadata: {"box" => true}))
|
2767
2897
|
GetParametersRequest.struct_class = Types::GetParametersRequest
|
2768
2898
|
|
2769
2899
|
GetParametersResult.add_member(:parameters, Shapes::ShapeRef.new(shape: ParameterList, location_name: "Parameters"))
|
@@ -2789,7 +2919,7 @@ module Aws::SSM
|
|
2789
2919
|
GetPatchBaselineResult.add_member(:approval_rules, Shapes::ShapeRef.new(shape: PatchRuleGroup, location_name: "ApprovalRules"))
|
2790
2920
|
GetPatchBaselineResult.add_member(:approved_patches, Shapes::ShapeRef.new(shape: PatchIdList, location_name: "ApprovedPatches"))
|
2791
2921
|
GetPatchBaselineResult.add_member(:approved_patches_compliance_level, Shapes::ShapeRef.new(shape: PatchComplianceLevel, location_name: "ApprovedPatchesComplianceLevel"))
|
2792
|
-
GetPatchBaselineResult.add_member(:approved_patches_enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApprovedPatchesEnableNonSecurity", metadata: {"box"=>true}))
|
2922
|
+
GetPatchBaselineResult.add_member(:approved_patches_enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApprovedPatchesEnableNonSecurity", metadata: {"box" => true}))
|
2793
2923
|
GetPatchBaselineResult.add_member(:rejected_patches, Shapes::ShapeRef.new(shape: PatchIdList, location_name: "RejectedPatches"))
|
2794
2924
|
GetPatchBaselineResult.add_member(:rejected_patches_action, Shapes::ShapeRef.new(shape: PatchAction, location_name: "RejectedPatchesAction"))
|
2795
2925
|
GetPatchBaselineResult.add_member(:patch_groups, Shapes::ShapeRef.new(shape: PatchGroupList, location_name: "PatchGroups"))
|
@@ -2797,6 +2927,7 @@ module Aws::SSM
|
|
2797
2927
|
GetPatchBaselineResult.add_member(:modified_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "ModifiedDate"))
|
2798
2928
|
GetPatchBaselineResult.add_member(:description, Shapes::ShapeRef.new(shape: BaselineDescription, location_name: "Description"))
|
2799
2929
|
GetPatchBaselineResult.add_member(:sources, Shapes::ShapeRef.new(shape: PatchSourceList, location_name: "Sources"))
|
2930
|
+
GetPatchBaselineResult.add_member(:available_security_updates_compliance_status, Shapes::ShapeRef.new(shape: PatchComplianceStatus, location_name: "AvailableSecurityUpdatesComplianceStatus"))
|
2800
2931
|
GetPatchBaselineResult.struct_class = Types::GetPatchBaselineResult
|
2801
2932
|
|
2802
2933
|
GetResourcePoliciesRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
|
@@ -2872,17 +3003,29 @@ module Aws::SSM
|
|
2872
3003
|
|
2873
3004
|
InstanceIdList.member = Shapes::ShapeRef.new(shape: InstanceId)
|
2874
3005
|
|
3006
|
+
InstanceInfo.add_member(:agent_type, Shapes::ShapeRef.new(shape: AgentType, location_name: "AgentType"))
|
3007
|
+
InstanceInfo.add_member(:agent_version, Shapes::ShapeRef.new(shape: AgentVersion, location_name: "AgentVersion"))
|
3008
|
+
InstanceInfo.add_member(:computer_name, Shapes::ShapeRef.new(shape: ComputerName, location_name: "ComputerName"))
|
3009
|
+
InstanceInfo.add_member(:instance_status, Shapes::ShapeRef.new(shape: InstanceStatus, location_name: "InstanceStatus"))
|
3010
|
+
InstanceInfo.add_member(:ip_address, Shapes::ShapeRef.new(shape: IpAddress, location_name: "IpAddress"))
|
3011
|
+
InstanceInfo.add_member(:managed_status, Shapes::ShapeRef.new(shape: ManagedStatus, location_name: "ManagedStatus"))
|
3012
|
+
InstanceInfo.add_member(:platform_type, Shapes::ShapeRef.new(shape: PlatformType, location_name: "PlatformType"))
|
3013
|
+
InstanceInfo.add_member(:platform_name, Shapes::ShapeRef.new(shape: PlatformName, location_name: "PlatformName"))
|
3014
|
+
InstanceInfo.add_member(:platform_version, Shapes::ShapeRef.new(shape: PlatformVersion, location_name: "PlatformVersion"))
|
3015
|
+
InstanceInfo.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
|
3016
|
+
InstanceInfo.struct_class = Types::InstanceInfo
|
3017
|
+
|
2875
3018
|
InstanceInformation.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
2876
3019
|
InstanceInformation.add_member(:ping_status, Shapes::ShapeRef.new(shape: PingStatus, location_name: "PingStatus"))
|
2877
|
-
InstanceInformation.add_member(:last_ping_date_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastPingDateTime", metadata: {"box"=>true}))
|
3020
|
+
InstanceInformation.add_member(:last_ping_date_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastPingDateTime", metadata: {"box" => true}))
|
2878
3021
|
InstanceInformation.add_member(:agent_version, Shapes::ShapeRef.new(shape: Version, location_name: "AgentVersion"))
|
2879
|
-
InstanceInformation.add_member(:is_latest_version, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsLatestVersion", metadata: {"box"=>true}))
|
3022
|
+
InstanceInformation.add_member(:is_latest_version, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsLatestVersion", metadata: {"box" => true}))
|
2880
3023
|
InstanceInformation.add_member(:platform_type, Shapes::ShapeRef.new(shape: PlatformType, location_name: "PlatformType"))
|
2881
3024
|
InstanceInformation.add_member(:platform_name, Shapes::ShapeRef.new(shape: String, location_name: "PlatformName"))
|
2882
3025
|
InstanceInformation.add_member(:platform_version, Shapes::ShapeRef.new(shape: String, location_name: "PlatformVersion"))
|
2883
3026
|
InstanceInformation.add_member(:activation_id, Shapes::ShapeRef.new(shape: ActivationId, location_name: "ActivationId"))
|
2884
3027
|
InstanceInformation.add_member(:iam_role, Shapes::ShapeRef.new(shape: IamRole, location_name: "IamRole"))
|
2885
|
-
InstanceInformation.add_member(:registration_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "RegistrationDate", metadata: {"box"=>true}))
|
3028
|
+
InstanceInformation.add_member(:registration_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "RegistrationDate", metadata: {"box" => true}))
|
2886
3029
|
InstanceInformation.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
|
2887
3030
|
InstanceInformation.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
2888
3031
|
InstanceInformation.add_member(:ip_address, Shapes::ShapeRef.new(shape: IPAddress, location_name: "IPAddress"))
|
@@ -2919,20 +3062,21 @@ module Aws::SSM
|
|
2919
3062
|
InstancePatchState.add_member(:owner_information, Shapes::ShapeRef.new(shape: OwnerInformation, location_name: "OwnerInformation"))
|
2920
3063
|
InstancePatchState.add_member(:installed_count, Shapes::ShapeRef.new(shape: PatchInstalledCount, location_name: "InstalledCount"))
|
2921
3064
|
InstancePatchState.add_member(:installed_other_count, Shapes::ShapeRef.new(shape: PatchInstalledOtherCount, location_name: "InstalledOtherCount"))
|
2922
|
-
InstancePatchState.add_member(:installed_pending_reboot_count, Shapes::ShapeRef.new(shape: PatchInstalledPendingRebootCount, location_name: "InstalledPendingRebootCount", metadata: {"box"=>true}))
|
2923
|
-
InstancePatchState.add_member(:installed_rejected_count, Shapes::ShapeRef.new(shape: PatchInstalledRejectedCount, location_name: "InstalledRejectedCount", metadata: {"box"=>true}))
|
3065
|
+
InstancePatchState.add_member(:installed_pending_reboot_count, Shapes::ShapeRef.new(shape: PatchInstalledPendingRebootCount, location_name: "InstalledPendingRebootCount", metadata: {"box" => true}))
|
3066
|
+
InstancePatchState.add_member(:installed_rejected_count, Shapes::ShapeRef.new(shape: PatchInstalledRejectedCount, location_name: "InstalledRejectedCount", metadata: {"box" => true}))
|
2924
3067
|
InstancePatchState.add_member(:missing_count, Shapes::ShapeRef.new(shape: PatchMissingCount, location_name: "MissingCount"))
|
2925
3068
|
InstancePatchState.add_member(:failed_count, Shapes::ShapeRef.new(shape: PatchFailedCount, location_name: "FailedCount"))
|
2926
|
-
InstancePatchState.add_member(:unreported_not_applicable_count, Shapes::ShapeRef.new(shape: PatchUnreportedNotApplicableCount, location_name: "UnreportedNotApplicableCount", metadata: {"box"=>true}))
|
3069
|
+
InstancePatchState.add_member(:unreported_not_applicable_count, Shapes::ShapeRef.new(shape: PatchUnreportedNotApplicableCount, location_name: "UnreportedNotApplicableCount", metadata: {"box" => true}))
|
2927
3070
|
InstancePatchState.add_member(:not_applicable_count, Shapes::ShapeRef.new(shape: PatchNotApplicableCount, location_name: "NotApplicableCount"))
|
3071
|
+
InstancePatchState.add_member(:available_security_update_count, Shapes::ShapeRef.new(shape: PatchAvailableSecurityUpdateCount, location_name: "AvailableSecurityUpdateCount", metadata: {"box" => true}))
|
2928
3072
|
InstancePatchState.add_member(:operation_start_time, Shapes::ShapeRef.new(shape: DateTime, required: true, location_name: "OperationStartTime"))
|
2929
3073
|
InstancePatchState.add_member(:operation_end_time, Shapes::ShapeRef.new(shape: DateTime, required: true, location_name: "OperationEndTime"))
|
2930
3074
|
InstancePatchState.add_member(:operation, Shapes::ShapeRef.new(shape: PatchOperationType, required: true, location_name: "Operation"))
|
2931
3075
|
InstancePatchState.add_member(:last_no_reboot_install_operation_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastNoRebootInstallOperationTime"))
|
2932
3076
|
InstancePatchState.add_member(:reboot_option, Shapes::ShapeRef.new(shape: RebootOption, location_name: "RebootOption"))
|
2933
|
-
InstancePatchState.add_member(:critical_non_compliant_count, Shapes::ShapeRef.new(shape: PatchCriticalNonCompliantCount, location_name: "CriticalNonCompliantCount", metadata: {"box"=>true}))
|
2934
|
-
InstancePatchState.add_member(:security_non_compliant_count, Shapes::ShapeRef.new(shape: PatchSecurityNonCompliantCount, location_name: "SecurityNonCompliantCount", metadata: {"box"=>true}))
|
2935
|
-
InstancePatchState.add_member(:other_non_compliant_count, Shapes::ShapeRef.new(shape: PatchOtherNonCompliantCount, location_name: "OtherNonCompliantCount", metadata: {"box"=>true}))
|
3077
|
+
InstancePatchState.add_member(:critical_non_compliant_count, Shapes::ShapeRef.new(shape: PatchCriticalNonCompliantCount, location_name: "CriticalNonCompliantCount", metadata: {"box" => true}))
|
3078
|
+
InstancePatchState.add_member(:security_non_compliant_count, Shapes::ShapeRef.new(shape: PatchSecurityNonCompliantCount, location_name: "SecurityNonCompliantCount", metadata: {"box" => true}))
|
3079
|
+
InstancePatchState.add_member(:other_non_compliant_count, Shapes::ShapeRef.new(shape: PatchOtherNonCompliantCount, location_name: "OtherNonCompliantCount", metadata: {"box" => true}))
|
2936
3080
|
InstancePatchState.struct_class = Types::InstancePatchState
|
2937
3081
|
|
2938
3082
|
InstancePatchStateFilter.add_member(:key, Shapes::ShapeRef.new(shape: InstancePatchStateFilterKey, required: true, location_name: "Key"))
|
@@ -3246,7 +3390,7 @@ module Aws::SSM
|
|
3246
3390
|
KeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
3247
3391
|
|
3248
3392
|
LabelParameterVersionRequest.add_member(:name, Shapes::ShapeRef.new(shape: PSParameterName, required: true, location_name: "Name"))
|
3249
|
-
LabelParameterVersionRequest.add_member(:parameter_version, Shapes::ShapeRef.new(shape: PSParameterVersion, location_name: "ParameterVersion", metadata: {"box"=>true}))
|
3393
|
+
LabelParameterVersionRequest.add_member(:parameter_version, Shapes::ShapeRef.new(shape: PSParameterVersion, location_name: "ParameterVersion", metadata: {"box" => true}))
|
3250
3394
|
LabelParameterVersionRequest.add_member(:labels, Shapes::ShapeRef.new(shape: ParameterLabelList, required: true, location_name: "Labels"))
|
3251
3395
|
LabelParameterVersionRequest.struct_class = Types::LabelParameterVersionRequest
|
3252
3396
|
|
@@ -3255,7 +3399,7 @@ module Aws::SSM
|
|
3255
3399
|
LabelParameterVersionResult.struct_class = Types::LabelParameterVersionResult
|
3256
3400
|
|
3257
3401
|
ListAssociationVersionsRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, required: true, location_name: "AssociationId"))
|
3258
|
-
ListAssociationVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3402
|
+
ListAssociationVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3259
3403
|
ListAssociationVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3260
3404
|
ListAssociationVersionsRequest.struct_class = Types::ListAssociationVersionsRequest
|
3261
3405
|
|
@@ -3264,7 +3408,7 @@ module Aws::SSM
|
|
3264
3408
|
ListAssociationVersionsResult.struct_class = Types::ListAssociationVersionsResult
|
3265
3409
|
|
3266
3410
|
ListAssociationsRequest.add_member(:association_filter_list, Shapes::ShapeRef.new(shape: AssociationFilterList, location_name: "AssociationFilterList"))
|
3267
|
-
ListAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3411
|
+
ListAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3268
3412
|
ListAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3269
3413
|
ListAssociationsRequest.struct_class = Types::ListAssociationsRequest
|
3270
3414
|
|
@@ -3274,7 +3418,7 @@ module Aws::SSM
|
|
3274
3418
|
|
3275
3419
|
ListCommandInvocationsRequest.add_member(:command_id, Shapes::ShapeRef.new(shape: CommandId, location_name: "CommandId"))
|
3276
3420
|
ListCommandInvocationsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
3277
|
-
ListCommandInvocationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CommandMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3421
|
+
ListCommandInvocationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CommandMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3278
3422
|
ListCommandInvocationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3279
3423
|
ListCommandInvocationsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: CommandFilterList, location_name: "Filters"))
|
3280
3424
|
ListCommandInvocationsRequest.add_member(:details, Shapes::ShapeRef.new(shape: Boolean, location_name: "Details"))
|
@@ -3286,7 +3430,7 @@ module Aws::SSM
|
|
3286
3430
|
|
3287
3431
|
ListCommandsRequest.add_member(:command_id, Shapes::ShapeRef.new(shape: CommandId, location_name: "CommandId"))
|
3288
3432
|
ListCommandsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
3289
|
-
ListCommandsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CommandMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3433
|
+
ListCommandsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CommandMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3290
3434
|
ListCommandsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3291
3435
|
ListCommandsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: CommandFilterList, location_name: "Filters"))
|
3292
3436
|
ListCommandsRequest.struct_class = Types::ListCommandsRequest
|
@@ -3299,7 +3443,7 @@ module Aws::SSM
|
|
3299
3443
|
ListComplianceItemsRequest.add_member(:resource_ids, Shapes::ShapeRef.new(shape: ComplianceResourceIdList, location_name: "ResourceIds"))
|
3300
3444
|
ListComplianceItemsRequest.add_member(:resource_types, Shapes::ShapeRef.new(shape: ComplianceResourceTypeList, location_name: "ResourceTypes"))
|
3301
3445
|
ListComplianceItemsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3302
|
-
ListComplianceItemsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3446
|
+
ListComplianceItemsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3303
3447
|
ListComplianceItemsRequest.struct_class = Types::ListComplianceItemsRequest
|
3304
3448
|
|
3305
3449
|
ListComplianceItemsResult.add_member(:compliance_items, Shapes::ShapeRef.new(shape: ComplianceItemList, location_name: "ComplianceItems"))
|
@@ -3308,7 +3452,7 @@ module Aws::SSM
|
|
3308
3452
|
|
3309
3453
|
ListComplianceSummariesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: ComplianceStringFilterList, location_name: "Filters"))
|
3310
3454
|
ListComplianceSummariesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3311
|
-
ListComplianceSummariesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3455
|
+
ListComplianceSummariesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3312
3456
|
ListComplianceSummariesRequest.struct_class = Types::ListComplianceSummariesRequest
|
3313
3457
|
|
3314
3458
|
ListComplianceSummariesResult.add_member(:compliance_summary_items, Shapes::ShapeRef.new(shape: ComplianceSummaryItemList, location_name: "ComplianceSummaryItems"))
|
@@ -3319,7 +3463,7 @@ module Aws::SSM
|
|
3319
3463
|
ListDocumentMetadataHistoryRequest.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion"))
|
3320
3464
|
ListDocumentMetadataHistoryRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: DocumentMetadataEnum, required: true, location_name: "Metadata"))
|
3321
3465
|
ListDocumentMetadataHistoryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3322
|
-
ListDocumentMetadataHistoryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3466
|
+
ListDocumentMetadataHistoryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3323
3467
|
ListDocumentMetadataHistoryRequest.struct_class = Types::ListDocumentMetadataHistoryRequest
|
3324
3468
|
|
3325
3469
|
ListDocumentMetadataHistoryResponse.add_member(:name, Shapes::ShapeRef.new(shape: DocumentName, location_name: "Name"))
|
@@ -3330,7 +3474,7 @@ module Aws::SSM
|
|
3330
3474
|
ListDocumentMetadataHistoryResponse.struct_class = Types::ListDocumentMetadataHistoryResponse
|
3331
3475
|
|
3332
3476
|
ListDocumentVersionsRequest.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, required: true, location_name: "Name"))
|
3333
|
-
ListDocumentVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3477
|
+
ListDocumentVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3334
3478
|
ListDocumentVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3335
3479
|
ListDocumentVersionsRequest.struct_class = Types::ListDocumentVersionsRequest
|
3336
3480
|
|
@@ -3340,7 +3484,7 @@ module Aws::SSM
|
|
3340
3484
|
|
3341
3485
|
ListDocumentsRequest.add_member(:document_filter_list, Shapes::ShapeRef.new(shape: DocumentFilterList, location_name: "DocumentFilterList"))
|
3342
3486
|
ListDocumentsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: DocumentKeyValuesFilterList, location_name: "Filters"))
|
3343
|
-
ListDocumentsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3487
|
+
ListDocumentsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3344
3488
|
ListDocumentsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3345
3489
|
ListDocumentsRequest.struct_class = Types::ListDocumentsRequest
|
3346
3490
|
|
@@ -3352,7 +3496,7 @@ module Aws::SSM
|
|
3352
3496
|
ListInventoryEntriesRequest.add_member(:type_name, Shapes::ShapeRef.new(shape: InventoryItemTypeName, required: true, location_name: "TypeName"))
|
3353
3497
|
ListInventoryEntriesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: InventoryFilterList, location_name: "Filters"))
|
3354
3498
|
ListInventoryEntriesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3355
|
-
ListInventoryEntriesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3499
|
+
ListInventoryEntriesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3356
3500
|
ListInventoryEntriesRequest.struct_class = Types::ListInventoryEntriesRequest
|
3357
3501
|
|
3358
3502
|
ListInventoryEntriesResult.add_member(:type_name, Shapes::ShapeRef.new(shape: InventoryItemTypeName, location_name: "TypeName"))
|
@@ -3363,6 +3507,27 @@ module Aws::SSM
|
|
3363
3507
|
ListInventoryEntriesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3364
3508
|
ListInventoryEntriesResult.struct_class = Types::ListInventoryEntriesResult
|
3365
3509
|
|
3510
|
+
ListNodesRequest.add_member(:sync_name, Shapes::ShapeRef.new(shape: ResourceDataSyncName, location_name: "SyncName"))
|
3511
|
+
ListNodesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: NodeFilterList, location_name: "Filters"))
|
3512
|
+
ListNodesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3513
|
+
ListNodesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3514
|
+
ListNodesRequest.struct_class = Types::ListNodesRequest
|
3515
|
+
|
3516
|
+
ListNodesResult.add_member(:nodes, Shapes::ShapeRef.new(shape: NodeList, location_name: "Nodes"))
|
3517
|
+
ListNodesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3518
|
+
ListNodesResult.struct_class = Types::ListNodesResult
|
3519
|
+
|
3520
|
+
ListNodesSummaryRequest.add_member(:sync_name, Shapes::ShapeRef.new(shape: ResourceDataSyncName, location_name: "SyncName"))
|
3521
|
+
ListNodesSummaryRequest.add_member(:filters, Shapes::ShapeRef.new(shape: NodeFilterList, location_name: "Filters"))
|
3522
|
+
ListNodesSummaryRequest.add_member(:aggregators, Shapes::ShapeRef.new(shape: NodeAggregatorList, required: true, location_name: "Aggregators"))
|
3523
|
+
ListNodesSummaryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3524
|
+
ListNodesSummaryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3525
|
+
ListNodesSummaryRequest.struct_class = Types::ListNodesSummaryRequest
|
3526
|
+
|
3527
|
+
ListNodesSummaryResult.add_member(:summary, Shapes::ShapeRef.new(shape: NodeSummaryList, location_name: "Summary"))
|
3528
|
+
ListNodesSummaryResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3529
|
+
ListNodesSummaryResult.struct_class = Types::ListNodesSummaryResult
|
3530
|
+
|
3366
3531
|
ListOpsItemEventsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: OpsItemEventFilters, location_name: "Filters"))
|
3367
3532
|
ListOpsItemEventsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: OpsItemEventMaxResults, location_name: "MaxResults"))
|
3368
3533
|
ListOpsItemEventsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
@@ -3383,7 +3548,7 @@ module Aws::SSM
|
|
3383
3548
|
ListOpsItemRelatedItemsResponse.struct_class = Types::ListOpsItemRelatedItemsResponse
|
3384
3549
|
|
3385
3550
|
ListOpsMetadataRequest.add_member(:filters, Shapes::ShapeRef.new(shape: OpsMetadataFilterList, location_name: "Filters"))
|
3386
|
-
ListOpsMetadataRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListOpsMetadataMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3551
|
+
ListOpsMetadataRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListOpsMetadataMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3387
3552
|
ListOpsMetadataRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3388
3553
|
ListOpsMetadataRequest.struct_class = Types::ListOpsMetadataRequest
|
3389
3554
|
|
@@ -3393,7 +3558,7 @@ module Aws::SSM
|
|
3393
3558
|
|
3394
3559
|
ListResourceComplianceSummariesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: ComplianceStringFilterList, location_name: "Filters"))
|
3395
3560
|
ListResourceComplianceSummariesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3396
|
-
ListResourceComplianceSummariesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3561
|
+
ListResourceComplianceSummariesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3397
3562
|
ListResourceComplianceSummariesRequest.struct_class = Types::ListResourceComplianceSummariesRequest
|
3398
3563
|
|
3399
3564
|
ListResourceComplianceSummariesResult.add_member(:resource_compliance_summary_items, Shapes::ShapeRef.new(shape: ResourceComplianceSummaryItemList, location_name: "ResourceComplianceSummaryItems"))
|
@@ -3402,7 +3567,7 @@ module Aws::SSM
|
|
3402
3567
|
|
3403
3568
|
ListResourceDataSyncRequest.add_member(:sync_type, Shapes::ShapeRef.new(shape: ResourceDataSyncType, location_name: "SyncType"))
|
3404
3569
|
ListResourceDataSyncRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3405
|
-
ListResourceDataSyncRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
3570
|
+
ListResourceDataSyncRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
3406
3571
|
ListResourceDataSyncRequest.struct_class = Types::ListResourceDataSyncRequest
|
3407
3572
|
|
3408
3573
|
ListResourceDataSyncResult.add_member(:resource_data_sync_items, Shapes::ShapeRef.new(shape: ResourceDataSyncItemList, location_name: "ResourceDataSyncItems"))
|
@@ -3483,7 +3648,7 @@ module Aws::SSM
|
|
3483
3648
|
MaintenanceWindowIdentity.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff"))
|
3484
3649
|
MaintenanceWindowIdentity.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, location_name: "Schedule"))
|
3485
3650
|
MaintenanceWindowIdentity.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
3486
|
-
MaintenanceWindowIdentity.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
3651
|
+
MaintenanceWindowIdentity.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box" => true}))
|
3487
3652
|
MaintenanceWindowIdentity.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
3488
3653
|
MaintenanceWindowIdentity.add_member(:start_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "StartDate"))
|
3489
3654
|
MaintenanceWindowIdentity.add_member(:next_execution_time, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "NextExecutionTime"))
|
@@ -3510,7 +3675,7 @@ module Aws::SSM
|
|
3510
3675
|
MaintenanceWindowRunCommandParameters.add_member(:output_s3_key_prefix, Shapes::ShapeRef.new(shape: S3KeyPrefix, location_name: "OutputS3KeyPrefix"))
|
3511
3676
|
MaintenanceWindowRunCommandParameters.add_member(:parameters, Shapes::ShapeRef.new(shape: Parameters, location_name: "Parameters"))
|
3512
3677
|
MaintenanceWindowRunCommandParameters.add_member(:service_role_arn, Shapes::ShapeRef.new(shape: ServiceRole, location_name: "ServiceRoleArn"))
|
3513
|
-
MaintenanceWindowRunCommandParameters.add_member(:timeout_seconds, Shapes::ShapeRef.new(shape: TimeoutSeconds, location_name: "TimeoutSeconds", metadata: {"box"=>true}))
|
3678
|
+
MaintenanceWindowRunCommandParameters.add_member(:timeout_seconds, Shapes::ShapeRef.new(shape: TimeoutSeconds, location_name: "TimeoutSeconds", metadata: {"box" => true}))
|
3514
3679
|
MaintenanceWindowRunCommandParameters.struct_class = Types::MaintenanceWindowRunCommandParameters
|
3515
3680
|
|
3516
3681
|
MaintenanceWindowStepFunctionsParameters.add_member(:input, Shapes::ShapeRef.new(shape: MaintenanceWindowStepFunctionsInput, location_name: "Input"))
|
@@ -3541,7 +3706,7 @@ module Aws::SSM
|
|
3541
3706
|
MaintenanceWindowTask.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
|
3542
3707
|
MaintenanceWindowTask.add_member(:name, Shapes::ShapeRef.new(shape: MaintenanceWindowName, location_name: "Name"))
|
3543
3708
|
MaintenanceWindowTask.add_member(:description, Shapes::ShapeRef.new(shape: MaintenanceWindowDescription, location_name: "Description"))
|
3544
|
-
MaintenanceWindowTask.add_member(:cutoff_behavior, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskCutoffBehavior, location_name: "CutoffBehavior", metadata: {"box"=>true}))
|
3709
|
+
MaintenanceWindowTask.add_member(:cutoff_behavior, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskCutoffBehavior, location_name: "CutoffBehavior", metadata: {"box" => true}))
|
3545
3710
|
MaintenanceWindowTask.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
3546
3711
|
MaintenanceWindowTask.struct_class = Types::MaintenanceWindowTask
|
3547
3712
|
|
@@ -3588,6 +3753,48 @@ module Aws::SSM
|
|
3588
3753
|
|
3589
3754
|
ModifyDocumentPermissionResponse.struct_class = Types::ModifyDocumentPermissionResponse
|
3590
3755
|
|
3756
|
+
Node.add_member(:capture_time, Shapes::ShapeRef.new(shape: NodeCaptureTime, location_name: "CaptureTime"))
|
3757
|
+
Node.add_member(:id, Shapes::ShapeRef.new(shape: NodeId, location_name: "Id"))
|
3758
|
+
Node.add_member(:owner, Shapes::ShapeRef.new(shape: NodeOwnerInfo, location_name: "Owner"))
|
3759
|
+
Node.add_member(:region, Shapes::ShapeRef.new(shape: NodeRegion, location_name: "Region"))
|
3760
|
+
Node.add_member(:node_type, Shapes::ShapeRef.new(shape: NodeType, location_name: "NodeType"))
|
3761
|
+
Node.struct_class = Types::Node
|
3762
|
+
|
3763
|
+
NodeAggregator.add_member(:aggregator_type, Shapes::ShapeRef.new(shape: NodeAggregatorType, required: true, location_name: "AggregatorType"))
|
3764
|
+
NodeAggregator.add_member(:type_name, Shapes::ShapeRef.new(shape: NodeTypeName, required: true, location_name: "TypeName"))
|
3765
|
+
NodeAggregator.add_member(:attribute_name, Shapes::ShapeRef.new(shape: NodeAttributeName, required: true, location_name: "AttributeName"))
|
3766
|
+
NodeAggregator.add_member(:aggregators, Shapes::ShapeRef.new(shape: NodeAggregatorList, location_name: "Aggregators"))
|
3767
|
+
NodeAggregator.struct_class = Types::NodeAggregator
|
3768
|
+
|
3769
|
+
NodeAggregatorList.member = Shapes::ShapeRef.new(shape: NodeAggregator)
|
3770
|
+
|
3771
|
+
NodeFilter.add_member(:key, Shapes::ShapeRef.new(shape: NodeFilterKey, required: true, location_name: "Key"))
|
3772
|
+
NodeFilter.add_member(:values, Shapes::ShapeRef.new(shape: NodeFilterValueList, required: true, location_name: "Values"))
|
3773
|
+
NodeFilter.add_member(:type, Shapes::ShapeRef.new(shape: NodeFilterOperatorType, location_name: "Type"))
|
3774
|
+
NodeFilter.struct_class = Types::NodeFilter
|
3775
|
+
|
3776
|
+
NodeFilterList.member = Shapes::ShapeRef.new(shape: NodeFilter)
|
3777
|
+
|
3778
|
+
NodeFilterValueList.member = Shapes::ShapeRef.new(shape: NodeFilterValue)
|
3779
|
+
|
3780
|
+
NodeList.member = Shapes::ShapeRef.new(shape: Node)
|
3781
|
+
|
3782
|
+
NodeOwnerInfo.add_member(:account_id, Shapes::ShapeRef.new(shape: NodeAccountId, location_name: "AccountId"))
|
3783
|
+
NodeOwnerInfo.add_member(:organizational_unit_id, Shapes::ShapeRef.new(shape: NodeOrganizationalUnitId, location_name: "OrganizationalUnitId"))
|
3784
|
+
NodeOwnerInfo.add_member(:organizational_unit_path, Shapes::ShapeRef.new(shape: NodeOrganizationalUnitPath, location_name: "OrganizationalUnitPath"))
|
3785
|
+
NodeOwnerInfo.struct_class = Types::NodeOwnerInfo
|
3786
|
+
|
3787
|
+
NodeSummary.key = Shapes::ShapeRef.new(shape: AttributeName)
|
3788
|
+
NodeSummary.value = Shapes::ShapeRef.new(shape: AttributeValue)
|
3789
|
+
|
3790
|
+
NodeSummaryList.member = Shapes::ShapeRef.new(shape: NodeSummary)
|
3791
|
+
|
3792
|
+
NodeType.add_member(:instance, Shapes::ShapeRef.new(shape: InstanceInfo, location_name: "Instance"))
|
3793
|
+
NodeType.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
3794
|
+
NodeType.add_member_subclass(:instance, Types::NodeType::Instance)
|
3795
|
+
NodeType.add_member_subclass(:unknown, Types::NodeType::Unknown)
|
3796
|
+
NodeType.struct_class = Types::NodeType
|
3797
|
+
|
3591
3798
|
NonCompliantSummary.add_member(:non_compliant_count, Shapes::ShapeRef.new(shape: ComplianceSummaryCount, location_name: "NonCompliantCount"))
|
3592
3799
|
NonCompliantSummary.add_member(:severity_summary, Shapes::ShapeRef.new(shape: SeveritySummary, location_name: "SeveritySummary"))
|
3593
3800
|
NonCompliantSummary.struct_class = Types::NonCompliantSummary
|
@@ -3935,7 +4142,7 @@ module Aws::SSM
|
|
3935
4142
|
ParentStepDetails.add_member(:step_execution_id, Shapes::ShapeRef.new(shape: String, location_name: "StepExecutionId"))
|
3936
4143
|
ParentStepDetails.add_member(:step_name, Shapes::ShapeRef.new(shape: String, location_name: "StepName"))
|
3937
4144
|
ParentStepDetails.add_member(:action, Shapes::ShapeRef.new(shape: AutomationActionName, location_name: "Action"))
|
3938
|
-
ParentStepDetails.add_member(:iteration, Shapes::ShapeRef.new(shape: Integer, location_name: "Iteration", metadata: {"box"=>true}))
|
4145
|
+
ParentStepDetails.add_member(:iteration, Shapes::ShapeRef.new(shape: Integer, location_name: "Iteration", metadata: {"box" => true}))
|
3939
4146
|
ParentStepDetails.add_member(:iterator_value, Shapes::ShapeRef.new(shape: String, location_name: "IteratorValue"))
|
3940
4147
|
ParentStepDetails.struct_class = Types::ParentStepDetails
|
3941
4148
|
|
@@ -4028,9 +4235,9 @@ module Aws::SSM
|
|
4028
4235
|
|
4029
4236
|
PatchRule.add_member(:patch_filter_group, Shapes::ShapeRef.new(shape: PatchFilterGroup, required: true, location_name: "PatchFilterGroup"))
|
4030
4237
|
PatchRule.add_member(:compliance_level, Shapes::ShapeRef.new(shape: PatchComplianceLevel, location_name: "ComplianceLevel"))
|
4031
|
-
PatchRule.add_member(:approve_after_days, Shapes::ShapeRef.new(shape: ApproveAfterDays, location_name: "ApproveAfterDays", metadata: {"box"=>true}))
|
4032
|
-
PatchRule.add_member(:approve_until_date, Shapes::ShapeRef.new(shape: PatchStringDateTime, location_name: "ApproveUntilDate", metadata: {"box"=>true}))
|
4033
|
-
PatchRule.add_member(:enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNonSecurity", metadata: {"box"=>true}))
|
4238
|
+
PatchRule.add_member(:approve_after_days, Shapes::ShapeRef.new(shape: ApproveAfterDays, location_name: "ApproveAfterDays", metadata: {"box" => true}))
|
4239
|
+
PatchRule.add_member(:approve_until_date, Shapes::ShapeRef.new(shape: PatchStringDateTime, location_name: "ApproveUntilDate", metadata: {"box" => true}))
|
4240
|
+
PatchRule.add_member(:enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNonSecurity", metadata: {"box" => true}))
|
4034
4241
|
PatchRule.struct_class = Types::PatchRule
|
4035
4242
|
|
4036
4243
|
PatchRuleGroup.add_member(:patch_rules, Shapes::ShapeRef.new(shape: PatchRuleList, required: true, location_name: "PatchRules"))
|
@@ -4070,7 +4277,7 @@ module Aws::SSM
|
|
4070
4277
|
PutComplianceItemsRequest.add_member(:execution_summary, Shapes::ShapeRef.new(shape: ComplianceExecutionSummary, required: true, location_name: "ExecutionSummary"))
|
4071
4278
|
PutComplianceItemsRequest.add_member(:items, Shapes::ShapeRef.new(shape: ComplianceItemEntryList, required: true, location_name: "Items"))
|
4072
4279
|
PutComplianceItemsRequest.add_member(:item_content_hash, Shapes::ShapeRef.new(shape: ComplianceItemContentHash, location_name: "ItemContentHash"))
|
4073
|
-
PutComplianceItemsRequest.add_member(:upload_type, Shapes::ShapeRef.new(shape: ComplianceUploadType, location_name: "UploadType", metadata: {"box"=>true}))
|
4280
|
+
PutComplianceItemsRequest.add_member(:upload_type, Shapes::ShapeRef.new(shape: ComplianceUploadType, location_name: "UploadType", metadata: {"box" => true}))
|
4074
4281
|
PutComplianceItemsRequest.struct_class = Types::PutComplianceItemsRequest
|
4075
4282
|
|
4076
4283
|
PutComplianceItemsResult.struct_class = Types::PutComplianceItemsResult
|
@@ -4087,7 +4294,7 @@ module Aws::SSM
|
|
4087
4294
|
PutParameterRequest.add_member(:value, Shapes::ShapeRef.new(shape: PSParameterValue, required: true, location_name: "Value"))
|
4088
4295
|
PutParameterRequest.add_member(:type, Shapes::ShapeRef.new(shape: ParameterType, location_name: "Type"))
|
4089
4296
|
PutParameterRequest.add_member(:key_id, Shapes::ShapeRef.new(shape: ParameterKeyId, location_name: "KeyId"))
|
4090
|
-
PutParameterRequest.add_member(:overwrite, Shapes::ShapeRef.new(shape: Boolean, location_name: "Overwrite", metadata: {"box"=>true}))
|
4297
|
+
PutParameterRequest.add_member(:overwrite, Shapes::ShapeRef.new(shape: Boolean, location_name: "Overwrite", metadata: {"box" => true}))
|
4091
4298
|
PutParameterRequest.add_member(:allowed_pattern, Shapes::ShapeRef.new(shape: AllowedPattern, location_name: "AllowedPattern"))
|
4092
4299
|
PutParameterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
4093
4300
|
PutParameterRequest.add_member(:tier, Shapes::ShapeRef.new(shape: ParameterTier, location_name: "Tier"))
|
@@ -4109,6 +4316,8 @@ module Aws::SSM
|
|
4109
4316
|
PutResourcePolicyResponse.add_member(:policy_hash, Shapes::ShapeRef.new(shape: PolicyHash, location_name: "PolicyHash"))
|
4110
4317
|
PutResourcePolicyResponse.struct_class = Types::PutResourcePolicyResponse
|
4111
4318
|
|
4319
|
+
RegionList.member = Shapes::ShapeRef.new(shape: Region)
|
4320
|
+
|
4112
4321
|
Regions.member = Shapes::ShapeRef.new(shape: Region)
|
4113
4322
|
|
4114
4323
|
RegisterDefaultPatchBaselineRequest.add_member(:baseline_id, Shapes::ShapeRef.new(shape: BaselineId, required: true, location_name: "BaselineId"))
|
@@ -4131,27 +4340,27 @@ module Aws::SSM
|
|
4131
4340
|
RegisterTargetWithMaintenanceWindowRequest.add_member(:owner_information, Shapes::ShapeRef.new(shape: OwnerInformation, location_name: "OwnerInformation"))
|
4132
4341
|
RegisterTargetWithMaintenanceWindowRequest.add_member(:name, Shapes::ShapeRef.new(shape: MaintenanceWindowName, location_name: "Name"))
|
4133
4342
|
RegisterTargetWithMaintenanceWindowRequest.add_member(:description, Shapes::ShapeRef.new(shape: MaintenanceWindowDescription, location_name: "Description"))
|
4134
|
-
RegisterTargetWithMaintenanceWindowRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
4343
|
+
RegisterTargetWithMaintenanceWindowRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
4135
4344
|
RegisterTargetWithMaintenanceWindowRequest.struct_class = Types::RegisterTargetWithMaintenanceWindowRequest
|
4136
4345
|
|
4137
4346
|
RegisterTargetWithMaintenanceWindowResult.add_member(:window_target_id, Shapes::ShapeRef.new(shape: MaintenanceWindowTargetId, location_name: "WindowTargetId"))
|
4138
4347
|
RegisterTargetWithMaintenanceWindowResult.struct_class = Types::RegisterTargetWithMaintenanceWindowResult
|
4139
4348
|
|
4140
4349
|
RegisterTaskWithMaintenanceWindowRequest.add_member(:window_id, Shapes::ShapeRef.new(shape: MaintenanceWindowId, required: true, location_name: "WindowId"))
|
4141
|
-
RegisterTaskWithMaintenanceWindowRequest.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets", metadata: {"box"=>true}))
|
4350
|
+
RegisterTaskWithMaintenanceWindowRequest.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets", metadata: {"box" => true}))
|
4142
4351
|
RegisterTaskWithMaintenanceWindowRequest.add_member(:task_arn, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskArn, required: true, location_name: "TaskArn"))
|
4143
4352
|
RegisterTaskWithMaintenanceWindowRequest.add_member(:service_role_arn, Shapes::ShapeRef.new(shape: ServiceRole, location_name: "ServiceRoleArn"))
|
4144
4353
|
RegisterTaskWithMaintenanceWindowRequest.add_member(:task_type, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskType, required: true, location_name: "TaskType"))
|
4145
4354
|
RegisterTaskWithMaintenanceWindowRequest.add_member(:task_parameters, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskParameters, location_name: "TaskParameters"))
|
4146
4355
|
RegisterTaskWithMaintenanceWindowRequest.add_member(:task_invocation_parameters, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskInvocationParameters, location_name: "TaskInvocationParameters"))
|
4147
|
-
RegisterTaskWithMaintenanceWindowRequest.add_member(:priority, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskPriority, location_name: "Priority", metadata: {"box"=>true}))
|
4148
|
-
RegisterTaskWithMaintenanceWindowRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency", metadata: {"box"=>true}))
|
4149
|
-
RegisterTaskWithMaintenanceWindowRequest.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors", metadata: {"box"=>true}))
|
4356
|
+
RegisterTaskWithMaintenanceWindowRequest.add_member(:priority, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskPriority, location_name: "Priority", metadata: {"box" => true}))
|
4357
|
+
RegisterTaskWithMaintenanceWindowRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency", metadata: {"box" => true}))
|
4358
|
+
RegisterTaskWithMaintenanceWindowRequest.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors", metadata: {"box" => true}))
|
4150
4359
|
RegisterTaskWithMaintenanceWindowRequest.add_member(:logging_info, Shapes::ShapeRef.new(shape: LoggingInfo, location_name: "LoggingInfo"))
|
4151
4360
|
RegisterTaskWithMaintenanceWindowRequest.add_member(:name, Shapes::ShapeRef.new(shape: MaintenanceWindowName, location_name: "Name"))
|
4152
4361
|
RegisterTaskWithMaintenanceWindowRequest.add_member(:description, Shapes::ShapeRef.new(shape: MaintenanceWindowDescription, location_name: "Description"))
|
4153
|
-
RegisterTaskWithMaintenanceWindowRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
4154
|
-
RegisterTaskWithMaintenanceWindowRequest.add_member(:cutoff_behavior, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskCutoffBehavior, location_name: "CutoffBehavior", metadata: {"box"=>true}))
|
4362
|
+
RegisterTaskWithMaintenanceWindowRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
4363
|
+
RegisterTaskWithMaintenanceWindowRequest.add_member(:cutoff_behavior, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskCutoffBehavior, location_name: "CutoffBehavior", metadata: {"box" => true}))
|
4155
4364
|
RegisterTaskWithMaintenanceWindowRequest.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
4156
4365
|
RegisterTaskWithMaintenanceWindowRequest.struct_class = Types::RegisterTaskWithMaintenanceWindowRequest
|
4157
4366
|
|
@@ -4313,14 +4522,14 @@ module Aws::SSM
|
|
4313
4522
|
ReviewInformationList.member = Shapes::ShapeRef.new(shape: ReviewInformation)
|
4314
4523
|
|
4315
4524
|
Runbook.add_member(:document_name, Shapes::ShapeRef.new(shape: DocumentARN, required: true, location_name: "DocumentName"))
|
4316
|
-
Runbook.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion", metadata: {"box"=>true}))
|
4525
|
+
Runbook.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion", metadata: {"box" => true}))
|
4317
4526
|
Runbook.add_member(:parameters, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "Parameters"))
|
4318
4527
|
Runbook.add_member(:target_parameter_name, Shapes::ShapeRef.new(shape: AutomationParameterKey, location_name: "TargetParameterName"))
|
4319
4528
|
Runbook.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets"))
|
4320
4529
|
Runbook.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps"))
|
4321
4530
|
Runbook.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
4322
4531
|
Runbook.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
|
4323
|
-
Runbook.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations", metadata: {"box"=>true}))
|
4532
|
+
Runbook.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations", metadata: {"box" => true}))
|
4324
4533
|
Runbook.struct_class = Types::Runbook
|
4325
4534
|
|
4326
4535
|
Runbooks.member = Shapes::ShapeRef.new(shape: Runbook)
|
@@ -4353,7 +4562,7 @@ module Aws::SSM
|
|
4353
4562
|
SendCommandRequest.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion"))
|
4354
4563
|
SendCommandRequest.add_member(:document_hash, Shapes::ShapeRef.new(shape: DocumentHash, location_name: "DocumentHash"))
|
4355
4564
|
SendCommandRequest.add_member(:document_hash_type, Shapes::ShapeRef.new(shape: DocumentHashType, location_name: "DocumentHashType"))
|
4356
|
-
SendCommandRequest.add_member(:timeout_seconds, Shapes::ShapeRef.new(shape: TimeoutSeconds, location_name: "TimeoutSeconds", metadata: {"box"=>true}))
|
4565
|
+
SendCommandRequest.add_member(:timeout_seconds, Shapes::ShapeRef.new(shape: TimeoutSeconds, location_name: "TimeoutSeconds", metadata: {"box" => true}))
|
4357
4566
|
SendCommandRequest.add_member(:comment, Shapes::ShapeRef.new(shape: Comment, location_name: "Comment"))
|
4358
4567
|
SendCommandRequest.add_member(:parameters, Shapes::ShapeRef.new(shape: Parameters, location_name: "Parameters"))
|
4359
4568
|
SendCommandRequest.add_member(:output_s3_region, Shapes::ShapeRef.new(shape: S3Region, location_name: "OutputS3Region"))
|
@@ -4370,6 +4579,13 @@ module Aws::SSM
|
|
4370
4579
|
SendCommandResult.add_member(:command, Shapes::ShapeRef.new(shape: Command, location_name: "Command"))
|
4371
4580
|
SendCommandResult.struct_class = Types::SendCommandResult
|
4372
4581
|
|
4582
|
+
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
4583
|
+
ServiceQuotaExceededException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
|
4584
|
+
ServiceQuotaExceededException.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "ResourceType"))
|
4585
|
+
ServiceQuotaExceededException.add_member(:quota_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "QuotaCode"))
|
4586
|
+
ServiceQuotaExceededException.add_member(:service_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ServiceCode"))
|
4587
|
+
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
4588
|
+
|
4373
4589
|
ServiceSetting.add_member(:setting_id, Shapes::ShapeRef.new(shape: ServiceSettingId, location_name: "SettingId"))
|
4374
4590
|
ServiceSetting.add_member(:setting_value, Shapes::ShapeRef.new(shape: ServiceSettingValue, location_name: "SettingValue"))
|
4375
4591
|
ServiceSetting.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastModifiedDate"))
|
@@ -4392,6 +4608,7 @@ module Aws::SSM
|
|
4392
4608
|
Session.add_member(:details, Shapes::ShapeRef.new(shape: SessionDetails, location_name: "Details"))
|
4393
4609
|
Session.add_member(:output_url, Shapes::ShapeRef.new(shape: SessionManagerOutputUrl, location_name: "OutputUrl"))
|
4394
4610
|
Session.add_member(:max_session_duration, Shapes::ShapeRef.new(shape: MaxSessionDuration, location_name: "MaxSessionDuration"))
|
4611
|
+
Session.add_member(:access_type, Shapes::ShapeRef.new(shape: AccessType, location_name: "AccessType"))
|
4395
4612
|
Session.struct_class = Types::Session
|
4396
4613
|
|
4397
4614
|
SessionFilter.add_member(:key, Shapes::ShapeRef.new(shape: SessionFilterKey, required: true, location_name: "key"))
|
@@ -4419,13 +4636,21 @@ module Aws::SSM
|
|
4419
4636
|
SeveritySummary.add_member(:unspecified_count, Shapes::ShapeRef.new(shape: ComplianceSummaryCount, location_name: "UnspecifiedCount"))
|
4420
4637
|
SeveritySummary.struct_class = Types::SeveritySummary
|
4421
4638
|
|
4639
|
+
StartAccessRequestRequest.add_member(:reason, Shapes::ShapeRef.new(shape: String1to256, required: true, location_name: "Reason"))
|
4640
|
+
StartAccessRequestRequest.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, required: true, location_name: "Targets"))
|
4641
|
+
StartAccessRequestRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
4642
|
+
StartAccessRequestRequest.struct_class = Types::StartAccessRequestRequest
|
4643
|
+
|
4644
|
+
StartAccessRequestResponse.add_member(:access_request_id, Shapes::ShapeRef.new(shape: AccessRequestId, location_name: "AccessRequestId"))
|
4645
|
+
StartAccessRequestResponse.struct_class = Types::StartAccessRequestResponse
|
4646
|
+
|
4422
4647
|
StartAssociationsOnceRequest.add_member(:association_ids, Shapes::ShapeRef.new(shape: AssociationIdList, required: true, location_name: "AssociationIds"))
|
4423
4648
|
StartAssociationsOnceRequest.struct_class = Types::StartAssociationsOnceRequest
|
4424
4649
|
|
4425
4650
|
StartAssociationsOnceResult.struct_class = Types::StartAssociationsOnceResult
|
4426
4651
|
|
4427
4652
|
StartAutomationExecutionRequest.add_member(:document_name, Shapes::ShapeRef.new(shape: DocumentARN, required: true, location_name: "DocumentName"))
|
4428
|
-
StartAutomationExecutionRequest.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion", metadata: {"box"=>true}))
|
4653
|
+
StartAutomationExecutionRequest.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion", metadata: {"box" => true}))
|
4429
4654
|
StartAutomationExecutionRequest.add_member(:parameters, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "Parameters"))
|
4430
4655
|
StartAutomationExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken"))
|
4431
4656
|
StartAutomationExecutionRequest.add_member(:mode, Shapes::ShapeRef.new(shape: ExecutionMode, location_name: "Mode"))
|
@@ -4434,9 +4659,10 @@ module Aws::SSM
|
|
4434
4659
|
StartAutomationExecutionRequest.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps"))
|
4435
4660
|
StartAutomationExecutionRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
4436
4661
|
StartAutomationExecutionRequest.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
|
4437
|
-
StartAutomationExecutionRequest.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations", metadata: {"box"=>true}))
|
4662
|
+
StartAutomationExecutionRequest.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations", metadata: {"box" => true}))
|
4438
4663
|
StartAutomationExecutionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
4439
4664
|
StartAutomationExecutionRequest.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
4665
|
+
StartAutomationExecutionRequest.add_member(:target_locations_url, Shapes::ShapeRef.new(shape: TargetLocationsURL, location_name: "TargetLocationsURL"))
|
4440
4666
|
StartAutomationExecutionRequest.struct_class = Types::StartAutomationExecutionRequest
|
4441
4667
|
|
4442
4668
|
StartAutomationExecutionResult.add_member(:automation_execution_id, Shapes::ShapeRef.new(shape: AutomationExecutionId, location_name: "AutomationExecutionId"))
|
@@ -4444,7 +4670,7 @@ module Aws::SSM
|
|
4444
4670
|
|
4445
4671
|
StartChangeRequestExecutionRequest.add_member(:scheduled_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "ScheduledTime"))
|
4446
4672
|
StartChangeRequestExecutionRequest.add_member(:document_name, Shapes::ShapeRef.new(shape: DocumentARN, required: true, location_name: "DocumentName"))
|
4447
|
-
StartChangeRequestExecutionRequest.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion", metadata: {"box"=>true}))
|
4673
|
+
StartChangeRequestExecutionRequest.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion", metadata: {"box" => true}))
|
4448
4674
|
StartChangeRequestExecutionRequest.add_member(:parameters, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "Parameters"))
|
4449
4675
|
StartChangeRequestExecutionRequest.add_member(:change_request_name, Shapes::ShapeRef.new(shape: ChangeRequestName, location_name: "ChangeRequestName"))
|
4450
4676
|
StartChangeRequestExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken"))
|
@@ -4458,6 +4684,14 @@ module Aws::SSM
|
|
4458
4684
|
StartChangeRequestExecutionResult.add_member(:automation_execution_id, Shapes::ShapeRef.new(shape: AutomationExecutionId, location_name: "AutomationExecutionId"))
|
4459
4685
|
StartChangeRequestExecutionResult.struct_class = Types::StartChangeRequestExecutionResult
|
4460
4686
|
|
4687
|
+
StartExecutionPreviewRequest.add_member(:document_name, Shapes::ShapeRef.new(shape: DocumentName, required: true, location_name: "DocumentName"))
|
4688
|
+
StartExecutionPreviewRequest.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion"))
|
4689
|
+
StartExecutionPreviewRequest.add_member(:execution_inputs, Shapes::ShapeRef.new(shape: ExecutionInputs, location_name: "ExecutionInputs"))
|
4690
|
+
StartExecutionPreviewRequest.struct_class = Types::StartExecutionPreviewRequest
|
4691
|
+
|
4692
|
+
StartExecutionPreviewResponse.add_member(:execution_preview_id, Shapes::ShapeRef.new(shape: ExecutionPreviewId, location_name: "ExecutionPreviewId"))
|
4693
|
+
StartExecutionPreviewResponse.struct_class = Types::StartExecutionPreviewResponse
|
4694
|
+
|
4461
4695
|
StartSessionRequest.add_member(:target, Shapes::ShapeRef.new(shape: SessionTarget, required: true, location_name: "Target"))
|
4462
4696
|
StartSessionRequest.add_member(:document_name, Shapes::ShapeRef.new(shape: DocumentARN, location_name: "DocumentName"))
|
4463
4697
|
StartSessionRequest.add_member(:reason, Shapes::ShapeRef.new(shape: SessionReason, location_name: "Reason"))
|
@@ -4473,9 +4707,9 @@ module Aws::SSM
|
|
4473
4707
|
|
4474
4708
|
StepExecution.add_member(:step_name, Shapes::ShapeRef.new(shape: String, location_name: "StepName"))
|
4475
4709
|
StepExecution.add_member(:action, Shapes::ShapeRef.new(shape: AutomationActionName, location_name: "Action"))
|
4476
|
-
StepExecution.add_member(:timeout_seconds, Shapes::ShapeRef.new(shape: Long, location_name: "TimeoutSeconds", metadata: {"box"=>true}))
|
4710
|
+
StepExecution.add_member(:timeout_seconds, Shapes::ShapeRef.new(shape: Long, location_name: "TimeoutSeconds", metadata: {"box" => true}))
|
4477
4711
|
StepExecution.add_member(:on_failure, Shapes::ShapeRef.new(shape: String, location_name: "OnFailure"))
|
4478
|
-
StepExecution.add_member(:max_attempts, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxAttempts", metadata: {"box"=>true}))
|
4712
|
+
StepExecution.add_member(:max_attempts, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxAttempts", metadata: {"box" => true}))
|
4479
4713
|
StepExecution.add_member(:execution_start_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "ExecutionStartTime"))
|
4480
4714
|
StepExecution.add_member(:execution_end_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "ExecutionEndTime"))
|
4481
4715
|
StepExecution.add_member(:step_status, Shapes::ShapeRef.new(shape: AutomationExecutionStatus, location_name: "StepStatus"))
|
@@ -4487,12 +4721,12 @@ module Aws::SSM
|
|
4487
4721
|
StepExecution.add_member(:failure_details, Shapes::ShapeRef.new(shape: FailureDetails, location_name: "FailureDetails"))
|
4488
4722
|
StepExecution.add_member(:step_execution_id, Shapes::ShapeRef.new(shape: String, location_name: "StepExecutionId"))
|
4489
4723
|
StepExecution.add_member(:overridden_parameters, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "OverriddenParameters"))
|
4490
|
-
StepExecution.add_member(:is_end, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsEnd", metadata: {"box"=>true}))
|
4491
|
-
StepExecution.add_member(:next_step, Shapes::ShapeRef.new(shape: String, location_name: "NextStep", metadata: {"box"=>true}))
|
4492
|
-
StepExecution.add_member(:is_critical, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsCritical", metadata: {"box"=>true}))
|
4724
|
+
StepExecution.add_member(:is_end, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsEnd", metadata: {"box" => true}))
|
4725
|
+
StepExecution.add_member(:next_step, Shapes::ShapeRef.new(shape: String, location_name: "NextStep", metadata: {"box" => true}))
|
4726
|
+
StepExecution.add_member(:is_critical, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsCritical", metadata: {"box" => true}))
|
4493
4727
|
StepExecution.add_member(:valid_next_steps, Shapes::ShapeRef.new(shape: ValidNextStepList, location_name: "ValidNextSteps"))
|
4494
|
-
StepExecution.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets", metadata: {"box"=>true}))
|
4495
|
-
StepExecution.add_member(:target_location, Shapes::ShapeRef.new(shape: TargetLocation, location_name: "TargetLocation", metadata: {"box"=>true}))
|
4728
|
+
StepExecution.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets", metadata: {"box" => true}))
|
4729
|
+
StepExecution.add_member(:target_location, Shapes::ShapeRef.new(shape: TargetLocation, location_name: "TargetLocation", metadata: {"box" => true}))
|
4496
4730
|
StepExecution.add_member(:triggered_alarms, Shapes::ShapeRef.new(shape: AlarmStateInformationList, location_name: "TriggeredAlarms"))
|
4497
4731
|
StepExecution.add_member(:parent_step_details, Shapes::ShapeRef.new(shape: ParentStepDetails, location_name: "ParentStepDetails"))
|
4498
4732
|
StepExecution.struct_class = Types::StepExecution
|
@@ -4507,6 +4741,9 @@ module Aws::SSM
|
|
4507
4741
|
|
4508
4742
|
StepExecutionList.member = Shapes::ShapeRef.new(shape: StepExecution)
|
4509
4743
|
|
4744
|
+
StepPreviewMap.key = Shapes::ShapeRef.new(shape: ImpactType)
|
4745
|
+
StepPreviewMap.value = Shapes::ShapeRef.new(shape: Integer)
|
4746
|
+
|
4510
4747
|
StopAutomationExecutionRequest.add_member(:automation_execution_id, Shapes::ShapeRef.new(shape: AutomationExecutionId, required: true, location_name: "AutomationExecutionId"))
|
4511
4748
|
StopAutomationExecutionRequest.add_member(:type, Shapes::ShapeRef.new(shape: StopType, location_name: "Type"))
|
4512
4749
|
StopAutomationExecutionRequest.struct_class = Types::StopAutomationExecutionRequest
|
@@ -4533,10 +4770,15 @@ module Aws::SSM
|
|
4533
4770
|
|
4534
4771
|
TargetLocation.add_member(:accounts, Shapes::ShapeRef.new(shape: Accounts, location_name: "Accounts"))
|
4535
4772
|
TargetLocation.add_member(:regions, Shapes::ShapeRef.new(shape: Regions, location_name: "Regions"))
|
4536
|
-
TargetLocation.add_member(:target_location_max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "TargetLocationMaxConcurrency", metadata: {"box"=>true}))
|
4537
|
-
TargetLocation.add_member(:target_location_max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "TargetLocationMaxErrors", metadata: {"box"=>true}))
|
4538
|
-
TargetLocation.add_member(:execution_role_name, Shapes::ShapeRef.new(shape: ExecutionRoleName, location_name: "ExecutionRoleName", metadata: {"box"=>true}))
|
4539
|
-
TargetLocation.add_member(:target_location_alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "TargetLocationAlarmConfiguration", metadata: {"box"=>true}))
|
4773
|
+
TargetLocation.add_member(:target_location_max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "TargetLocationMaxConcurrency", metadata: {"box" => true}))
|
4774
|
+
TargetLocation.add_member(:target_location_max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "TargetLocationMaxErrors", metadata: {"box" => true}))
|
4775
|
+
TargetLocation.add_member(:execution_role_name, Shapes::ShapeRef.new(shape: ExecutionRoleName, location_name: "ExecutionRoleName", metadata: {"box" => true}))
|
4776
|
+
TargetLocation.add_member(:target_location_alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "TargetLocationAlarmConfiguration", metadata: {"box" => true}))
|
4777
|
+
TargetLocation.add_member(:include_child_organization_units, Shapes::ShapeRef.new(shape: Boolean, location_name: "IncludeChildOrganizationUnits"))
|
4778
|
+
TargetLocation.add_member(:exclude_accounts, Shapes::ShapeRef.new(shape: ExcludeAccounts, location_name: "ExcludeAccounts"))
|
4779
|
+
TargetLocation.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets"))
|
4780
|
+
TargetLocation.add_member(:targets_max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "TargetsMaxConcurrency"))
|
4781
|
+
TargetLocation.add_member(:targets_max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "TargetsMaxErrors"))
|
4540
4782
|
TargetLocation.struct_class = Types::TargetLocation
|
4541
4783
|
|
4542
4784
|
TargetLocations.member = Shapes::ShapeRef.new(shape: TargetLocation)
|
@@ -4553,6 +4795,12 @@ module Aws::SSM
|
|
4553
4795
|
|
4554
4796
|
TargetParameterList.member = Shapes::ShapeRef.new(shape: ParameterValue)
|
4555
4797
|
|
4798
|
+
TargetPreview.add_member(:count, Shapes::ShapeRef.new(shape: Integer, location_name: "Count"))
|
4799
|
+
TargetPreview.add_member(:target_type, Shapes::ShapeRef.new(shape: String, location_name: "TargetType"))
|
4800
|
+
TargetPreview.struct_class = Types::TargetPreview
|
4801
|
+
|
4802
|
+
TargetPreviewList.member = Shapes::ShapeRef.new(shape: TargetPreview)
|
4803
|
+
|
4556
4804
|
TargetValues.member = Shapes::ShapeRef.new(shape: TargetValue)
|
4557
4805
|
|
4558
4806
|
Targets.member = Shapes::ShapeRef.new(shape: Target)
|
@@ -4563,6 +4811,11 @@ module Aws::SSM
|
|
4563
4811
|
TerminateSessionResponse.add_member(:session_id, Shapes::ShapeRef.new(shape: SessionId, location_name: "SessionId"))
|
4564
4812
|
TerminateSessionResponse.struct_class = Types::TerminateSessionResponse
|
4565
4813
|
|
4814
|
+
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
4815
|
+
ThrottlingException.add_member(:quota_code, Shapes::ShapeRef.new(shape: String, location_name: "QuotaCode"))
|
4816
|
+
ThrottlingException.add_member(:service_code, Shapes::ShapeRef.new(shape: String, location_name: "ServiceCode"))
|
4817
|
+
ThrottlingException.struct_class = Types::ThrottlingException
|
4818
|
+
|
4566
4819
|
TooManyTagsError.struct_class = Types::TooManyTagsError
|
4567
4820
|
|
4568
4821
|
TooManyUpdates.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -4572,7 +4825,7 @@ module Aws::SSM
|
|
4572
4825
|
TotalSizeLimitExceededException.struct_class = Types::TotalSizeLimitExceededException
|
4573
4826
|
|
4574
4827
|
UnlabelParameterVersionRequest.add_member(:name, Shapes::ShapeRef.new(shape: PSParameterName, required: true, location_name: "Name"))
|
4575
|
-
UnlabelParameterVersionRequest.add_member(:parameter_version, Shapes::ShapeRef.new(shape: PSParameterVersion, required: true, location_name: "ParameterVersion", metadata: {"box"=>true}))
|
4828
|
+
UnlabelParameterVersionRequest.add_member(:parameter_version, Shapes::ShapeRef.new(shape: PSParameterVersion, required: true, location_name: "ParameterVersion", metadata: {"box" => true}))
|
4576
4829
|
UnlabelParameterVersionRequest.add_member(:labels, Shapes::ShapeRef.new(shape: ParameterLabelList, required: true, location_name: "Labels"))
|
4577
4830
|
UnlabelParameterVersionRequest.struct_class = Types::UnlabelParameterVersionRequest
|
4578
4831
|
|
@@ -4596,6 +4849,9 @@ module Aws::SSM
|
|
4596
4849
|
UnsupportedOperatingSystem.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
4597
4850
|
UnsupportedOperatingSystem.struct_class = Types::UnsupportedOperatingSystem
|
4598
4851
|
|
4852
|
+
UnsupportedOperationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
4853
|
+
UnsupportedOperationException.struct_class = Types::UnsupportedOperationException
|
4854
|
+
|
4599
4855
|
UnsupportedParameterType.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
4600
4856
|
UnsupportedParameterType.struct_class = Types::UnsupportedParameterType
|
4601
4857
|
|
@@ -4619,9 +4875,9 @@ module Aws::SSM
|
|
4619
4875
|
UpdateAssociationRequest.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
4620
4876
|
UpdateAssociationRequest.add_member(:calendar_names, Shapes::ShapeRef.new(shape: CalendarNameOrARNList, location_name: "CalendarNames"))
|
4621
4877
|
UpdateAssociationRequest.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations"))
|
4622
|
-
UpdateAssociationRequest.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
4623
|
-
UpdateAssociationRequest.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box"=>true}))
|
4624
|
-
UpdateAssociationRequest.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box"=>true}))
|
4878
|
+
UpdateAssociationRequest.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: ScheduleOffset, location_name: "ScheduleOffset", metadata: {"box" => true}))
|
4879
|
+
UpdateAssociationRequest.add_member(:duration, Shapes::ShapeRef.new(shape: Duration, location_name: "Duration", metadata: {"box" => true}))
|
4880
|
+
UpdateAssociationRequest.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps", metadata: {"box" => true}))
|
4625
4881
|
UpdateAssociationRequest.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
4626
4882
|
UpdateAssociationRequest.struct_class = Types::UpdateAssociationRequest
|
4627
4883
|
|
@@ -4670,12 +4926,12 @@ module Aws::SSM
|
|
4670
4926
|
UpdateMaintenanceWindowRequest.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
4671
4927
|
UpdateMaintenanceWindowRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, location_name: "Schedule"))
|
4672
4928
|
UpdateMaintenanceWindowRequest.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
4673
|
-
UpdateMaintenanceWindowRequest.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
4674
|
-
UpdateMaintenanceWindowRequest.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, location_name: "Duration", metadata: {"box"=>true}))
|
4675
|
-
UpdateMaintenanceWindowRequest.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff", metadata: {"box"=>true}))
|
4676
|
-
UpdateMaintenanceWindowRequest.add_member(:allow_unassociated_targets, Shapes::ShapeRef.new(shape: MaintenanceWindowAllowUnassociatedTargets, location_name: "AllowUnassociatedTargets", metadata: {"box"=>true}))
|
4677
|
-
UpdateMaintenanceWindowRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: MaintenanceWindowEnabled, location_name: "Enabled", metadata: {"box"=>true}))
|
4678
|
-
UpdateMaintenanceWindowRequest.add_member(:replace, Shapes::ShapeRef.new(shape: Boolean, location_name: "Replace", metadata: {"box"=>true}))
|
4929
|
+
UpdateMaintenanceWindowRequest.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box" => true}))
|
4930
|
+
UpdateMaintenanceWindowRequest.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, location_name: "Duration", metadata: {"box" => true}))
|
4931
|
+
UpdateMaintenanceWindowRequest.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff", metadata: {"box" => true}))
|
4932
|
+
UpdateMaintenanceWindowRequest.add_member(:allow_unassociated_targets, Shapes::ShapeRef.new(shape: MaintenanceWindowAllowUnassociatedTargets, location_name: "AllowUnassociatedTargets", metadata: {"box" => true}))
|
4933
|
+
UpdateMaintenanceWindowRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: MaintenanceWindowEnabled, location_name: "Enabled", metadata: {"box" => true}))
|
4934
|
+
UpdateMaintenanceWindowRequest.add_member(:replace, Shapes::ShapeRef.new(shape: Boolean, location_name: "Replace", metadata: {"box" => true}))
|
4679
4935
|
UpdateMaintenanceWindowRequest.struct_class = Types::UpdateMaintenanceWindowRequest
|
4680
4936
|
|
4681
4937
|
UpdateMaintenanceWindowResult.add_member(:window_id, Shapes::ShapeRef.new(shape: MaintenanceWindowId, location_name: "WindowId"))
|
@@ -4685,7 +4941,7 @@ module Aws::SSM
|
|
4685
4941
|
UpdateMaintenanceWindowResult.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
4686
4942
|
UpdateMaintenanceWindowResult.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, location_name: "Schedule"))
|
4687
4943
|
UpdateMaintenanceWindowResult.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
4688
|
-
UpdateMaintenanceWindowResult.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
4944
|
+
UpdateMaintenanceWindowResult.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box" => true}))
|
4689
4945
|
UpdateMaintenanceWindowResult.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, location_name: "Duration"))
|
4690
4946
|
UpdateMaintenanceWindowResult.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff"))
|
4691
4947
|
UpdateMaintenanceWindowResult.add_member(:allow_unassociated_targets, Shapes::ShapeRef.new(shape: MaintenanceWindowAllowUnassociatedTargets, location_name: "AllowUnassociatedTargets"))
|
@@ -4698,7 +4954,7 @@ module Aws::SSM
|
|
4698
4954
|
UpdateMaintenanceWindowTargetRequest.add_member(:owner_information, Shapes::ShapeRef.new(shape: OwnerInformation, location_name: "OwnerInformation"))
|
4699
4955
|
UpdateMaintenanceWindowTargetRequest.add_member(:name, Shapes::ShapeRef.new(shape: MaintenanceWindowName, location_name: "Name"))
|
4700
4956
|
UpdateMaintenanceWindowTargetRequest.add_member(:description, Shapes::ShapeRef.new(shape: MaintenanceWindowDescription, location_name: "Description"))
|
4701
|
-
UpdateMaintenanceWindowTargetRequest.add_member(:replace, Shapes::ShapeRef.new(shape: Boolean, location_name: "Replace", metadata: {"box"=>true}))
|
4957
|
+
UpdateMaintenanceWindowTargetRequest.add_member(:replace, Shapes::ShapeRef.new(shape: Boolean, location_name: "Replace", metadata: {"box" => true}))
|
4702
4958
|
UpdateMaintenanceWindowTargetRequest.struct_class = Types::UpdateMaintenanceWindowTargetRequest
|
4703
4959
|
|
4704
4960
|
UpdateMaintenanceWindowTargetResult.add_member(:window_id, Shapes::ShapeRef.new(shape: MaintenanceWindowId, location_name: "WindowId"))
|
@@ -4716,14 +4972,14 @@ module Aws::SSM
|
|
4716
4972
|
UpdateMaintenanceWindowTaskRequest.add_member(:service_role_arn, Shapes::ShapeRef.new(shape: ServiceRole, location_name: "ServiceRoleArn"))
|
4717
4973
|
UpdateMaintenanceWindowTaskRequest.add_member(:task_parameters, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskParameters, location_name: "TaskParameters"))
|
4718
4974
|
UpdateMaintenanceWindowTaskRequest.add_member(:task_invocation_parameters, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskInvocationParameters, location_name: "TaskInvocationParameters"))
|
4719
|
-
UpdateMaintenanceWindowTaskRequest.add_member(:priority, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskPriority, location_name: "Priority", metadata: {"box"=>true}))
|
4975
|
+
UpdateMaintenanceWindowTaskRequest.add_member(:priority, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskPriority, location_name: "Priority", metadata: {"box" => true}))
|
4720
4976
|
UpdateMaintenanceWindowTaskRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
4721
4977
|
UpdateMaintenanceWindowTaskRequest.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
|
4722
4978
|
UpdateMaintenanceWindowTaskRequest.add_member(:logging_info, Shapes::ShapeRef.new(shape: LoggingInfo, location_name: "LoggingInfo"))
|
4723
4979
|
UpdateMaintenanceWindowTaskRequest.add_member(:name, Shapes::ShapeRef.new(shape: MaintenanceWindowName, location_name: "Name"))
|
4724
4980
|
UpdateMaintenanceWindowTaskRequest.add_member(:description, Shapes::ShapeRef.new(shape: MaintenanceWindowDescription, location_name: "Description"))
|
4725
|
-
UpdateMaintenanceWindowTaskRequest.add_member(:replace, Shapes::ShapeRef.new(shape: Boolean, location_name: "Replace", metadata: {"box"=>true}))
|
4726
|
-
UpdateMaintenanceWindowTaskRequest.add_member(:cutoff_behavior, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskCutoffBehavior, location_name: "CutoffBehavior", metadata: {"box"=>true}))
|
4981
|
+
UpdateMaintenanceWindowTaskRequest.add_member(:replace, Shapes::ShapeRef.new(shape: Boolean, location_name: "Replace", metadata: {"box" => true}))
|
4982
|
+
UpdateMaintenanceWindowTaskRequest.add_member(:cutoff_behavior, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskCutoffBehavior, location_name: "CutoffBehavior", metadata: {"box" => true}))
|
4727
4983
|
UpdateMaintenanceWindowTaskRequest.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
4728
4984
|
UpdateMaintenanceWindowTaskRequest.struct_class = Types::UpdateMaintenanceWindowTaskRequest
|
4729
4985
|
|
@@ -4740,7 +4996,7 @@ module Aws::SSM
|
|
4740
4996
|
UpdateMaintenanceWindowTaskResult.add_member(:logging_info, Shapes::ShapeRef.new(shape: LoggingInfo, location_name: "LoggingInfo"))
|
4741
4997
|
UpdateMaintenanceWindowTaskResult.add_member(:name, Shapes::ShapeRef.new(shape: MaintenanceWindowName, location_name: "Name"))
|
4742
4998
|
UpdateMaintenanceWindowTaskResult.add_member(:description, Shapes::ShapeRef.new(shape: MaintenanceWindowDescription, location_name: "Description"))
|
4743
|
-
UpdateMaintenanceWindowTaskResult.add_member(:cutoff_behavior, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskCutoffBehavior, location_name: "CutoffBehavior", metadata: {"box"=>true}))
|
4999
|
+
UpdateMaintenanceWindowTaskResult.add_member(:cutoff_behavior, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskCutoffBehavior, location_name: "CutoffBehavior", metadata: {"box" => true}))
|
4744
5000
|
UpdateMaintenanceWindowTaskResult.add_member(:alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "AlarmConfiguration"))
|
4745
5001
|
UpdateMaintenanceWindowTaskResult.struct_class = Types::UpdateMaintenanceWindowTaskResult
|
4746
5002
|
|
@@ -4784,12 +5040,13 @@ module Aws::SSM
|
|
4784
5040
|
UpdatePatchBaselineRequest.add_member(:approval_rules, Shapes::ShapeRef.new(shape: PatchRuleGroup, location_name: "ApprovalRules"))
|
4785
5041
|
UpdatePatchBaselineRequest.add_member(:approved_patches, Shapes::ShapeRef.new(shape: PatchIdList, location_name: "ApprovedPatches"))
|
4786
5042
|
UpdatePatchBaselineRequest.add_member(:approved_patches_compliance_level, Shapes::ShapeRef.new(shape: PatchComplianceLevel, location_name: "ApprovedPatchesComplianceLevel"))
|
4787
|
-
UpdatePatchBaselineRequest.add_member(:approved_patches_enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApprovedPatchesEnableNonSecurity", metadata: {"box"=>true}))
|
5043
|
+
UpdatePatchBaselineRequest.add_member(:approved_patches_enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApprovedPatchesEnableNonSecurity", metadata: {"box" => true}))
|
4788
5044
|
UpdatePatchBaselineRequest.add_member(:rejected_patches, Shapes::ShapeRef.new(shape: PatchIdList, location_name: "RejectedPatches"))
|
4789
5045
|
UpdatePatchBaselineRequest.add_member(:rejected_patches_action, Shapes::ShapeRef.new(shape: PatchAction, location_name: "RejectedPatchesAction"))
|
4790
5046
|
UpdatePatchBaselineRequest.add_member(:description, Shapes::ShapeRef.new(shape: BaselineDescription, location_name: "Description"))
|
4791
5047
|
UpdatePatchBaselineRequest.add_member(:sources, Shapes::ShapeRef.new(shape: PatchSourceList, location_name: "Sources"))
|
4792
|
-
UpdatePatchBaselineRequest.add_member(:
|
5048
|
+
UpdatePatchBaselineRequest.add_member(:available_security_updates_compliance_status, Shapes::ShapeRef.new(shape: PatchComplianceStatus, location_name: "AvailableSecurityUpdatesComplianceStatus"))
|
5049
|
+
UpdatePatchBaselineRequest.add_member(:replace, Shapes::ShapeRef.new(shape: Boolean, location_name: "Replace", metadata: {"box" => true}))
|
4793
5050
|
UpdatePatchBaselineRequest.struct_class = Types::UpdatePatchBaselineRequest
|
4794
5051
|
|
4795
5052
|
UpdatePatchBaselineResult.add_member(:baseline_id, Shapes::ShapeRef.new(shape: BaselineId, location_name: "BaselineId"))
|
@@ -4799,13 +5056,14 @@ module Aws::SSM
|
|
4799
5056
|
UpdatePatchBaselineResult.add_member(:approval_rules, Shapes::ShapeRef.new(shape: PatchRuleGroup, location_name: "ApprovalRules"))
|
4800
5057
|
UpdatePatchBaselineResult.add_member(:approved_patches, Shapes::ShapeRef.new(shape: PatchIdList, location_name: "ApprovedPatches"))
|
4801
5058
|
UpdatePatchBaselineResult.add_member(:approved_patches_compliance_level, Shapes::ShapeRef.new(shape: PatchComplianceLevel, location_name: "ApprovedPatchesComplianceLevel"))
|
4802
|
-
UpdatePatchBaselineResult.add_member(:approved_patches_enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApprovedPatchesEnableNonSecurity", metadata: {"box"=>true}))
|
5059
|
+
UpdatePatchBaselineResult.add_member(:approved_patches_enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApprovedPatchesEnableNonSecurity", metadata: {"box" => true}))
|
4803
5060
|
UpdatePatchBaselineResult.add_member(:rejected_patches, Shapes::ShapeRef.new(shape: PatchIdList, location_name: "RejectedPatches"))
|
4804
5061
|
UpdatePatchBaselineResult.add_member(:rejected_patches_action, Shapes::ShapeRef.new(shape: PatchAction, location_name: "RejectedPatchesAction"))
|
4805
5062
|
UpdatePatchBaselineResult.add_member(:created_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "CreatedDate"))
|
4806
5063
|
UpdatePatchBaselineResult.add_member(:modified_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "ModifiedDate"))
|
4807
5064
|
UpdatePatchBaselineResult.add_member(:description, Shapes::ShapeRef.new(shape: BaselineDescription, location_name: "Description"))
|
4808
5065
|
UpdatePatchBaselineResult.add_member(:sources, Shapes::ShapeRef.new(shape: PatchSourceList, location_name: "Sources"))
|
5066
|
+
UpdatePatchBaselineResult.add_member(:available_security_updates_compliance_status, Shapes::ShapeRef.new(shape: PatchComplianceStatus, location_name: "AvailableSecurityUpdatesComplianceStatus"))
|
4809
5067
|
UpdatePatchBaselineResult.struct_class = Types::UpdatePatchBaselineResult
|
4810
5068
|
|
4811
5069
|
UpdateResourceDataSyncRequest.add_member(:sync_name, Shapes::ShapeRef.new(shape: ResourceDataSyncName, required: true, location_name: "SyncName"))
|
@@ -4823,6 +5081,10 @@ module Aws::SSM
|
|
4823
5081
|
|
4824
5082
|
ValidNextStepList.member = Shapes::ShapeRef.new(shape: ValidNextStep)
|
4825
5083
|
|
5084
|
+
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
5085
|
+
ValidationException.add_member(:reason_code, Shapes::ShapeRef.new(shape: String, location_name: "ReasonCode"))
|
5086
|
+
ValidationException.struct_class = Types::ValidationException
|
5087
|
+
|
4826
5088
|
|
4827
5089
|
# @api private
|
4828
5090
|
API = Seahorse::Model::Api.new.tap do |api|
|
@@ -4956,6 +5218,7 @@ module Aws::SSM
|
|
4956
5218
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentContent)
|
4957
5219
|
o.errors << Shapes::ShapeRef.new(shape: DocumentLimitExceeded)
|
4958
5220
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentSchemaVersion)
|
5221
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyUpdates)
|
4959
5222
|
end)
|
4960
5223
|
|
4961
5224
|
api.add_operation(:create_maintenance_window, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5053,6 +5316,7 @@ module Aws::SSM
|
|
5053
5316
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocument)
|
5054
5317
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentOperation)
|
5055
5318
|
o.errors << Shapes::ShapeRef.new(shape: AssociatedInstances)
|
5319
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyUpdates)
|
5056
5320
|
end)
|
5057
5321
|
|
5058
5322
|
api.add_operation(:delete_inventory, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5738,6 +6002,19 @@ module Aws::SSM
|
|
5738
6002
|
o.errors << Shapes::ShapeRef.new(shape: OpsItemConflictException)
|
5739
6003
|
end)
|
5740
6004
|
|
6005
|
+
api.add_operation(:get_access_token, Seahorse::Model::Operation.new.tap do |o|
|
6006
|
+
o.name = "GetAccessToken"
|
6007
|
+
o.http_method = "POST"
|
6008
|
+
o.http_request_uri = "/"
|
6009
|
+
o.input = Shapes::ShapeRef.new(shape: GetAccessTokenRequest)
|
6010
|
+
o.output = Shapes::ShapeRef.new(shape: GetAccessTokenResponse)
|
6011
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
6012
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
6013
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
6014
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
6015
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
6016
|
+
end)
|
6017
|
+
|
5741
6018
|
api.add_operation(:get_automation_execution, Seahorse::Model::Operation.new.tap do |o|
|
5742
6019
|
o.name = "GetAutomationExecution"
|
5743
6020
|
o.http_method = "POST"
|
@@ -5813,6 +6090,16 @@ module Aws::SSM
|
|
5813
6090
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentVersion)
|
5814
6091
|
end)
|
5815
6092
|
|
6093
|
+
api.add_operation(:get_execution_preview, Seahorse::Model::Operation.new.tap do |o|
|
6094
|
+
o.name = "GetExecutionPreview"
|
6095
|
+
o.http_method = "POST"
|
6096
|
+
o.http_request_uri = "/"
|
6097
|
+
o.input = Shapes::ShapeRef.new(shape: GetExecutionPreviewRequest)
|
6098
|
+
o.output = Shapes::ShapeRef.new(shape: GetExecutionPreviewResponse)
|
6099
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
6100
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
6101
|
+
end)
|
6102
|
+
|
5816
6103
|
api.add_operation(:get_inventory, Seahorse::Model::Operation.new.tap do |o|
|
5817
6104
|
o.name = "GetInventory"
|
5818
6105
|
o.http_method = "POST"
|
@@ -6229,6 +6516,45 @@ module Aws::SSM
|
|
6229
6516
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
6230
6517
|
end)
|
6231
6518
|
|
6519
|
+
api.add_operation(:list_nodes, Seahorse::Model::Operation.new.tap do |o|
|
6520
|
+
o.name = "ListNodes"
|
6521
|
+
o.http_method = "POST"
|
6522
|
+
o.http_request_uri = "/"
|
6523
|
+
o.input = Shapes::ShapeRef.new(shape: ListNodesRequest)
|
6524
|
+
o.output = Shapes::ShapeRef.new(shape: ListNodesResult)
|
6525
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
6526
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
6527
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
6528
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceDataSyncNotFoundException)
|
6529
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
6530
|
+
o[:pager] = Aws::Pager.new(
|
6531
|
+
limit_key: "max_results",
|
6532
|
+
tokens: {
|
6533
|
+
"next_token" => "next_token"
|
6534
|
+
}
|
6535
|
+
)
|
6536
|
+
end)
|
6537
|
+
|
6538
|
+
api.add_operation(:list_nodes_summary, Seahorse::Model::Operation.new.tap do |o|
|
6539
|
+
o.name = "ListNodesSummary"
|
6540
|
+
o.http_method = "POST"
|
6541
|
+
o.http_request_uri = "/"
|
6542
|
+
o.input = Shapes::ShapeRef.new(shape: ListNodesSummaryRequest)
|
6543
|
+
o.output = Shapes::ShapeRef.new(shape: ListNodesSummaryResult)
|
6544
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
6545
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidAggregatorException)
|
6546
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
6547
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
6548
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceDataSyncNotFoundException)
|
6549
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
6550
|
+
o[:pager] = Aws::Pager.new(
|
6551
|
+
limit_key: "max_results",
|
6552
|
+
tokens: {
|
6553
|
+
"next_token" => "next_token"
|
6554
|
+
}
|
6555
|
+
)
|
6556
|
+
end)
|
6557
|
+
|
6232
6558
|
api.add_operation(:list_ops_item_events, Seahorse::Model::Operation.new.tap do |o|
|
6233
6559
|
o.name = "ListOpsItemEvents"
|
6234
6560
|
o.http_method = "POST"
|
@@ -6523,6 +6849,20 @@ module Aws::SSM
|
|
6523
6849
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNotificationConfig)
|
6524
6850
|
end)
|
6525
6851
|
|
6852
|
+
api.add_operation(:start_access_request, Seahorse::Model::Operation.new.tap do |o|
|
6853
|
+
o.name = "StartAccessRequest"
|
6854
|
+
o.http_method = "POST"
|
6855
|
+
o.http_request_uri = "/"
|
6856
|
+
o.input = Shapes::ShapeRef.new(shape: StartAccessRequestRequest)
|
6857
|
+
o.output = Shapes::ShapeRef.new(shape: StartAccessRequestResponse)
|
6858
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
6859
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
6860
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
6861
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
6862
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
6863
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
6864
|
+
end)
|
6865
|
+
|
6526
6866
|
api.add_operation(:start_associations_once, Seahorse::Model::Operation.new.tap do |o|
|
6527
6867
|
o.name = "StartAssociationsOnce"
|
6528
6868
|
o.http_method = "POST"
|
@@ -6563,6 +6903,16 @@ module Aws::SSM
|
|
6563
6903
|
o.errors << Shapes::ShapeRef.new(shape: AutomationDefinitionNotApprovedException)
|
6564
6904
|
end)
|
6565
6905
|
|
6906
|
+
api.add_operation(:start_execution_preview, Seahorse::Model::Operation.new.tap do |o|
|
6907
|
+
o.name = "StartExecutionPreview"
|
6908
|
+
o.http_method = "POST"
|
6909
|
+
o.http_request_uri = "/"
|
6910
|
+
o.input = Shapes::ShapeRef.new(shape: StartExecutionPreviewRequest)
|
6911
|
+
o.output = Shapes::ShapeRef.new(shape: StartExecutionPreviewResponse)
|
6912
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
6913
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
6914
|
+
end)
|
6915
|
+
|
6566
6916
|
api.add_operation(:start_session, Seahorse::Model::Operation.new.tap do |o|
|
6567
6917
|
o.name = "StartSession"
|
6568
6918
|
o.http_method = "POST"
|
@@ -6681,6 +7031,7 @@ module Aws::SSM
|
|
6681
7031
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocument)
|
6682
7032
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentOperation)
|
6683
7033
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentVersion)
|
7034
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyUpdates)
|
6684
7035
|
end)
|
6685
7036
|
|
6686
7037
|
api.add_operation(:update_maintenance_window, Seahorse::Model::Operation.new.tap do |o|
|