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
data/sig/types.rbs
CHANGED
@@ -8,6 +8,11 @@
|
|
8
8
|
module Aws::SSM
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
11
16
|
class AccountSharingInfo
|
12
17
|
attr_accessor account_id: ::String
|
13
18
|
attr_accessor shared_document_version: ::String
|
@@ -296,7 +301,8 @@ module Aws::SSM
|
|
296
301
|
attr_accessor progress_counters: Types::ProgressCounters
|
297
302
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
298
303
|
attr_accessor triggered_alarms: ::Array[Types::AlarmStateInformation]
|
299
|
-
attr_accessor
|
304
|
+
attr_accessor target_locations_url: ::String
|
305
|
+
attr_accessor automation_subtype: ("ChangeRequest" | "AccessRequest")
|
300
306
|
attr_accessor scheduled_time: ::Time
|
301
307
|
attr_accessor runbooks: ::Array[Types::Runbook]
|
302
308
|
attr_accessor ops_item_id: ::String
|
@@ -312,6 +318,16 @@ module Aws::SSM
|
|
312
318
|
SENSITIVE: []
|
313
319
|
end
|
314
320
|
|
321
|
+
class AutomationExecutionInputs
|
322
|
+
attr_accessor parameters: ::Hash[::String, ::Array[::String]]
|
323
|
+
attr_accessor target_parameter_name: ::String
|
324
|
+
attr_accessor targets: ::Array[Types::Target]
|
325
|
+
attr_accessor target_maps: ::Array[::Hash[::String, ::Array[::String]]]
|
326
|
+
attr_accessor target_locations: ::Array[Types::TargetLocation]
|
327
|
+
attr_accessor target_locations_url: ::String
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
315
331
|
class AutomationExecutionLimitExceededException
|
316
332
|
attr_accessor message: ::String
|
317
333
|
SENSITIVE: []
|
@@ -342,7 +358,8 @@ module Aws::SSM
|
|
342
358
|
attr_accessor automation_type: ("CrossAccount" | "Local")
|
343
359
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
344
360
|
attr_accessor triggered_alarms: ::Array[Types::AlarmStateInformation]
|
345
|
-
attr_accessor
|
361
|
+
attr_accessor target_locations_url: ::String
|
362
|
+
attr_accessor automation_subtype: ("ChangeRequest" | "AccessRequest")
|
346
363
|
attr_accessor scheduled_time: ::Time
|
347
364
|
attr_accessor runbooks: ::Array[Types::Runbook]
|
348
365
|
attr_accessor ops_item_id: ::String
|
@@ -356,6 +373,14 @@ module Aws::SSM
|
|
356
373
|
SENSITIVE: []
|
357
374
|
end
|
358
375
|
|
376
|
+
class AutomationExecutionPreview
|
377
|
+
attr_accessor step_previews: ::Hash[("Mutating" | "NonMutating" | "Undetermined"), ::Integer]
|
378
|
+
attr_accessor regions: ::Array[::String]
|
379
|
+
attr_accessor target_previews: ::Array[Types::TargetPreview]
|
380
|
+
attr_accessor total_accounts: ::Integer
|
381
|
+
SENSITIVE: []
|
382
|
+
end
|
383
|
+
|
359
384
|
class AutomationStepNotFoundException
|
360
385
|
attr_accessor message: ::String
|
361
386
|
SENSITIVE: []
|
@@ -371,6 +396,7 @@ module Aws::SSM
|
|
371
396
|
attr_accessor rejected_patches_action: ("ALLOW_AS_DEPENDENCY" | "BLOCK")
|
372
397
|
attr_accessor approved_patches_enable_non_security: bool
|
373
398
|
attr_accessor sources: ::Array[Types::PatchSource]
|
399
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
374
400
|
SENSITIVE: []
|
375
401
|
end
|
376
402
|
|
@@ -614,7 +640,7 @@ module Aws::SSM
|
|
614
640
|
attr_accessor name: ::String
|
615
641
|
attr_accessor display_name: ::String
|
616
642
|
attr_accessor version_name: ::String
|
617
|
-
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup")
|
643
|
+
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy")
|
618
644
|
attr_accessor document_format: ("YAML" | "JSON" | "TEXT")
|
619
645
|
attr_accessor target_type: ::String
|
620
646
|
attr_accessor tags: ::Array[Types::Tag]
|
@@ -697,6 +723,7 @@ module Aws::SSM
|
|
697
723
|
attr_accessor rejected_patches_action: ("ALLOW_AS_DEPENDENCY" | "BLOCK")
|
698
724
|
attr_accessor description: ::String
|
699
725
|
attr_accessor sources: ::Array[Types::PatchSource]
|
726
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
700
727
|
attr_accessor client_token: ::String
|
701
728
|
attr_accessor tags: ::Array[Types::Tag]
|
702
729
|
SENSITIVE: []
|
@@ -718,6 +745,14 @@ module Aws::SSM
|
|
718
745
|
class CreateResourceDataSyncResult < Aws::EmptyStructure
|
719
746
|
end
|
720
747
|
|
748
|
+
class Credentials
|
749
|
+
attr_accessor access_key_id: ::String
|
750
|
+
attr_accessor secret_access_key: ::String
|
751
|
+
attr_accessor session_token: ::String
|
752
|
+
attr_accessor expiration_time: ::Time
|
753
|
+
SENSITIVE: [:secret_access_key, :session_token]
|
754
|
+
end
|
755
|
+
|
721
756
|
class CustomSchemaCountLimitExceededException
|
722
757
|
attr_accessor message: ::String
|
723
758
|
SENSITIVE: []
|
@@ -1309,6 +1344,7 @@ module Aws::SSM
|
|
1309
1344
|
attr_accessor instances_with_critical_non_compliant_patches: ::Integer
|
1310
1345
|
attr_accessor instances_with_security_non_compliant_patches: ::Integer
|
1311
1346
|
attr_accessor instances_with_other_non_compliant_patches: ::Integer
|
1347
|
+
attr_accessor instances_with_available_security_updates: ::Integer
|
1312
1348
|
SENSITIVE: []
|
1313
1349
|
end
|
1314
1350
|
|
@@ -1390,7 +1426,7 @@ module Aws::SSM
|
|
1390
1426
|
attr_accessor description: ::String
|
1391
1427
|
attr_accessor parameters: ::Array[Types::DocumentParameter]
|
1392
1428
|
attr_accessor platform_types: ::Array[("Windows" | "Linux" | "MacOS")]
|
1393
|
-
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup")
|
1429
|
+
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy")
|
1394
1430
|
attr_accessor schema_version: ::String
|
1395
1431
|
attr_accessor latest_version: ::String
|
1396
1432
|
attr_accessor default_version: ::String
|
@@ -1423,7 +1459,7 @@ module Aws::SSM
|
|
1423
1459
|
attr_accessor version_name: ::String
|
1424
1460
|
attr_accessor platform_types: ::Array[("Windows" | "Linux" | "MacOS")]
|
1425
1461
|
attr_accessor document_version: ::String
|
1426
|
-
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup")
|
1462
|
+
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy")
|
1427
1463
|
attr_accessor schema_version: ::String
|
1428
1464
|
attr_accessor document_format: ("YAML" | "JSON" | "TEXT")
|
1429
1465
|
attr_accessor target_type: ::String
|
@@ -1535,6 +1571,28 @@ module Aws::SSM
|
|
1535
1571
|
SENSITIVE: []
|
1536
1572
|
end
|
1537
1573
|
|
1574
|
+
class ExecutionInputs
|
1575
|
+
attr_accessor automation: Types::AutomationExecutionInputs
|
1576
|
+
attr_accessor unknown: untyped
|
1577
|
+
SENSITIVE: []
|
1578
|
+
|
1579
|
+
class Automation < ExecutionInputs
|
1580
|
+
end
|
1581
|
+
class Unknown < ExecutionInputs
|
1582
|
+
end
|
1583
|
+
end
|
1584
|
+
|
1585
|
+
class ExecutionPreview
|
1586
|
+
attr_accessor automation: Types::AutomationExecutionPreview
|
1587
|
+
attr_accessor unknown: untyped
|
1588
|
+
SENSITIVE: []
|
1589
|
+
|
1590
|
+
class Automation < ExecutionPreview
|
1591
|
+
end
|
1592
|
+
class Unknown < ExecutionPreview
|
1593
|
+
end
|
1594
|
+
end
|
1595
|
+
|
1538
1596
|
class FailedCreateAssociation
|
1539
1597
|
attr_accessor entry: Types::CreateAssociationBatchRequestEntry
|
1540
1598
|
attr_accessor message: ::String
|
@@ -1554,6 +1612,17 @@ module Aws::SSM
|
|
1554
1612
|
SENSITIVE: []
|
1555
1613
|
end
|
1556
1614
|
|
1615
|
+
class GetAccessTokenRequest
|
1616
|
+
attr_accessor access_request_id: ::String
|
1617
|
+
SENSITIVE: []
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
class GetAccessTokenResponse
|
1621
|
+
attr_accessor credentials: Types::Credentials
|
1622
|
+
attr_accessor access_request_status: ("Approved" | "Rejected" | "Revoked" | "Expired" | "Pending")
|
1623
|
+
SENSITIVE: []
|
1624
|
+
end
|
1625
|
+
|
1557
1626
|
class GetAutomationExecutionRequest
|
1558
1627
|
attr_accessor automation_execution_id: ::String
|
1559
1628
|
SENSITIVE: []
|
@@ -1659,7 +1728,7 @@ module Aws::SSM
|
|
1659
1728
|
attr_accessor status: ("Creating" | "Active" | "Updating" | "Deleting" | "Failed")
|
1660
1729
|
attr_accessor status_information: ::String
|
1661
1730
|
attr_accessor content: ::String
|
1662
|
-
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup")
|
1731
|
+
attr_accessor document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy")
|
1663
1732
|
attr_accessor document_format: ("YAML" | "JSON" | "TEXT")
|
1664
1733
|
attr_accessor requires: ::Array[Types::DocumentRequires]
|
1665
1734
|
attr_accessor attachments_content: ::Array[Types::AttachmentContent]
|
@@ -1667,6 +1736,20 @@ module Aws::SSM
|
|
1667
1736
|
SENSITIVE: []
|
1668
1737
|
end
|
1669
1738
|
|
1739
|
+
class GetExecutionPreviewRequest
|
1740
|
+
attr_accessor execution_preview_id: ::String
|
1741
|
+
SENSITIVE: []
|
1742
|
+
end
|
1743
|
+
|
1744
|
+
class GetExecutionPreviewResponse
|
1745
|
+
attr_accessor execution_preview_id: ::String
|
1746
|
+
attr_accessor ended_at: ::Time
|
1747
|
+
attr_accessor status: ("Pending" | "InProgress" | "Success" | "Failed")
|
1748
|
+
attr_accessor status_message: ::String
|
1749
|
+
attr_accessor execution_preview: Types::ExecutionPreview
|
1750
|
+
SENSITIVE: []
|
1751
|
+
end
|
1752
|
+
|
1670
1753
|
class GetInventoryRequest
|
1671
1754
|
attr_accessor filters: ::Array[Types::InventoryFilter]
|
1672
1755
|
attr_accessor aggregators: ::Array[Types::InventoryAggregator]
|
@@ -1938,6 +2021,7 @@ module Aws::SSM
|
|
1938
2021
|
attr_accessor modified_date: ::Time
|
1939
2022
|
attr_accessor description: ::String
|
1940
2023
|
attr_accessor sources: ::Array[Types::PatchSource]
|
2024
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
1941
2025
|
SENSITIVE: []
|
1942
2026
|
end
|
1943
2027
|
|
@@ -2031,6 +2115,20 @@ module Aws::SSM
|
|
2031
2115
|
SENSITIVE: []
|
2032
2116
|
end
|
2033
2117
|
|
2118
|
+
class InstanceInfo
|
2119
|
+
attr_accessor agent_type: ::String
|
2120
|
+
attr_accessor agent_version: ::String
|
2121
|
+
attr_accessor computer_name: ::String
|
2122
|
+
attr_accessor instance_status: ::String
|
2123
|
+
attr_accessor ip_address: ::String
|
2124
|
+
attr_accessor managed_status: ("All" | "Managed" | "Unmanaged")
|
2125
|
+
attr_accessor platform_type: ("Windows" | "Linux" | "MacOS")
|
2126
|
+
attr_accessor platform_name: ::String
|
2127
|
+
attr_accessor platform_version: ::String
|
2128
|
+
attr_accessor resource_type: ("ManagedInstance" | "EC2Instance")
|
2129
|
+
SENSITIVE: [:ip_address]
|
2130
|
+
end
|
2131
|
+
|
2034
2132
|
class InstanceInformation
|
2035
2133
|
attr_accessor instance_id: ::String
|
2036
2134
|
attr_accessor ping_status: ("Online" | "ConnectionLost" | "Inactive")
|
@@ -2083,6 +2181,7 @@ module Aws::SSM
|
|
2083
2181
|
attr_accessor failed_count: ::Integer
|
2084
2182
|
attr_accessor unreported_not_applicable_count: ::Integer
|
2085
2183
|
attr_accessor not_applicable_count: ::Integer
|
2184
|
+
attr_accessor available_security_update_count: ::Integer
|
2086
2185
|
attr_accessor operation_start_time: ::Time
|
2087
2186
|
attr_accessor operation_end_time: ::Time
|
2088
2187
|
attr_accessor operation: ("Scan" | "Install")
|
@@ -2647,6 +2746,35 @@ module Aws::SSM
|
|
2647
2746
|
SENSITIVE: []
|
2648
2747
|
end
|
2649
2748
|
|
2749
|
+
class ListNodesRequest
|
2750
|
+
attr_accessor sync_name: ::String
|
2751
|
+
attr_accessor filters: ::Array[Types::NodeFilter]
|
2752
|
+
attr_accessor next_token: ::String
|
2753
|
+
attr_accessor max_results: ::Integer
|
2754
|
+
SENSITIVE: []
|
2755
|
+
end
|
2756
|
+
|
2757
|
+
class ListNodesResult
|
2758
|
+
attr_accessor nodes: ::Array[Types::Node]
|
2759
|
+
attr_accessor next_token: ::String
|
2760
|
+
SENSITIVE: []
|
2761
|
+
end
|
2762
|
+
|
2763
|
+
class ListNodesSummaryRequest
|
2764
|
+
attr_accessor sync_name: ::String
|
2765
|
+
attr_accessor filters: ::Array[Types::NodeFilter]
|
2766
|
+
attr_accessor aggregators: ::Array[Types::NodeAggregator]
|
2767
|
+
attr_accessor next_token: ::String
|
2768
|
+
attr_accessor max_results: ::Integer
|
2769
|
+
SENSITIVE: []
|
2770
|
+
end
|
2771
|
+
|
2772
|
+
class ListNodesSummaryResult
|
2773
|
+
attr_accessor summary: ::Array[::Hash[::String, ::String]]
|
2774
|
+
attr_accessor next_token: ::String
|
2775
|
+
SENSITIVE: []
|
2776
|
+
end
|
2777
|
+
|
2650
2778
|
class ListOpsItemEventsRequest
|
2651
2779
|
attr_accessor filters: ::Array[Types::OpsItemEventFilter]
|
2652
2780
|
attr_accessor max_results: ::Integer
|
@@ -2903,6 +3031,48 @@ module Aws::SSM
|
|
2903
3031
|
class ModifyDocumentPermissionResponse < Aws::EmptyStructure
|
2904
3032
|
end
|
2905
3033
|
|
3034
|
+
class Node
|
3035
|
+
attr_accessor capture_time: ::Time
|
3036
|
+
attr_accessor id: ::String
|
3037
|
+
attr_accessor owner: Types::NodeOwnerInfo
|
3038
|
+
attr_accessor region: ::String
|
3039
|
+
attr_accessor node_type: Types::NodeType
|
3040
|
+
SENSITIVE: []
|
3041
|
+
end
|
3042
|
+
|
3043
|
+
class NodeAggregator
|
3044
|
+
attr_accessor aggregator_type: ("Count")
|
3045
|
+
attr_accessor type_name: ("Instance")
|
3046
|
+
attr_accessor attribute_name: ("AgentVersion" | "PlatformName" | "PlatformType" | "PlatformVersion" | "Region" | "ResourceType")
|
3047
|
+
attr_accessor aggregators: ::Array[Types::NodeAggregator]
|
3048
|
+
SENSITIVE: []
|
3049
|
+
end
|
3050
|
+
|
3051
|
+
class NodeFilter
|
3052
|
+
attr_accessor key: ("AgentType" | "AgentVersion" | "ComputerName" | "InstanceId" | "InstanceStatus" | "IpAddress" | "ManagedStatus" | "PlatformName" | "PlatformType" | "PlatformVersion" | "ResourceType" | "OrganizationalUnitId" | "OrganizationalUnitPath" | "Region" | "AccountId")
|
3053
|
+
attr_accessor values: ::Array[::String]
|
3054
|
+
attr_accessor type: ("Equal" | "NotEqual" | "BeginWith")
|
3055
|
+
SENSITIVE: []
|
3056
|
+
end
|
3057
|
+
|
3058
|
+
class NodeOwnerInfo
|
3059
|
+
attr_accessor account_id: ::String
|
3060
|
+
attr_accessor organizational_unit_id: ::String
|
3061
|
+
attr_accessor organizational_unit_path: ::String
|
3062
|
+
SENSITIVE: []
|
3063
|
+
end
|
3064
|
+
|
3065
|
+
class NodeType
|
3066
|
+
attr_accessor instance: Types::InstanceInfo
|
3067
|
+
attr_accessor unknown: untyped
|
3068
|
+
SENSITIVE: []
|
3069
|
+
|
3070
|
+
class Instance < NodeType
|
3071
|
+
end
|
3072
|
+
class Unknown < NodeType
|
3073
|
+
end
|
3074
|
+
end
|
3075
|
+
|
2906
3076
|
class NonCompliantSummary
|
2907
3077
|
attr_accessor non_compliant_count: ::Integer
|
2908
3078
|
attr_accessor severity_summary: Types::SeveritySummary
|
@@ -2955,7 +3125,7 @@ module Aws::SSM
|
|
2955
3125
|
attr_accessor notifications: ::Array[Types::OpsItemNotification]
|
2956
3126
|
attr_accessor priority: ::Integer
|
2957
3127
|
attr_accessor related_ops_items: ::Array[Types::RelatedOpsItem]
|
2958
|
-
attr_accessor status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Rejected" | "Closed")
|
3128
|
+
attr_accessor status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Revoked" | "Rejected" | "Closed")
|
2959
3129
|
attr_accessor ops_item_id: ::String
|
2960
3130
|
attr_accessor version: ::String
|
2961
3131
|
attr_accessor title: ::String
|
@@ -3012,7 +3182,7 @@ module Aws::SSM
|
|
3012
3182
|
end
|
3013
3183
|
|
3014
3184
|
class OpsItemFilter
|
3015
|
-
attr_accessor key: ("Status" | "CreatedBy" | "Source" | "Priority" | "Title" | "OpsItemId" | "CreatedTime" | "LastModifiedTime" | "ActualStartTime" | "ActualEndTime" | "PlannedStartTime" | "PlannedEndTime" | "OperationalData" | "OperationalDataKey" | "OperationalDataValue" | "ResourceId" | "AutomationId" | "Category" | "Severity" | "OpsItemType" | "ChangeRequestByRequesterArn" | "ChangeRequestByRequesterName" | "ChangeRequestByApproverArn" | "ChangeRequestByApproverName" | "ChangeRequestByTemplate" | "ChangeRequestByTargetsResourceGroup" | "InsightByType" | "AccountId")
|
3185
|
+
attr_accessor key: ("Status" | "CreatedBy" | "Source" | "Priority" | "Title" | "OpsItemId" | "CreatedTime" | "LastModifiedTime" | "ActualStartTime" | "ActualEndTime" | "PlannedStartTime" | "PlannedEndTime" | "OperationalData" | "OperationalDataKey" | "OperationalDataValue" | "ResourceId" | "AutomationId" | "Category" | "Severity" | "OpsItemType" | "AccessRequestByRequesterArn" | "AccessRequestByRequesterId" | "AccessRequestByApproverArn" | "AccessRequestByApproverId" | "AccessRequestBySourceAccountId" | "AccessRequestBySourceOpsItemId" | "AccessRequestBySourceRegion" | "AccessRequestByIsReplica" | "AccessRequestByTargetResourceId" | "ChangeRequestByRequesterArn" | "ChangeRequestByRequesterName" | "ChangeRequestByApproverArn" | "ChangeRequestByApproverName" | "ChangeRequestByTemplate" | "ChangeRequestByTargetsResourceGroup" | "InsightByType" | "AccountId")
|
3016
3186
|
attr_accessor values: ::Array[::String]
|
3017
3187
|
attr_accessor operator: ("Equal" | "Contains" | "GreaterThan" | "LessThan")
|
3018
3188
|
SENSITIVE: []
|
@@ -3086,7 +3256,7 @@ module Aws::SSM
|
|
3086
3256
|
attr_accessor last_modified_time: ::Time
|
3087
3257
|
attr_accessor priority: ::Integer
|
3088
3258
|
attr_accessor source: ::String
|
3089
|
-
attr_accessor status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Rejected" | "Closed")
|
3259
|
+
attr_accessor status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Revoked" | "Rejected" | "Closed")
|
3090
3260
|
attr_accessor ops_item_id: ::String
|
3091
3261
|
attr_accessor title: ::String
|
3092
3262
|
attr_accessor operational_data: ::Hash[::String, Types::OpsItemDataValue]
|
@@ -3307,7 +3477,7 @@ module Aws::SSM
|
|
3307
3477
|
attr_accessor kb_id: ::String
|
3308
3478
|
attr_accessor classification: ::String
|
3309
3479
|
attr_accessor severity: ::String
|
3310
|
-
attr_accessor state: ("INSTALLED" | "INSTALLED_OTHER" | "INSTALLED_PENDING_REBOOT" | "INSTALLED_REJECTED" | "MISSING" | "NOT_APPLICABLE" | "FAILED")
|
3480
|
+
attr_accessor state: ("INSTALLED" | "INSTALLED_OTHER" | "INSTALLED_PENDING_REBOOT" | "INSTALLED_REJECTED" | "MISSING" | "NOT_APPLICABLE" | "FAILED" | "AVAILABLE_SECURITY_UPDATE")
|
3311
3481
|
attr_accessor installed_time: ::Time
|
3312
3482
|
attr_accessor cve_ids: ::String
|
3313
3483
|
SENSITIVE: []
|
@@ -3732,7 +3902,7 @@ module Aws::SSM
|
|
3732
3902
|
|
3733
3903
|
class SendAutomationSignalRequest
|
3734
3904
|
attr_accessor automation_execution_id: ::String
|
3735
|
-
attr_accessor signal_type: ("Approve" | "Reject" | "StartStep" | "StopStep" | "Resume")
|
3905
|
+
attr_accessor signal_type: ("Approve" | "Reject" | "StartStep" | "StopStep" | "Resume" | "Revoke")
|
3736
3906
|
attr_accessor payload: ::Hash[::String, ::Array[::String]]
|
3737
3907
|
SENSITIVE: []
|
3738
3908
|
end
|
@@ -3767,6 +3937,15 @@ module Aws::SSM
|
|
3767
3937
|
SENSITIVE: []
|
3768
3938
|
end
|
3769
3939
|
|
3940
|
+
class ServiceQuotaExceededException
|
3941
|
+
attr_accessor message: ::String
|
3942
|
+
attr_accessor resource_id: ::String
|
3943
|
+
attr_accessor resource_type: ::String
|
3944
|
+
attr_accessor quota_code: ::String
|
3945
|
+
attr_accessor service_code: ::String
|
3946
|
+
SENSITIVE: []
|
3947
|
+
end
|
3948
|
+
|
3770
3949
|
class ServiceSetting
|
3771
3950
|
attr_accessor setting_id: ::String
|
3772
3951
|
attr_accessor setting_value: ::String
|
@@ -3819,6 +3998,18 @@ module Aws::SSM
|
|
3819
3998
|
SENSITIVE: []
|
3820
3999
|
end
|
3821
4000
|
|
4001
|
+
class StartAccessRequestRequest
|
4002
|
+
attr_accessor reason: ::String
|
4003
|
+
attr_accessor targets: ::Array[Types::Target]
|
4004
|
+
attr_accessor tags: ::Array[Types::Tag]
|
4005
|
+
SENSITIVE: []
|
4006
|
+
end
|
4007
|
+
|
4008
|
+
class StartAccessRequestResponse
|
4009
|
+
attr_accessor access_request_id: ::String
|
4010
|
+
SENSITIVE: []
|
4011
|
+
end
|
4012
|
+
|
3822
4013
|
class StartAssociationsOnceRequest
|
3823
4014
|
attr_accessor association_ids: ::Array[::String]
|
3824
4015
|
SENSITIVE: []
|
@@ -3841,6 +4032,7 @@ module Aws::SSM
|
|
3841
4032
|
attr_accessor target_locations: ::Array[Types::TargetLocation]
|
3842
4033
|
attr_accessor tags: ::Array[Types::Tag]
|
3843
4034
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
4035
|
+
attr_accessor target_locations_url: ::String
|
3844
4036
|
SENSITIVE: []
|
3845
4037
|
end
|
3846
4038
|
|
@@ -3869,6 +4061,18 @@ module Aws::SSM
|
|
3869
4061
|
SENSITIVE: []
|
3870
4062
|
end
|
3871
4063
|
|
4064
|
+
class StartExecutionPreviewRequest
|
4065
|
+
attr_accessor document_name: ::String
|
4066
|
+
attr_accessor document_version: ::String
|
4067
|
+
attr_accessor execution_inputs: Types::ExecutionInputs
|
4068
|
+
SENSITIVE: []
|
4069
|
+
end
|
4070
|
+
|
4071
|
+
class StartExecutionPreviewResponse
|
4072
|
+
attr_accessor execution_preview_id: ::String
|
4073
|
+
SENSITIVE: []
|
4074
|
+
end
|
4075
|
+
|
3872
4076
|
class StartSessionRequest
|
3873
4077
|
attr_accessor target: ::String
|
3874
4078
|
attr_accessor document_name: ::String
|
@@ -3959,6 +4163,11 @@ module Aws::SSM
|
|
3959
4163
|
attr_accessor target_location_max_errors: ::String
|
3960
4164
|
attr_accessor execution_role_name: ::String
|
3961
4165
|
attr_accessor target_location_alarm_configuration: Types::AlarmConfiguration
|
4166
|
+
attr_accessor include_child_organization_units: bool
|
4167
|
+
attr_accessor exclude_accounts: ::Array[::String]
|
4168
|
+
attr_accessor targets: ::Array[Types::Target]
|
4169
|
+
attr_accessor targets_max_concurrency: ::String
|
4170
|
+
attr_accessor targets_max_errors: ::String
|
3962
4171
|
SENSITIVE: []
|
3963
4172
|
end
|
3964
4173
|
|
@@ -3967,6 +4176,12 @@ module Aws::SSM
|
|
3967
4176
|
SENSITIVE: []
|
3968
4177
|
end
|
3969
4178
|
|
4179
|
+
class TargetPreview
|
4180
|
+
attr_accessor count: ::Integer
|
4181
|
+
attr_accessor target_type: ::String
|
4182
|
+
SENSITIVE: []
|
4183
|
+
end
|
4184
|
+
|
3970
4185
|
class TerminateSessionRequest
|
3971
4186
|
attr_accessor session_id: ::String
|
3972
4187
|
SENSITIVE: []
|
@@ -3977,6 +4192,13 @@ module Aws::SSM
|
|
3977
4192
|
SENSITIVE: []
|
3978
4193
|
end
|
3979
4194
|
|
4195
|
+
class ThrottlingException
|
4196
|
+
attr_accessor message: ::String
|
4197
|
+
attr_accessor quota_code: ::String
|
4198
|
+
attr_accessor service_code: ::String
|
4199
|
+
SENSITIVE: []
|
4200
|
+
end
|
4201
|
+
|
3980
4202
|
class TooManyTagsError < Aws::EmptyStructure
|
3981
4203
|
end
|
3982
4204
|
|
@@ -4029,6 +4251,11 @@ module Aws::SSM
|
|
4029
4251
|
SENSITIVE: []
|
4030
4252
|
end
|
4031
4253
|
|
4254
|
+
class UnsupportedOperationException
|
4255
|
+
attr_accessor message: ::String
|
4256
|
+
SENSITIVE: []
|
4257
|
+
end
|
4258
|
+
|
4032
4259
|
class UnsupportedParameterType
|
4033
4260
|
attr_accessor message: ::String
|
4034
4261
|
SENSITIVE: []
|
@@ -4228,7 +4455,7 @@ module Aws::SSM
|
|
4228
4455
|
attr_accessor notifications: ::Array[Types::OpsItemNotification]
|
4229
4456
|
attr_accessor priority: ::Integer
|
4230
4457
|
attr_accessor related_ops_items: ::Array[Types::RelatedOpsItem]
|
4231
|
-
attr_accessor status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Rejected" | "Closed")
|
4458
|
+
attr_accessor status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Revoked" | "Rejected" | "Closed")
|
4232
4459
|
attr_accessor ops_item_id: ::String
|
4233
4460
|
attr_accessor title: ::String
|
4234
4461
|
attr_accessor category: ::String
|
@@ -4268,6 +4495,7 @@ module Aws::SSM
|
|
4268
4495
|
attr_accessor rejected_patches_action: ("ALLOW_AS_DEPENDENCY" | "BLOCK")
|
4269
4496
|
attr_accessor description: ::String
|
4270
4497
|
attr_accessor sources: ::Array[Types::PatchSource]
|
4498
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
4271
4499
|
attr_accessor replace: bool
|
4272
4500
|
SENSITIVE: []
|
4273
4501
|
end
|
@@ -4287,6 +4515,7 @@ module Aws::SSM
|
|
4287
4515
|
attr_accessor modified_date: ::Time
|
4288
4516
|
attr_accessor description: ::String
|
4289
4517
|
attr_accessor sources: ::Array[Types::PatchSource]
|
4518
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
4290
4519
|
SENSITIVE: []
|
4291
4520
|
end
|
4292
4521
|
|
@@ -4308,5 +4537,11 @@ module Aws::SSM
|
|
4308
4537
|
|
4309
4538
|
class UpdateServiceSettingResult < Aws::EmptyStructure
|
4310
4539
|
end
|
4540
|
+
|
4541
|
+
class ValidationException
|
4542
|
+
attr_accessor message: ::String
|
4543
|
+
attr_accessor reason_code: ::String
|
4544
|
+
SENSITIVE: []
|
4545
|
+
end
|
4311
4546
|
end
|
4312
4547
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ssm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.196.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: aws-sdk-core
|
@@ -19,7 +18,7 @@ dependencies:
|
|
19
18
|
version: '3'
|
20
19
|
- - ">="
|
21
20
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
21
|
+
version: 3.225.0
|
23
22
|
type: :runtime
|
24
23
|
prerelease: false
|
25
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +28,7 @@ dependencies:
|
|
29
28
|
version: '3'
|
30
29
|
- - ">="
|
31
30
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
31
|
+
version: 3.225.0
|
33
32
|
- !ruby/object:Gem::Dependency
|
34
33
|
name: aws-sigv4
|
35
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -78,7 +77,6 @@ licenses:
|
|
78
77
|
metadata:
|
79
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ssm
|
80
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ssm/CHANGELOG.md
|
81
|
-
post_install_message:
|
82
80
|
rdoc_options: []
|
83
81
|
require_paths:
|
84
82
|
- lib
|
@@ -86,15 +84,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
86
84
|
requirements:
|
87
85
|
- - ">="
|
88
86
|
- !ruby/object:Gem::Version
|
89
|
-
version: '2.
|
87
|
+
version: '2.7'
|
90
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
89
|
requirements:
|
92
90
|
- - ">="
|
93
91
|
- !ruby/object:Gem::Version
|
94
92
|
version: '0'
|
95
93
|
requirements: []
|
96
|
-
rubygems_version: 3.
|
97
|
-
signing_key:
|
94
|
+
rubygems_version: 3.6.7
|
98
95
|
specification_version: 4
|
99
96
|
summary: AWS SDK for Ruby - Amazon SSM
|
100
97
|
test_files: []
|