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/lib/aws-sdk-ssm.rb
CHANGED
@@ -11,17 +11,7 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
-
|
15
|
-
require_relative 'aws-sdk-ssm/client_api'
|
16
|
-
require_relative 'aws-sdk-ssm/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-ssm/client'
|
18
|
-
require_relative 'aws-sdk-ssm/errors'
|
19
|
-
require_relative 'aws-sdk-ssm/waiters'
|
20
|
-
require_relative 'aws-sdk-ssm/resource'
|
21
|
-
require_relative 'aws-sdk-ssm/endpoint_parameters'
|
22
|
-
require_relative 'aws-sdk-ssm/endpoint_provider'
|
23
|
-
require_relative 'aws-sdk-ssm/endpoints'
|
24
|
-
require_relative 'aws-sdk-ssm/customizations'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:ssm)
|
25
15
|
|
26
16
|
# This module provides support for Amazon Simple Systems Manager (SSM). This module is available in the
|
27
17
|
# `aws-sdk-ssm` gem.
|
@@ -52,7 +42,21 @@ require_relative 'aws-sdk-ssm/customizations'
|
|
52
42
|
#
|
53
43
|
# @!group service
|
54
44
|
module Aws::SSM
|
45
|
+
autoload :Types, 'aws-sdk-ssm/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-ssm/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-ssm/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-ssm/client'
|
51
|
+
autoload :Errors, 'aws-sdk-ssm/errors'
|
52
|
+
autoload :Waiters, 'aws-sdk-ssm/waiters'
|
53
|
+
autoload :Resource, 'aws-sdk-ssm/resource'
|
54
|
+
autoload :EndpointParameters, 'aws-sdk-ssm/endpoint_parameters'
|
55
|
+
autoload :EndpointProvider, 'aws-sdk-ssm/endpoint_provider'
|
56
|
+
autoload :Endpoints, 'aws-sdk-ssm/endpoints'
|
55
57
|
|
56
|
-
GEM_VERSION = '1.
|
58
|
+
GEM_VERSION = '1.196.0'
|
57
59
|
|
58
60
|
end
|
61
|
+
|
62
|
+
require_relative 'aws-sdk-ssm/customizations'
|
data/sig/client.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -38,7 +39,9 @@ module Aws
|
|
38
39
|
?logger: untyped,
|
39
40
|
?max_attempts: Integer,
|
40
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
41
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
42
45
|
?retry_backoff: Proc,
|
43
46
|
?retry_base_delay: Float,
|
44
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -51,6 +54,7 @@ module Aws
|
|
51
54
|
?sigv4a_signing_region_set: Array[String],
|
52
55
|
?simple_json: bool,
|
53
56
|
?stub_responses: untyped,
|
57
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
58
|
?token_provider: untyped,
|
55
59
|
?use_dualstack_endpoint: bool,
|
56
60
|
?use_fips_endpoint: bool,
|
@@ -196,7 +200,17 @@ module Aws
|
|
196
200
|
name: ::String
|
197
201
|
},
|
198
202
|
]
|
199
|
-
}
|
203
|
+
}?,
|
204
|
+
include_child_organization_units: bool?,
|
205
|
+
exclude_accounts: Array[::String]?,
|
206
|
+
targets: Array[
|
207
|
+
{
|
208
|
+
key: ::String?,
|
209
|
+
values: Array[::String]?
|
210
|
+
},
|
211
|
+
]?,
|
212
|
+
targets_max_concurrency: ::String?,
|
213
|
+
targets_max_errors: ::String?
|
200
214
|
},
|
201
215
|
],
|
202
216
|
?schedule_offset: ::Integer,
|
@@ -270,7 +284,17 @@ module Aws
|
|
270
284
|
name: ::String
|
271
285
|
},
|
272
286
|
]
|
273
|
-
}
|
287
|
+
}?,
|
288
|
+
include_child_organization_units: bool?,
|
289
|
+
exclude_accounts: Array[::String]?,
|
290
|
+
targets: Array[
|
291
|
+
{
|
292
|
+
key: ::String?,
|
293
|
+
values: Array[::String]?
|
294
|
+
},
|
295
|
+
]?,
|
296
|
+
targets_max_concurrency: ::String?,
|
297
|
+
targets_max_errors: ::String?
|
274
298
|
},
|
275
299
|
]?,
|
276
300
|
schedule_offset: ::Integer?,
|
@@ -316,7 +340,7 @@ module Aws
|
|
316
340
|
name: ::String,
|
317
341
|
?display_name: ::String,
|
318
342
|
?version_name: ::String,
|
319
|
-
?document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup"),
|
343
|
+
?document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy"),
|
320
344
|
?document_format: ("YAML" | "JSON" | "TEXT"),
|
321
345
|
?target_type: ::String,
|
322
346
|
?tags: Array[
|
@@ -462,6 +486,7 @@ module Aws
|
|
462
486
|
configuration: ::String
|
463
487
|
},
|
464
488
|
],
|
489
|
+
?available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT"),
|
465
490
|
?client_token: ::String,
|
466
491
|
?tags: Array[
|
467
492
|
{
|
@@ -1153,7 +1178,7 @@ module Aws
|
|
1153
1178
|
def describe_ops_items: (
|
1154
1179
|
?ops_item_filters: Array[
|
1155
1180
|
{
|
1156
|
-
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"),
|
1181
|
+
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"),
|
1157
1182
|
values: Array[::String],
|
1158
1183
|
operator: ("Equal" | "Contains" | "GreaterThan" | "LessThan")
|
1159
1184
|
},
|
@@ -1221,6 +1246,7 @@ module Aws
|
|
1221
1246
|
def instances_with_critical_non_compliant_patches: () -> ::Integer
|
1222
1247
|
def instances_with_security_non_compliant_patches: () -> ::Integer
|
1223
1248
|
def instances_with_other_non_compliant_patches: () -> ::Integer
|
1249
|
+
def instances_with_available_security_updates: () -> ::Integer
|
1224
1250
|
end
|
1225
1251
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#describe_patch_group_state-instance_method
|
1226
1252
|
def describe_patch_group_state: (
|
@@ -1290,6 +1316,17 @@ module Aws
|
|
1290
1316
|
) -> _DisassociateOpsItemRelatedItemResponseSuccess
|
1291
1317
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateOpsItemRelatedItemResponseSuccess
|
1292
1318
|
|
1319
|
+
interface _GetAccessTokenResponseSuccess
|
1320
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccessTokenResponse]
|
1321
|
+
def credentials: () -> Types::Credentials
|
1322
|
+
def access_request_status: () -> ("Approved" | "Rejected" | "Revoked" | "Expired" | "Pending")
|
1323
|
+
end
|
1324
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#get_access_token-instance_method
|
1325
|
+
def get_access_token: (
|
1326
|
+
access_request_id: ::String
|
1327
|
+
) -> _GetAccessTokenResponseSuccess
|
1328
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccessTokenResponseSuccess
|
1329
|
+
|
1293
1330
|
interface _GetAutomationExecutionResponseSuccess
|
1294
1331
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAutomationExecutionResult]
|
1295
1332
|
def automation_execution: () -> Types::AutomationExecution
|
@@ -1413,7 +1450,8 @@ module Aws
|
|
1413
1450
|
products: Array[::String],
|
1414
1451
|
configuration: ::String
|
1415
1452
|
},
|
1416
|
-
]
|
1453
|
+
]?,
|
1454
|
+
available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")?
|
1417
1455
|
}
|
1418
1456
|
) -> _GetDeployablePatchSnapshotForInstanceResponseSuccess
|
1419
1457
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeployablePatchSnapshotForInstanceResponseSuccess
|
@@ -1428,7 +1466,7 @@ module Aws
|
|
1428
1466
|
def status: () -> ("Creating" | "Active" | "Updating" | "Deleting" | "Failed")
|
1429
1467
|
def status_information: () -> ::String
|
1430
1468
|
def content: () -> ::String
|
1431
|
-
def document_type: () -> ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup")
|
1469
|
+
def document_type: () -> ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy")
|
1432
1470
|
def document_format: () -> ("YAML" | "JSON" | "TEXT")
|
1433
1471
|
def requires: () -> ::Array[Types::DocumentRequires]
|
1434
1472
|
def attachments_content: () -> ::Array[Types::AttachmentContent]
|
@@ -1443,6 +1481,20 @@ module Aws
|
|
1443
1481
|
) -> _GetDocumentResponseSuccess
|
1444
1482
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDocumentResponseSuccess
|
1445
1483
|
|
1484
|
+
interface _GetExecutionPreviewResponseSuccess
|
1485
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetExecutionPreviewResponse]
|
1486
|
+
def execution_preview_id: () -> ::String
|
1487
|
+
def ended_at: () -> ::Time
|
1488
|
+
def status: () -> ("Pending" | "InProgress" | "Success" | "Failed")
|
1489
|
+
def status_message: () -> ::String
|
1490
|
+
def execution_preview: () -> Types::ExecutionPreview
|
1491
|
+
end
|
1492
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#get_execution_preview-instance_method
|
1493
|
+
def get_execution_preview: (
|
1494
|
+
execution_preview_id: ::String
|
1495
|
+
) -> _GetExecutionPreviewResponseSuccess
|
1496
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetExecutionPreviewResponseSuccess
|
1497
|
+
|
1446
1498
|
interface _GetInventoryResponseSuccess
|
1447
1499
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetInventoryResult]
|
1448
1500
|
def entities: () -> ::Array[Types::InventoryResultEntity]
|
@@ -1755,6 +1807,7 @@ module Aws
|
|
1755
1807
|
def modified_date: () -> ::Time
|
1756
1808
|
def description: () -> ::String
|
1757
1809
|
def sources: () -> ::Array[Types::PatchSource]
|
1810
|
+
def available_security_updates_compliance_status: () -> ("COMPLIANT" | "NON_COMPLIANT")
|
1758
1811
|
end
|
1759
1812
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#get_patch_baseline-instance_method
|
1760
1813
|
def get_patch_baseline: (
|
@@ -2003,6 +2056,54 @@ module Aws
|
|
2003
2056
|
) -> _ListInventoryEntriesResponseSuccess
|
2004
2057
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInventoryEntriesResponseSuccess
|
2005
2058
|
|
2059
|
+
interface _ListNodesResponseSuccess
|
2060
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListNodesResult]
|
2061
|
+
def nodes: () -> ::Array[Types::Node]
|
2062
|
+
def next_token: () -> ::String
|
2063
|
+
end
|
2064
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#list_nodes-instance_method
|
2065
|
+
def list_nodes: (
|
2066
|
+
?sync_name: ::String,
|
2067
|
+
?filters: Array[
|
2068
|
+
{
|
2069
|
+
key: ("AgentType" | "AgentVersion" | "ComputerName" | "InstanceId" | "InstanceStatus" | "IpAddress" | "ManagedStatus" | "PlatformName" | "PlatformType" | "PlatformVersion" | "ResourceType" | "OrganizationalUnitId" | "OrganizationalUnitPath" | "Region" | "AccountId"),
|
2070
|
+
values: Array[::String],
|
2071
|
+
type: ("Equal" | "NotEqual" | "BeginWith")?
|
2072
|
+
},
|
2073
|
+
],
|
2074
|
+
?next_token: ::String,
|
2075
|
+
?max_results: ::Integer
|
2076
|
+
) -> _ListNodesResponseSuccess
|
2077
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNodesResponseSuccess
|
2078
|
+
|
2079
|
+
interface _ListNodesSummaryResponseSuccess
|
2080
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListNodesSummaryResult]
|
2081
|
+
def summary: () -> ::Array[::Hash[::String, ::String]]
|
2082
|
+
def next_token: () -> ::String
|
2083
|
+
end
|
2084
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#list_nodes_summary-instance_method
|
2085
|
+
def list_nodes_summary: (
|
2086
|
+
?sync_name: ::String,
|
2087
|
+
?filters: Array[
|
2088
|
+
{
|
2089
|
+
key: ("AgentType" | "AgentVersion" | "ComputerName" | "InstanceId" | "InstanceStatus" | "IpAddress" | "ManagedStatus" | "PlatformName" | "PlatformType" | "PlatformVersion" | "ResourceType" | "OrganizationalUnitId" | "OrganizationalUnitPath" | "Region" | "AccountId"),
|
2090
|
+
values: Array[::String],
|
2091
|
+
type: ("Equal" | "NotEqual" | "BeginWith")?
|
2092
|
+
},
|
2093
|
+
],
|
2094
|
+
aggregators: Array[
|
2095
|
+
{
|
2096
|
+
aggregator_type: ("Count"),
|
2097
|
+
type_name: ("Instance"),
|
2098
|
+
attribute_name: ("AgentVersion" | "PlatformName" | "PlatformType" | "PlatformVersion" | "Region" | "ResourceType"),
|
2099
|
+
aggregators: untyped?
|
2100
|
+
},
|
2101
|
+
],
|
2102
|
+
?next_token: ::String,
|
2103
|
+
?max_results: ::Integer
|
2104
|
+
) -> _ListNodesSummaryResponseSuccess
|
2105
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNodesSummaryResponseSuccess
|
2106
|
+
|
2006
2107
|
interface _ListOpsItemEventsResponseSuccess
|
2007
2108
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListOpsItemEventsResponse]
|
2008
2109
|
def next_token: () -> ::String
|
@@ -2364,7 +2465,7 @@ module Aws
|
|
2364
2465
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#send_automation_signal-instance_method
|
2365
2466
|
def send_automation_signal: (
|
2366
2467
|
automation_execution_id: ::String,
|
2367
|
-
signal_type: ("Approve" | "Reject" | "StartStep" | "StopStep" | "Resume"),
|
2468
|
+
signal_type: ("Approve" | "Reject" | "StartStep" | "StopStep" | "Resume" | "Revoke"),
|
2368
2469
|
?payload: Hash[::String, Array[::String]]
|
2369
2470
|
) -> _SendAutomationSignalResponseSuccess
|
2370
2471
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendAutomationSignalResponseSuccess
|
@@ -2415,6 +2516,28 @@ module Aws
|
|
2415
2516
|
) -> _SendCommandResponseSuccess
|
2416
2517
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendCommandResponseSuccess
|
2417
2518
|
|
2519
|
+
interface _StartAccessRequestResponseSuccess
|
2520
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartAccessRequestResponse]
|
2521
|
+
def access_request_id: () -> ::String
|
2522
|
+
end
|
2523
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#start_access_request-instance_method
|
2524
|
+
def start_access_request: (
|
2525
|
+
reason: ::String,
|
2526
|
+
targets: Array[
|
2527
|
+
{
|
2528
|
+
key: ::String?,
|
2529
|
+
values: Array[::String]?
|
2530
|
+
},
|
2531
|
+
],
|
2532
|
+
?tags: Array[
|
2533
|
+
{
|
2534
|
+
key: ::String,
|
2535
|
+
value: ::String
|
2536
|
+
},
|
2537
|
+
]
|
2538
|
+
) -> _StartAccessRequestResponseSuccess
|
2539
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAccessRequestResponseSuccess
|
2540
|
+
|
2418
2541
|
interface _StartAssociationsOnceResponseSuccess
|
2419
2542
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartAssociationsOnceResult]
|
2420
2543
|
end
|
@@ -2461,7 +2584,17 @@ module Aws
|
|
2461
2584
|
name: ::String
|
2462
2585
|
},
|
2463
2586
|
]
|
2464
|
-
}
|
2587
|
+
}?,
|
2588
|
+
include_child_organization_units: bool?,
|
2589
|
+
exclude_accounts: Array[::String]?,
|
2590
|
+
targets: Array[
|
2591
|
+
{
|
2592
|
+
key: ::String?,
|
2593
|
+
values: Array[::String]?
|
2594
|
+
},
|
2595
|
+
]?,
|
2596
|
+
targets_max_concurrency: ::String?,
|
2597
|
+
targets_max_errors: ::String?
|
2465
2598
|
},
|
2466
2599
|
],
|
2467
2600
|
?tags: Array[
|
@@ -2477,7 +2610,8 @@ module Aws
|
|
2477
2610
|
name: ::String
|
2478
2611
|
},
|
2479
2612
|
]
|
2480
|
-
}
|
2613
|
+
},
|
2614
|
+
?target_locations_url: ::String
|
2481
2615
|
) -> _StartAutomationExecutionResponseSuccess
|
2482
2616
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAutomationExecutionResponseSuccess
|
2483
2617
|
|
@@ -2525,7 +2659,17 @@ module Aws
|
|
2525
2659
|
name: ::String
|
2526
2660
|
},
|
2527
2661
|
]
|
2528
|
-
}
|
2662
|
+
}?,
|
2663
|
+
include_child_organization_units: bool?,
|
2664
|
+
exclude_accounts: Array[::String]?,
|
2665
|
+
targets: Array[
|
2666
|
+
{
|
2667
|
+
key: ::String?,
|
2668
|
+
values: Array[::String]?
|
2669
|
+
},
|
2670
|
+
]?,
|
2671
|
+
targets_max_concurrency: ::String?,
|
2672
|
+
targets_max_errors: ::String?
|
2529
2673
|
},
|
2530
2674
|
]?
|
2531
2675
|
},
|
@@ -2541,6 +2685,60 @@ module Aws
|
|
2541
2685
|
) -> _StartChangeRequestExecutionResponseSuccess
|
2542
2686
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChangeRequestExecutionResponseSuccess
|
2543
2687
|
|
2688
|
+
interface _StartExecutionPreviewResponseSuccess
|
2689
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartExecutionPreviewResponse]
|
2690
|
+
def execution_preview_id: () -> ::String
|
2691
|
+
end
|
2692
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#start_execution_preview-instance_method
|
2693
|
+
def start_execution_preview: (
|
2694
|
+
document_name: ::String,
|
2695
|
+
?document_version: ::String,
|
2696
|
+
?execution_inputs: {
|
2697
|
+
automation: {
|
2698
|
+
parameters: Hash[::String, Array[::String]]?,
|
2699
|
+
target_parameter_name: ::String?,
|
2700
|
+
targets: Array[
|
2701
|
+
{
|
2702
|
+
key: ::String?,
|
2703
|
+
values: Array[::String]?
|
2704
|
+
},
|
2705
|
+
]?,
|
2706
|
+
target_maps: Array[
|
2707
|
+
Hash[::String, Array[::String]],
|
2708
|
+
]?,
|
2709
|
+
target_locations: Array[
|
2710
|
+
{
|
2711
|
+
accounts: Array[::String]?,
|
2712
|
+
regions: Array[::String]?,
|
2713
|
+
target_location_max_concurrency: ::String?,
|
2714
|
+
target_location_max_errors: ::String?,
|
2715
|
+
execution_role_name: ::String?,
|
2716
|
+
target_location_alarm_configuration: {
|
2717
|
+
ignore_poll_alarm_failure: bool?,
|
2718
|
+
alarms: Array[
|
2719
|
+
{
|
2720
|
+
name: ::String
|
2721
|
+
},
|
2722
|
+
]
|
2723
|
+
}?,
|
2724
|
+
include_child_organization_units: bool?,
|
2725
|
+
exclude_accounts: Array[::String]?,
|
2726
|
+
targets: Array[
|
2727
|
+
{
|
2728
|
+
key: ::String?,
|
2729
|
+
values: Array[::String]?
|
2730
|
+
},
|
2731
|
+
]?,
|
2732
|
+
targets_max_concurrency: ::String?,
|
2733
|
+
targets_max_errors: ::String?
|
2734
|
+
},
|
2735
|
+
]?,
|
2736
|
+
target_locations_url: ::String?
|
2737
|
+
}?
|
2738
|
+
}
|
2739
|
+
) -> _StartExecutionPreviewResponseSuccess
|
2740
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartExecutionPreviewResponseSuccess
|
2741
|
+
|
2544
2742
|
interface _StartSessionResponseSuccess
|
2545
2743
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartSessionResponse]
|
2546
2744
|
def session_id: () -> ::String
|
@@ -2636,7 +2834,17 @@ module Aws
|
|
2636
2834
|
name: ::String
|
2637
2835
|
},
|
2638
2836
|
]
|
2639
|
-
}
|
2837
|
+
}?,
|
2838
|
+
include_child_organization_units: bool?,
|
2839
|
+
exclude_accounts: Array[::String]?,
|
2840
|
+
targets: Array[
|
2841
|
+
{
|
2842
|
+
key: ::String?,
|
2843
|
+
values: Array[::String]?
|
2844
|
+
},
|
2845
|
+
]?,
|
2846
|
+
targets_max_concurrency: ::String?,
|
2847
|
+
targets_max_errors: ::String?
|
2640
2848
|
},
|
2641
2849
|
],
|
2642
2850
|
?schedule_offset: ::Integer,
|
@@ -2907,7 +3115,7 @@ module Aws
|
|
2907
3115
|
ops_item_id: ::String
|
2908
3116
|
},
|
2909
3117
|
],
|
2910
|
-
?status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Rejected" | "Closed"),
|
3118
|
+
?status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Revoked" | "Rejected" | "Closed"),
|
2911
3119
|
ops_item_id: ::String,
|
2912
3120
|
?title: ::String,
|
2913
3121
|
?category: ::String,
|
@@ -2950,6 +3158,7 @@ module Aws
|
|
2950
3158
|
def modified_date: () -> ::Time
|
2951
3159
|
def description: () -> ::String
|
2952
3160
|
def sources: () -> ::Array[Types::PatchSource]
|
3161
|
+
def available_security_updates_compliance_status: () -> ("COMPLIANT" | "NON_COMPLIANT")
|
2953
3162
|
end
|
2954
3163
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#update_patch_baseline-instance_method
|
2955
3164
|
def update_patch_baseline: (
|
@@ -2994,6 +3203,7 @@ module Aws
|
|
2994
3203
|
configuration: ::String
|
2995
3204
|
},
|
2996
3205
|
],
|
3206
|
+
?available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT"),
|
2997
3207
|
?replace: bool
|
2998
3208
|
) -> _UpdatePatchBaselineResponseSuccess
|
2999
3209
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePatchBaselineResponseSuccess
|
data/sig/errors.rbs
CHANGED
@@ -11,6 +11,9 @@ module Aws
|
|
11
11
|
class ServiceError < ::Aws::Errors::ServiceError
|
12
12
|
end
|
13
13
|
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
14
17
|
class AlreadyExistsException < ::Aws::Errors::ServiceError
|
15
18
|
def message: () -> ::String
|
16
19
|
end
|
@@ -368,6 +371,13 @@ module Aws
|
|
368
371
|
class ResourcePolicyNotFoundException < ::Aws::Errors::ServiceError
|
369
372
|
def message: () -> ::String
|
370
373
|
end
|
374
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
375
|
+
def message: () -> ::String
|
376
|
+
def resource_id: () -> ::String
|
377
|
+
def resource_type: () -> ::String
|
378
|
+
def quota_code: () -> ::String
|
379
|
+
def service_code: () -> ::String
|
380
|
+
end
|
371
381
|
class ServiceSettingNotFound < ::Aws::Errors::ServiceError
|
372
382
|
def message: () -> ::String
|
373
383
|
end
|
@@ -382,6 +392,11 @@ module Aws
|
|
382
392
|
class TargetNotConnected < ::Aws::Errors::ServiceError
|
383
393
|
def message: () -> ::String
|
384
394
|
end
|
395
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
396
|
+
def message: () -> ::String
|
397
|
+
def quota_code: () -> ::String
|
398
|
+
def service_code: () -> ::String
|
399
|
+
end
|
385
400
|
class TooManyTagsError < ::Aws::Errors::ServiceError
|
386
401
|
end
|
387
402
|
class TooManyUpdates < ::Aws::Errors::ServiceError
|
@@ -406,12 +421,19 @@ module Aws
|
|
406
421
|
class UnsupportedOperatingSystem < ::Aws::Errors::ServiceError
|
407
422
|
def message: () -> ::String
|
408
423
|
end
|
424
|
+
class UnsupportedOperationException < ::Aws::Errors::ServiceError
|
425
|
+
def message: () -> ::String
|
426
|
+
end
|
409
427
|
class UnsupportedParameterType < ::Aws::Errors::ServiceError
|
410
428
|
def message: () -> ::String
|
411
429
|
end
|
412
430
|
class UnsupportedPlatformType < ::Aws::Errors::ServiceError
|
413
431
|
def message: () -> ::String
|
414
432
|
end
|
433
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
434
|
+
def message: () -> ::String
|
435
|
+
def reason_code: () -> ::String
|
436
|
+
end
|
415
437
|
end
|
416
438
|
end
|
417
439
|
end
|
data/sig/resource.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -38,7 +39,9 @@ module Aws
|
|
38
39
|
?logger: untyped,
|
39
40
|
?max_attempts: Integer,
|
40
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
41
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
42
45
|
?retry_backoff: Proc,
|
43
46
|
?retry_base_delay: Float,
|
44
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -51,6 +54,7 @@ module Aws
|
|
51
54
|
?sigv4a_signing_region_set: Array[String],
|
52
55
|
?simple_json: bool,
|
53
56
|
?stub_responses: untyped,
|
57
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
58
|
?token_provider: untyped,
|
55
59
|
?use_dualstack_endpoint: bool,
|
56
60
|
?use_fips_endpoint: bool,
|