aws-sdk-ssm 1.119.0 → 1.123.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +37 -20
- data/lib/aws-sdk-ssm/client_api.rb +5 -0
- data/lib/aws-sdk-ssm/types.rb +39 -21
- data/lib/aws-sdk-ssm.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c00afbf5348c7c35820f07ec3ed9e81cc40592301103658dd51c75fc2549bc03
|
4
|
+
data.tar.gz: f00d99a6189f0892978d0bff8dba7100b1104d2699806c80ed1f5fbe6d405413
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b7852647c960a6620193e38d7c006708a0a40694e41452356d89c19e1788a9d20298cd268efd98e4f736a3ebf43c75b3427071886a60544d15f627a5f04ce27
|
7
|
+
data.tar.gz: a42618238232a79c7646e14476a84467ca2300900645dc6de647f7899b48982a3f5965261c4a19e367910b2234f2982cad81de5bf32548055caddbffd75a6ce2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.123.0 (2021-11-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for Session Reason and Max Session Duration for Systems Manager Session Manager.
|
8
|
+
|
9
|
+
1.122.0 (2021-11-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This Patch Manager release supports creating Patch Baselines for RaspberryPi OS (formerly Raspbian)
|
13
|
+
|
14
|
+
1.121.0 (2021-11-04)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.120.0 (2021-10-18)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.119.0 (2021-10-01)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.123.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -285,6 +285,15 @@ module Aws::SSM
|
|
285
285
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
286
286
|
# requests are made, and retries are disabled.
|
287
287
|
#
|
288
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
289
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
290
|
+
# will be used if available.
|
291
|
+
#
|
292
|
+
# @option options [Boolean] :use_fips_endpoint
|
293
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
294
|
+
# When a `fips` region is used, the region is normalized and this config
|
295
|
+
# is set to `true`.
|
296
|
+
#
|
288
297
|
# @option options [Boolean] :validate_params (true)
|
289
298
|
# When `true`, request parameters are validated before
|
290
299
|
# sending the request.
|
@@ -756,10 +765,10 @@ module Aws::SSM
|
|
756
765
|
# Specify a descriptive name for the association.
|
757
766
|
#
|
758
767
|
# @option params [String] :automation_target_parameter_name
|
759
|
-
#
|
760
|
-
# associations that use an Automation
|
761
|
-
# using rate controls. Automation is a
|
762
|
-
# Systems Manager.
|
768
|
+
# Choose the parameter that will define how your automation will branch
|
769
|
+
# out. This target is required for associations that use an Automation
|
770
|
+
# runbook and target resources by using rate controls. Automation is a
|
771
|
+
# capability of Amazon Web Services Systems Manager.
|
763
772
|
#
|
764
773
|
# @option params [String] :max_errors
|
765
774
|
# The number of errors that are allowed before the system stops sending
|
@@ -1768,7 +1777,7 @@ module Aws::SSM
|
|
1768
1777
|
# @example Request syntax with placeholder values
|
1769
1778
|
#
|
1770
1779
|
# resp = client.create_patch_baseline({
|
1771
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
1780
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
1772
1781
|
# name: "BaselineName", # required
|
1773
1782
|
# global_filters: {
|
1774
1783
|
# patch_filters: [ # required
|
@@ -4604,7 +4613,7 @@ module Aws::SSM
|
|
4604
4613
|
# resp.baseline_identities #=> Array
|
4605
4614
|
# resp.baseline_identities[0].baseline_id #=> String
|
4606
4615
|
# resp.baseline_identities[0].baseline_name #=> String
|
4607
|
-
# resp.baseline_identities[0].operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
|
4616
|
+
# resp.baseline_identities[0].operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
|
4608
4617
|
# resp.baseline_identities[0].baseline_description #=> String
|
4609
4618
|
# resp.baseline_identities[0].default_baseline #=> Boolean
|
4610
4619
|
# resp.next_token #=> String
|
@@ -4717,7 +4726,7 @@ module Aws::SSM
|
|
4717
4726
|
# resp.mappings[0].patch_group #=> String
|
4718
4727
|
# resp.mappings[0].baseline_identity.baseline_id #=> String
|
4719
4728
|
# resp.mappings[0].baseline_identity.baseline_name #=> String
|
4720
|
-
# resp.mappings[0].baseline_identity.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
|
4729
|
+
# resp.mappings[0].baseline_identity.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
|
4721
4730
|
# resp.mappings[0].baseline_identity.baseline_description #=> String
|
4722
4731
|
# resp.mappings[0].baseline_identity.default_baseline #=> Boolean
|
4723
4732
|
# resp.next_token #=> String
|
@@ -4812,7 +4821,7 @@ module Aws::SSM
|
|
4812
4821
|
# @example Request syntax with placeholder values
|
4813
4822
|
#
|
4814
4823
|
# resp = client.describe_patch_properties({
|
4815
|
-
# operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
4824
|
+
# operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
4816
4825
|
# property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
|
4817
4826
|
# patch_set: "OS", # accepts OS, APPLICATION
|
4818
4827
|
# max_results: 1,
|
@@ -4886,9 +4895,11 @@ module Aws::SSM
|
|
4886
4895
|
# resp.sessions[0].end_date #=> Time
|
4887
4896
|
# resp.sessions[0].document_name #=> String
|
4888
4897
|
# resp.sessions[0].owner #=> String
|
4898
|
+
# resp.sessions[0].reason #=> String
|
4889
4899
|
# resp.sessions[0].details #=> String
|
4890
4900
|
# resp.sessions[0].output_url.s3_output_url #=> String
|
4891
4901
|
# resp.sessions[0].output_url.cloud_watch_output_url #=> String
|
4902
|
+
# resp.sessions[0].max_session_duration #=> String
|
4892
4903
|
# resp.next_token #=> String
|
4893
4904
|
#
|
4894
4905
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeSessions AWS API Documentation
|
@@ -5286,13 +5297,13 @@ module Aws::SSM
|
|
5286
5297
|
# @example Request syntax with placeholder values
|
5287
5298
|
#
|
5288
5299
|
# resp = client.get_default_patch_baseline({
|
5289
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
5300
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
5290
5301
|
# })
|
5291
5302
|
#
|
5292
5303
|
# @example Response structure
|
5293
5304
|
#
|
5294
5305
|
# resp.baseline_id #=> String
|
5295
|
-
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
|
5306
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
|
5296
5307
|
#
|
5297
5308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaseline AWS API Documentation
|
5298
5309
|
#
|
@@ -5343,7 +5354,7 @@ module Aws::SSM
|
|
5343
5354
|
# instance_id: "InstanceId", # required
|
5344
5355
|
# snapshot_id: "SnapshotId", # required
|
5345
5356
|
# baseline_override: {
|
5346
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
5357
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
5347
5358
|
# global_filters: {
|
5348
5359
|
# patch_filters: [ # required
|
5349
5360
|
# {
|
@@ -6474,7 +6485,7 @@ module Aws::SSM
|
|
6474
6485
|
#
|
6475
6486
|
# resp.baseline_id #=> String
|
6476
6487
|
# resp.name #=> String
|
6477
|
-
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
|
6488
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
|
6478
6489
|
# resp.global_filters.patch_filters #=> Array
|
6479
6490
|
# resp.global_filters.patch_filters[0].key #=> String, one of "ARCH", "ADVISORY_ID", "BUGZILLA_ID", "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "CVE_ID", "EPOCH", "MSRC_SEVERITY", "NAME", "PATCH_ID", "SECTION", "PRIORITY", "REPOSITORY", "RELEASE", "SEVERITY", "SECURITY", "VERSION"
|
6480
6491
|
# resp.global_filters.patch_filters[0].values #=> Array
|
@@ -6535,14 +6546,14 @@ module Aws::SSM
|
|
6535
6546
|
#
|
6536
6547
|
# resp = client.get_patch_baseline_for_patch_group({
|
6537
6548
|
# patch_group: "PatchGroup", # required
|
6538
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
6549
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
6539
6550
|
# })
|
6540
6551
|
#
|
6541
6552
|
# @example Response structure
|
6542
6553
|
#
|
6543
6554
|
# resp.baseline_id #=> String
|
6544
6555
|
# resp.patch_group #=> String
|
6545
|
-
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
|
6556
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
|
6546
6557
|
#
|
6547
6558
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroup AWS API Documentation
|
6548
6559
|
#
|
@@ -9563,6 +9574,11 @@ module Aws::SSM
|
|
9563
9574
|
# attempting to start a session. If no document name is provided, a
|
9564
9575
|
# shell to the instance is launched by default.
|
9565
9576
|
#
|
9577
|
+
# @option params [String] :reason
|
9578
|
+
# The reason for connecting to the instance. This value is included in
|
9579
|
+
# the details for the Amazon CloudWatch Events event created when you
|
9580
|
+
# start the session.
|
9581
|
+
#
|
9566
9582
|
# @option params [Hash<String,Array>] :parameters
|
9567
9583
|
# Reserved for future use.
|
9568
9584
|
#
|
@@ -9577,6 +9593,7 @@ module Aws::SSM
|
|
9577
9593
|
# resp = client.start_session({
|
9578
9594
|
# target: "SessionTarget", # required
|
9579
9595
|
# document_name: "DocumentARN",
|
9596
|
+
# reason: "SessionReason",
|
9580
9597
|
# parameters: {
|
9581
9598
|
# "SessionManagerParameterName" => ["SessionManagerParameterValue"],
|
9582
9599
|
# },
|
@@ -9766,10 +9783,10 @@ module Aws::SSM
|
|
9766
9783
|
# this parameter.
|
9767
9784
|
#
|
9768
9785
|
# @option params [String] :automation_target_parameter_name
|
9769
|
-
#
|
9770
|
-
# associations that use an Automation
|
9771
|
-
# using rate controls. Automation is a
|
9772
|
-
# Systems Manager.
|
9786
|
+
# Choose the parameter that will define how your automation will branch
|
9787
|
+
# out. This target is required for associations that use an Automation
|
9788
|
+
# runbook and target resources by using rate controls. Automation is a
|
9789
|
+
# capability of Amazon Web Services Systems Manager.
|
9773
9790
|
#
|
9774
9791
|
# @option params [String] :max_errors
|
9775
9792
|
# The number of errors that are allowed before the system stops sending
|
@@ -11190,7 +11207,7 @@ module Aws::SSM
|
|
11190
11207
|
#
|
11191
11208
|
# resp.baseline_id #=> String
|
11192
11209
|
# resp.name #=> String
|
11193
|
-
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
|
11210
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
|
11194
11211
|
# resp.global_filters.patch_filters #=> Array
|
11195
11212
|
# resp.global_filters.patch_filters[0].key #=> String, one of "ARCH", "ADVISORY_ID", "BUGZILLA_ID", "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "CVE_ID", "EPOCH", "MSRC_SEVERITY", "NAME", "PATCH_ID", "SECTION", "PRIORITY", "REPOSITORY", "RELEASE", "SEVERITY", "SECURITY", "VERSION"
|
11196
11213
|
# resp.global_filters.patch_filters[0].values #=> Array
|
@@ -11373,7 +11390,7 @@ module Aws::SSM
|
|
11373
11390
|
params: params,
|
11374
11391
|
config: config)
|
11375
11392
|
context[:gem_name] = 'aws-sdk-ssm'
|
11376
|
-
context[:gem_version] = '1.
|
11393
|
+
context[:gem_version] = '1.123.0'
|
11377
11394
|
Seahorse::Client::Request.new(handlers, context)
|
11378
11395
|
end
|
11379
11396
|
|
@@ -688,6 +688,7 @@ module Aws::SSM
|
|
688
688
|
MaxErrors = Shapes::StringShape.new(name: 'MaxErrors')
|
689
689
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
690
690
|
MaxResultsEC2Compatible = Shapes::IntegerShape.new(name: 'MaxResultsEC2Compatible')
|
691
|
+
MaxSessionDuration = Shapes::StringShape.new(name: 'MaxSessionDuration')
|
691
692
|
MetadataKey = Shapes::StringShape.new(name: 'MetadataKey')
|
692
693
|
MetadataKeysToDeleteList = Shapes::ListShape.new(name: 'MetadataKeysToDeleteList')
|
693
694
|
MetadataMap = Shapes::MapShape.new(name: 'MetadataMap')
|
@@ -1049,6 +1050,7 @@ module Aws::SSM
|
|
1049
1050
|
SessionManagerS3OutputUrl = Shapes::StringShape.new(name: 'SessionManagerS3OutputUrl')
|
1050
1051
|
SessionMaxResults = Shapes::IntegerShape.new(name: 'SessionMaxResults')
|
1051
1052
|
SessionOwner = Shapes::StringShape.new(name: 'SessionOwner')
|
1053
|
+
SessionReason = Shapes::StringShape.new(name: 'SessionReason')
|
1052
1054
|
SessionState = Shapes::StringShape.new(name: 'SessionState')
|
1053
1055
|
SessionStatus = Shapes::StringShape.new(name: 'SessionStatus')
|
1054
1056
|
SessionTarget = Shapes::StringShape.new(name: 'SessionTarget')
|
@@ -4101,8 +4103,10 @@ module Aws::SSM
|
|
4101
4103
|
Session.add_member(:end_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "EndDate"))
|
4102
4104
|
Session.add_member(:document_name, Shapes::ShapeRef.new(shape: DocumentName, location_name: "DocumentName"))
|
4103
4105
|
Session.add_member(:owner, Shapes::ShapeRef.new(shape: SessionOwner, location_name: "Owner"))
|
4106
|
+
Session.add_member(:reason, Shapes::ShapeRef.new(shape: SessionReason, location_name: "Reason"))
|
4104
4107
|
Session.add_member(:details, Shapes::ShapeRef.new(shape: SessionDetails, location_name: "Details"))
|
4105
4108
|
Session.add_member(:output_url, Shapes::ShapeRef.new(shape: SessionManagerOutputUrl, location_name: "OutputUrl"))
|
4109
|
+
Session.add_member(:max_session_duration, Shapes::ShapeRef.new(shape: MaxSessionDuration, location_name: "MaxSessionDuration"))
|
4106
4110
|
Session.struct_class = Types::Session
|
4107
4111
|
|
4108
4112
|
SessionFilter.add_member(:key, Shapes::ShapeRef.new(shape: SessionFilterKey, required: true, location_name: "key"))
|
@@ -4170,6 +4174,7 @@ module Aws::SSM
|
|
4170
4174
|
|
4171
4175
|
StartSessionRequest.add_member(:target, Shapes::ShapeRef.new(shape: SessionTarget, required: true, location_name: "Target"))
|
4172
4176
|
StartSessionRequest.add_member(:document_name, Shapes::ShapeRef.new(shape: DocumentARN, location_name: "DocumentName"))
|
4177
|
+
StartSessionRequest.add_member(:reason, Shapes::ShapeRef.new(shape: SessionReason, location_name: "Reason"))
|
4173
4178
|
StartSessionRequest.add_member(:parameters, Shapes::ShapeRef.new(shape: SessionManagerParameters, location_name: "Parameters"))
|
4174
4179
|
StartSessionRequest.struct_class = Types::StartSessionRequest
|
4175
4180
|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -360,10 +360,10 @@ module Aws::SSM
|
|
360
360
|
# @return [String]
|
361
361
|
#
|
362
362
|
# @!attribute [rw] automation_target_parameter_name
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
# Services Systems Manager.
|
363
|
+
# Choose the parameter that will define how your automation will
|
364
|
+
# branch out. This target is required for associations that use an
|
365
|
+
# Automation runbook and target resources by using rate controls.
|
366
|
+
# Automation is a capability of Amazon Web Services Systems Manager.
|
367
367
|
# @return [String]
|
368
368
|
#
|
369
369
|
# @!attribute [rw] parameters
|
@@ -1556,7 +1556,7 @@ module Aws::SSM
|
|
1556
1556
|
# data as a hash:
|
1557
1557
|
#
|
1558
1558
|
# {
|
1559
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
1559
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
1560
1560
|
# global_filters: {
|
1561
1561
|
# patch_filters: [ # required
|
1562
1562
|
# {
|
@@ -3195,10 +3195,10 @@ module Aws::SSM
|
|
3195
3195
|
# @return [String]
|
3196
3196
|
#
|
3197
3197
|
# @!attribute [rw] automation_target_parameter_name
|
3198
|
-
#
|
3199
|
-
#
|
3200
|
-
#
|
3201
|
-
# Services Systems Manager.
|
3198
|
+
# Choose the parameter that will define how your automation will
|
3199
|
+
# branch out. This target is required for associations that use an
|
3200
|
+
# Automation runbook and target resources by using rate controls.
|
3201
|
+
# Automation is a capability of Amazon Web Services Systems Manager.
|
3202
3202
|
# @return [String]
|
3203
3203
|
#
|
3204
3204
|
# @!attribute [rw] max_errors
|
@@ -3901,7 +3901,7 @@ module Aws::SSM
|
|
3901
3901
|
# data as a hash:
|
3902
3902
|
#
|
3903
3903
|
# {
|
3904
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
3904
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
3905
3905
|
# name: "BaselineName", # required
|
3906
3906
|
# global_filters: {
|
3907
3907
|
# patch_filters: [ # required
|
@@ -6888,7 +6888,7 @@ module Aws::SSM
|
|
6888
6888
|
# data as a hash:
|
6889
6889
|
#
|
6890
6890
|
# {
|
6891
|
-
# operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
6891
|
+
# operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
6892
6892
|
# property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
|
6893
6893
|
# patch_set: "OS", # accepts OS, APPLICATION
|
6894
6894
|
# max_results: 1,
|
@@ -8305,7 +8305,7 @@ module Aws::SSM
|
|
8305
8305
|
# data as a hash:
|
8306
8306
|
#
|
8307
8307
|
# {
|
8308
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
8308
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
8309
8309
|
# }
|
8310
8310
|
#
|
8311
8311
|
# @!attribute [rw] operating_system
|
@@ -8345,7 +8345,7 @@ module Aws::SSM
|
|
8345
8345
|
# instance_id: "InstanceId", # required
|
8346
8346
|
# snapshot_id: "SnapshotId", # required
|
8347
8347
|
# baseline_override: {
|
8348
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
8348
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
8349
8349
|
# global_filters: {
|
8350
8350
|
# patch_filters: [ # required
|
8351
8351
|
# {
|
@@ -9733,7 +9733,7 @@ module Aws::SSM
|
|
9733
9733
|
#
|
9734
9734
|
# {
|
9735
9735
|
# patch_group: "PatchGroup", # required
|
9736
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
9736
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
9737
9737
|
# }
|
9738
9738
|
#
|
9739
9739
|
# @!attribute [rw] patch_group
|
@@ -15325,8 +15325,8 @@ module Aws::SSM
|
|
15325
15325
|
# and GetParametersByPath API operations. However, not all of the
|
15326
15326
|
# pattern values listed for `Key` can be used with both operations.
|
15327
15327
|
#
|
15328
|
-
# For `
|
15329
|
-
# `Label`.
|
15328
|
+
# For `DescribeParameters`, all of the listed patterns are valid
|
15329
|
+
# except `Label`.
|
15330
15330
|
#
|
15331
15331
|
# For `GetParametersByPath`, the following patterns listed for `Key`
|
15332
15332
|
# aren't valid: `tag`, `DataType`, `Name`, `Path`, and `Tier`.
|
@@ -18347,6 +18347,10 @@ module Aws::SSM
|
|
18347
18347
|
# session.
|
18348
18348
|
# @return [String]
|
18349
18349
|
#
|
18350
|
+
# @!attribute [rw] reason
|
18351
|
+
# The reason for connecting to the instance.
|
18352
|
+
# @return [String]
|
18353
|
+
#
|
18350
18354
|
# @!attribute [rw] details
|
18351
18355
|
# Reserved for future use.
|
18352
18356
|
# @return [String]
|
@@ -18355,6 +18359,10 @@ module Aws::SSM
|
|
18355
18359
|
# Reserved for future use.
|
18356
18360
|
# @return [Types::SessionManagerOutputUrl]
|
18357
18361
|
#
|
18362
|
+
# @!attribute [rw] max_session_duration
|
18363
|
+
# The maximum duration of a session before it terminates.
|
18364
|
+
# @return [String]
|
18365
|
+
#
|
18358
18366
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Session AWS API Documentation
|
18359
18367
|
#
|
18360
18368
|
class Session < Struct.new(
|
@@ -18365,8 +18373,10 @@ module Aws::SSM
|
|
18365
18373
|
:end_date,
|
18366
18374
|
:document_name,
|
18367
18375
|
:owner,
|
18376
|
+
:reason,
|
18368
18377
|
:details,
|
18369
|
-
:output_url
|
18378
|
+
:output_url,
|
18379
|
+
:max_session_duration)
|
18370
18380
|
SENSITIVE = []
|
18371
18381
|
include Aws::Structure
|
18372
18382
|
end
|
@@ -18877,6 +18887,7 @@ module Aws::SSM
|
|
18877
18887
|
# {
|
18878
18888
|
# target: "SessionTarget", # required
|
18879
18889
|
# document_name: "DocumentARN",
|
18890
|
+
# reason: "SessionReason",
|
18880
18891
|
# parameters: {
|
18881
18892
|
# "SessionManagerParameterName" => ["SessionManagerParameterValue"],
|
18882
18893
|
# },
|
@@ -18894,6 +18905,12 @@ module Aws::SSM
|
|
18894
18905
|
# provided, a shell to the instance is launched by default.
|
18895
18906
|
# @return [String]
|
18896
18907
|
#
|
18908
|
+
# @!attribute [rw] reason
|
18909
|
+
# The reason for connecting to the instance. This value is included in
|
18910
|
+
# the details for the Amazon CloudWatch Events event created when you
|
18911
|
+
# start the session.
|
18912
|
+
# @return [String]
|
18913
|
+
#
|
18897
18914
|
# @!attribute [rw] parameters
|
18898
18915
|
# Reserved for future use.
|
18899
18916
|
# @return [Hash<String,Array<String>>]
|
@@ -18903,6 +18920,7 @@ module Aws::SSM
|
|
18903
18920
|
class StartSessionRequest < Struct.new(
|
18904
18921
|
:target,
|
18905
18922
|
:document_name,
|
18923
|
+
:reason,
|
18906
18924
|
:parameters)
|
18907
18925
|
SENSITIVE = []
|
18908
18926
|
include Aws::Structure
|
@@ -19718,10 +19736,10 @@ module Aws::SSM
|
|
19718
19736
|
# @return [String]
|
19719
19737
|
#
|
19720
19738
|
# @!attribute [rw] automation_target_parameter_name
|
19721
|
-
#
|
19722
|
-
#
|
19723
|
-
#
|
19724
|
-
# Services Systems Manager.
|
19739
|
+
# Choose the parameter that will define how your automation will
|
19740
|
+
# branch out. This target is required for associations that use an
|
19741
|
+
# Automation runbook and target resources by using rate controls.
|
19742
|
+
# Automation is a capability of Amazon Web Services Systems Manager.
|
19725
19743
|
# @return [String]
|
19726
19744
|
#
|
19727
19745
|
# @!attribute [rw] max_errors
|
data/lib/aws-sdk-ssm.rb
CHANGED
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.123.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: 2021-
|
11
|
+
date: 2021-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.122.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|