aws-sdk-ssm 1.106.0 → 1.111.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +350 -45
- data/lib/aws-sdk-ssm/client_api.rb +169 -0
- data/lib/aws-sdk-ssm/customizations.rb +1 -1
- data/lib/aws-sdk-ssm/errors.rb +42 -0
- data/lib/aws-sdk-ssm/types.rb +663 -81
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4362e44fb13141d1db58011d99921833321f6ec377d515d1a99d2df29870f0b
|
4
|
+
data.tar.gz: da361031236bdaa1d1a60ecbc843a66dc15cbb9a1620a0f005864f0d1d0a46f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69e6a859e0953165cf8fadaf5a7d68e62ea9aa6ecee8a95d795a81658bde9535f4535f9da72ede9cc17afdb573dd4ffb8b6714e85d506358c1fb21a833a74aef
|
7
|
+
data.tar.gz: 4cb843ed0c1a0f979cecbeb1752ea3f976daa0c7f06e2f84296a6d9d15d7767fcae72a1586831de52ed815d46527d619ee08f2ef3038940b1df27947adbbdcff
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,31 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.111.0 (2021-06-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for ssm to fix customer reported issue
|
8
|
+
|
9
|
+
1.110.0 (2021-05-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds new APIs to associate, disassociate and list related items in SSM OpsCenter; and this release adds DisplayName as a version-level attribute for SSM Documents and introduces two new document types: ProblemAnalysis, ProblemAnalysisTemplate.
|
13
|
+
|
14
|
+
1.109.0 (2021-05-06)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - SSM feature release - ChangeCalendar integration with StateManager.
|
18
|
+
|
19
|
+
1.108.0 (2021-04-06)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Supports removing a label or labels from a parameter, enables ScheduledEndTime and ChangeDetails for StartChangeRequestExecution API, supports critical/security/other noncompliant count for patch API.
|
23
|
+
|
24
|
+
1.107.0 (2021-03-24)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - This release allows SSM Explorer customers to enable OpsData sources across their organization when creating a resource data sync.
|
28
|
+
|
4
29
|
1.106.0 (2021-03-10)
|
5
30
|
------------------
|
6
31
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.111.0
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -400,9 +400,7 @@ module Aws::SSM
|
|
400
400
|
# </note>
|
401
401
|
#
|
402
402
|
# @option params [required, Array<Types::Tag>] :tags
|
403
|
-
# One or more tags. The value parameter is required
|
404
|
-
# want the tag to have a value, specify the parameter with no value, and
|
405
|
-
# we set the value to an empty string.
|
403
|
+
# One or more tags. The value parameter is required.
|
406
404
|
#
|
407
405
|
# Do not enter personally identifiable information in this field.
|
408
406
|
#
|
@@ -430,6 +428,59 @@ module Aws::SSM
|
|
430
428
|
req.send_request(options)
|
431
429
|
end
|
432
430
|
|
431
|
+
# Associates a related resource to a Systems Manager OpsCenter OpsItem.
|
432
|
+
# For example, you can associate an Incident Manager incident or
|
433
|
+
# analysis with an OpsItem. Incident Manager is a capability of AWS
|
434
|
+
# Systems Manager.
|
435
|
+
#
|
436
|
+
# @option params [required, String] :ops_item_id
|
437
|
+
# The ID of the OpsItem to which you want to associate a resource as a
|
438
|
+
# related item.
|
439
|
+
#
|
440
|
+
# @option params [required, String] :association_type
|
441
|
+
# The type of association that you want to create between an OpsItem and
|
442
|
+
# a resource. OpsCenter supports `IsParentOf` and `RelatesTo`
|
443
|
+
# association types.
|
444
|
+
#
|
445
|
+
# @option params [required, String] :resource_type
|
446
|
+
# The type of resource that you want to associate with an OpsItem.
|
447
|
+
# OpsCenter supports the following types:
|
448
|
+
#
|
449
|
+
# `AWS::SSMIncidents::IncidentRecord`\: an Incident Manager incident.
|
450
|
+
# Incident Manager is a capability of AWS Systems Manager.
|
451
|
+
#
|
452
|
+
# `AWS::SSM::Document`\: a Systems Manager (SSM) document.
|
453
|
+
#
|
454
|
+
# @option params [required, String] :resource_uri
|
455
|
+
# The Amazon Resource Name (ARN) of the AWS resource that you want to
|
456
|
+
# associate with the OpsItem.
|
457
|
+
#
|
458
|
+
# @return [Types::AssociateOpsItemRelatedItemResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
459
|
+
#
|
460
|
+
# * {Types::AssociateOpsItemRelatedItemResponse#association_id #association_id} => String
|
461
|
+
#
|
462
|
+
# @example Request syntax with placeholder values
|
463
|
+
#
|
464
|
+
# resp = client.associate_ops_item_related_item({
|
465
|
+
# ops_item_id: "OpsItemId", # required
|
466
|
+
# association_type: "OpsItemRelatedItemAssociationType", # required
|
467
|
+
# resource_type: "OpsItemRelatedItemAssociationResourceType", # required
|
468
|
+
# resource_uri: "OpsItemRelatedItemAssociationResourceUri", # required
|
469
|
+
# })
|
470
|
+
#
|
471
|
+
# @example Response structure
|
472
|
+
#
|
473
|
+
# resp.association_id #=> String
|
474
|
+
#
|
475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociateOpsItemRelatedItem AWS API Documentation
|
476
|
+
#
|
477
|
+
# @overload associate_ops_item_related_item(params = {})
|
478
|
+
# @param [Hash] params ({})
|
479
|
+
def associate_ops_item_related_item(params = {}, options = {})
|
480
|
+
req = build_request(:associate_ops_item_related_item, params)
|
481
|
+
req.send_request(options)
|
482
|
+
end
|
483
|
+
|
433
484
|
# Attempts to cancel the command specified by the Command ID. There is
|
434
485
|
# no guarantee that the command will be terminated and the underlying
|
435
486
|
# process stopped.
|
@@ -540,8 +591,10 @@ module Aws::SSM
|
|
540
591
|
# The default value is 1 instance.
|
541
592
|
#
|
542
593
|
# @option params [Time,DateTime,Date,Integer,String] :expiration_date
|
543
|
-
# The date by which this activation request should expire
|
544
|
-
#
|
594
|
+
# The date by which this activation request should expire, in timestamp
|
595
|
+
# format, such as "2021-07-07T00:00:00". You can specify a date up to
|
596
|
+
# 30 days in advance. If you don't provide an expiration date, the
|
597
|
+
# activation code expires in 24 hours.
|
545
598
|
#
|
546
599
|
# @option params [Array<Types::Tag>] :tags
|
547
600
|
# Optional metadata that you assign to a resource. Tags enable you to
|
@@ -736,12 +789,22 @@ module Aws::SSM
|
|
736
789
|
# By default, all associations use `AUTO` mode.
|
737
790
|
#
|
738
791
|
# @option params [Boolean] :apply_only_at_cron_interval
|
739
|
-
# By default, when you create a new
|
792
|
+
# By default, when you create a new association, the system runs it
|
740
793
|
# immediately after it is created and then according to the schedule you
|
741
794
|
# specified. Specify this option if you don't want an association to
|
742
795
|
# run immediately after you create it. This parameter is not supported
|
743
796
|
# for rate expressions.
|
744
797
|
#
|
798
|
+
# @option params [Array<String>] :calendar_names
|
799
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
800
|
+
# Change Calendar type documents you want to gate your associations
|
801
|
+
# under. The associations only run when that Change Calendar is open.
|
802
|
+
# For more information, see [AWS Systems Manager Change Calendar][1].
|
803
|
+
#
|
804
|
+
#
|
805
|
+
#
|
806
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
807
|
+
#
|
745
808
|
# @option params [Array<Types::TargetLocation>] :target_locations
|
746
809
|
# A location is a combination of AWS Regions and AWS accounts where you
|
747
810
|
# want to run the association. Use this action to create an association
|
@@ -781,6 +844,7 @@ module Aws::SSM
|
|
781
844
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
782
845
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
783
846
|
# apply_only_at_cron_interval: false,
|
847
|
+
# calendar_names: ["CalendarNameOrARN"],
|
784
848
|
# target_locations: [
|
785
849
|
# {
|
786
850
|
# accounts: ["Account"],
|
@@ -829,6 +893,8 @@ module Aws::SSM
|
|
829
893
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
830
894
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
831
895
|
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
896
|
+
# resp.association_description.calendar_names #=> Array
|
897
|
+
# resp.association_description.calendar_names[0] #=> String
|
832
898
|
# resp.association_description.target_locations #=> Array
|
833
899
|
# resp.association_description.target_locations[0].accounts #=> Array
|
834
900
|
# resp.association_description.target_locations[0].accounts[0] #=> String
|
@@ -898,6 +964,7 @@ module Aws::SSM
|
|
898
964
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
899
965
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
900
966
|
# apply_only_at_cron_interval: false,
|
967
|
+
# calendar_names: ["CalendarNameOrARN"],
|
901
968
|
# target_locations: [
|
902
969
|
# {
|
903
970
|
# accounts: ["Account"],
|
@@ -949,6 +1016,8 @@ module Aws::SSM
|
|
949
1016
|
# resp.successful[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
950
1017
|
# resp.successful[0].sync_compliance #=> String, one of "AUTO", "MANUAL"
|
951
1018
|
# resp.successful[0].apply_only_at_cron_interval #=> Boolean
|
1019
|
+
# resp.successful[0].calendar_names #=> Array
|
1020
|
+
# resp.successful[0].calendar_names[0] #=> String
|
952
1021
|
# resp.successful[0].target_locations #=> Array
|
953
1022
|
# resp.successful[0].target_locations[0].accounts #=> Array
|
954
1023
|
# resp.successful[0].target_locations[0].accounts[0] #=> String
|
@@ -979,6 +1048,8 @@ module Aws::SSM
|
|
979
1048
|
# resp.failed[0].entry.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
980
1049
|
# resp.failed[0].entry.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
981
1050
|
# resp.failed[0].entry.apply_only_at_cron_interval #=> Boolean
|
1051
|
+
# resp.failed[0].entry.calendar_names #=> Array
|
1052
|
+
# resp.failed[0].entry.calendar_names[0] #=> String
|
982
1053
|
# resp.failed[0].entry.target_locations #=> Array
|
983
1054
|
# resp.failed[0].entry.target_locations[0].accounts #=> Array
|
984
1055
|
# resp.failed[0].entry.target_locations[0].accounts[0] #=> String
|
@@ -1058,6 +1129,12 @@ module Aws::SSM
|
|
1058
1129
|
#
|
1059
1130
|
# * `amzn`
|
1060
1131
|
#
|
1132
|
+
# @option params [String] :display_name
|
1133
|
+
# An optional field where you can specify a friendly name for the
|
1134
|
+
# Systems Manager document. This value can differ for each version of
|
1135
|
+
# the document. You can update this value at a later time using the
|
1136
|
+
# UpdateDocument action.
|
1137
|
+
#
|
1061
1138
|
# @option params [String] :version_name
|
1062
1139
|
# An optional field specifying the version of the artifact you are
|
1063
1140
|
# creating with the document. For example, "Release 12, Update 6".
|
@@ -1082,7 +1159,7 @@ module Aws::SSM
|
|
1082
1159
|
#
|
1083
1160
|
#
|
1084
1161
|
#
|
1085
|
-
# [1]:
|
1162
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
1086
1163
|
#
|
1087
1164
|
# @option params [Array<Types::Tag>] :tags
|
1088
1165
|
# Optional metadata that you assign to a resource. Tags enable you to
|
@@ -1122,8 +1199,9 @@ module Aws::SSM
|
|
1122
1199
|
# },
|
1123
1200
|
# ],
|
1124
1201
|
# name: "DocumentName", # required
|
1202
|
+
# display_name: "DocumentDisplayName",
|
1125
1203
|
# version_name: "DocumentVersionName",
|
1126
|
-
# document_type: "Command", # accepts Command, Policy, Automation, Session, Package, ApplicationConfiguration, ApplicationConfigurationSchema, DeploymentStrategy, ChangeCalendar, Automation.ChangeTemplate
|
1204
|
+
# document_type: "Command", # accepts Command, Policy, Automation, Session, Package, ApplicationConfiguration, ApplicationConfigurationSchema, DeploymentStrategy, ChangeCalendar, Automation.ChangeTemplate, ProblemAnalysis, ProblemAnalysisTemplate
|
1127
1205
|
# document_format: "YAML", # accepts YAML, JSON, TEXT
|
1128
1206
|
# target_type: "TargetType",
|
1129
1207
|
# tags: [
|
@@ -1140,6 +1218,7 @@ module Aws::SSM
|
|
1140
1218
|
# resp.document_description.hash #=> String
|
1141
1219
|
# resp.document_description.hash_type #=> String, one of "Sha256", "Sha1"
|
1142
1220
|
# resp.document_description.name #=> String
|
1221
|
+
# resp.document_description.display_name #=> String
|
1143
1222
|
# resp.document_description.version_name #=> String
|
1144
1223
|
# resp.document_description.owner #=> String
|
1145
1224
|
# resp.document_description.created_date #=> Time
|
@@ -1154,7 +1233,7 @@ module Aws::SSM
|
|
1154
1233
|
# resp.document_description.parameters[0].default_value #=> String
|
1155
1234
|
# resp.document_description.platform_types #=> Array
|
1156
1235
|
# resp.document_description.platform_types[0] #=> String, one of "Windows", "Linux"
|
1157
|
-
# resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate"
|
1236
|
+
# resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate"
|
1158
1237
|
# resp.document_description.schema_version #=> String
|
1159
1238
|
# resp.document_description.latest_version #=> String
|
1160
1239
|
# resp.document_description.default_version #=> String
|
@@ -1812,6 +1891,7 @@ module Aws::SSM
|
|
1812
1891
|
# },
|
1813
1892
|
# source_regions: ["ResourceDataSyncSourceRegion"], # required
|
1814
1893
|
# include_future_regions: false,
|
1894
|
+
# enable_all_ops_data_sources: false,
|
1815
1895
|
# },
|
1816
1896
|
# })
|
1817
1897
|
#
|
@@ -2434,6 +2514,8 @@ module Aws::SSM
|
|
2434
2514
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
2435
2515
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
2436
2516
|
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
2517
|
+
# resp.association_description.calendar_names #=> Array
|
2518
|
+
# resp.association_description.calendar_names[0] #=> String
|
2437
2519
|
# resp.association_description.target_locations #=> Array
|
2438
2520
|
# resp.association_description.target_locations[0].accounts #=> Array
|
2439
2521
|
# resp.association_description.target_locations[0].accounts[0] #=> String
|
@@ -2725,8 +2807,8 @@ module Aws::SSM
|
|
2725
2807
|
# next set of results.
|
2726
2808
|
#
|
2727
2809
|
# @option params [Boolean] :reverse_order
|
2728
|
-
#
|
2729
|
-
#
|
2810
|
+
# Indicates whether to list step executions in reverse order by start
|
2811
|
+
# time. The default value is 'false'.
|
2730
2812
|
#
|
2731
2813
|
# @return [Types::DescribeAutomationStepExecutionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2732
2814
|
#
|
@@ -2909,6 +2991,7 @@ module Aws::SSM
|
|
2909
2991
|
# resp.document.hash #=> String
|
2910
2992
|
# resp.document.hash_type #=> String, one of "Sha256", "Sha1"
|
2911
2993
|
# resp.document.name #=> String
|
2994
|
+
# resp.document.display_name #=> String
|
2912
2995
|
# resp.document.version_name #=> String
|
2913
2996
|
# resp.document.owner #=> String
|
2914
2997
|
# resp.document.created_date #=> Time
|
@@ -2923,7 +3006,7 @@ module Aws::SSM
|
|
2923
3006
|
# resp.document.parameters[0].default_value #=> String
|
2924
3007
|
# resp.document.platform_types #=> Array
|
2925
3008
|
# resp.document.platform_types[0] #=> String, one of "Windows", "Linux"
|
2926
|
-
# resp.document.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate"
|
3009
|
+
# resp.document.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate"
|
2927
3010
|
# resp.document.schema_version #=> String
|
2928
3011
|
# resp.document.latest_version #=> String
|
2929
3012
|
# resp.document.default_version #=> String
|
@@ -3335,6 +3418,9 @@ module Aws::SSM
|
|
3335
3418
|
# resp.instance_patch_states[0].operation #=> String, one of "Scan", "Install"
|
3336
3419
|
# resp.instance_patch_states[0].last_no_reboot_install_operation_time #=> Time
|
3337
3420
|
# resp.instance_patch_states[0].reboot_option #=> String, one of "RebootIfNeeded", "NoReboot"
|
3421
|
+
# resp.instance_patch_states[0].critical_non_compliant_count #=> Integer
|
3422
|
+
# resp.instance_patch_states[0].security_non_compliant_count #=> Integer
|
3423
|
+
# resp.instance_patch_states[0].other_non_compliant_count #=> Integer
|
3338
3424
|
# resp.next_token #=> String
|
3339
3425
|
#
|
3340
3426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchStates AWS API Documentation
|
@@ -3413,6 +3499,9 @@ module Aws::SSM
|
|
3413
3499
|
# resp.instance_patch_states[0].operation #=> String, one of "Scan", "Install"
|
3414
3500
|
# resp.instance_patch_states[0].last_no_reboot_install_operation_time #=> Time
|
3415
3501
|
# resp.instance_patch_states[0].reboot_option #=> String, one of "RebootIfNeeded", "NoReboot"
|
3502
|
+
# resp.instance_patch_states[0].critical_non_compliant_count #=> Integer
|
3503
|
+
# resp.instance_patch_states[0].security_non_compliant_count #=> Integer
|
3504
|
+
# resp.instance_patch_states[0].other_non_compliant_count #=> Integer
|
3416
3505
|
# resp.next_token #=> String
|
3417
3506
|
#
|
3418
3507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchStatesForPatchGroup AWS API Documentation
|
@@ -4376,6 +4465,9 @@ module Aws::SSM
|
|
4376
4465
|
# * {Types::DescribePatchGroupStateResult#instances_with_failed_patches #instances_with_failed_patches} => Integer
|
4377
4466
|
# * {Types::DescribePatchGroupStateResult#instances_with_not_applicable_patches #instances_with_not_applicable_patches} => Integer
|
4378
4467
|
# * {Types::DescribePatchGroupStateResult#instances_with_unreported_not_applicable_patches #instances_with_unreported_not_applicable_patches} => Integer
|
4468
|
+
# * {Types::DescribePatchGroupStateResult#instances_with_critical_non_compliant_patches #instances_with_critical_non_compliant_patches} => Integer
|
4469
|
+
# * {Types::DescribePatchGroupStateResult#instances_with_security_non_compliant_patches #instances_with_security_non_compliant_patches} => Integer
|
4470
|
+
# * {Types::DescribePatchGroupStateResult#instances_with_other_non_compliant_patches #instances_with_other_non_compliant_patches} => Integer
|
4379
4471
|
#
|
4380
4472
|
# @example Request syntax with placeholder values
|
4381
4473
|
#
|
@@ -4394,6 +4486,9 @@ module Aws::SSM
|
|
4394
4486
|
# resp.instances_with_failed_patches #=> Integer
|
4395
4487
|
# resp.instances_with_not_applicable_patches #=> Integer
|
4396
4488
|
# resp.instances_with_unreported_not_applicable_patches #=> Integer
|
4489
|
+
# resp.instances_with_critical_non_compliant_patches #=> Integer
|
4490
|
+
# resp.instances_with_security_non_compliant_patches #=> Integer
|
4491
|
+
# resp.instances_with_other_non_compliant_patches #=> Integer
|
4397
4492
|
#
|
4398
4493
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupState AWS API Documentation
|
4399
4494
|
#
|
@@ -4642,6 +4737,36 @@ module Aws::SSM
|
|
4642
4737
|
req.send_request(options)
|
4643
4738
|
end
|
4644
4739
|
|
4740
|
+
# Deletes the association between an OpsItem and a related resource. For
|
4741
|
+
# example, this API action can delete an Incident Manager incident from
|
4742
|
+
# an OpsItem. Incident Manager is a capability of AWS Systems Manager.
|
4743
|
+
#
|
4744
|
+
# @option params [required, String] :ops_item_id
|
4745
|
+
# The ID of the OpsItem for which you want to delete an association
|
4746
|
+
# between the OpsItem and a related resource.
|
4747
|
+
#
|
4748
|
+
# @option params [required, String] :association_id
|
4749
|
+
# The ID of the association for which you want to delete an association
|
4750
|
+
# between the OpsItem and a related resource.
|
4751
|
+
#
|
4752
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4753
|
+
#
|
4754
|
+
# @example Request syntax with placeholder values
|
4755
|
+
#
|
4756
|
+
# resp = client.disassociate_ops_item_related_item({
|
4757
|
+
# ops_item_id: "OpsItemId", # required
|
4758
|
+
# association_id: "OpsItemRelatedItemAssociationId", # required
|
4759
|
+
# })
|
4760
|
+
#
|
4761
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DisassociateOpsItemRelatedItem AWS API Documentation
|
4762
|
+
#
|
4763
|
+
# @overload disassociate_ops_item_related_item(params = {})
|
4764
|
+
# @param [Hash] params ({})
|
4765
|
+
def disassociate_ops_item_related_item(params = {}, options = {})
|
4766
|
+
req = build_request(:disassociate_ops_item_related_item, params)
|
4767
|
+
req.send_request(options)
|
4768
|
+
end
|
4769
|
+
|
4645
4770
|
# Get detailed information about a particular Automation execution.
|
4646
4771
|
#
|
4647
4772
|
# @option params [required, String] :automation_execution_id
|
@@ -4851,24 +4976,35 @@ module Aws::SSM
|
|
4851
4976
|
# Returns detailed information about command execution for an invocation
|
4852
4977
|
# or plugin.
|
4853
4978
|
#
|
4979
|
+
# `GetCommandInvocation` only gives the execution status of a plugin in
|
4980
|
+
# a document. To get the command execution status on a specific
|
4981
|
+
# instance, use ListCommandInvocations. To get the command execution
|
4982
|
+
# status across instances, use ListCommands.
|
4983
|
+
#
|
4854
4984
|
# @option params [required, String] :command_id
|
4855
4985
|
# (Required) The parent command ID of the invocation plugin.
|
4856
4986
|
#
|
4857
4987
|
# @option params [required, String] :instance_id
|
4858
4988
|
# (Required) The ID of the managed instance targeted by the command. A
|
4859
|
-
# managed instance can be an
|
4860
|
-
# environment that is configured
|
4989
|
+
# managed instance can be an Amazon Elastic Compute Cloud (Amazon EC2)
|
4990
|
+
# instance or an instance in your hybrid environment that is configured
|
4991
|
+
# for AWS Systems Manager.
|
4861
4992
|
#
|
4862
4993
|
# @option params [String] :plugin_name
|
4863
4994
|
# The name of the plugin for which you want detailed results. If the
|
4864
4995
|
# document contains only one plugin, you can omit the name and details
|
4865
|
-
# for that plugin
|
4866
|
-
#
|
4867
|
-
#
|
4996
|
+
# for that plugin. If the document contains more than one plugin, you
|
4997
|
+
# must specify the name of the plugin for which you want to view
|
4998
|
+
# details.
|
4868
4999
|
#
|
4869
5000
|
# Plugin names are also referred to as *step names* in Systems Manager
|
4870
5001
|
# documents. For example, `aws:RunShellScript` is a plugin.
|
4871
5002
|
#
|
5003
|
+
# To find the `PluginName`, check the document content and find the name
|
5004
|
+
# of the plugin. Alternatively, use ListCommandInvocations with the
|
5005
|
+
# `CommandId` and `Details` parameters. The `PluginName` is the `Name`
|
5006
|
+
# attribute of the `CommandPlugin` object in the `CommandPlugins` list.
|
5007
|
+
#
|
4872
5008
|
# @return [Types::GetCommandInvocationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4873
5009
|
#
|
4874
5010
|
# * {Types::GetCommandInvocationResult#command_id #command_id} => String
|
@@ -5104,6 +5240,8 @@ module Aws::SSM
|
|
5104
5240
|
# @return [Types::GetDocumentResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5105
5241
|
#
|
5106
5242
|
# * {Types::GetDocumentResult#name #name} => String
|
5243
|
+
# * {Types::GetDocumentResult#created_date #created_date} => Time
|
5244
|
+
# * {Types::GetDocumentResult#display_name #display_name} => String
|
5107
5245
|
# * {Types::GetDocumentResult#version_name #version_name} => String
|
5108
5246
|
# * {Types::GetDocumentResult#document_version #document_version} => String
|
5109
5247
|
# * {Types::GetDocumentResult#status #status} => String
|
@@ -5127,12 +5265,14 @@ module Aws::SSM
|
|
5127
5265
|
# @example Response structure
|
5128
5266
|
#
|
5129
5267
|
# resp.name #=> String
|
5268
|
+
# resp.created_date #=> Time
|
5269
|
+
# resp.display_name #=> String
|
5130
5270
|
# resp.version_name #=> String
|
5131
5271
|
# resp.document_version #=> String
|
5132
5272
|
# resp.status #=> String, one of "Creating", "Active", "Updating", "Deleting", "Failed"
|
5133
5273
|
# resp.status_information #=> String
|
5134
5274
|
# resp.content #=> String
|
5135
|
-
# resp.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate"
|
5275
|
+
# resp.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate"
|
5136
5276
|
# resp.document_format #=> String, one of "YAML", "JSON", "TEXT"
|
5137
5277
|
# resp.requires #=> Array
|
5138
5278
|
# resp.requires[0].name #=> String
|
@@ -6213,12 +6353,20 @@ module Aws::SSM
|
|
6213
6353
|
# Query the current service setting for the account.
|
6214
6354
|
#
|
6215
6355
|
# @option params [required, String] :setting_id
|
6216
|
-
# The ID of the service setting to get. The setting ID can be
|
6217
|
-
#
|
6218
|
-
#
|
6219
|
-
# `/ssm/
|
6220
|
-
#
|
6221
|
-
# `/ssm/
|
6356
|
+
# The ID of the service setting to get. The setting ID can be one of the
|
6357
|
+
# following.
|
6358
|
+
#
|
6359
|
+
# * `/ssm/automation/customer-script-log-destination`
|
6360
|
+
#
|
6361
|
+
# * `/ssm/automation/customer-script-log-group-name`
|
6362
|
+
#
|
6363
|
+
# * `/ssm/documents/console/public-sharing-permission`
|
6364
|
+
#
|
6365
|
+
# * `/ssm/parameter-store/default-parameter-tier`
|
6366
|
+
#
|
6367
|
+
# * `/ssm/parameter-store/high-throughput-enabled`
|
6368
|
+
#
|
6369
|
+
# * `/ssm/managed-instance/activation-tier`
|
6222
6370
|
#
|
6223
6371
|
# @return [Types::GetServiceSettingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6224
6372
|
#
|
@@ -6267,9 +6415,8 @@ module Aws::SSM
|
|
6267
6415
|
# * You can't create a label when you create a new parameter. You must
|
6268
6416
|
# attach a label to a specific version of a parameter.
|
6269
6417
|
#
|
6270
|
-
# *
|
6271
|
-
#
|
6272
|
-
# parameter.
|
6418
|
+
# * If you no longer want to use a parameter label, then you can either
|
6419
|
+
# delete it or move it to a different version of a parameter.
|
6273
6420
|
#
|
6274
6421
|
# * A label can have a maximum of 100 characters.
|
6275
6422
|
#
|
@@ -6375,6 +6522,8 @@ module Aws::SSM
|
|
6375
6522
|
# resp.association_versions[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
6376
6523
|
# resp.association_versions[0].sync_compliance #=> String, one of "AUTO", "MANUAL"
|
6377
6524
|
# resp.association_versions[0].apply_only_at_cron_interval #=> Boolean
|
6525
|
+
# resp.association_versions[0].calendar_names #=> Array
|
6526
|
+
# resp.association_versions[0].calendar_names[0] #=> String
|
6378
6527
|
# resp.association_versions[0].target_locations #=> Array
|
6379
6528
|
# resp.association_versions[0].target_locations[0].accounts #=> Array
|
6380
6529
|
# resp.association_versions[0].target_locations[0].accounts[0] #=> String
|
@@ -6496,7 +6645,7 @@ module Aws::SSM
|
|
6496
6645
|
#
|
6497
6646
|
# @option params [Boolean] :details
|
6498
6647
|
# (Optional) If set this returns the response of the command executions
|
6499
|
-
# and any command output.
|
6648
|
+
# and any command output. The default value is 'false'.
|
6500
6649
|
#
|
6501
6650
|
# @return [Types::ListCommandInvocationsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6502
6651
|
#
|
@@ -6904,6 +7053,7 @@ module Aws::SSM
|
|
6904
7053
|
#
|
6905
7054
|
# resp.document_versions #=> Array
|
6906
7055
|
# resp.document_versions[0].name #=> String
|
7056
|
+
# resp.document_versions[0].display_name #=> String
|
6907
7057
|
# resp.document_versions[0].document_version #=> String
|
6908
7058
|
# resp.document_versions[0].version_name #=> String
|
6909
7059
|
# resp.document_versions[0].created_date #=> Time
|
@@ -6984,12 +7134,14 @@ module Aws::SSM
|
|
6984
7134
|
#
|
6985
7135
|
# resp.document_identifiers #=> Array
|
6986
7136
|
# resp.document_identifiers[0].name #=> String
|
7137
|
+
# resp.document_identifiers[0].created_date #=> Time
|
7138
|
+
# resp.document_identifiers[0].display_name #=> String
|
6987
7139
|
# resp.document_identifiers[0].owner #=> String
|
6988
7140
|
# resp.document_identifiers[0].version_name #=> String
|
6989
7141
|
# resp.document_identifiers[0].platform_types #=> Array
|
6990
7142
|
# resp.document_identifiers[0].platform_types[0] #=> String, one of "Windows", "Linux"
|
6991
7143
|
# resp.document_identifiers[0].document_version #=> String
|
6992
|
-
# resp.document_identifiers[0].document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate"
|
7144
|
+
# resp.document_identifiers[0].document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate"
|
6993
7145
|
# resp.document_identifiers[0].schema_version #=> String
|
6994
7146
|
# resp.document_identifiers[0].document_format #=> String, one of "YAML", "JSON", "TEXT"
|
6995
7147
|
# resp.document_identifiers[0].target_type #=> String
|
@@ -7137,6 +7289,70 @@ module Aws::SSM
|
|
7137
7289
|
req.send_request(options)
|
7138
7290
|
end
|
7139
7291
|
|
7292
|
+
# Lists all related-item resources associated with an OpsItem.
|
7293
|
+
#
|
7294
|
+
# @option params [String] :ops_item_id
|
7295
|
+
# The ID of the OpsItem for which you want to list all related-item
|
7296
|
+
# resources.
|
7297
|
+
#
|
7298
|
+
# @option params [Array<Types::OpsItemRelatedItemsFilter>] :filters
|
7299
|
+
# One or more OpsItem filters. Use a filter to return a more specific
|
7300
|
+
# list of results.
|
7301
|
+
#
|
7302
|
+
# @option params [Integer] :max_results
|
7303
|
+
# The maximum number of items to return for this call. The call also
|
7304
|
+
# returns a token that you can specify in a subsequent call to get the
|
7305
|
+
# next set of results.
|
7306
|
+
#
|
7307
|
+
# @option params [String] :next_token
|
7308
|
+
# The token for the next set of items to return. (You received this
|
7309
|
+
# token from a previous call.)
|
7310
|
+
#
|
7311
|
+
# @return [Types::ListOpsItemRelatedItemsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7312
|
+
#
|
7313
|
+
# * {Types::ListOpsItemRelatedItemsResponse#next_token #next_token} => String
|
7314
|
+
# * {Types::ListOpsItemRelatedItemsResponse#summaries #summaries} => Array<Types::OpsItemRelatedItemSummary>
|
7315
|
+
#
|
7316
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7317
|
+
#
|
7318
|
+
# @example Request syntax with placeholder values
|
7319
|
+
#
|
7320
|
+
# resp = client.list_ops_item_related_items({
|
7321
|
+
# ops_item_id: "OpsItemId",
|
7322
|
+
# filters: [
|
7323
|
+
# {
|
7324
|
+
# key: "ResourceType", # required, accepts ResourceType, AssociationId, ResourceUri
|
7325
|
+
# values: ["OpsItemRelatedItemsFilterValue"], # required
|
7326
|
+
# operator: "Equal", # required, accepts Equal
|
7327
|
+
# },
|
7328
|
+
# ],
|
7329
|
+
# max_results: 1,
|
7330
|
+
# next_token: "String",
|
7331
|
+
# })
|
7332
|
+
#
|
7333
|
+
# @example Response structure
|
7334
|
+
#
|
7335
|
+
# resp.next_token #=> String
|
7336
|
+
# resp.summaries #=> Array
|
7337
|
+
# resp.summaries[0].ops_item_id #=> String
|
7338
|
+
# resp.summaries[0].association_id #=> String
|
7339
|
+
# resp.summaries[0].resource_type #=> String
|
7340
|
+
# resp.summaries[0].association_type #=> String
|
7341
|
+
# resp.summaries[0].resource_uri #=> String
|
7342
|
+
# resp.summaries[0].created_by.arn #=> String
|
7343
|
+
# resp.summaries[0].created_time #=> Time
|
7344
|
+
# resp.summaries[0].last_modified_by.arn #=> String
|
7345
|
+
# resp.summaries[0].last_modified_time #=> Time
|
7346
|
+
#
|
7347
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListOpsItemRelatedItems AWS API Documentation
|
7348
|
+
#
|
7349
|
+
# @overload list_ops_item_related_items(params = {})
|
7350
|
+
# @param [Hash] params ({})
|
7351
|
+
def list_ops_item_related_items(params = {}, options = {})
|
7352
|
+
req = build_request(:list_ops_item_related_items, params)
|
7353
|
+
req.send_request(options)
|
7354
|
+
end
|
7355
|
+
|
7140
7356
|
# Systems Manager calls this API action when displaying all Application
|
7141
7357
|
# Manager OpsMetadata objects or blobs.
|
7142
7358
|
#
|
@@ -7323,6 +7539,7 @@ module Aws::SSM
|
|
7323
7539
|
# resp.resource_data_sync_items[0].sync_source.source_regions[0] #=> String
|
7324
7540
|
# resp.resource_data_sync_items[0].sync_source.include_future_regions #=> Boolean
|
7325
7541
|
# resp.resource_data_sync_items[0].sync_source.state #=> String
|
7542
|
+
# resp.resource_data_sync_items[0].sync_source.enable_all_ops_data_sources #=> Boolean
|
7326
7543
|
# resp.resource_data_sync_items[0].s3_destination.bucket_name #=> String
|
7327
7544
|
# resp.resource_data_sync_items[0].s3_destination.prefix #=> String
|
7328
7545
|
# resp.resource_data_sync_items[0].s3_destination.sync_format #=> String, one of "JsonSerDe"
|
@@ -7702,8 +7919,7 @@ module Aws::SSM
|
|
7702
7919
|
# the `Key ID` parameter.
|
7703
7920
|
#
|
7704
7921
|
# @option params [Boolean] :overwrite
|
7705
|
-
# Overwrite an existing parameter.
|
7706
|
-
# "false".
|
7922
|
+
# Overwrite an existing parameter. The default value is 'false'.
|
7707
7923
|
#
|
7708
7924
|
# @option params [String] :allowed_pattern
|
7709
7925
|
# A regular expression used to validate the parameter value. For
|
@@ -7853,7 +8069,7 @@ module Aws::SSM
|
|
7853
8069
|
#
|
7854
8070
|
#
|
7855
8071
|
#
|
7856
|
-
# [1]:
|
8072
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-ec2-aliases.html
|
7857
8073
|
#
|
7858
8074
|
# @return [Types::PutParameterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7859
8075
|
#
|
@@ -8365,12 +8581,19 @@ module Aws::SSM
|
|
8365
8581
|
#
|
8366
8582
|
# @option params [required, String] :setting_id
|
8367
8583
|
# The Amazon Resource Name (ARN) of the service setting to reset. The
|
8368
|
-
# setting ID can be
|
8369
|
-
#
|
8370
|
-
# `/ssm/
|
8371
|
-
#
|
8372
|
-
# `/ssm/
|
8373
|
-
#
|
8584
|
+
# setting ID can be one of the following.
|
8585
|
+
#
|
8586
|
+
# * `/ssm/automation/customer-script-log-destination`
|
8587
|
+
#
|
8588
|
+
# * `/ssm/automation/customer-script-log-group-name`
|
8589
|
+
#
|
8590
|
+
# * `/ssm/documents/console/public-sharing-permission`
|
8591
|
+
#
|
8592
|
+
# * `/ssm/parameter-store/default-parameter-tier`
|
8593
|
+
#
|
8594
|
+
# * `/ssm/parameter-store/high-throughput-enabled`
|
8595
|
+
#
|
8596
|
+
# * `/ssm/managed-instance/activation-tier`
|
8374
8597
|
#
|
8375
8598
|
# @return [Types::ResetServiceSettingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8376
8599
|
#
|
@@ -8943,6 +9166,16 @@ module Aws::SSM
|
|
8943
9166
|
#
|
8944
9167
|
# * `Key=Region,Value=us-east-2`
|
8945
9168
|
#
|
9169
|
+
# @option params [Time,DateTime,Date,Integer,String] :scheduled_end_time
|
9170
|
+
# The time that the requester expects the runbook workflow related to
|
9171
|
+
# the change request to complete. The time is an estimate only that the
|
9172
|
+
# requester provides for reviewers.
|
9173
|
+
#
|
9174
|
+
# @option params [String] :change_details
|
9175
|
+
# User-provided details about the change. If no details are provided,
|
9176
|
+
# content specified in the **Template information** section of the
|
9177
|
+
# associated change template is added.
|
9178
|
+
#
|
8946
9179
|
# @return [Types::StartChangeRequestExecutionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8947
9180
|
#
|
8948
9181
|
# * {Types::StartChangeRequestExecutionResult#automation_execution_id #automation_execution_id} => String
|
@@ -8991,6 +9224,8 @@ module Aws::SSM
|
|
8991
9224
|
# value: "TagValue", # required
|
8992
9225
|
# },
|
8993
9226
|
# ],
|
9227
|
+
# scheduled_end_time: Time.now,
|
9228
|
+
# change_details: "ChangeDetailsValue",
|
8994
9229
|
# })
|
8995
9230
|
#
|
8996
9231
|
# @example Response structure
|
@@ -9125,6 +9360,47 @@ module Aws::SSM
|
|
9125
9360
|
req.send_request(options)
|
9126
9361
|
end
|
9127
9362
|
|
9363
|
+
# Remove a label or labels from a parameter.
|
9364
|
+
#
|
9365
|
+
# @option params [required, String] :name
|
9366
|
+
# The parameter name of which you want to delete one or more labels.
|
9367
|
+
#
|
9368
|
+
# @option params [required, Integer] :parameter_version
|
9369
|
+
# The specific version of the parameter which you want to delete one or
|
9370
|
+
# more labels from. If it is not present, the call will fail.
|
9371
|
+
#
|
9372
|
+
# @option params [required, Array<String>] :labels
|
9373
|
+
# One or more labels to delete from the specified parameter version.
|
9374
|
+
#
|
9375
|
+
# @return [Types::UnlabelParameterVersionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9376
|
+
#
|
9377
|
+
# * {Types::UnlabelParameterVersionResult#removed_labels #removed_labels} => Array<String>
|
9378
|
+
# * {Types::UnlabelParameterVersionResult#invalid_labels #invalid_labels} => Array<String>
|
9379
|
+
#
|
9380
|
+
# @example Request syntax with placeholder values
|
9381
|
+
#
|
9382
|
+
# resp = client.unlabel_parameter_version({
|
9383
|
+
# name: "PSParameterName", # required
|
9384
|
+
# parameter_version: 1, # required
|
9385
|
+
# labels: ["ParameterLabel"], # required
|
9386
|
+
# })
|
9387
|
+
#
|
9388
|
+
# @example Response structure
|
9389
|
+
#
|
9390
|
+
# resp.removed_labels #=> Array
|
9391
|
+
# resp.removed_labels[0] #=> String
|
9392
|
+
# resp.invalid_labels #=> Array
|
9393
|
+
# resp.invalid_labels[0] #=> String
|
9394
|
+
#
|
9395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UnlabelParameterVersion AWS API Documentation
|
9396
|
+
#
|
9397
|
+
# @overload unlabel_parameter_version(params = {})
|
9398
|
+
# @param [Hash] params ({})
|
9399
|
+
def unlabel_parameter_version(params = {}, options = {})
|
9400
|
+
req = build_request(:unlabel_parameter_version, params)
|
9401
|
+
req.send_request(options)
|
9402
|
+
end
|
9403
|
+
|
9128
9404
|
# Updates an association. You can update the association name and
|
9129
9405
|
# version, the document version, schedule, parameters, and Amazon S3
|
9130
9406
|
# output.
|
@@ -9258,6 +9534,16 @@ module Aws::SSM
|
|
9258
9534
|
# association to run immediately after updating it and according to the
|
9259
9535
|
# interval specified.
|
9260
9536
|
#
|
9537
|
+
# @option params [Array<String>] :calendar_names
|
9538
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
9539
|
+
# Change Calendar type documents you want to gate your associations
|
9540
|
+
# under. The associations only run when that Change Calendar is open.
|
9541
|
+
# For more information, see [AWS Systems Manager Change Calendar][1].
|
9542
|
+
#
|
9543
|
+
#
|
9544
|
+
#
|
9545
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
9546
|
+
#
|
9261
9547
|
# @option params [Array<Types::TargetLocation>] :target_locations
|
9262
9548
|
# A location is a combination of AWS Regions and AWS accounts where you
|
9263
9549
|
# want to run the association. Use this action to update an association
|
@@ -9298,6 +9584,7 @@ module Aws::SSM
|
|
9298
9584
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
9299
9585
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
9300
9586
|
# apply_only_at_cron_interval: false,
|
9587
|
+
# calendar_names: ["CalendarNameOrARN"],
|
9301
9588
|
# target_locations: [
|
9302
9589
|
# {
|
9303
9590
|
# accounts: ["Account"],
|
@@ -9346,6 +9633,8 @@ module Aws::SSM
|
|
9346
9633
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
9347
9634
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
9348
9635
|
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
9636
|
+
# resp.association_description.calendar_names #=> Array
|
9637
|
+
# resp.association_description.calendar_names[0] #=> String
|
9349
9638
|
# resp.association_description.target_locations #=> Array
|
9350
9639
|
# resp.association_description.target_locations[0].accounts #=> Array
|
9351
9640
|
# resp.association_description.target_locations[0].accounts[0] #=> String
|
@@ -9430,6 +9719,8 @@ module Aws::SSM
|
|
9430
9719
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
9431
9720
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
9432
9721
|
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
9722
|
+
# resp.association_description.calendar_names #=> Array
|
9723
|
+
# resp.association_description.calendar_names[0] #=> String
|
9433
9724
|
# resp.association_description.target_locations #=> Array
|
9434
9725
|
# resp.association_description.target_locations[0].accounts #=> Array
|
9435
9726
|
# resp.association_description.target_locations[0].accounts[0] #=> String
|
@@ -9458,7 +9749,13 @@ module Aws::SSM
|
|
9458
9749
|
# of a document.
|
9459
9750
|
#
|
9460
9751
|
# @option params [required, String] :name
|
9461
|
-
# The name of the document that you want to update.
|
9752
|
+
# The name of the Systems Manager document that you want to update.
|
9753
|
+
#
|
9754
|
+
# @option params [String] :display_name
|
9755
|
+
# The friendly name of the Systems Manager document that you want to
|
9756
|
+
# update. This value can differ for each version of the document. If you
|
9757
|
+
# do not specify a value for this parameter in your request, the
|
9758
|
+
# existing value is applied to the new document version.
|
9462
9759
|
#
|
9463
9760
|
# @option params [String] :version_name
|
9464
9761
|
# An optional field specifying the version of the artifact you are
|
@@ -9467,10 +9764,10 @@ module Aws::SSM
|
|
9467
9764
|
# changed.
|
9468
9765
|
#
|
9469
9766
|
# @option params [String] :document_version
|
9470
|
-
#
|
9471
|
-
#
|
9472
|
-
#
|
9473
|
-
#
|
9767
|
+
# The version of the document that you want to update. Currently,
|
9768
|
+
# Systems Manager supports updating only the latest version of the
|
9769
|
+
# document. You can specify the version number of the latest version or
|
9770
|
+
# use the `$LATEST` variable.
|
9474
9771
|
#
|
9475
9772
|
# @option params [String] :document_format
|
9476
9773
|
# Specify the document format for the new document version. Systems
|
@@ -9495,6 +9792,7 @@ module Aws::SSM
|
|
9495
9792
|
# },
|
9496
9793
|
# ],
|
9497
9794
|
# name: "DocumentName", # required
|
9795
|
+
# display_name: "DocumentDisplayName",
|
9498
9796
|
# version_name: "DocumentVersionName",
|
9499
9797
|
# document_version: "DocumentVersion",
|
9500
9798
|
# document_format: "YAML", # accepts YAML, JSON, TEXT
|
@@ -9507,6 +9805,7 @@ module Aws::SSM
|
|
9507
9805
|
# resp.document_description.hash #=> String
|
9508
9806
|
# resp.document_description.hash_type #=> String, one of "Sha256", "Sha1"
|
9509
9807
|
# resp.document_description.name #=> String
|
9808
|
+
# resp.document_description.display_name #=> String
|
9510
9809
|
# resp.document_description.version_name #=> String
|
9511
9810
|
# resp.document_description.owner #=> String
|
9512
9811
|
# resp.document_description.created_date #=> Time
|
@@ -9521,7 +9820,7 @@ module Aws::SSM
|
|
9521
9820
|
# resp.document_description.parameters[0].default_value #=> String
|
9522
9821
|
# resp.document_description.platform_types #=> Array
|
9523
9822
|
# resp.document_description.platform_types[0] #=> String, one of "Windows", "Linux"
|
9524
|
-
# resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate"
|
9823
|
+
# resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate", "ProblemAnalysis", "ProblemAnalysisTemplate"
|
9525
9824
|
# resp.document_description.schema_version #=> String
|
9526
9825
|
# resp.document_description.latest_version #=> String
|
9527
9826
|
# resp.document_description.default_version #=> String
|
@@ -10636,6 +10935,7 @@ module Aws::SSM
|
|
10636
10935
|
# },
|
10637
10936
|
# source_regions: ["ResourceDataSyncSourceRegion"], # required
|
10638
10937
|
# include_future_regions: false,
|
10938
|
+
# enable_all_ops_data_sources: false,
|
10639
10939
|
# },
|
10640
10940
|
# })
|
10641
10941
|
#
|
@@ -10676,6 +10976,8 @@ module Aws::SSM
|
|
10676
10976
|
#
|
10677
10977
|
# * `/ssm/automation/customer-script-log-group-name`
|
10678
10978
|
#
|
10979
|
+
# * `/ssm/documents/console/public-sharing-permission`
|
10980
|
+
#
|
10679
10981
|
# * `/ssm/parameter-store/default-parameter-tier`
|
10680
10982
|
#
|
10681
10983
|
# * `/ssm/parameter-store/high-throughput-enabled`
|
@@ -10703,6 +11005,9 @@ module Aws::SSM
|
|
10703
11005
|
# For the `/ssm/automation/customer-script-log-group-name` setting ID,
|
10704
11006
|
# the setting value can be the name of a CloudWatch Logs log group.
|
10705
11007
|
#
|
11008
|
+
# For the `/ssm/documents/console/public-sharing-permission` setting ID,
|
11009
|
+
# the setting value can be Enable or Disable.
|
11010
|
+
#
|
10706
11011
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
10707
11012
|
#
|
10708
11013
|
# @example Request syntax with placeholder values
|
@@ -10734,7 +11039,7 @@ module Aws::SSM
|
|
10734
11039
|
params: params,
|
10735
11040
|
config: config)
|
10736
11041
|
context[:gem_name] = 'aws-sdk-ssm'
|
10737
|
-
context[:gem_version] = '1.
|
11042
|
+
context[:gem_version] = '1.111.0'
|
10738
11043
|
Seahorse::Client::Request.new(handlers, context)
|
10739
11044
|
end
|
10740
11045
|
|