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