aws-sdk-ssm 1.184.0 → 1.186.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 +442 -9
- data/lib/aws-sdk-ssm/client_api.rb +246 -0
- data/lib/aws-sdk-ssm/errors.rb +37 -0
- data/lib/aws-sdk-ssm/types.rb +633 -17
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +116 -0
- data/sig/errors.rbs +7 -0
- data/sig/types.rbs +168 -0
- metadata +2 -2
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -1433,6 +1433,55 @@ module Aws::SSM
|
|
1433
1433
|
include Aws::Structure
|
1434
1434
|
end
|
1435
1435
|
|
1436
|
+
# Information about the optional inputs that can be specified for an
|
1437
|
+
# automation execution preview.
|
1438
|
+
#
|
1439
|
+
# @!attribute [rw] parameters
|
1440
|
+
# Information about parameters that can be specified for the preview
|
1441
|
+
# operation.
|
1442
|
+
# @return [Hash<String,Array<String>>]
|
1443
|
+
#
|
1444
|
+
# @!attribute [rw] target_parameter_name
|
1445
|
+
# The name of the parameter used as the target resource for the
|
1446
|
+
# rate-controlled execution. Required if you specify targets.
|
1447
|
+
# @return [String]
|
1448
|
+
#
|
1449
|
+
# @!attribute [rw] targets
|
1450
|
+
# Information about the resources that would be included in the actual
|
1451
|
+
# runbook execution, if it were to be run. Both Targets and TargetMaps
|
1452
|
+
# can't be specified together.
|
1453
|
+
# @return [Array<Types::Target>]
|
1454
|
+
#
|
1455
|
+
# @!attribute [rw] target_maps
|
1456
|
+
# A key-value mapping of document parameters to target resources. Both
|
1457
|
+
# Targets and TargetMaps can't be specified together.
|
1458
|
+
# @return [Array<Hash<String,Array<String>>>]
|
1459
|
+
#
|
1460
|
+
# @!attribute [rw] target_locations
|
1461
|
+
# Information about the Amazon Web Services Regions and Amazon Web
|
1462
|
+
# Services accounts targeted by the Automation execution preview
|
1463
|
+
# operation.
|
1464
|
+
# @return [Array<Types::TargetLocation>]
|
1465
|
+
#
|
1466
|
+
# @!attribute [rw] target_locations_url
|
1467
|
+
# A publicly accessible URL for a file that contains the
|
1468
|
+
# `TargetLocations` body. Currently, only files in presigned Amazon S3
|
1469
|
+
# buckets are supported.
|
1470
|
+
# @return [String]
|
1471
|
+
#
|
1472
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationExecutionInputs AWS API Documentation
|
1473
|
+
#
|
1474
|
+
class AutomationExecutionInputs < Struct.new(
|
1475
|
+
:parameters,
|
1476
|
+
:target_parameter_name,
|
1477
|
+
:targets,
|
1478
|
+
:target_maps,
|
1479
|
+
:target_locations,
|
1480
|
+
:target_locations_url)
|
1481
|
+
SENSITIVE = []
|
1482
|
+
include Aws::Structure
|
1483
|
+
end
|
1484
|
+
|
1436
1485
|
# The number of simultaneously running Automation executions exceeded
|
1437
1486
|
# the allowable limit.
|
1438
1487
|
#
|
@@ -1650,6 +1699,55 @@ module Aws::SSM
|
|
1650
1699
|
include Aws::Structure
|
1651
1700
|
end
|
1652
1701
|
|
1702
|
+
# Information about the results of the execution preview.
|
1703
|
+
#
|
1704
|
+
# @!attribute [rw] step_previews
|
1705
|
+
# Information about the type of impact a runbook step would have on a
|
1706
|
+
# resource.
|
1707
|
+
#
|
1708
|
+
# * `Mutating`: The runbook step would make changes to the targets
|
1709
|
+
# through actions that create, modify, or delete resources.
|
1710
|
+
#
|
1711
|
+
# * `Non_Mutating`: The runbook step would retrieve data about
|
1712
|
+
# resources but not make changes to them. This category generally
|
1713
|
+
# includes `Describe*`, `List*`, `Get*`, and similar read-only API
|
1714
|
+
# actions.
|
1715
|
+
#
|
1716
|
+
# * `Undetermined`: An undetermined step invokes executions performed
|
1717
|
+
# by another orchestration service like Lambda, Step Functions, or
|
1718
|
+
# Amazon Web Services Systems Manager Run Command. An undetermined
|
1719
|
+
# step might also call a third-party API. Systems Manager Automation
|
1720
|
+
# doesn't know the outcome of the orchestration processes or
|
1721
|
+
# third-party API executions, so the results of the steps are
|
1722
|
+
# undetermined.
|
1723
|
+
# @return [Hash<String,Integer>]
|
1724
|
+
#
|
1725
|
+
# @!attribute [rw] regions
|
1726
|
+
# Information about the Amazon Web Services Regions targeted by the
|
1727
|
+
# execution preview.
|
1728
|
+
# @return [Array<String>]
|
1729
|
+
#
|
1730
|
+
# @!attribute [rw] target_previews
|
1731
|
+
# Information that provides a preview of what the impact of running
|
1732
|
+
# the specified Automation runbook would be.
|
1733
|
+
# @return [Array<Types::TargetPreview>]
|
1734
|
+
#
|
1735
|
+
# @!attribute [rw] total_accounts
|
1736
|
+
# Information about the Amazon Web Services accounts that were
|
1737
|
+
# included in the execution preview.
|
1738
|
+
# @return [Integer]
|
1739
|
+
#
|
1740
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationExecutionPreview AWS API Documentation
|
1741
|
+
#
|
1742
|
+
class AutomationExecutionPreview < Struct.new(
|
1743
|
+
:step_previews,
|
1744
|
+
:regions,
|
1745
|
+
:target_previews,
|
1746
|
+
:total_accounts)
|
1747
|
+
SENSITIVE = []
|
1748
|
+
include Aws::Structure
|
1749
|
+
end
|
1750
|
+
|
1653
1751
|
# The specified step name and execution ID don't exist. Verify the
|
1654
1752
|
# information and try again.
|
1655
1753
|
#
|
@@ -2105,7 +2203,6 @@ module Aws::SSM
|
|
2105
2203
|
# * `NoInstancesInTag`
|
2106
2204
|
#
|
2107
2205
|
# * `LimitExceeded`
|
2108
|
-
#
|
2109
2206
|
# The status values you can specify for `ListCommandInvocations`
|
2110
2207
|
# are:
|
2111
2208
|
#
|
@@ -2134,7 +2231,6 @@ module Aws::SSM
|
|
2134
2231
|
# * `InvalidPlatform`
|
2135
2232
|
#
|
2136
2233
|
# * `Terminated`
|
2137
|
-
#
|
2138
2234
|
# * **DocumentName**: Specify name of the Amazon Web Services Systems
|
2139
2235
|
# Manager document (SSM document) for which you want to see command
|
2140
2236
|
# execution results. For example, specify `AWS-RunPatchBaseline` to
|
@@ -3849,6 +3945,11 @@ module Aws::SSM
|
|
3849
3945
|
#
|
3850
3946
|
# @!attribute [rw] global_filters
|
3851
3947
|
# A set of global filters used to include patches in the baseline.
|
3948
|
+
#
|
3949
|
+
# The `GlobalFilters` parameter can be configured only by using the
|
3950
|
+
# CLI or an Amazon Web Services SDK. It can't be configured from the
|
3951
|
+
# Patch Manager console, and its value isn't displayed in the
|
3952
|
+
# console.
|
3852
3953
|
# @return [Types::PatchFilterGroup]
|
3853
3954
|
#
|
3854
3955
|
# @!attribute [rw] approval_rules
|
@@ -7290,6 +7391,51 @@ module Aws::SSM
|
|
7290
7391
|
include Aws::Structure
|
7291
7392
|
end
|
7292
7393
|
|
7394
|
+
# Information about the inputs for an execution preview.
|
7395
|
+
#
|
7396
|
+
# @note ExecutionInputs is a union - when making an API calls you must set exactly one of the members.
|
7397
|
+
#
|
7398
|
+
# @!attribute [rw] automation
|
7399
|
+
# Information about the optional inputs that can be specified for an
|
7400
|
+
# automation execution preview.
|
7401
|
+
# @return [Types::AutomationExecutionInputs]
|
7402
|
+
#
|
7403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ExecutionInputs AWS API Documentation
|
7404
|
+
#
|
7405
|
+
class ExecutionInputs < Struct.new(
|
7406
|
+
:automation,
|
7407
|
+
:unknown)
|
7408
|
+
SENSITIVE = []
|
7409
|
+
include Aws::Structure
|
7410
|
+
include Aws::Structure::Union
|
7411
|
+
|
7412
|
+
class Automation < ExecutionInputs; end
|
7413
|
+
class Unknown < ExecutionInputs; end
|
7414
|
+
end
|
7415
|
+
|
7416
|
+
# Information about the changes that would be made if an execution were
|
7417
|
+
# run.
|
7418
|
+
#
|
7419
|
+
# @note ExecutionPreview is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ExecutionPreview corresponding to the set member.
|
7420
|
+
#
|
7421
|
+
# @!attribute [rw] automation
|
7422
|
+
# Information about the changes that would be made if an Automation
|
7423
|
+
# workflow were run.
|
7424
|
+
# @return [Types::AutomationExecutionPreview]
|
7425
|
+
#
|
7426
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ExecutionPreview AWS API Documentation
|
7427
|
+
#
|
7428
|
+
class ExecutionPreview < Struct.new(
|
7429
|
+
:automation,
|
7430
|
+
:unknown)
|
7431
|
+
SENSITIVE = []
|
7432
|
+
include Aws::Structure
|
7433
|
+
include Aws::Structure::Union
|
7434
|
+
|
7435
|
+
class Automation < ExecutionPreview; end
|
7436
|
+
class Unknown < ExecutionPreview; end
|
7437
|
+
end
|
7438
|
+
|
7293
7439
|
# Describes a failed association.
|
7294
7440
|
#
|
7295
7441
|
# @!attribute [rw] entry
|
@@ -7898,6 +8044,53 @@ module Aws::SSM
|
|
7898
8044
|
include Aws::Structure
|
7899
8045
|
end
|
7900
8046
|
|
8047
|
+
# @!attribute [rw] execution_preview_id
|
8048
|
+
# The ID of the existing execution preview.
|
8049
|
+
# @return [String]
|
8050
|
+
#
|
8051
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetExecutionPreviewRequest AWS API Documentation
|
8052
|
+
#
|
8053
|
+
class GetExecutionPreviewRequest < Struct.new(
|
8054
|
+
:execution_preview_id)
|
8055
|
+
SENSITIVE = []
|
8056
|
+
include Aws::Structure
|
8057
|
+
end
|
8058
|
+
|
8059
|
+
# @!attribute [rw] execution_preview_id
|
8060
|
+
# The generated ID for the existing execution preview.
|
8061
|
+
# @return [String]
|
8062
|
+
#
|
8063
|
+
# @!attribute [rw] ended_at
|
8064
|
+
# A UTC timestamp indicating when the execution preview operation
|
8065
|
+
# ended.
|
8066
|
+
# @return [Time]
|
8067
|
+
#
|
8068
|
+
# @!attribute [rw] status
|
8069
|
+
# The current status of the execution preview operation.
|
8070
|
+
# @return [String]
|
8071
|
+
#
|
8072
|
+
# @!attribute [rw] status_message
|
8073
|
+
# Supplemental information about the current status of the execution
|
8074
|
+
# preview.
|
8075
|
+
# @return [String]
|
8076
|
+
#
|
8077
|
+
# @!attribute [rw] execution_preview
|
8078
|
+
# Information about the changes that would be made if an execution
|
8079
|
+
# were run.
|
8080
|
+
# @return [Types::ExecutionPreview]
|
8081
|
+
#
|
8082
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetExecutionPreviewResponse AWS API Documentation
|
8083
|
+
#
|
8084
|
+
class GetExecutionPreviewResponse < Struct.new(
|
8085
|
+
:execution_preview_id,
|
8086
|
+
:ended_at,
|
8087
|
+
:status,
|
8088
|
+
:status_message,
|
8089
|
+
:execution_preview)
|
8090
|
+
SENSITIVE = []
|
8091
|
+
include Aws::Structure
|
8092
|
+
end
|
8093
|
+
|
7901
8094
|
# @!attribute [rw] filters
|
7902
8095
|
# One or more filters. Use a filter to return a more specific list of
|
7903
8096
|
# results.
|
@@ -9165,16 +9358,20 @@ module Aws::SSM
|
|
9165
9358
|
# The ID of the service setting to get. The setting ID can be one of
|
9166
9359
|
# the following.
|
9167
9360
|
#
|
9168
|
-
# * `/ssm/
|
9361
|
+
# * `/ssm/appmanager/appmanager-enabled`
|
9169
9362
|
#
|
9170
9363
|
# * `/ssm/automation/customer-script-log-destination`
|
9171
9364
|
#
|
9172
9365
|
# * `/ssm/automation/customer-script-log-group-name`
|
9173
9366
|
#
|
9367
|
+
# * /ssm/automation/enable-adaptive-concurrency
|
9368
|
+
#
|
9174
9369
|
# * `/ssm/documents/console/public-sharing-permission`
|
9175
9370
|
#
|
9176
9371
|
# * `/ssm/managed-instance/activation-tier`
|
9177
9372
|
#
|
9373
|
+
# * `/ssm/managed-instance/default-ec2-instance-management-role`
|
9374
|
+
#
|
9178
9375
|
# * `/ssm/opsinsights/opscenter`
|
9179
9376
|
#
|
9180
9377
|
# * `/ssm/parameter-store/default-parameter-tier`
|
@@ -9436,6 +9633,67 @@ module Aws::SSM
|
|
9436
9633
|
include Aws::Structure
|
9437
9634
|
end
|
9438
9635
|
|
9636
|
+
# Details about a specific managed node.
|
9637
|
+
#
|
9638
|
+
# @!attribute [rw] agent_type
|
9639
|
+
# The type of agent installed on the node.
|
9640
|
+
# @return [String]
|
9641
|
+
#
|
9642
|
+
# @!attribute [rw] agent_version
|
9643
|
+
# The version number of the agent installed on the node.
|
9644
|
+
# @return [String]
|
9645
|
+
#
|
9646
|
+
# @!attribute [rw] computer_name
|
9647
|
+
# The fully qualified host name of the managed node.
|
9648
|
+
# @return [String]
|
9649
|
+
#
|
9650
|
+
# @!attribute [rw] instance_status
|
9651
|
+
# The current status of the managed node.
|
9652
|
+
# @return [String]
|
9653
|
+
#
|
9654
|
+
# @!attribute [rw] ip_address
|
9655
|
+
# The IP address of the managed node.
|
9656
|
+
# @return [String]
|
9657
|
+
#
|
9658
|
+
# @!attribute [rw] managed_status
|
9659
|
+
# Indicates whether the node is managed by Systems Manager.
|
9660
|
+
# @return [String]
|
9661
|
+
#
|
9662
|
+
# @!attribute [rw] platform_type
|
9663
|
+
# The operating system platform type of the managed node.
|
9664
|
+
# @return [String]
|
9665
|
+
#
|
9666
|
+
# @!attribute [rw] platform_name
|
9667
|
+
# The name of the operating system platform running on your managed
|
9668
|
+
# node.
|
9669
|
+
# @return [String]
|
9670
|
+
#
|
9671
|
+
# @!attribute [rw] platform_version
|
9672
|
+
# The version of the OS platform running on your managed node.
|
9673
|
+
# @return [String]
|
9674
|
+
#
|
9675
|
+
# @!attribute [rw] resource_type
|
9676
|
+
# The type of instance, either an EC2 instance or another supported
|
9677
|
+
# machine type in a hybrid fleet.
|
9678
|
+
# @return [String]
|
9679
|
+
#
|
9680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstanceInfo AWS API Documentation
|
9681
|
+
#
|
9682
|
+
class InstanceInfo < Struct.new(
|
9683
|
+
:agent_type,
|
9684
|
+
:agent_version,
|
9685
|
+
:computer_name,
|
9686
|
+
:instance_status,
|
9687
|
+
:ip_address,
|
9688
|
+
:managed_status,
|
9689
|
+
:platform_type,
|
9690
|
+
:platform_name,
|
9691
|
+
:platform_version,
|
9692
|
+
:resource_type)
|
9693
|
+
SENSITIVE = [:ip_address]
|
9694
|
+
include Aws::Structure
|
9695
|
+
end
|
9696
|
+
|
9439
9697
|
# Describes a filter for a specific list of managed nodes.
|
9440
9698
|
#
|
9441
9699
|
# @!attribute [rw] instance_id
|
@@ -9964,7 +10222,7 @@ module Aws::SSM
|
|
9964
10222
|
#
|
9965
10223
|
# @!attribute [rw] platform_type
|
9966
10224
|
# The operating system platform type of the managed node. For example,
|
9967
|
-
# Windows.
|
10225
|
+
# Windows Server or Amazon Linux 2.
|
9968
10226
|
# @return [String]
|
9969
10227
|
#
|
9970
10228
|
# @!attribute [rw] platform_name
|
@@ -10128,7 +10386,7 @@ module Aws::SSM
|
|
10128
10386
|
include Aws::Structure
|
10129
10387
|
end
|
10130
10388
|
|
10131
|
-
# The activation ID isn't valid. Verify
|
10389
|
+
# The activation ID isn't valid. Verify that you entered the correct
|
10132
10390
|
# ActivationId or ActivationCode and try again.
|
10133
10391
|
#
|
10134
10392
|
# @!attribute [rw] message
|
@@ -10142,9 +10400,8 @@ module Aws::SSM
|
|
10142
10400
|
include Aws::Structure
|
10143
10401
|
end
|
10144
10402
|
|
10145
|
-
# The specified aggregator isn't valid for
|
10146
|
-
#
|
10147
|
-
# `AWS:Application` or `AWS:InstanceInformation`.
|
10403
|
+
# The specified aggregator isn't valid for the group type. Verify that
|
10404
|
+
# the aggregator you provided is supported.
|
10148
10405
|
#
|
10149
10406
|
# @!attribute [rw] message
|
10150
10407
|
# @return [String]
|
@@ -10358,7 +10615,7 @@ module Aws::SSM
|
|
10358
10615
|
include Aws::Structure
|
10359
10616
|
end
|
10360
10617
|
|
10361
|
-
# The filter name isn't valid. Verify
|
10618
|
+
# The filter name isn't valid. Verify that you entered the correct name
|
10362
10619
|
# and try again.
|
10363
10620
|
#
|
10364
10621
|
# @!attribute [rw] message
|
@@ -11797,6 +12054,117 @@ module Aws::SSM
|
|
11797
12054
|
include Aws::Structure
|
11798
12055
|
end
|
11799
12056
|
|
12057
|
+
# @!attribute [rw] sync_name
|
12058
|
+
# The name of the resource data sync to retrieve information about.
|
12059
|
+
# Required for cross-account/cross-Region configurations. Optional for
|
12060
|
+
# single account/single-Region configurations.
|
12061
|
+
# @return [String]
|
12062
|
+
#
|
12063
|
+
# @!attribute [rw] filters
|
12064
|
+
# One or more filters. Use a filter to return a more specific list of
|
12065
|
+
# managed nodes.
|
12066
|
+
# @return [Array<Types::NodeFilter>]
|
12067
|
+
#
|
12068
|
+
# @!attribute [rw] next_token
|
12069
|
+
# The token for the next set of items to return. (You received this
|
12070
|
+
# token from a previous call.)
|
12071
|
+
# @return [String]
|
12072
|
+
#
|
12073
|
+
# @!attribute [rw] max_results
|
12074
|
+
# The maximum number of items to return for this call. The call also
|
12075
|
+
# returns a token that you can specify in a subsequent call to get the
|
12076
|
+
# next set of results.
|
12077
|
+
# @return [Integer]
|
12078
|
+
#
|
12079
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListNodesRequest AWS API Documentation
|
12080
|
+
#
|
12081
|
+
class ListNodesRequest < Struct.new(
|
12082
|
+
:sync_name,
|
12083
|
+
:filters,
|
12084
|
+
:next_token,
|
12085
|
+
:max_results)
|
12086
|
+
SENSITIVE = []
|
12087
|
+
include Aws::Structure
|
12088
|
+
end
|
12089
|
+
|
12090
|
+
# @!attribute [rw] nodes
|
12091
|
+
# A list of managed nodes that match the specified filter criteria.
|
12092
|
+
# @return [Array<Types::Node>]
|
12093
|
+
#
|
12094
|
+
# @!attribute [rw] next_token
|
12095
|
+
# The token to use when requesting the next set of items. If there are
|
12096
|
+
# no additional items to return, the string is empty.
|
12097
|
+
# @return [String]
|
12098
|
+
#
|
12099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListNodesResult AWS API Documentation
|
12100
|
+
#
|
12101
|
+
class ListNodesResult < Struct.new(
|
12102
|
+
:nodes,
|
12103
|
+
:next_token)
|
12104
|
+
SENSITIVE = []
|
12105
|
+
include Aws::Structure
|
12106
|
+
end
|
12107
|
+
|
12108
|
+
# @!attribute [rw] sync_name
|
12109
|
+
# The name of the resource data sync to retrieve information about.
|
12110
|
+
# Required for cross-account/cross-Region configuration. Optional for
|
12111
|
+
# single account/single-Region configurations.
|
12112
|
+
# @return [String]
|
12113
|
+
#
|
12114
|
+
# @!attribute [rw] filters
|
12115
|
+
# One or more filters. Use a filter to generate a summary that matches
|
12116
|
+
# your specified filter criteria.
|
12117
|
+
# @return [Array<Types::NodeFilter>]
|
12118
|
+
#
|
12119
|
+
# @!attribute [rw] aggregators
|
12120
|
+
# Specify one or more aggregators to return a count of managed nodes
|
12121
|
+
# that match that expression. For example, a count of managed nodes by
|
12122
|
+
# operating system.
|
12123
|
+
# @return [Array<Types::NodeAggregator>]
|
12124
|
+
#
|
12125
|
+
# @!attribute [rw] next_token
|
12126
|
+
# The token for the next set of items to return. (You received this
|
12127
|
+
# token from a previous call.) The call also returns a token that you
|
12128
|
+
# can specify in a subsequent call to get the next set of results.
|
12129
|
+
# @return [String]
|
12130
|
+
#
|
12131
|
+
# @!attribute [rw] max_results
|
12132
|
+
# The maximum number of items to return for this call. The call also
|
12133
|
+
# returns a token that you can specify in a subsequent call to get the
|
12134
|
+
# next set of results.
|
12135
|
+
# @return [Integer]
|
12136
|
+
#
|
12137
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListNodesSummaryRequest AWS API Documentation
|
12138
|
+
#
|
12139
|
+
class ListNodesSummaryRequest < Struct.new(
|
12140
|
+
:sync_name,
|
12141
|
+
:filters,
|
12142
|
+
:aggregators,
|
12143
|
+
:next_token,
|
12144
|
+
:max_results)
|
12145
|
+
SENSITIVE = []
|
12146
|
+
include Aws::Structure
|
12147
|
+
end
|
12148
|
+
|
12149
|
+
# @!attribute [rw] summary
|
12150
|
+
# A collection of objects reporting information about your managed
|
12151
|
+
# nodes, such as the count of nodes by operating system.
|
12152
|
+
# @return [Array<Hash<String,String>>]
|
12153
|
+
#
|
12154
|
+
# @!attribute [rw] next_token
|
12155
|
+
# The token to use when requesting the next set of items. If there are
|
12156
|
+
# no additional items to return, the string is empty.
|
12157
|
+
# @return [String]
|
12158
|
+
#
|
12159
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListNodesSummaryResult AWS API Documentation
|
12160
|
+
#
|
12161
|
+
class ListNodesSummaryResult < Struct.new(
|
12162
|
+
:summary,
|
12163
|
+
:next_token)
|
12164
|
+
SENSITIVE = []
|
12165
|
+
include Aws::Structure
|
12166
|
+
end
|
12167
|
+
|
11800
12168
|
# @!attribute [rw] filters
|
11801
12169
|
# One or more OpsItem filters. Use a filter to return a more specific
|
11802
12170
|
# list of results.
|
@@ -13006,6 +13374,149 @@ module Aws::SSM
|
|
13006
13374
|
#
|
13007
13375
|
class ModifyDocumentPermissionResponse < Aws::EmptyStructure; end
|
13008
13376
|
|
13377
|
+
# Details about an individual managed node.
|
13378
|
+
#
|
13379
|
+
# @!attribute [rw] capture_time
|
13380
|
+
# The UTC timestamp for when the managed node data was last captured.
|
13381
|
+
# @return [Time]
|
13382
|
+
#
|
13383
|
+
# @!attribute [rw] id
|
13384
|
+
# The ID of the managed node.
|
13385
|
+
# @return [String]
|
13386
|
+
#
|
13387
|
+
# @!attribute [rw] owner
|
13388
|
+
# Information about the ownership of the managed node.
|
13389
|
+
# @return [Types::NodeOwnerInfo]
|
13390
|
+
#
|
13391
|
+
# @!attribute [rw] region
|
13392
|
+
# The Amazon Web Services Region that a managed node was created in or
|
13393
|
+
# assigned to.
|
13394
|
+
# @return [String]
|
13395
|
+
#
|
13396
|
+
# @!attribute [rw] node_type
|
13397
|
+
# Information about the type of node.
|
13398
|
+
# @return [Types::NodeType]
|
13399
|
+
#
|
13400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Node AWS API Documentation
|
13401
|
+
#
|
13402
|
+
class Node < Struct.new(
|
13403
|
+
:capture_time,
|
13404
|
+
:id,
|
13405
|
+
:owner,
|
13406
|
+
:region,
|
13407
|
+
:node_type)
|
13408
|
+
SENSITIVE = []
|
13409
|
+
include Aws::Structure
|
13410
|
+
end
|
13411
|
+
|
13412
|
+
# One or more aggregators for viewing counts of nodes using different
|
13413
|
+
# dimensions.
|
13414
|
+
#
|
13415
|
+
# @!attribute [rw] aggregator_type
|
13416
|
+
# The aggregator type for limiting a node summary. Currently, only
|
13417
|
+
# `Count` is supported.
|
13418
|
+
# @return [String]
|
13419
|
+
#
|
13420
|
+
# @!attribute [rw] type_name
|
13421
|
+
# The data type name to use for viewing counts of nodes. Currently,
|
13422
|
+
# only `Instance` is supported.
|
13423
|
+
# @return [String]
|
13424
|
+
#
|
13425
|
+
# @!attribute [rw] attribute_name
|
13426
|
+
# The name of a node attribute on which to limit the count of nodes.
|
13427
|
+
# @return [String]
|
13428
|
+
#
|
13429
|
+
# @!attribute [rw] aggregators
|
13430
|
+
# Information about aggregators used to refine a node summary.
|
13431
|
+
# @return [Array<Types::NodeAggregator>]
|
13432
|
+
#
|
13433
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/NodeAggregator AWS API Documentation
|
13434
|
+
#
|
13435
|
+
class NodeAggregator < Struct.new(
|
13436
|
+
:aggregator_type,
|
13437
|
+
:type_name,
|
13438
|
+
:attribute_name,
|
13439
|
+
:aggregators)
|
13440
|
+
SENSITIVE = []
|
13441
|
+
include Aws::Structure
|
13442
|
+
end
|
13443
|
+
|
13444
|
+
# The filters for the operation.
|
13445
|
+
#
|
13446
|
+
# @!attribute [rw] key
|
13447
|
+
# The name of the filter.
|
13448
|
+
# @return [String]
|
13449
|
+
#
|
13450
|
+
# @!attribute [rw] values
|
13451
|
+
# A filter value supported by the specified key. For example, for the
|
13452
|
+
# key `PlatformType`, supported values include `Linux` and `Windows`.
|
13453
|
+
# @return [Array<String>]
|
13454
|
+
#
|
13455
|
+
# @!attribute [rw] type
|
13456
|
+
# The type of filter operator.
|
13457
|
+
# @return [String]
|
13458
|
+
#
|
13459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/NodeFilter AWS API Documentation
|
13460
|
+
#
|
13461
|
+
class NodeFilter < Struct.new(
|
13462
|
+
:key,
|
13463
|
+
:values,
|
13464
|
+
:type)
|
13465
|
+
SENSITIVE = []
|
13466
|
+
include Aws::Structure
|
13467
|
+
end
|
13468
|
+
|
13469
|
+
# Information about ownership of a managed node.
|
13470
|
+
#
|
13471
|
+
# @!attribute [rw] account_id
|
13472
|
+
# The ID of the Amazon Web Services account that owns the managed
|
13473
|
+
# node.
|
13474
|
+
# @return [String]
|
13475
|
+
#
|
13476
|
+
# @!attribute [rw] organizational_unit_id
|
13477
|
+
# The ID of the organization unit (OU) that the account is part of.
|
13478
|
+
# @return [String]
|
13479
|
+
#
|
13480
|
+
# @!attribute [rw] organizational_unit_path
|
13481
|
+
# The path for the organizational unit (OU) that owns the managed
|
13482
|
+
# node. The path for the OU is built using the IDs of the
|
13483
|
+
# organization, root, and all OUs in the path down to and including
|
13484
|
+
# the OU. For example:
|
13485
|
+
#
|
13486
|
+
# `o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-ghi0-awsccccc/ou-jkl0-awsddddd/`
|
13487
|
+
# @return [String]
|
13488
|
+
#
|
13489
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/NodeOwnerInfo AWS API Documentation
|
13490
|
+
#
|
13491
|
+
class NodeOwnerInfo < Struct.new(
|
13492
|
+
:account_id,
|
13493
|
+
:organizational_unit_id,
|
13494
|
+
:organizational_unit_path)
|
13495
|
+
SENSITIVE = []
|
13496
|
+
include Aws::Structure
|
13497
|
+
end
|
13498
|
+
|
13499
|
+
# Information about a managed node's type.
|
13500
|
+
#
|
13501
|
+
# @note NodeType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of NodeType corresponding to the set member.
|
13502
|
+
#
|
13503
|
+
# @!attribute [rw] instance
|
13504
|
+
# Information about a specific managed node.
|
13505
|
+
# @return [Types::InstanceInfo]
|
13506
|
+
#
|
13507
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/NodeType AWS API Documentation
|
13508
|
+
#
|
13509
|
+
class NodeType < Struct.new(
|
13510
|
+
:instance,
|
13511
|
+
:unknown)
|
13512
|
+
SENSITIVE = []
|
13513
|
+
include Aws::Structure
|
13514
|
+
include Aws::Structure::Union
|
13515
|
+
|
13516
|
+
class Instance < NodeType; end
|
13517
|
+
class Unknown < NodeType; end
|
13518
|
+
end
|
13519
|
+
|
13009
13520
|
# A summary of resources that aren't compliant. The summary is
|
13010
13521
|
# organized according to resource type.
|
13011
13522
|
#
|
@@ -14305,7 +14816,7 @@ module Aws::SSM
|
|
14305
14816
|
# @return [String]
|
14306
14817
|
#
|
14307
14818
|
# @!attribute [rw] arn
|
14308
|
-
# The (ARN) of the
|
14819
|
+
# The Amazon Resource Name (ARN) of the parameter.
|
14309
14820
|
# @return [String]
|
14310
14821
|
#
|
14311
14822
|
# @!attribute [rw] type
|
@@ -15926,7 +16437,6 @@ module Aws::SSM
|
|
15926
16437
|
# the command associated with the task. However, there is no
|
15927
16438
|
# guarantee that the command will be terminated and the underlying
|
15928
16439
|
# process stopped.
|
15929
|
-
#
|
15930
16440
|
# The status for tasks that are not completed is `TIMED_OUT`.
|
15931
16441
|
# @return [String]
|
15932
16442
|
#
|
@@ -16070,16 +16580,20 @@ module Aws::SSM
|
|
16070
16580
|
# The Amazon Resource Name (ARN) of the service setting to reset. The
|
16071
16581
|
# setting ID can be one of the following.
|
16072
16582
|
#
|
16073
|
-
# * `/ssm/
|
16583
|
+
# * `/ssm/appmanager/appmanager-enabled`
|
16074
16584
|
#
|
16075
16585
|
# * `/ssm/automation/customer-script-log-destination`
|
16076
16586
|
#
|
16077
16587
|
# * `/ssm/automation/customer-script-log-group-name`
|
16078
16588
|
#
|
16589
|
+
# * /ssm/automation/enable-adaptive-concurrency
|
16590
|
+
#
|
16079
16591
|
# * `/ssm/documents/console/public-sharing-permission`
|
16080
16592
|
#
|
16081
16593
|
# * `/ssm/managed-instance/activation-tier`
|
16082
16594
|
#
|
16595
|
+
# * `/ssm/managed-instance/default-ec2-instance-management-role`
|
16596
|
+
#
|
16083
16597
|
# * `/ssm/opsinsights/opscenter`
|
16084
16598
|
#
|
16085
16599
|
# * `/ssm/parameter-store/default-parameter-tier`
|
@@ -17346,7 +17860,6 @@ module Aws::SSM
|
|
17346
17860
|
# * Terminating
|
17347
17861
|
#
|
17348
17862
|
# * Failed
|
17349
|
-
#
|
17350
17863
|
# * SessionId: Specify a session ID to return details about the
|
17351
17864
|
# session.
|
17352
17865
|
# @return [String]
|
@@ -17725,6 +18238,44 @@ module Aws::SSM
|
|
17725
18238
|
include Aws::Structure
|
17726
18239
|
end
|
17727
18240
|
|
18241
|
+
# @!attribute [rw] document_name
|
18242
|
+
# The name of the Automation runbook to run. The result of the
|
18243
|
+
# execution preview indicates what the impact would be of running this
|
18244
|
+
# runbook.
|
18245
|
+
# @return [String]
|
18246
|
+
#
|
18247
|
+
# @!attribute [rw] document_version
|
18248
|
+
# The version of the Automation runbook to run. The default value is
|
18249
|
+
# `$DEFAULT`.
|
18250
|
+
# @return [String]
|
18251
|
+
#
|
18252
|
+
# @!attribute [rw] execution_inputs
|
18253
|
+
# Information about the inputs that can be specified for the preview
|
18254
|
+
# operation.
|
18255
|
+
# @return [Types::ExecutionInputs]
|
18256
|
+
#
|
18257
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartExecutionPreviewRequest AWS API Documentation
|
18258
|
+
#
|
18259
|
+
class StartExecutionPreviewRequest < Struct.new(
|
18260
|
+
:document_name,
|
18261
|
+
:document_version,
|
18262
|
+
:execution_inputs)
|
18263
|
+
SENSITIVE = []
|
18264
|
+
include Aws::Structure
|
18265
|
+
end
|
18266
|
+
|
18267
|
+
# @!attribute [rw] execution_preview_id
|
18268
|
+
# The ID of the execution preview generated by the system.
|
18269
|
+
# @return [String]
|
18270
|
+
#
|
18271
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartExecutionPreviewResponse AWS API Documentation
|
18272
|
+
#
|
18273
|
+
class StartExecutionPreviewResponse < Struct.new(
|
18274
|
+
:execution_preview_id)
|
18275
|
+
SENSITIVE = []
|
18276
|
+
include Aws::Structure
|
18277
|
+
end
|
18278
|
+
|
17728
18279
|
# @!attribute [rw] target
|
17729
18280
|
# The managed node to connect to for the session.
|
17730
18281
|
# @return [String]
|
@@ -18251,6 +18802,27 @@ module Aws::SSM
|
|
18251
18802
|
include Aws::Structure
|
18252
18803
|
end
|
18253
18804
|
|
18805
|
+
# Information about the resources that would be included in the actual
|
18806
|
+
# runbook execution, if it were to be run.
|
18807
|
+
#
|
18808
|
+
# @!attribute [rw] count
|
18809
|
+
# The number of resources of a certain type included in an execution
|
18810
|
+
# preview.
|
18811
|
+
# @return [Integer]
|
18812
|
+
#
|
18813
|
+
# @!attribute [rw] target_type
|
18814
|
+
# A type of resource that was included in the execution preview.
|
18815
|
+
# @return [String]
|
18816
|
+
#
|
18817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/TargetPreview AWS API Documentation
|
18818
|
+
#
|
18819
|
+
class TargetPreview < Struct.new(
|
18820
|
+
:count,
|
18821
|
+
:target_type)
|
18822
|
+
SENSITIVE = []
|
18823
|
+
include Aws::Structure
|
18824
|
+
end
|
18825
|
+
|
18254
18826
|
# @!attribute [rw] session_id
|
18255
18827
|
# The ID of the session to terminate.
|
18256
18828
|
# @return [String]
|
@@ -18440,6 +19012,21 @@ module Aws::SSM
|
|
18440
19012
|
include Aws::Structure
|
18441
19013
|
end
|
18442
19014
|
|
19015
|
+
# This operation is not supported for the current account. You must
|
19016
|
+
# first enable the Systems Manager integrated experience in your
|
19017
|
+
# account.
|
19018
|
+
#
|
19019
|
+
# @!attribute [rw] message
|
19020
|
+
# @return [String]
|
19021
|
+
#
|
19022
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UnsupportedOperationException AWS API Documentation
|
19023
|
+
#
|
19024
|
+
class UnsupportedOperationException < Struct.new(
|
19025
|
+
:message)
|
19026
|
+
SENSITIVE = []
|
19027
|
+
include Aws::Structure
|
19028
|
+
end
|
19029
|
+
|
18443
19030
|
# The parameter type isn't supported.
|
18444
19031
|
#
|
18445
19032
|
# @!attribute [rw] message
|
@@ -19359,7 +19946,6 @@ module Aws::SSM
|
|
19359
19946
|
# the command associated with the task. However, there is no
|
19360
19947
|
# guarantee that the command will be terminated and the underlying
|
19361
19948
|
# process stopped.
|
19362
|
-
#
|
19363
19949
|
# The status for tasks that are not completed is `TIMED_OUT`.
|
19364
19950
|
# @return [String]
|
19365
19951
|
#
|
@@ -19730,6 +20316,11 @@ module Aws::SSM
|
|
19730
20316
|
#
|
19731
20317
|
# @!attribute [rw] global_filters
|
19732
20318
|
# A set of global filters used to include patches in the baseline.
|
20319
|
+
#
|
20320
|
+
# The `GlobalFilters` parameter can be configured only by using the
|
20321
|
+
# CLI or an Amazon Web Services SDK. It can't be configured from the
|
20322
|
+
# Patch Manager console, and its value isn't displayed in the
|
20323
|
+
# console.
|
19733
20324
|
# @return [Types::PatchFilterGroup]
|
19734
20325
|
#
|
19735
20326
|
# @!attribute [rw] approval_rules
|
@@ -19956,16 +20547,20 @@ module Aws::SSM
|
|
19956
20547
|
# `arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled`.
|
19957
20548
|
# The setting ID can be one of the following.
|
19958
20549
|
#
|
19959
|
-
# * `/ssm/
|
20550
|
+
# * `/ssm/appmanager/appmanager-enabled`
|
19960
20551
|
#
|
19961
20552
|
# * `/ssm/automation/customer-script-log-destination`
|
19962
20553
|
#
|
19963
20554
|
# * `/ssm/automation/customer-script-log-group-name`
|
19964
20555
|
#
|
20556
|
+
# * /ssm/automation/enable-adaptive-concurrency
|
20557
|
+
#
|
19965
20558
|
# * `/ssm/documents/console/public-sharing-permission`
|
19966
20559
|
#
|
19967
20560
|
# * `/ssm/managed-instance/activation-tier`
|
19968
20561
|
#
|
20562
|
+
# * `/ssm/managed-instance/default-ec2-instance-management-role`
|
20563
|
+
#
|
19969
20564
|
# * `/ssm/opsinsights/opscenter`
|
19970
20565
|
#
|
19971
20566
|
# * `/ssm/parameter-store/default-parameter-tier`
|
@@ -19985,8 +20580,7 @@ module Aws::SSM
|
|
19985
20580
|
# The new value to specify for the service setting. The following list
|
19986
20581
|
# specifies the available values for each setting.
|
19987
20582
|
#
|
19988
|
-
# * For `/ssm/
|
19989
|
-
# enter the name of an IAM role.
|
20583
|
+
# * For `/ssm/appmanager/appmanager-enabled`, enter `True` or `False`.
|
19990
20584
|
#
|
19991
20585
|
# * For `/ssm/automation/customer-script-log-destination`, enter
|
19992
20586
|
# `CloudWatch`.
|
@@ -20000,6 +20594,9 @@ module Aws::SSM
|
|
20000
20594
|
# * For `/ssm/managed-instance/activation-tier`, enter `standard` or
|
20001
20595
|
# `advanced`.
|
20002
20596
|
#
|
20597
|
+
# * For `/ssm/managed-instance/default-ec2-instance-management-role`,
|
20598
|
+
# enter the name of an IAM role.
|
20599
|
+
#
|
20003
20600
|
# * For `/ssm/opsinsights/opscenter`, enter `Enabled` or `Disabled`.
|
20004
20601
|
#
|
20005
20602
|
# * For `/ssm/parameter-store/default-parameter-tier`, enter
|
@@ -20024,6 +20621,25 @@ module Aws::SSM
|
|
20024
20621
|
#
|
20025
20622
|
class UpdateServiceSettingResult < Aws::EmptyStructure; end
|
20026
20623
|
|
20624
|
+
# The request isn't valid. Verify that you entered valid contents for
|
20625
|
+
# the command and try again.
|
20626
|
+
#
|
20627
|
+
# @!attribute [rw] message
|
20628
|
+
# @return [String]
|
20629
|
+
#
|
20630
|
+
# @!attribute [rw] reason_code
|
20631
|
+
# The reason code for the invalid request.
|
20632
|
+
# @return [String]
|
20633
|
+
#
|
20634
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ValidationException AWS API Documentation
|
20635
|
+
#
|
20636
|
+
class ValidationException < Struct.new(
|
20637
|
+
:message,
|
20638
|
+
:reason_code)
|
20639
|
+
SENSITIVE = []
|
20640
|
+
include Aws::Structure
|
20641
|
+
end
|
20642
|
+
|
20027
20643
|
end
|
20028
20644
|
end
|
20029
20645
|
|