aws-sdk-ssm 1.120.0 → 1.124.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +48 -22
- data/lib/aws-sdk-ssm/client_api.rb +17 -0
- data/lib/aws-sdk-ssm/types.rb +98 -36
- 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: f749d723dc399e07d6fc209cd32e1c1252aea5796ef21f9b629f29929e5becd3
|
4
|
+
data.tar.gz: 85182d24b8c1f6e9a339cfa9b7125453fbf26212851151cd50969d3244ed183b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2939a4dde8978dd8fb9bcf76333c316ff1eac1a375038d2c96fa0daee969c6d6dc06d58012e322003778340ad9eec2f5c925ccb139e5ab657a78e80965cbccc4
|
7
|
+
data.tar.gz: 98f5240613251c42417464f319d575643b54d5c5537c216c6b562ec15509bf8ac988f2873bcb0f14f6b3e0081939657b81c9fafbb8d42eb529f3b6a7a028c28d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.124.0 (2021-11-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds new parameter to CreateActivation API . This parameter is for "internal use only".
|
8
|
+
|
9
|
+
1.123.0 (2021-11-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds support for Session Reason and Max Session Duration for Systems Manager Session Manager.
|
13
|
+
|
14
|
+
1.122.0 (2021-11-12)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This Patch Manager release supports creating Patch Baselines for RaspberryPi OS (formerly Raspbian)
|
18
|
+
|
19
|
+
1.121.0 (2021-11-04)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.120.0 (2021-10-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.124.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.
|
@@ -636,6 +645,9 @@ module Aws::SSM
|
|
636
645
|
# AddTagsToResource. For information about how to remove tags from your
|
637
646
|
# managed instances, see RemoveTagsFromResource.
|
638
647
|
#
|
648
|
+
# @option params [Array<Types::RegistrationMetadataItem>] :registration_metadata
|
649
|
+
# Reserved for internal use.
|
650
|
+
#
|
639
651
|
# @return [Types::CreateActivationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
640
652
|
#
|
641
653
|
# * {Types::CreateActivationResult#activation_id #activation_id} => String
|
@@ -655,6 +667,12 @@ module Aws::SSM
|
|
655
667
|
# value: "TagValue", # required
|
656
668
|
# },
|
657
669
|
# ],
|
670
|
+
# registration_metadata: [
|
671
|
+
# {
|
672
|
+
# key: "RegistrationMetadataKey", # required
|
673
|
+
# value: "RegistrationMetadataValue", # required
|
674
|
+
# },
|
675
|
+
# ],
|
658
676
|
# })
|
659
677
|
#
|
660
678
|
# @example Response structure
|
@@ -756,10 +774,10 @@ module Aws::SSM
|
|
756
774
|
# Specify a descriptive name for the association.
|
757
775
|
#
|
758
776
|
# @option params [String] :automation_target_parameter_name
|
759
|
-
#
|
760
|
-
# associations that use an Automation
|
761
|
-
# using rate controls. Automation is a
|
762
|
-
# Systems Manager.
|
777
|
+
# Choose the parameter that will define how your automation will branch
|
778
|
+
# out. This target is required for associations that use an Automation
|
779
|
+
# runbook and target resources by using rate controls. Automation is a
|
780
|
+
# capability of Amazon Web Services Systems Manager.
|
763
781
|
#
|
764
782
|
# @option params [String] :max_errors
|
765
783
|
# The number of errors that are allowed before the system stops sending
|
@@ -1768,7 +1786,7 @@ module Aws::SSM
|
|
1768
1786
|
# @example Request syntax with placeholder values
|
1769
1787
|
#
|
1770
1788
|
# 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
|
1789
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
1772
1790
|
# name: "BaselineName", # required
|
1773
1791
|
# global_filters: {
|
1774
1792
|
# patch_filters: [ # required
|
@@ -4604,7 +4622,7 @@ module Aws::SSM
|
|
4604
4622
|
# resp.baseline_identities #=> Array
|
4605
4623
|
# resp.baseline_identities[0].baseline_id #=> String
|
4606
4624
|
# 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"
|
4625
|
+
# 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
4626
|
# resp.baseline_identities[0].baseline_description #=> String
|
4609
4627
|
# resp.baseline_identities[0].default_baseline #=> Boolean
|
4610
4628
|
# resp.next_token #=> String
|
@@ -4717,7 +4735,7 @@ module Aws::SSM
|
|
4717
4735
|
# resp.mappings[0].patch_group #=> String
|
4718
4736
|
# resp.mappings[0].baseline_identity.baseline_id #=> String
|
4719
4737
|
# 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"
|
4738
|
+
# 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
4739
|
# resp.mappings[0].baseline_identity.baseline_description #=> String
|
4722
4740
|
# resp.mappings[0].baseline_identity.default_baseline #=> Boolean
|
4723
4741
|
# resp.next_token #=> String
|
@@ -4812,7 +4830,7 @@ module Aws::SSM
|
|
4812
4830
|
# @example Request syntax with placeholder values
|
4813
4831
|
#
|
4814
4832
|
# 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
|
4833
|
+
# operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
4816
4834
|
# property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
|
4817
4835
|
# patch_set: "OS", # accepts OS, APPLICATION
|
4818
4836
|
# max_results: 1,
|
@@ -4886,9 +4904,11 @@ module Aws::SSM
|
|
4886
4904
|
# resp.sessions[0].end_date #=> Time
|
4887
4905
|
# resp.sessions[0].document_name #=> String
|
4888
4906
|
# resp.sessions[0].owner #=> String
|
4907
|
+
# resp.sessions[0].reason #=> String
|
4889
4908
|
# resp.sessions[0].details #=> String
|
4890
4909
|
# resp.sessions[0].output_url.s3_output_url #=> String
|
4891
4910
|
# resp.sessions[0].output_url.cloud_watch_output_url #=> String
|
4911
|
+
# resp.sessions[0].max_session_duration #=> String
|
4892
4912
|
# resp.next_token #=> String
|
4893
4913
|
#
|
4894
4914
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeSessions AWS API Documentation
|
@@ -5286,13 +5306,13 @@ module Aws::SSM
|
|
5286
5306
|
# @example Request syntax with placeholder values
|
5287
5307
|
#
|
5288
5308
|
# 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
|
5309
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
5290
5310
|
# })
|
5291
5311
|
#
|
5292
5312
|
# @example Response structure
|
5293
5313
|
#
|
5294
5314
|
# 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"
|
5315
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
|
5296
5316
|
#
|
5297
5317
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaseline AWS API Documentation
|
5298
5318
|
#
|
@@ -5343,7 +5363,7 @@ module Aws::SSM
|
|
5343
5363
|
# instance_id: "InstanceId", # required
|
5344
5364
|
# snapshot_id: "SnapshotId", # required
|
5345
5365
|
# baseline_override: {
|
5346
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
5366
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
5347
5367
|
# global_filters: {
|
5348
5368
|
# patch_filters: [ # required
|
5349
5369
|
# {
|
@@ -6474,7 +6494,7 @@ module Aws::SSM
|
|
6474
6494
|
#
|
6475
6495
|
# resp.baseline_id #=> String
|
6476
6496
|
# 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"
|
6497
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
|
6478
6498
|
# resp.global_filters.patch_filters #=> Array
|
6479
6499
|
# 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
6500
|
# resp.global_filters.patch_filters[0].values #=> Array
|
@@ -6535,14 +6555,14 @@ module Aws::SSM
|
|
6535
6555
|
#
|
6536
6556
|
# resp = client.get_patch_baseline_for_patch_group({
|
6537
6557
|
# 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
|
6558
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
6539
6559
|
# })
|
6540
6560
|
#
|
6541
6561
|
# @example Response structure
|
6542
6562
|
#
|
6543
6563
|
# resp.baseline_id #=> String
|
6544
6564
|
# 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"
|
6565
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
|
6546
6566
|
#
|
6547
6567
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroup AWS API Documentation
|
6548
6568
|
#
|
@@ -8266,12 +8286,12 @@ module Aws::SSM
|
|
8266
8286
|
# *parameter* doesn't affect the expiration date and time. When the
|
8267
8287
|
# expiration time is reached, Parameter Store deletes the parameter.
|
8268
8288
|
#
|
8269
|
-
# ExpirationNotification: This policy
|
8289
|
+
# ExpirationNotification: This policy initiates an event in Amazon
|
8270
8290
|
# CloudWatch Events that notifies you about the expiration. By using
|
8271
8291
|
# this policy, you can receive notification before or after the
|
8272
8292
|
# expiration time is reached, in units of days or hours.
|
8273
8293
|
#
|
8274
|
-
# NoChangeNotification: This policy
|
8294
|
+
# NoChangeNotification: This policy initiates a CloudWatch Events event
|
8275
8295
|
# if a parameter hasn't been modified for a specified period of time.
|
8276
8296
|
# This policy type is useful when, for example, a secret needs to be
|
8277
8297
|
# changed within a period of time, but it hasn't been changed.
|
@@ -9563,6 +9583,11 @@ module Aws::SSM
|
|
9563
9583
|
# attempting to start a session. If no document name is provided, a
|
9564
9584
|
# shell to the instance is launched by default.
|
9565
9585
|
#
|
9586
|
+
# @option params [String] :reason
|
9587
|
+
# The reason for connecting to the instance. This value is included in
|
9588
|
+
# the details for the Amazon CloudWatch Events event created when you
|
9589
|
+
# start the session.
|
9590
|
+
#
|
9566
9591
|
# @option params [Hash<String,Array>] :parameters
|
9567
9592
|
# Reserved for future use.
|
9568
9593
|
#
|
@@ -9577,6 +9602,7 @@ module Aws::SSM
|
|
9577
9602
|
# resp = client.start_session({
|
9578
9603
|
# target: "SessionTarget", # required
|
9579
9604
|
# document_name: "DocumentARN",
|
9605
|
+
# reason: "SessionReason",
|
9580
9606
|
# parameters: {
|
9581
9607
|
# "SessionManagerParameterName" => ["SessionManagerParameterValue"],
|
9582
9608
|
# },
|
@@ -9766,10 +9792,10 @@ module Aws::SSM
|
|
9766
9792
|
# this parameter.
|
9767
9793
|
#
|
9768
9794
|
# @option params [String] :automation_target_parameter_name
|
9769
|
-
#
|
9770
|
-
# associations that use an Automation
|
9771
|
-
# using rate controls. Automation is a
|
9772
|
-
# Systems Manager.
|
9795
|
+
# Choose the parameter that will define how your automation will branch
|
9796
|
+
# out. This target is required for associations that use an Automation
|
9797
|
+
# runbook and target resources by using rate controls. Automation is a
|
9798
|
+
# capability of Amazon Web Services Systems Manager.
|
9773
9799
|
#
|
9774
9800
|
# @option params [String] :max_errors
|
9775
9801
|
# The number of errors that are allowed before the system stops sending
|
@@ -11190,7 +11216,7 @@ module Aws::SSM
|
|
11190
11216
|
#
|
11191
11217
|
# resp.baseline_id #=> String
|
11192
11218
|
# 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"
|
11219
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN"
|
11194
11220
|
# resp.global_filters.patch_filters #=> Array
|
11195
11221
|
# 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
11222
|
# resp.global_filters.patch_filters[0].values #=> Array
|
@@ -11373,7 +11399,7 @@ module Aws::SSM
|
|
11373
11399
|
params: params,
|
11374
11400
|
config: config)
|
11375
11401
|
context[:gem_name] = 'aws-sdk-ssm'
|
11376
|
-
context[:gem_version] = '1.
|
11402
|
+
context[:gem_version] = '1.124.0'
|
11377
11403
|
Seahorse::Client::Request.new(handlers, context)
|
11378
11404
|
end
|
11379
11405
|
|
@@ -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')
|
@@ -954,6 +955,10 @@ module Aws::SSM
|
|
954
955
|
RegisterTaskWithMaintenanceWindowRequest = Shapes::StructureShape.new(name: 'RegisterTaskWithMaintenanceWindowRequest')
|
955
956
|
RegisterTaskWithMaintenanceWindowResult = Shapes::StructureShape.new(name: 'RegisterTaskWithMaintenanceWindowResult')
|
956
957
|
RegistrationLimit = Shapes::IntegerShape.new(name: 'RegistrationLimit')
|
958
|
+
RegistrationMetadataItem = Shapes::StructureShape.new(name: 'RegistrationMetadataItem')
|
959
|
+
RegistrationMetadataKey = Shapes::StringShape.new(name: 'RegistrationMetadataKey')
|
960
|
+
RegistrationMetadataList = Shapes::ListShape.new(name: 'RegistrationMetadataList')
|
961
|
+
RegistrationMetadataValue = Shapes::StringShape.new(name: 'RegistrationMetadataValue')
|
957
962
|
RegistrationsCount = Shapes::IntegerShape.new(name: 'RegistrationsCount')
|
958
963
|
RelatedOpsItem = Shapes::StructureShape.new(name: 'RelatedOpsItem')
|
959
964
|
RelatedOpsItems = Shapes::ListShape.new(name: 'RelatedOpsItems')
|
@@ -1049,6 +1054,7 @@ module Aws::SSM
|
|
1049
1054
|
SessionManagerS3OutputUrl = Shapes::StringShape.new(name: 'SessionManagerS3OutputUrl')
|
1050
1055
|
SessionMaxResults = Shapes::IntegerShape.new(name: 'SessionMaxResults')
|
1051
1056
|
SessionOwner = Shapes::StringShape.new(name: 'SessionOwner')
|
1057
|
+
SessionReason = Shapes::StringShape.new(name: 'SessionReason')
|
1052
1058
|
SessionState = Shapes::StringShape.new(name: 'SessionState')
|
1053
1059
|
SessionStatus = Shapes::StringShape.new(name: 'SessionStatus')
|
1054
1060
|
SessionTarget = Shapes::StringShape.new(name: 'SessionTarget')
|
@@ -1621,6 +1627,7 @@ module Aws::SSM
|
|
1621
1627
|
CreateActivationRequest.add_member(:registration_limit, Shapes::ShapeRef.new(shape: RegistrationLimit, location_name: "RegistrationLimit", metadata: {"box"=>true}))
|
1622
1628
|
CreateActivationRequest.add_member(:expiration_date, Shapes::ShapeRef.new(shape: ExpirationDate, location_name: "ExpirationDate"))
|
1623
1629
|
CreateActivationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1630
|
+
CreateActivationRequest.add_member(:registration_metadata, Shapes::ShapeRef.new(shape: RegistrationMetadataList, location_name: "RegistrationMetadata"))
|
1624
1631
|
CreateActivationRequest.struct_class = Types::CreateActivationRequest
|
1625
1632
|
|
1626
1633
|
CreateActivationResult.add_member(:activation_id, Shapes::ShapeRef.new(shape: ActivationId, location_name: "ActivationId"))
|
@@ -3899,6 +3906,12 @@ module Aws::SSM
|
|
3899
3906
|
RegisterTaskWithMaintenanceWindowResult.add_member(:window_task_id, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskId, location_name: "WindowTaskId"))
|
3900
3907
|
RegisterTaskWithMaintenanceWindowResult.struct_class = Types::RegisterTaskWithMaintenanceWindowResult
|
3901
3908
|
|
3909
|
+
RegistrationMetadataItem.add_member(:key, Shapes::ShapeRef.new(shape: RegistrationMetadataKey, required: true, location_name: "Key"))
|
3910
|
+
RegistrationMetadataItem.add_member(:value, Shapes::ShapeRef.new(shape: RegistrationMetadataValue, required: true, location_name: "Value"))
|
3911
|
+
RegistrationMetadataItem.struct_class = Types::RegistrationMetadataItem
|
3912
|
+
|
3913
|
+
RegistrationMetadataList.member = Shapes::ShapeRef.new(shape: RegistrationMetadataItem)
|
3914
|
+
|
3902
3915
|
RelatedOpsItem.add_member(:ops_item_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OpsItemId"))
|
3903
3916
|
RelatedOpsItem.struct_class = Types::RelatedOpsItem
|
3904
3917
|
|
@@ -4101,8 +4114,10 @@ module Aws::SSM
|
|
4101
4114
|
Session.add_member(:end_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "EndDate"))
|
4102
4115
|
Session.add_member(:document_name, Shapes::ShapeRef.new(shape: DocumentName, location_name: "DocumentName"))
|
4103
4116
|
Session.add_member(:owner, Shapes::ShapeRef.new(shape: SessionOwner, location_name: "Owner"))
|
4117
|
+
Session.add_member(:reason, Shapes::ShapeRef.new(shape: SessionReason, location_name: "Reason"))
|
4104
4118
|
Session.add_member(:details, Shapes::ShapeRef.new(shape: SessionDetails, location_name: "Details"))
|
4105
4119
|
Session.add_member(:output_url, Shapes::ShapeRef.new(shape: SessionManagerOutputUrl, location_name: "OutputUrl"))
|
4120
|
+
Session.add_member(:max_session_duration, Shapes::ShapeRef.new(shape: MaxSessionDuration, location_name: "MaxSessionDuration"))
|
4106
4121
|
Session.struct_class = Types::Session
|
4107
4122
|
|
4108
4123
|
SessionFilter.add_member(:key, Shapes::ShapeRef.new(shape: SessionFilterKey, required: true, location_name: "key"))
|
@@ -4170,6 +4185,7 @@ module Aws::SSM
|
|
4170
4185
|
|
4171
4186
|
StartSessionRequest.add_member(:target, Shapes::ShapeRef.new(shape: SessionTarget, required: true, location_name: "Target"))
|
4172
4187
|
StartSessionRequest.add_member(:document_name, Shapes::ShapeRef.new(shape: DocumentARN, location_name: "DocumentName"))
|
4188
|
+
StartSessionRequest.add_member(:reason, Shapes::ShapeRef.new(shape: SessionReason, location_name: "Reason"))
|
4173
4189
|
StartSessionRequest.add_member(:parameters, Shapes::ShapeRef.new(shape: SessionManagerParameters, location_name: "Parameters"))
|
4174
4190
|
StartSessionRequest.struct_class = Types::StartSessionRequest
|
4175
4191
|
|
@@ -4595,6 +4611,7 @@ module Aws::SSM
|
|
4595
4611
|
o.http_request_uri = "/"
|
4596
4612
|
o.input = Shapes::ShapeRef.new(shape: CreateActivationRequest)
|
4597
4613
|
o.output = Shapes::ShapeRef.new(shape: CreateActivationResult)
|
4614
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameters)
|
4598
4615
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4599
4616
|
end)
|
4600
4617
|
|
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
|
@@ -503,7 +503,7 @@ module Aws::SSM
|
|
503
503
|
:apply_only_at_cron_interval,
|
504
504
|
:calendar_names,
|
505
505
|
:target_locations)
|
506
|
-
SENSITIVE = []
|
506
|
+
SENSITIVE = [:parameters]
|
507
507
|
include Aws::Structure
|
508
508
|
end
|
509
509
|
|
@@ -948,7 +948,7 @@ module Aws::SSM
|
|
948
948
|
:apply_only_at_cron_interval,
|
949
949
|
:calendar_names,
|
950
950
|
:target_locations)
|
951
|
-
SENSITIVE = []
|
951
|
+
SENSITIVE = [:parameters]
|
952
952
|
include Aws::Structure
|
953
953
|
end
|
954
954
|
|
@@ -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
|
# {
|
@@ -1979,7 +1979,7 @@ module Aws::SSM
|
|
1979
1979
|
:notification_config,
|
1980
1980
|
:cloud_watch_output_config,
|
1981
1981
|
:timeout_seconds)
|
1982
|
-
SENSITIVE = []
|
1982
|
+
SENSITIVE = [:parameters]
|
1983
1983
|
include Aws::Structure
|
1984
1984
|
end
|
1985
1985
|
|
@@ -2000,6 +2000,11 @@ module Aws::SSM
|
|
2000
2000
|
#
|
2001
2001
|
# @!attribute [rw] key
|
2002
2002
|
# The name of the filter.
|
2003
|
+
#
|
2004
|
+
# <note markdown="1"> The `ExecutionStage` filter can't be used with the
|
2005
|
+
# `ListCommandInvocations` operation, only with `ListCommands`.
|
2006
|
+
#
|
2007
|
+
# </note>
|
2003
2008
|
# @return [String]
|
2004
2009
|
#
|
2005
2010
|
# @!attribute [rw] value
|
@@ -2078,7 +2083,8 @@ module Aws::SSM
|
|
2078
2083
|
# see command executions that used this SSM document to perform
|
2079
2084
|
# security patching operations on instances.
|
2080
2085
|
#
|
2081
|
-
# * **ExecutionStage**\: Specify one of the following values
|
2086
|
+
# * **ExecutionStage**\: Specify one of the following values
|
2087
|
+
# (`ListCommands` operations only):
|
2082
2088
|
#
|
2083
2089
|
# * `Executing`\: Returns a list of command executions that are
|
2084
2090
|
# currently still running.
|
@@ -2680,6 +2686,12 @@ module Aws::SSM
|
|
2680
2686
|
# value: "TagValue", # required
|
2681
2687
|
# },
|
2682
2688
|
# ],
|
2689
|
+
# registration_metadata: [
|
2690
|
+
# {
|
2691
|
+
# key: "RegistrationMetadataKey", # required
|
2692
|
+
# value: "RegistrationMetadataValue", # required
|
2693
|
+
# },
|
2694
|
+
# ],
|
2683
2695
|
# }
|
2684
2696
|
#
|
2685
2697
|
# @!attribute [rw] description
|
@@ -2750,6 +2762,10 @@ module Aws::SSM
|
|
2750
2762
|
# your managed instances, see RemoveTagsFromResource.
|
2751
2763
|
# @return [Array<Types::Tag>]
|
2752
2764
|
#
|
2765
|
+
# @!attribute [rw] registration_metadata
|
2766
|
+
# Reserved for internal use.
|
2767
|
+
# @return [Array<Types::RegistrationMetadataItem>]
|
2768
|
+
#
|
2753
2769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateActivationRequest AWS API Documentation
|
2754
2770
|
#
|
2755
2771
|
class CreateActivationRequest < Struct.new(
|
@@ -2758,7 +2774,8 @@ module Aws::SSM
|
|
2758
2774
|
:iam_role,
|
2759
2775
|
:registration_limit,
|
2760
2776
|
:expiration_date,
|
2761
|
-
:tags
|
2777
|
+
:tags,
|
2778
|
+
:registration_metadata)
|
2762
2779
|
SENSITIVE = []
|
2763
2780
|
include Aws::Structure
|
2764
2781
|
end
|
@@ -3054,7 +3071,7 @@ module Aws::SSM
|
|
3054
3071
|
:apply_only_at_cron_interval,
|
3055
3072
|
:calendar_names,
|
3056
3073
|
:target_locations)
|
3057
|
-
SENSITIVE = []
|
3074
|
+
SENSITIVE = [:parameters]
|
3058
3075
|
include Aws::Structure
|
3059
3076
|
end
|
3060
3077
|
|
@@ -3195,10 +3212,10 @@ module Aws::SSM
|
|
3195
3212
|
# @return [String]
|
3196
3213
|
#
|
3197
3214
|
# @!attribute [rw] automation_target_parameter_name
|
3198
|
-
#
|
3199
|
-
#
|
3200
|
-
#
|
3201
|
-
# Services Systems Manager.
|
3215
|
+
# Choose the parameter that will define how your automation will
|
3216
|
+
# branch out. This target is required for associations that use an
|
3217
|
+
# Automation runbook and target resources by using rate controls.
|
3218
|
+
# Automation is a capability of Amazon Web Services Systems Manager.
|
3202
3219
|
# @return [String]
|
3203
3220
|
#
|
3204
3221
|
# @!attribute [rw] max_errors
|
@@ -3298,7 +3315,7 @@ module Aws::SSM
|
|
3298
3315
|
:apply_only_at_cron_interval,
|
3299
3316
|
:calendar_names,
|
3300
3317
|
:target_locations)
|
3301
|
-
SENSITIVE = []
|
3318
|
+
SENSITIVE = [:parameters]
|
3302
3319
|
include Aws::Structure
|
3303
3320
|
end
|
3304
3321
|
|
@@ -3901,7 +3918,7 @@ module Aws::SSM
|
|
3901
3918
|
# data as a hash:
|
3902
3919
|
#
|
3903
3920
|
# {
|
3904
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
3921
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
3905
3922
|
# name: "BaselineName", # required
|
3906
3923
|
# global_filters: {
|
3907
3924
|
# patch_filters: [ # required
|
@@ -6888,7 +6905,7 @@ module Aws::SSM
|
|
6888
6905
|
# data as a hash:
|
6889
6906
|
#
|
6890
6907
|
# {
|
6891
|
-
# operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
6908
|
+
# operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
6892
6909
|
# property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
|
6893
6910
|
# patch_set: "OS", # accepts OS, APPLICATION
|
6894
6911
|
# max_results: 1,
|
@@ -8305,7 +8322,7 @@ module Aws::SSM
|
|
8305
8322
|
# data as a hash:
|
8306
8323
|
#
|
8307
8324
|
# {
|
8308
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
8325
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
8309
8326
|
# }
|
8310
8327
|
#
|
8311
8328
|
# @!attribute [rw] operating_system
|
@@ -8345,7 +8362,7 @@ module Aws::SSM
|
|
8345
8362
|
# instance_id: "InstanceId", # required
|
8346
8363
|
# snapshot_id: "SnapshotId", # required
|
8347
8364
|
# baseline_override: {
|
8348
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
|
8365
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
8349
8366
|
# global_filters: {
|
8350
8367
|
# patch_filters: [ # required
|
8351
8368
|
# {
|
@@ -9733,7 +9750,7 @@ module Aws::SSM
|
|
9733
9750
|
#
|
9734
9751
|
# {
|
9735
9752
|
# 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
|
9753
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN
|
9737
9754
|
# }
|
9738
9755
|
#
|
9739
9756
|
# @!attribute [rw] patch_group
|
@@ -13470,7 +13487,7 @@ module Aws::SSM
|
|
13470
13487
|
:parameters,
|
13471
13488
|
:service_role_arn,
|
13472
13489
|
:timeout_seconds)
|
13473
|
-
SENSITIVE = []
|
13490
|
+
SENSITIVE = [:parameters]
|
13474
13491
|
include Aws::Structure
|
13475
13492
|
end
|
13476
13493
|
|
@@ -15325,8 +15342,8 @@ module Aws::SSM
|
|
15325
15342
|
# and GetParametersByPath API operations. However, not all of the
|
15326
15343
|
# pattern values listed for `Key` can be used with both operations.
|
15327
15344
|
#
|
15328
|
-
# For `
|
15329
|
-
# `Label`.
|
15345
|
+
# For `DescribeParameters`, all of the listed patterns are valid
|
15346
|
+
# except `Label`.
|
15330
15347
|
#
|
15331
15348
|
# For `GetParametersByPath`, the following patterns listed for `Key`
|
15332
15349
|
# aren't valid: `tag`, `DataType`, `Name`, `Path`, and `Tier`.
|
@@ -16435,15 +16452,15 @@ module Aws::SSM
|
|
16435
16452
|
# the expiration time is reached, Parameter Store deletes the
|
16436
16453
|
# parameter.
|
16437
16454
|
#
|
16438
|
-
# ExpirationNotification: This policy
|
16455
|
+
# ExpirationNotification: This policy initiates an event in Amazon
|
16439
16456
|
# CloudWatch Events that notifies you about the expiration. By using
|
16440
16457
|
# this policy, you can receive notification before or after the
|
16441
16458
|
# expiration time is reached, in units of days or hours.
|
16442
16459
|
#
|
16443
|
-
# NoChangeNotification: This policy
|
16444
|
-
# if a parameter hasn't been modified for a specified period of
|
16445
|
-
# This policy type is useful when, for example, a secret needs
|
16446
|
-
# changed within a period of time, but it hasn't been changed.
|
16460
|
+
# NoChangeNotification: This policy initiates a CloudWatch Events
|
16461
|
+
# event if a parameter hasn't been modified for a specified period of
|
16462
|
+
# time. This policy type is useful when, for example, a secret needs
|
16463
|
+
# to be changed within a period of time, but it hasn't been changed.
|
16447
16464
|
#
|
16448
16465
|
# All existing policies are preserved until you send new policies or
|
16449
16466
|
# an empty policy. For more information about parameter policies, see
|
@@ -16986,6 +17003,33 @@ module Aws::SSM
|
|
16986
17003
|
include Aws::Structure
|
16987
17004
|
end
|
16988
17005
|
|
17006
|
+
# Reserved for internal use.
|
17007
|
+
#
|
17008
|
+
# @note When making an API call, you may pass RegistrationMetadataItem
|
17009
|
+
# data as a hash:
|
17010
|
+
#
|
17011
|
+
# {
|
17012
|
+
# key: "RegistrationMetadataKey", # required
|
17013
|
+
# value: "RegistrationMetadataValue", # required
|
17014
|
+
# }
|
17015
|
+
#
|
17016
|
+
# @!attribute [rw] key
|
17017
|
+
# Reserved for internal use.
|
17018
|
+
# @return [String]
|
17019
|
+
#
|
17020
|
+
# @!attribute [rw] value
|
17021
|
+
# Reserved for internal use.
|
17022
|
+
# @return [String]
|
17023
|
+
#
|
17024
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegistrationMetadataItem AWS API Documentation
|
17025
|
+
#
|
17026
|
+
class RegistrationMetadataItem < Struct.new(
|
17027
|
+
:key,
|
17028
|
+
:value)
|
17029
|
+
SENSITIVE = []
|
17030
|
+
include Aws::Structure
|
17031
|
+
end
|
17032
|
+
|
16989
17033
|
# An OpsItems that shares something in common with the current OpsItem.
|
16990
17034
|
# For example, related OpsItems can include OpsItems with similar error
|
16991
17035
|
# messages, impacted resources, or statuses for the impacted resource.
|
@@ -18211,7 +18255,7 @@ module Aws::SSM
|
|
18211
18255
|
:service_role_arn,
|
18212
18256
|
:notification_config,
|
18213
18257
|
:cloud_watch_output_config)
|
18214
|
-
SENSITIVE = []
|
18258
|
+
SENSITIVE = [:parameters]
|
18215
18259
|
include Aws::Structure
|
18216
18260
|
end
|
18217
18261
|
|
@@ -18347,6 +18391,10 @@ module Aws::SSM
|
|
18347
18391
|
# session.
|
18348
18392
|
# @return [String]
|
18349
18393
|
#
|
18394
|
+
# @!attribute [rw] reason
|
18395
|
+
# The reason for connecting to the instance.
|
18396
|
+
# @return [String]
|
18397
|
+
#
|
18350
18398
|
# @!attribute [rw] details
|
18351
18399
|
# Reserved for future use.
|
18352
18400
|
# @return [String]
|
@@ -18355,6 +18403,10 @@ module Aws::SSM
|
|
18355
18403
|
# Reserved for future use.
|
18356
18404
|
# @return [Types::SessionManagerOutputUrl]
|
18357
18405
|
#
|
18406
|
+
# @!attribute [rw] max_session_duration
|
18407
|
+
# The maximum duration of a session before it terminates.
|
18408
|
+
# @return [String]
|
18409
|
+
#
|
18358
18410
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Session AWS API Documentation
|
18359
18411
|
#
|
18360
18412
|
class Session < Struct.new(
|
@@ -18365,8 +18417,10 @@ module Aws::SSM
|
|
18365
18417
|
:end_date,
|
18366
18418
|
:document_name,
|
18367
18419
|
:owner,
|
18420
|
+
:reason,
|
18368
18421
|
:details,
|
18369
|
-
:output_url
|
18422
|
+
:output_url,
|
18423
|
+
:max_session_duration)
|
18370
18424
|
SENSITIVE = []
|
18371
18425
|
include Aws::Structure
|
18372
18426
|
end
|
@@ -18877,6 +18931,7 @@ module Aws::SSM
|
|
18877
18931
|
# {
|
18878
18932
|
# target: "SessionTarget", # required
|
18879
18933
|
# document_name: "DocumentARN",
|
18934
|
+
# reason: "SessionReason",
|
18880
18935
|
# parameters: {
|
18881
18936
|
# "SessionManagerParameterName" => ["SessionManagerParameterValue"],
|
18882
18937
|
# },
|
@@ -18894,6 +18949,12 @@ module Aws::SSM
|
|
18894
18949
|
# provided, a shell to the instance is launched by default.
|
18895
18950
|
# @return [String]
|
18896
18951
|
#
|
18952
|
+
# @!attribute [rw] reason
|
18953
|
+
# The reason for connecting to the instance. This value is included in
|
18954
|
+
# the details for the Amazon CloudWatch Events event created when you
|
18955
|
+
# start the session.
|
18956
|
+
# @return [String]
|
18957
|
+
#
|
18897
18958
|
# @!attribute [rw] parameters
|
18898
18959
|
# Reserved for future use.
|
18899
18960
|
# @return [Hash<String,Array<String>>]
|
@@ -18903,6 +18964,7 @@ module Aws::SSM
|
|
18903
18964
|
class StartSessionRequest < Struct.new(
|
18904
18965
|
:target,
|
18905
18966
|
:document_name,
|
18967
|
+
:reason,
|
18906
18968
|
:parameters)
|
18907
18969
|
SENSITIVE = []
|
18908
18970
|
include Aws::Structure
|
@@ -19718,10 +19780,10 @@ module Aws::SSM
|
|
19718
19780
|
# @return [String]
|
19719
19781
|
#
|
19720
19782
|
# @!attribute [rw] automation_target_parameter_name
|
19721
|
-
#
|
19722
|
-
#
|
19723
|
-
#
|
19724
|
-
# Services Systems Manager.
|
19783
|
+
# Choose the parameter that will define how your automation will
|
19784
|
+
# branch out. This target is required for associations that use an
|
19785
|
+
# Automation runbook and target resources by using rate controls.
|
19786
|
+
# Automation is a capability of Amazon Web Services Systems Manager.
|
19725
19787
|
# @return [String]
|
19726
19788
|
#
|
19727
19789
|
# @!attribute [rw] max_errors
|
@@ -19830,7 +19892,7 @@ module Aws::SSM
|
|
19830
19892
|
:apply_only_at_cron_interval,
|
19831
19893
|
:calendar_names,
|
19832
19894
|
:target_locations)
|
19833
|
-
SENSITIVE = []
|
19895
|
+
SENSITIVE = [:parameters]
|
19834
19896
|
include Aws::Structure
|
19835
19897
|
end
|
19836
19898
|
|
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.124.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-22 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
|