aws-sdk-ssm 1.191.0 → 1.193.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +149 -22
- data/lib/aws-sdk-ssm/client_api.rb +86 -0
- data/lib/aws-sdk-ssm/errors.rb +78 -0
- data/lib/aws-sdk-ssm/types.rb +277 -11
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +45 -6
- data/sig/errors.rbs +15 -0
- data/sig/types.rbs +71 -12
- metadata +2 -2
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
|
@@ -297,7 +302,7 @@ module Aws::SSM
|
|
297
302
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
298
303
|
attr_accessor triggered_alarms: ::Array[Types::AlarmStateInformation]
|
299
304
|
attr_accessor target_locations_url: ::String
|
300
|
-
attr_accessor automation_subtype: ("ChangeRequest")
|
305
|
+
attr_accessor automation_subtype: ("ChangeRequest" | "AccessRequest")
|
301
306
|
attr_accessor scheduled_time: ::Time
|
302
307
|
attr_accessor runbooks: ::Array[Types::Runbook]
|
303
308
|
attr_accessor ops_item_id: ::String
|
@@ -354,7 +359,7 @@ module Aws::SSM
|
|
354
359
|
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
355
360
|
attr_accessor triggered_alarms: ::Array[Types::AlarmStateInformation]
|
356
361
|
attr_accessor target_locations_url: ::String
|
357
|
-
attr_accessor automation_subtype: ("ChangeRequest")
|
362
|
+
attr_accessor automation_subtype: ("ChangeRequest" | "AccessRequest")
|
358
363
|
attr_accessor scheduled_time: ::Time
|
359
364
|
attr_accessor runbooks: ::Array[Types::Runbook]
|
360
365
|
attr_accessor ops_item_id: ::String
|
@@ -391,6 +396,7 @@ module Aws::SSM
|
|
391
396
|
attr_accessor rejected_patches_action: ("ALLOW_AS_DEPENDENCY" | "BLOCK")
|
392
397
|
attr_accessor approved_patches_enable_non_security: bool
|
393
398
|
attr_accessor sources: ::Array[Types::PatchSource]
|
399
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
394
400
|
SENSITIVE: []
|
395
401
|
end
|
396
402
|
|
@@ -634,7 +640,7 @@ module Aws::SSM
|
|
634
640
|
attr_accessor name: ::String
|
635
641
|
attr_accessor display_name: ::String
|
636
642
|
attr_accessor version_name: ::String
|
637
|
-
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")
|
638
644
|
attr_accessor document_format: ("YAML" | "JSON" | "TEXT")
|
639
645
|
attr_accessor target_type: ::String
|
640
646
|
attr_accessor tags: ::Array[Types::Tag]
|
@@ -717,6 +723,7 @@ module Aws::SSM
|
|
717
723
|
attr_accessor rejected_patches_action: ("ALLOW_AS_DEPENDENCY" | "BLOCK")
|
718
724
|
attr_accessor description: ::String
|
719
725
|
attr_accessor sources: ::Array[Types::PatchSource]
|
726
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
720
727
|
attr_accessor client_token: ::String
|
721
728
|
attr_accessor tags: ::Array[Types::Tag]
|
722
729
|
SENSITIVE: []
|
@@ -738,6 +745,14 @@ module Aws::SSM
|
|
738
745
|
class CreateResourceDataSyncResult < Aws::EmptyStructure
|
739
746
|
end
|
740
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
|
+
|
741
756
|
class CustomSchemaCountLimitExceededException
|
742
757
|
attr_accessor message: ::String
|
743
758
|
SENSITIVE: []
|
@@ -1329,6 +1344,7 @@ module Aws::SSM
|
|
1329
1344
|
attr_accessor instances_with_critical_non_compliant_patches: ::Integer
|
1330
1345
|
attr_accessor instances_with_security_non_compliant_patches: ::Integer
|
1331
1346
|
attr_accessor instances_with_other_non_compliant_patches: ::Integer
|
1347
|
+
attr_accessor instances_with_available_security_updates: ::Integer
|
1332
1348
|
SENSITIVE: []
|
1333
1349
|
end
|
1334
1350
|
|
@@ -1410,7 +1426,7 @@ module Aws::SSM
|
|
1410
1426
|
attr_accessor description: ::String
|
1411
1427
|
attr_accessor parameters: ::Array[Types::DocumentParameter]
|
1412
1428
|
attr_accessor platform_types: ::Array[("Windows" | "Linux" | "MacOS")]
|
1413
|
-
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")
|
1414
1430
|
attr_accessor schema_version: ::String
|
1415
1431
|
attr_accessor latest_version: ::String
|
1416
1432
|
attr_accessor default_version: ::String
|
@@ -1443,7 +1459,7 @@ module Aws::SSM
|
|
1443
1459
|
attr_accessor version_name: ::String
|
1444
1460
|
attr_accessor platform_types: ::Array[("Windows" | "Linux" | "MacOS")]
|
1445
1461
|
attr_accessor document_version: ::String
|
1446
|
-
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")
|
1447
1463
|
attr_accessor schema_version: ::String
|
1448
1464
|
attr_accessor document_format: ("YAML" | "JSON" | "TEXT")
|
1449
1465
|
attr_accessor target_type: ::String
|
@@ -1596,6 +1612,17 @@ module Aws::SSM
|
|
1596
1612
|
SENSITIVE: []
|
1597
1613
|
end
|
1598
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
|
+
|
1599
1626
|
class GetAutomationExecutionRequest
|
1600
1627
|
attr_accessor automation_execution_id: ::String
|
1601
1628
|
SENSITIVE: []
|
@@ -1701,7 +1728,7 @@ module Aws::SSM
|
|
1701
1728
|
attr_accessor status: ("Creating" | "Active" | "Updating" | "Deleting" | "Failed")
|
1702
1729
|
attr_accessor status_information: ::String
|
1703
1730
|
attr_accessor content: ::String
|
1704
|
-
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")
|
1705
1732
|
attr_accessor document_format: ("YAML" | "JSON" | "TEXT")
|
1706
1733
|
attr_accessor requires: ::Array[Types::DocumentRequires]
|
1707
1734
|
attr_accessor attachments_content: ::Array[Types::AttachmentContent]
|
@@ -1994,6 +2021,7 @@ module Aws::SSM
|
|
1994
2021
|
attr_accessor modified_date: ::Time
|
1995
2022
|
attr_accessor description: ::String
|
1996
2023
|
attr_accessor sources: ::Array[Types::PatchSource]
|
2024
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
1997
2025
|
SENSITIVE: []
|
1998
2026
|
end
|
1999
2027
|
|
@@ -2153,6 +2181,7 @@ module Aws::SSM
|
|
2153
2181
|
attr_accessor failed_count: ::Integer
|
2154
2182
|
attr_accessor unreported_not_applicable_count: ::Integer
|
2155
2183
|
attr_accessor not_applicable_count: ::Integer
|
2184
|
+
attr_accessor available_security_update_count: ::Integer
|
2156
2185
|
attr_accessor operation_start_time: ::Time
|
2157
2186
|
attr_accessor operation_end_time: ::Time
|
2158
2187
|
attr_accessor operation: ("Scan" | "Install")
|
@@ -3096,7 +3125,7 @@ module Aws::SSM
|
|
3096
3125
|
attr_accessor notifications: ::Array[Types::OpsItemNotification]
|
3097
3126
|
attr_accessor priority: ::Integer
|
3098
3127
|
attr_accessor related_ops_items: ::Array[Types::RelatedOpsItem]
|
3099
|
-
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")
|
3100
3129
|
attr_accessor ops_item_id: ::String
|
3101
3130
|
attr_accessor version: ::String
|
3102
3131
|
attr_accessor title: ::String
|
@@ -3153,7 +3182,7 @@ module Aws::SSM
|
|
3153
3182
|
end
|
3154
3183
|
|
3155
3184
|
class OpsItemFilter
|
3156
|
-
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")
|
3157
3186
|
attr_accessor values: ::Array[::String]
|
3158
3187
|
attr_accessor operator: ("Equal" | "Contains" | "GreaterThan" | "LessThan")
|
3159
3188
|
SENSITIVE: []
|
@@ -3227,7 +3256,7 @@ module Aws::SSM
|
|
3227
3256
|
attr_accessor last_modified_time: ::Time
|
3228
3257
|
attr_accessor priority: ::Integer
|
3229
3258
|
attr_accessor source: ::String
|
3230
|
-
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")
|
3231
3260
|
attr_accessor ops_item_id: ::String
|
3232
3261
|
attr_accessor title: ::String
|
3233
3262
|
attr_accessor operational_data: ::Hash[::String, Types::OpsItemDataValue]
|
@@ -3448,7 +3477,7 @@ module Aws::SSM
|
|
3448
3477
|
attr_accessor kb_id: ::String
|
3449
3478
|
attr_accessor classification: ::String
|
3450
3479
|
attr_accessor severity: ::String
|
3451
|
-
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")
|
3452
3481
|
attr_accessor installed_time: ::Time
|
3453
3482
|
attr_accessor cve_ids: ::String
|
3454
3483
|
SENSITIVE: []
|
@@ -3873,7 +3902,7 @@ module Aws::SSM
|
|
3873
3902
|
|
3874
3903
|
class SendAutomationSignalRequest
|
3875
3904
|
attr_accessor automation_execution_id: ::String
|
3876
|
-
attr_accessor signal_type: ("Approve" | "Reject" | "StartStep" | "StopStep" | "Resume")
|
3905
|
+
attr_accessor signal_type: ("Approve" | "Reject" | "StartStep" | "StopStep" | "Resume" | "Revoke")
|
3877
3906
|
attr_accessor payload: ::Hash[::String, ::Array[::String]]
|
3878
3907
|
SENSITIVE: []
|
3879
3908
|
end
|
@@ -3908,6 +3937,15 @@ module Aws::SSM
|
|
3908
3937
|
SENSITIVE: []
|
3909
3938
|
end
|
3910
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
|
+
|
3911
3949
|
class ServiceSetting
|
3912
3950
|
attr_accessor setting_id: ::String
|
3913
3951
|
attr_accessor setting_value: ::String
|
@@ -3960,6 +3998,18 @@ module Aws::SSM
|
|
3960
3998
|
SENSITIVE: []
|
3961
3999
|
end
|
3962
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
|
+
|
3963
4013
|
class StartAssociationsOnceRequest
|
3964
4014
|
attr_accessor association_ids: ::Array[::String]
|
3965
4015
|
SENSITIVE: []
|
@@ -4142,6 +4192,13 @@ module Aws::SSM
|
|
4142
4192
|
SENSITIVE: []
|
4143
4193
|
end
|
4144
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
|
+
|
4145
4202
|
class TooManyTagsError < Aws::EmptyStructure
|
4146
4203
|
end
|
4147
4204
|
|
@@ -4398,7 +4455,7 @@ module Aws::SSM
|
|
4398
4455
|
attr_accessor notifications: ::Array[Types::OpsItemNotification]
|
4399
4456
|
attr_accessor priority: ::Integer
|
4400
4457
|
attr_accessor related_ops_items: ::Array[Types::RelatedOpsItem]
|
4401
|
-
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")
|
4402
4459
|
attr_accessor ops_item_id: ::String
|
4403
4460
|
attr_accessor title: ::String
|
4404
4461
|
attr_accessor category: ::String
|
@@ -4438,6 +4495,7 @@ module Aws::SSM
|
|
4438
4495
|
attr_accessor rejected_patches_action: ("ALLOW_AS_DEPENDENCY" | "BLOCK")
|
4439
4496
|
attr_accessor description: ::String
|
4440
4497
|
attr_accessor sources: ::Array[Types::PatchSource]
|
4498
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
4441
4499
|
attr_accessor replace: bool
|
4442
4500
|
SENSITIVE: []
|
4443
4501
|
end
|
@@ -4457,6 +4515,7 @@ module Aws::SSM
|
|
4457
4515
|
attr_accessor modified_date: ::Time
|
4458
4516
|
attr_accessor description: ::String
|
4459
4517
|
attr_accessor sources: ::Array[Types::PatchSource]
|
4518
|
+
attr_accessor available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")
|
4460
4519
|
SENSITIVE: []
|
4461
4520
|
end
|
4462
4521
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.193.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|