aws-sdk-ssm 1.108.0 → 1.109.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +39 -2
- data/lib/aws-sdk-ssm/client_api.rb +5 -0
- data/lib/aws-sdk-ssm/types.rb +66 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98f3b8be27cd4306b6eb5d5b0770326f09467bfd2fb6a1f09d89489f1994860e
|
4
|
+
data.tar.gz: de289cbd8ac3d1a01fd5f7ab5da37e28209ea608d1d057f8409bcc243343b088
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb5f748bb58c7e69d6635099fcb71b68dda928ef2af83262fcab9cfa7ad54c3643a00f03a7dbdf401eb187597776ac054cb2e3128c43bfe54abc9b5213c86ec5
|
7
|
+
data.tar.gz: d9b30e15f9c075970c02af0b4d894daf53532deeac68bfdebc96fd32f14daf2cefdc95143a66b2fb6239db9e8eb08d26f781931be6f159a5b45a10bb651895b0
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.109.0
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -736,12 +736,22 @@ module Aws::SSM
|
|
736
736
|
# By default, all associations use `AUTO` mode.
|
737
737
|
#
|
738
738
|
# @option params [Boolean] :apply_only_at_cron_interval
|
739
|
-
# By default, when you create a new
|
739
|
+
# By default, when you create a new association, the system runs it
|
740
740
|
# immediately after it is created and then according to the schedule you
|
741
741
|
# specified. Specify this option if you don't want an association to
|
742
742
|
# run immediately after you create it. This parameter is not supported
|
743
743
|
# for rate expressions.
|
744
744
|
#
|
745
|
+
# @option params [Array<String>] :calendar_names
|
746
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
747
|
+
# Change Calendar type documents you want to gate your associations
|
748
|
+
# under. The associations only run when that Change Calendar is open.
|
749
|
+
# For more information, see [AWS Systems Manager Change Calendar][1].
|
750
|
+
#
|
751
|
+
#
|
752
|
+
#
|
753
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
754
|
+
#
|
745
755
|
# @option params [Array<Types::TargetLocation>] :target_locations
|
746
756
|
# A location is a combination of AWS Regions and AWS accounts where you
|
747
757
|
# want to run the association. Use this action to create an association
|
@@ -781,6 +791,7 @@ module Aws::SSM
|
|
781
791
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
782
792
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
783
793
|
# apply_only_at_cron_interval: false,
|
794
|
+
# calendar_names: ["CalendarNameOrARN"],
|
784
795
|
# target_locations: [
|
785
796
|
# {
|
786
797
|
# accounts: ["Account"],
|
@@ -829,6 +840,8 @@ module Aws::SSM
|
|
829
840
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
830
841
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
831
842
|
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
843
|
+
# resp.association_description.calendar_names #=> Array
|
844
|
+
# resp.association_description.calendar_names[0] #=> String
|
832
845
|
# resp.association_description.target_locations #=> Array
|
833
846
|
# resp.association_description.target_locations[0].accounts #=> Array
|
834
847
|
# resp.association_description.target_locations[0].accounts[0] #=> String
|
@@ -898,6 +911,7 @@ module Aws::SSM
|
|
898
911
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
899
912
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
900
913
|
# apply_only_at_cron_interval: false,
|
914
|
+
# calendar_names: ["CalendarNameOrARN"],
|
901
915
|
# target_locations: [
|
902
916
|
# {
|
903
917
|
# accounts: ["Account"],
|
@@ -949,6 +963,8 @@ module Aws::SSM
|
|
949
963
|
# resp.successful[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
950
964
|
# resp.successful[0].sync_compliance #=> String, one of "AUTO", "MANUAL"
|
951
965
|
# resp.successful[0].apply_only_at_cron_interval #=> Boolean
|
966
|
+
# resp.successful[0].calendar_names #=> Array
|
967
|
+
# resp.successful[0].calendar_names[0] #=> String
|
952
968
|
# resp.successful[0].target_locations #=> Array
|
953
969
|
# resp.successful[0].target_locations[0].accounts #=> Array
|
954
970
|
# resp.successful[0].target_locations[0].accounts[0] #=> String
|
@@ -979,6 +995,8 @@ module Aws::SSM
|
|
979
995
|
# resp.failed[0].entry.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
980
996
|
# resp.failed[0].entry.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
981
997
|
# resp.failed[0].entry.apply_only_at_cron_interval #=> Boolean
|
998
|
+
# resp.failed[0].entry.calendar_names #=> Array
|
999
|
+
# resp.failed[0].entry.calendar_names[0] #=> String
|
982
1000
|
# resp.failed[0].entry.target_locations #=> Array
|
983
1001
|
# resp.failed[0].entry.target_locations[0].accounts #=> Array
|
984
1002
|
# resp.failed[0].entry.target_locations[0].accounts[0] #=> String
|
@@ -2435,6 +2453,8 @@ module Aws::SSM
|
|
2435
2453
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
2436
2454
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
2437
2455
|
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
2456
|
+
# resp.association_description.calendar_names #=> Array
|
2457
|
+
# resp.association_description.calendar_names[0] #=> String
|
2438
2458
|
# resp.association_description.target_locations #=> Array
|
2439
2459
|
# resp.association_description.target_locations[0].accounts #=> Array
|
2440
2460
|
# resp.association_description.target_locations[0].accounts[0] #=> String
|
@@ -6398,6 +6418,8 @@ module Aws::SSM
|
|
6398
6418
|
# resp.association_versions[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
6399
6419
|
# resp.association_versions[0].sync_compliance #=> String, one of "AUTO", "MANUAL"
|
6400
6420
|
# resp.association_versions[0].apply_only_at_cron_interval #=> Boolean
|
6421
|
+
# resp.association_versions[0].calendar_names #=> Array
|
6422
|
+
# resp.association_versions[0].calendar_names[0] #=> String
|
6401
6423
|
# resp.association_versions[0].target_locations #=> Array
|
6402
6424
|
# resp.association_versions[0].target_locations[0].accounts #=> Array
|
6403
6425
|
# resp.association_versions[0].target_locations[0].accounts[0] #=> String
|
@@ -9334,6 +9356,16 @@ module Aws::SSM
|
|
9334
9356
|
# association to run immediately after updating it and according to the
|
9335
9357
|
# interval specified.
|
9336
9358
|
#
|
9359
|
+
# @option params [Array<String>] :calendar_names
|
9360
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
9361
|
+
# Change Calendar type documents you want to gate your associations
|
9362
|
+
# under. The associations only run when that Change Calendar is open.
|
9363
|
+
# For more information, see [AWS Systems Manager Change Calendar][1].
|
9364
|
+
#
|
9365
|
+
#
|
9366
|
+
#
|
9367
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
9368
|
+
#
|
9337
9369
|
# @option params [Array<Types::TargetLocation>] :target_locations
|
9338
9370
|
# A location is a combination of AWS Regions and AWS accounts where you
|
9339
9371
|
# want to run the association. Use this action to update an association
|
@@ -9374,6 +9406,7 @@ module Aws::SSM
|
|
9374
9406
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
9375
9407
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
9376
9408
|
# apply_only_at_cron_interval: false,
|
9409
|
+
# calendar_names: ["CalendarNameOrARN"],
|
9377
9410
|
# target_locations: [
|
9378
9411
|
# {
|
9379
9412
|
# accounts: ["Account"],
|
@@ -9422,6 +9455,8 @@ module Aws::SSM
|
|
9422
9455
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
9423
9456
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
9424
9457
|
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
9458
|
+
# resp.association_description.calendar_names #=> Array
|
9459
|
+
# resp.association_description.calendar_names[0] #=> String
|
9425
9460
|
# resp.association_description.target_locations #=> Array
|
9426
9461
|
# resp.association_description.target_locations[0].accounts #=> Array
|
9427
9462
|
# resp.association_description.target_locations[0].accounts[0] #=> String
|
@@ -9506,6 +9541,8 @@ module Aws::SSM
|
|
9506
9541
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
9507
9542
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
9508
9543
|
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
9544
|
+
# resp.association_description.calendar_names #=> Array
|
9545
|
+
# resp.association_description.calendar_names[0] #=> String
|
9509
9546
|
# resp.association_description.target_locations #=> Array
|
9510
9547
|
# resp.association_description.target_locations[0].accounts #=> Array
|
9511
9548
|
# resp.association_description.target_locations[0].accounts[0] #=> String
|
@@ -10811,7 +10848,7 @@ module Aws::SSM
|
|
10811
10848
|
params: params,
|
10812
10849
|
config: config)
|
10813
10850
|
context[:gem_name] = 'aws-sdk-ssm'
|
10814
|
-
context[:gem_version] = '1.
|
10851
|
+
context[:gem_version] = '1.109.0'
|
10815
10852
|
Seahorse::Client::Request.new(handlers, context)
|
10816
10853
|
end
|
10817
10854
|
|
@@ -1208,6 +1208,7 @@ module Aws::SSM
|
|
1208
1208
|
AssociationDescription.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1209
1209
|
AssociationDescription.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
1210
1210
|
AssociationDescription.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
1211
|
+
AssociationDescription.add_member(:calendar_names, Shapes::ShapeRef.new(shape: CalendarNameOrARNList, location_name: "CalendarNames"))
|
1211
1212
|
AssociationDescription.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations"))
|
1212
1213
|
AssociationDescription.struct_class = Types::AssociationDescription
|
1213
1214
|
|
@@ -1298,6 +1299,7 @@ module Aws::SSM
|
|
1298
1299
|
AssociationVersionInfo.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1299
1300
|
AssociationVersionInfo.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
1300
1301
|
AssociationVersionInfo.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
1302
|
+
AssociationVersionInfo.add_member(:calendar_names, Shapes::ShapeRef.new(shape: CalendarNameOrARNList, location_name: "CalendarNames"))
|
1301
1303
|
AssociationVersionInfo.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations"))
|
1302
1304
|
AssociationVersionInfo.struct_class = Types::AssociationVersionInfo
|
1303
1305
|
|
@@ -1612,6 +1614,7 @@ module Aws::SSM
|
|
1612
1614
|
CreateAssociationBatchRequestEntry.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1613
1615
|
CreateAssociationBatchRequestEntry.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
1614
1616
|
CreateAssociationBatchRequestEntry.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
1617
|
+
CreateAssociationBatchRequestEntry.add_member(:calendar_names, Shapes::ShapeRef.new(shape: CalendarNameOrARNList, location_name: "CalendarNames"))
|
1615
1618
|
CreateAssociationBatchRequestEntry.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations"))
|
1616
1619
|
CreateAssociationBatchRequestEntry.struct_class = Types::CreateAssociationBatchRequestEntry
|
1617
1620
|
|
@@ -1633,6 +1636,7 @@ module Aws::SSM
|
|
1633
1636
|
CreateAssociationRequest.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1634
1637
|
CreateAssociationRequest.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
1635
1638
|
CreateAssociationRequest.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
1639
|
+
CreateAssociationRequest.add_member(:calendar_names, Shapes::ShapeRef.new(shape: CalendarNameOrARNList, location_name: "CalendarNames"))
|
1636
1640
|
CreateAssociationRequest.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations"))
|
1637
1641
|
CreateAssociationRequest.struct_class = Types::CreateAssociationRequest
|
1638
1642
|
|
@@ -4230,6 +4234,7 @@ module Aws::SSM
|
|
4230
4234
|
UpdateAssociationRequest.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
4231
4235
|
UpdateAssociationRequest.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
4232
4236
|
UpdateAssociationRequest.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
4237
|
+
UpdateAssociationRequest.add_member(:calendar_names, Shapes::ShapeRef.new(shape: CalendarNameOrARNList, location_name: "CalendarNames"))
|
4233
4238
|
UpdateAssociationRequest.add_member(:target_locations, Shapes::ShapeRef.new(shape: TargetLocations, location_name: "TargetLocations"))
|
4234
4239
|
UpdateAssociationRequest.struct_class = Types::UpdateAssociationRequest
|
4235
4240
|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -395,6 +395,17 @@ module Aws::SSM
|
|
395
395
|
# supported for rate expressions.
|
396
396
|
# @return [Boolean]
|
397
397
|
#
|
398
|
+
# @!attribute [rw] calendar_names
|
399
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
400
|
+
# Change Calendar type documents your associations are gated under.
|
401
|
+
# The associations only run when that Change Calendar is open. For
|
402
|
+
# more information, see [AWS Systems Manager Change Calendar][1].
|
403
|
+
#
|
404
|
+
#
|
405
|
+
#
|
406
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
407
|
+
# @return [Array<String>]
|
408
|
+
#
|
398
409
|
# @!attribute [rw] target_locations
|
399
410
|
# The combination of AWS Regions and AWS accounts where you want to
|
400
411
|
# run the association.
|
@@ -425,6 +436,7 @@ module Aws::SSM
|
|
425
436
|
:compliance_severity,
|
426
437
|
:sync_compliance,
|
427
438
|
:apply_only_at_cron_interval,
|
439
|
+
:calendar_names,
|
428
440
|
:target_locations)
|
429
441
|
SENSITIVE = []
|
430
442
|
include Aws::Structure
|
@@ -832,6 +844,18 @@ module Aws::SSM
|
|
832
844
|
# supported for rate expressions.
|
833
845
|
# @return [Boolean]
|
834
846
|
#
|
847
|
+
# @!attribute [rw] calendar_names
|
848
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
849
|
+
# Change Calendar type documents your associations are gated under.
|
850
|
+
# The associations for this version only run when that Change Calendar
|
851
|
+
# is open. For more information, see [AWS Systems Manager Change
|
852
|
+
# Calendar][1].
|
853
|
+
#
|
854
|
+
#
|
855
|
+
#
|
856
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
857
|
+
# @return [Array<String>]
|
858
|
+
#
|
835
859
|
# @!attribute [rw] target_locations
|
836
860
|
# The combination of AWS Regions and AWS accounts where you wanted to
|
837
861
|
# run the association when this association version was created.
|
@@ -855,6 +879,7 @@ module Aws::SSM
|
|
855
879
|
:compliance_severity,
|
856
880
|
:sync_compliance,
|
857
881
|
:apply_only_at_cron_interval,
|
882
|
+
:calendar_names,
|
858
883
|
:target_locations)
|
859
884
|
SENSITIVE = []
|
860
885
|
include Aws::Structure
|
@@ -2672,6 +2697,7 @@ module Aws::SSM
|
|
2672
2697
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
2673
2698
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
2674
2699
|
# apply_only_at_cron_interval: false,
|
2700
|
+
# calendar_names: ["CalendarNameOrARN"],
|
2675
2701
|
# target_locations: [
|
2676
2702
|
# {
|
2677
2703
|
# accounts: ["Account"],
|
@@ -2731,6 +2757,7 @@ module Aws::SSM
|
|
2731
2757
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
2732
2758
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
2733
2759
|
# apply_only_at_cron_interval: false,
|
2760
|
+
# calendar_names: ["CalendarNameOrARN"],
|
2734
2761
|
# target_locations: [
|
2735
2762
|
# {
|
2736
2763
|
# accounts: ["Account"],
|
@@ -2859,6 +2886,17 @@ module Aws::SSM
|
|
2859
2886
|
# supported for rate expressions.
|
2860
2887
|
# @return [Boolean]
|
2861
2888
|
#
|
2889
|
+
# @!attribute [rw] calendar_names
|
2890
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
2891
|
+
# Change Calendar type documents your associations are gated under.
|
2892
|
+
# The associations only run when that Change Calendar is open. For
|
2893
|
+
# more information, see [AWS Systems Manager Change Calendar][1].
|
2894
|
+
#
|
2895
|
+
#
|
2896
|
+
#
|
2897
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
2898
|
+
# @return [Array<String>]
|
2899
|
+
#
|
2862
2900
|
# @!attribute [rw] target_locations
|
2863
2901
|
# Use this action to create an association in multiple Regions and
|
2864
2902
|
# multiple accounts.
|
@@ -2881,6 +2919,7 @@ module Aws::SSM
|
|
2881
2919
|
:compliance_severity,
|
2882
2920
|
:sync_compliance,
|
2883
2921
|
:apply_only_at_cron_interval,
|
2922
|
+
:calendar_names,
|
2884
2923
|
:target_locations)
|
2885
2924
|
SENSITIVE = []
|
2886
2925
|
include Aws::Structure
|
@@ -2934,6 +2973,7 @@ module Aws::SSM
|
|
2934
2973
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
2935
2974
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
2936
2975
|
# apply_only_at_cron_interval: false,
|
2976
|
+
# calendar_names: ["CalendarNameOrARN"],
|
2937
2977
|
# target_locations: [
|
2938
2978
|
# {
|
2939
2979
|
# accounts: ["Account"],
|
@@ -3076,13 +3116,24 @@ module Aws::SSM
|
|
3076
3116
|
# @return [String]
|
3077
3117
|
#
|
3078
3118
|
# @!attribute [rw] apply_only_at_cron_interval
|
3079
|
-
# By default, when you create a new
|
3119
|
+
# By default, when you create a new association, the system runs it
|
3080
3120
|
# immediately after it is created and then according to the schedule
|
3081
3121
|
# you specified. Specify this option if you don't want an association
|
3082
3122
|
# to run immediately after you create it. This parameter is not
|
3083
3123
|
# supported for rate expressions.
|
3084
3124
|
# @return [Boolean]
|
3085
3125
|
#
|
3126
|
+
# @!attribute [rw] calendar_names
|
3127
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
3128
|
+
# Change Calendar type documents you want to gate your associations
|
3129
|
+
# under. The associations only run when that Change Calendar is open.
|
3130
|
+
# For more information, see [AWS Systems Manager Change Calendar][1].
|
3131
|
+
#
|
3132
|
+
#
|
3133
|
+
#
|
3134
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
3135
|
+
# @return [Array<String>]
|
3136
|
+
#
|
3086
3137
|
# @!attribute [rw] target_locations
|
3087
3138
|
# A location is a combination of AWS Regions and AWS accounts where
|
3088
3139
|
# you want to run the association. Use this action to create an
|
@@ -3106,6 +3157,7 @@ module Aws::SSM
|
|
3106
3157
|
:compliance_severity,
|
3107
3158
|
:sync_compliance,
|
3108
3159
|
:apply_only_at_cron_interval,
|
3160
|
+
:calendar_names,
|
3109
3161
|
:target_locations)
|
3110
3162
|
SENSITIVE = []
|
3111
3163
|
include Aws::Structure
|
@@ -18805,6 +18857,7 @@ module Aws::SSM
|
|
18805
18857
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
18806
18858
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
18807
18859
|
# apply_only_at_cron_interval: false,
|
18860
|
+
# calendar_names: ["CalendarNameOrARN"],
|
18808
18861
|
# target_locations: [
|
18809
18862
|
# {
|
18810
18863
|
# accounts: ["Account"],
|
@@ -18949,6 +19002,17 @@ module Aws::SSM
|
|
18949
19002
|
# the interval specified.
|
18950
19003
|
# @return [Boolean]
|
18951
19004
|
#
|
19005
|
+
# @!attribute [rw] calendar_names
|
19006
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
19007
|
+
# Change Calendar type documents you want to gate your associations
|
19008
|
+
# under. The associations only run when that Change Calendar is open.
|
19009
|
+
# For more information, see [AWS Systems Manager Change Calendar][1].
|
19010
|
+
#
|
19011
|
+
#
|
19012
|
+
#
|
19013
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
19014
|
+
# @return [Array<String>]
|
19015
|
+
#
|
18952
19016
|
# @!attribute [rw] target_locations
|
18953
19017
|
# A location is a combination of AWS Regions and AWS accounts where
|
18954
19018
|
# you want to run the association. Use this action to update an
|
@@ -18973,6 +19037,7 @@ module Aws::SSM
|
|
18973
19037
|
:compliance_severity,
|
18974
19038
|
:sync_compliance,
|
18975
19039
|
:apply_only_at_cron_interval,
|
19040
|
+
:calendar_names,
|
18976
19041
|
:target_locations)
|
18977
19042
|
SENSITIVE = []
|
18978
19043
|
include Aws::Structure
|
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.109.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-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -84,8 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
84
|
- !ruby/object:Gem::Version
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
|
-
|
88
|
-
rubygems_version: 2.7.6.2
|
87
|
+
rubygems_version: 3.1.6
|
89
88
|
signing_key:
|
90
89
|
specification_version: 4
|
91
90
|
summary: AWS SDK for Ruby - Amazon SSM
|