aws-sdk-ssm 1.79.0 → 1.80.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +30 -1
- data/lib/aws-sdk-ssm/client_api.rb +6 -0
- data/lib/aws-sdk-ssm/types.rb +56 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c3b126e66004ec3bac9061a4e313a823bf2cd290b4dc21590622eab398089d9
|
4
|
+
data.tar.gz: c62d45e5951a94dcc0a4553c44afbc5a174006efc37c64a0a57c08a0aa4bfd02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 840e3d2780ee8b360a89f23f20fa4264a3914ebd5c3acd43597937ddc680cd187f40401e60ffb81aec8d51197a35cae31e722c275be4e82c051fa1b88f96feb2
|
7
|
+
data.tar.gz: 5504ce94d8138995ecc4774f0a42c5b7a3a4a546dbae39fbf2f1f7725c8450efe0b8d88c0b11fbf81cf12529c84fbdf7bee00ef44f5d58218555725a879d2b1c
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -703,6 +703,12 @@ module Aws::SSM
|
|
703
703
|
#
|
704
704
|
# By default, all associations use `AUTO` mode.
|
705
705
|
#
|
706
|
+
# @option params [Boolean] :apply_only_at_cron_interval
|
707
|
+
# By default, when you create a new associations, the system runs it
|
708
|
+
# immediately after it is created and then according to the schedule you
|
709
|
+
# specified. Specify this option if you don't want an association to
|
710
|
+
# run immediately after you create it.
|
711
|
+
#
|
706
712
|
# @return [Types::CreateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
707
713
|
#
|
708
714
|
# * {Types::CreateAssociationResult#association_description #association_description} => Types::AssociationDescription
|
@@ -736,6 +742,7 @@ module Aws::SSM
|
|
736
742
|
# max_concurrency: "MaxConcurrency",
|
737
743
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
738
744
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
745
|
+
# apply_only_at_cron_interval: false,
|
739
746
|
# })
|
740
747
|
#
|
741
748
|
# @example Response structure
|
@@ -774,6 +781,7 @@ module Aws::SSM
|
|
774
781
|
# resp.association_description.max_concurrency #=> String
|
775
782
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
776
783
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
784
|
+
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
777
785
|
#
|
778
786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociation AWS API Documentation
|
779
787
|
#
|
@@ -834,6 +842,7 @@ module Aws::SSM
|
|
834
842
|
# max_concurrency: "MaxConcurrency",
|
835
843
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
836
844
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
845
|
+
# apply_only_at_cron_interval: false,
|
837
846
|
# },
|
838
847
|
# ],
|
839
848
|
# })
|
@@ -875,6 +884,7 @@ module Aws::SSM
|
|
875
884
|
# resp.successful[0].max_concurrency #=> String
|
876
885
|
# resp.successful[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
877
886
|
# resp.successful[0].sync_compliance #=> String, one of "AUTO", "MANUAL"
|
887
|
+
# resp.successful[0].apply_only_at_cron_interval #=> Boolean
|
878
888
|
# resp.failed #=> Array
|
879
889
|
# resp.failed[0].entry.name #=> String
|
880
890
|
# resp.failed[0].entry.instance_id #=> String
|
@@ -896,6 +906,7 @@ module Aws::SSM
|
|
896
906
|
# resp.failed[0].entry.max_concurrency #=> String
|
897
907
|
# resp.failed[0].entry.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
898
908
|
# resp.failed[0].entry.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
909
|
+
# resp.failed[0].entry.apply_only_at_cron_interval #=> Boolean
|
899
910
|
# resp.failed[0].message #=> String
|
900
911
|
# resp.failed[0].fault #=> String, one of "Client", "Server", "Unknown"
|
901
912
|
#
|
@@ -2217,6 +2228,7 @@ module Aws::SSM
|
|
2217
2228
|
# resp.association_description.max_concurrency #=> String
|
2218
2229
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
2219
2230
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
2231
|
+
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
2220
2232
|
#
|
2221
2233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociation AWS API Documentation
|
2222
2234
|
#
|
@@ -5815,6 +5827,7 @@ module Aws::SSM
|
|
5815
5827
|
# resp.association_versions[0].max_concurrency #=> String
|
5816
5828
|
# resp.association_versions[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
5817
5829
|
# resp.association_versions[0].sync_compliance #=> String, one of "AUTO", "MANUAL"
|
5830
|
+
# resp.association_versions[0].apply_only_at_cron_interval #=> Boolean
|
5818
5831
|
# resp.next_token #=> String
|
5819
5832
|
#
|
5820
5833
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListAssociationVersions AWS API Documentation
|
@@ -8260,6 +8273,19 @@ module Aws::SSM
|
|
8260
8273
|
#
|
8261
8274
|
# By default, all associations use `AUTO` mode.
|
8262
8275
|
#
|
8276
|
+
# @option params [Boolean] :apply_only_at_cron_interval
|
8277
|
+
# By default, when you update an association, the system runs it
|
8278
|
+
# immediately after it is updated and then according to the schedule you
|
8279
|
+
# specified. Specify this option if you don't want an association to
|
8280
|
+
# run immediately after you update it.
|
8281
|
+
#
|
8282
|
+
# Also, if you specified this option when you created the association,
|
8283
|
+
# you can reset it. To do so, specify the
|
8284
|
+
# `no-apply-only-at-cron-interval` parameter when you update the
|
8285
|
+
# association from the command line. This parameter forces the
|
8286
|
+
# association to run immediately after updating it and according to the
|
8287
|
+
# interval specified.
|
8288
|
+
#
|
8263
8289
|
# @return [Types::UpdateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8264
8290
|
#
|
8265
8291
|
# * {Types::UpdateAssociationResult#association_description #association_description} => Types::AssociationDescription
|
@@ -8294,6 +8320,7 @@ module Aws::SSM
|
|
8294
8320
|
# max_concurrency: "MaxConcurrency",
|
8295
8321
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
8296
8322
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
8323
|
+
# apply_only_at_cron_interval: false,
|
8297
8324
|
# })
|
8298
8325
|
#
|
8299
8326
|
# @example Response structure
|
@@ -8332,6 +8359,7 @@ module Aws::SSM
|
|
8332
8359
|
# resp.association_description.max_concurrency #=> String
|
8333
8360
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
8334
8361
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
8362
|
+
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
8335
8363
|
#
|
8336
8364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociation AWS API Documentation
|
8337
8365
|
#
|
@@ -8407,6 +8435,7 @@ module Aws::SSM
|
|
8407
8435
|
# resp.association_description.max_concurrency #=> String
|
8408
8436
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
8409
8437
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
8438
|
+
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
8410
8439
|
#
|
8411
8440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationStatus AWS API Documentation
|
8412
8441
|
#
|
@@ -9506,7 +9535,7 @@ module Aws::SSM
|
|
9506
9535
|
params: params,
|
9507
9536
|
config: config)
|
9508
9537
|
context[:gem_name] = 'aws-sdk-ssm'
|
9509
|
-
context[:gem_version] = '1.
|
9538
|
+
context[:gem_version] = '1.80.0'
|
9510
9539
|
Seahorse::Client::Request.new(handlers, context)
|
9511
9540
|
end
|
9512
9541
|
|
@@ -28,6 +28,7 @@ module Aws::SSM
|
|
28
28
|
AggregatorSchemaOnly = Shapes::BooleanShape.new(name: 'AggregatorSchemaOnly')
|
29
29
|
AllowedPattern = Shapes::StringShape.new(name: 'AllowedPattern')
|
30
30
|
AlreadyExistsException = Shapes::StructureShape.new(name: 'AlreadyExistsException')
|
31
|
+
ApplyOnlyAtCronInterval = Shapes::BooleanShape.new(name: 'ApplyOnlyAtCronInterval')
|
31
32
|
ApproveAfterDays = Shapes::IntegerShape.new(name: 'ApproveAfterDays')
|
32
33
|
AssociatedInstances = Shapes::StructureShape.new(name: 'AssociatedInstances')
|
33
34
|
Association = Shapes::StructureShape.new(name: 'Association')
|
@@ -1110,6 +1111,7 @@ module Aws::SSM
|
|
1110
1111
|
AssociationDescription.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1111
1112
|
AssociationDescription.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1112
1113
|
AssociationDescription.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
1114
|
+
AssociationDescription.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
1113
1115
|
AssociationDescription.struct_class = Types::AssociationDescription
|
1114
1116
|
|
1115
1117
|
AssociationDescriptionList.member = Shapes::ShapeRef.new(shape: AssociationDescription)
|
@@ -1198,6 +1200,7 @@ module Aws::SSM
|
|
1198
1200
|
AssociationVersionInfo.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1199
1201
|
AssociationVersionInfo.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1200
1202
|
AssociationVersionInfo.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
1203
|
+
AssociationVersionInfo.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
1201
1204
|
AssociationVersionInfo.struct_class = Types::AssociationVersionInfo
|
1202
1205
|
|
1203
1206
|
AssociationVersionLimitExceeded.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -1484,6 +1487,7 @@ module Aws::SSM
|
|
1484
1487
|
CreateAssociationBatchRequestEntry.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1485
1488
|
CreateAssociationBatchRequestEntry.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1486
1489
|
CreateAssociationBatchRequestEntry.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
1490
|
+
CreateAssociationBatchRequestEntry.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
1487
1491
|
CreateAssociationBatchRequestEntry.struct_class = Types::CreateAssociationBatchRequestEntry
|
1488
1492
|
|
1489
1493
|
CreateAssociationBatchResult.add_member(:successful, Shapes::ShapeRef.new(shape: AssociationDescriptionList, location_name: "Successful"))
|
@@ -1503,6 +1507,7 @@ module Aws::SSM
|
|
1503
1507
|
CreateAssociationRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1504
1508
|
CreateAssociationRequest.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1505
1509
|
CreateAssociationRequest.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
1510
|
+
CreateAssociationRequest.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
1506
1511
|
CreateAssociationRequest.struct_class = Types::CreateAssociationRequest
|
1507
1512
|
|
1508
1513
|
CreateAssociationResult.add_member(:association_description, Shapes::ShapeRef.new(shape: AssociationDescription, location_name: "AssociationDescription"))
|
@@ -3856,6 +3861,7 @@ module Aws::SSM
|
|
3856
3861
|
UpdateAssociationRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
3857
3862
|
UpdateAssociationRequest.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
3858
3863
|
UpdateAssociationRequest.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
3864
|
+
UpdateAssociationRequest.add_member(:apply_only_at_cron_interval, Shapes::ShapeRef.new(shape: ApplyOnlyAtCronInterval, location_name: "ApplyOnlyAtCronInterval"))
|
3859
3865
|
UpdateAssociationRequest.struct_class = Types::UpdateAssociationRequest
|
3860
3866
|
|
3861
3867
|
UpdateAssociationResult.add_member(:association_description, Shapes::ShapeRef.new(shape: AssociationDescription, location_name: "AssociationDescription"))
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -373,6 +373,13 @@ module Aws::SSM
|
|
373
373
|
# By default, all associations use `AUTO` mode.
|
374
374
|
# @return [String]
|
375
375
|
#
|
376
|
+
# @!attribute [rw] apply_only_at_cron_interval
|
377
|
+
# By default, when you create a new associations, the system runs it
|
378
|
+
# immediately after it is created and then according to the schedule
|
379
|
+
# you specified. Specify this option if you don't want an association
|
380
|
+
# to run immediately after you create it.
|
381
|
+
# @return [Boolean]
|
382
|
+
#
|
376
383
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationDescription AWS API Documentation
|
377
384
|
#
|
378
385
|
class AssociationDescription < Struct.new(
|
@@ -396,7 +403,8 @@ module Aws::SSM
|
|
396
403
|
:max_errors,
|
397
404
|
:max_concurrency,
|
398
405
|
:compliance_severity,
|
399
|
-
:sync_compliance
|
406
|
+
:sync_compliance,
|
407
|
+
:apply_only_at_cron_interval)
|
400
408
|
include Aws::Structure
|
401
409
|
end
|
402
410
|
|
@@ -781,6 +789,13 @@ module Aws::SSM
|
|
781
789
|
# By default, all associations use `AUTO` mode.
|
782
790
|
# @return [String]
|
783
791
|
#
|
792
|
+
# @!attribute [rw] apply_only_at_cron_interval
|
793
|
+
# By default, when you create a new associations, the system runs it
|
794
|
+
# immediately after it is created and then according to the schedule
|
795
|
+
# you specified. Specify this option if you don't want an association
|
796
|
+
# to run immediately after you create it.
|
797
|
+
# @return [Boolean]
|
798
|
+
#
|
784
799
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationVersionInfo AWS API Documentation
|
785
800
|
#
|
786
801
|
class AssociationVersionInfo < Struct.new(
|
@@ -797,7 +812,8 @@ module Aws::SSM
|
|
797
812
|
:max_errors,
|
798
813
|
:max_concurrency,
|
799
814
|
:compliance_severity,
|
800
|
-
:sync_compliance
|
815
|
+
:sync_compliance,
|
816
|
+
:apply_only_at_cron_interval)
|
801
817
|
include Aws::Structure
|
802
818
|
end
|
803
819
|
|
@@ -2357,6 +2373,7 @@ module Aws::SSM
|
|
2357
2373
|
# max_concurrency: "MaxConcurrency",
|
2358
2374
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
2359
2375
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
2376
|
+
# apply_only_at_cron_interval: false,
|
2360
2377
|
# },
|
2361
2378
|
# ],
|
2362
2379
|
# }
|
@@ -2405,6 +2422,7 @@ module Aws::SSM
|
|
2405
2422
|
# max_concurrency: "MaxConcurrency",
|
2406
2423
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
2407
2424
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
2425
|
+
# apply_only_at_cron_interval: false,
|
2408
2426
|
# }
|
2409
2427
|
#
|
2410
2428
|
# @!attribute [rw] name
|
@@ -2516,6 +2534,13 @@ module Aws::SSM
|
|
2516
2534
|
# By default, all associations use `AUTO` mode.
|
2517
2535
|
# @return [String]
|
2518
2536
|
#
|
2537
|
+
# @!attribute [rw] apply_only_at_cron_interval
|
2538
|
+
# By default, when you create a new associations, the system runs it
|
2539
|
+
# immediately after it is created and then according to the schedule
|
2540
|
+
# you specified. Specify this option if you don't want an association
|
2541
|
+
# to run immediately after you create it.
|
2542
|
+
# @return [Boolean]
|
2543
|
+
#
|
2519
2544
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationBatchRequestEntry AWS API Documentation
|
2520
2545
|
#
|
2521
2546
|
class CreateAssociationBatchRequestEntry < Struct.new(
|
@@ -2531,7 +2556,8 @@ module Aws::SSM
|
|
2531
2556
|
:max_errors,
|
2532
2557
|
:max_concurrency,
|
2533
2558
|
:compliance_severity,
|
2534
|
-
:sync_compliance
|
2559
|
+
:sync_compliance,
|
2560
|
+
:apply_only_at_cron_interval)
|
2535
2561
|
include Aws::Structure
|
2536
2562
|
end
|
2537
2563
|
|
@@ -2581,6 +2607,7 @@ module Aws::SSM
|
|
2581
2607
|
# max_concurrency: "MaxConcurrency",
|
2582
2608
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
2583
2609
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
2610
|
+
# apply_only_at_cron_interval: false,
|
2584
2611
|
# }
|
2585
2612
|
#
|
2586
2613
|
# @!attribute [rw] name
|
@@ -2713,6 +2740,13 @@ module Aws::SSM
|
|
2713
2740
|
# By default, all associations use `AUTO` mode.
|
2714
2741
|
# @return [String]
|
2715
2742
|
#
|
2743
|
+
# @!attribute [rw] apply_only_at_cron_interval
|
2744
|
+
# By default, when you create a new associations, the system runs it
|
2745
|
+
# immediately after it is created and then according to the schedule
|
2746
|
+
# you specified. Specify this option if you don't want an association
|
2747
|
+
# to run immediately after you create it.
|
2748
|
+
# @return [Boolean]
|
2749
|
+
#
|
2716
2750
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationRequest AWS API Documentation
|
2717
2751
|
#
|
2718
2752
|
class CreateAssociationRequest < Struct.new(
|
@@ -2728,7 +2762,8 @@ module Aws::SSM
|
|
2728
2762
|
:max_errors,
|
2729
2763
|
:max_concurrency,
|
2730
2764
|
:compliance_severity,
|
2731
|
-
:sync_compliance
|
2765
|
+
:sync_compliance,
|
2766
|
+
:apply_only_at_cron_interval)
|
2732
2767
|
include Aws::Structure
|
2733
2768
|
end
|
2734
2769
|
|
@@ -16272,6 +16307,7 @@ module Aws::SSM
|
|
16272
16307
|
# max_concurrency: "MaxConcurrency",
|
16273
16308
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
16274
16309
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
16310
|
+
# apply_only_at_cron_interval: false,
|
16275
16311
|
# }
|
16276
16312
|
#
|
16277
16313
|
# @!attribute [rw] association_id
|
@@ -16392,6 +16428,20 @@ module Aws::SSM
|
|
16392
16428
|
# By default, all associations use `AUTO` mode.
|
16393
16429
|
# @return [String]
|
16394
16430
|
#
|
16431
|
+
# @!attribute [rw] apply_only_at_cron_interval
|
16432
|
+
# By default, when you update an association, the system runs it
|
16433
|
+
# immediately after it is updated and then according to the schedule
|
16434
|
+
# you specified. Specify this option if you don't want an association
|
16435
|
+
# to run immediately after you update it.
|
16436
|
+
#
|
16437
|
+
# Also, if you specified this option when you created the association,
|
16438
|
+
# you can reset it. To do so, specify the
|
16439
|
+
# `no-apply-only-at-cron-interval` parameter when you update the
|
16440
|
+
# association from the command line. This parameter forces the
|
16441
|
+
# association to run immediately after updating it and according to
|
16442
|
+
# the interval specified.
|
16443
|
+
# @return [Boolean]
|
16444
|
+
#
|
16395
16445
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationRequest AWS API Documentation
|
16396
16446
|
#
|
16397
16447
|
class UpdateAssociationRequest < Struct.new(
|
@@ -16408,7 +16458,8 @@ module Aws::SSM
|
|
16408
16458
|
:max_errors,
|
16409
16459
|
:max_concurrency,
|
16410
16460
|
:compliance_severity,
|
16411
|
-
:sync_compliance
|
16461
|
+
:sync_compliance,
|
16462
|
+
:apply_only_at_cron_interval)
|
16412
16463
|
include Aws::Structure
|
16413
16464
|
end
|
16414
16465
|
|
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.80.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: 2020-
|
11
|
+
date: 2020-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|