aws-sdk-ssm 1.76.0 → 1.81.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dd47ec7b8adc6d08078b33ef5187345d93c5766fda9dc536541ed943cdeb13f9
4
- data.tar.gz: 1d31c54293ec3a58b7844709ab4f013a7c592fc0ac27b7f58d0eead098a74df3
3
+ metadata.gz: 3191d0cf93de0e3e7f486db20104da868b548d850490b4edf449504e74b204b3
4
+ data.tar.gz: c1a3135bcec8e2342464bed25467def6b88aaa56a839b1b992e36086fddde135
5
5
  SHA512:
6
- metadata.gz: 337d894b47c4f5774e5bdd9c0c4246d628bb2687c2414544e263a36e47e9e472831c9fec73ac41e1fb9ba1da179f43faa1ad96eee71d67cfbe9f5f7b758413d1
7
- data.tar.gz: f3d5e09ec474a7cf64c98969464c130d54e73d762b9e7bf98cada2a2a26899bb650221d48fd26f11ca0336f16f3c2619c53b12950d9d78e66fc43f9726142854
6
+ metadata.gz: efdb5075327ebf4fe990e886bdf178c39c5e25827a010de0afc74cc2130d5c3c1b569997d0272bb3e0c9257be4c7b44c44fae3ebe7adb8c7088d2aebaeb76d17
7
+ data.tar.gz: b1cd5d9923334432d2c0b813109ce5b7d049a16c872f666b0f1fca988f8cdd38eb97c4838e5aed4e85f2f9d58511235e6bad7aaba43279fce7687c0a7a2727a7
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-ssm/customizations'
45
45
  # @service
46
46
  module Aws::SSM
47
47
 
48
- GEM_VERSION = '1.76.0'
48
+ GEM_VERSION = '1.81.1'
49
49
 
50
50
  end
@@ -24,6 +24,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
26
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
27
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
28
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
29
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
30
 
@@ -69,6 +70,7 @@ module Aws::SSM
69
70
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
71
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
72
  add_plugin(Aws::Plugins::TransferEncoding)
73
+ add_plugin(Aws::Plugins::HttpChecksum)
72
74
  add_plugin(Aws::Plugins::SignatureV4)
73
75
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
74
76
 
@@ -105,7 +107,7 @@ module Aws::SSM
105
107
  # @option options [required, String] :region
106
108
  # The AWS region to connect to. The configured `:region` is
107
109
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
110
+ # a default `:region` is searched for in the following locations:
109
111
  #
110
112
  # * `Aws.config[:region]`
111
113
  # * `ENV['AWS_REGION']`
@@ -161,7 +163,7 @@ module Aws::SSM
161
163
  # @option options [String] :endpoint
162
164
  # The client endpoint is normally constructed from the `:region`
163
165
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
166
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
167
  #
166
168
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
169
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +178,7 @@ module Aws::SSM
176
178
  # requests fetching endpoints information. Defaults to 60 sec.
177
179
  #
178
180
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
181
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
182
  #
181
183
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
184
  # The log formatter.
@@ -580,13 +582,11 @@ module Aws::SSM
580
582
  # Associates the specified Systems Manager document with the specified
581
583
  # instances or targets.
582
584
  #
583
- # When you associate a document with one or more instances using
584
- # instance IDs or tags, SSM Agent running on the instance processes the
585
- # document and configures the instance as specified.
586
- #
587
- # If you associate a document with an instance that already has an
588
- # associated document, the system returns the AssociationAlreadyExists
589
- # exception.
585
+ # When you associate a document with one or more instances, SSM Agent
586
+ # running on the instance processes the document and configures the
587
+ # instance as specified. If you associate a document with an instance
588
+ # that already has an associated document, the system returns the
589
+ # `AssociationAlreadyExists` exception.
590
590
  #
591
591
  # @option params [required, String] :name
592
592
  # The name of the SSM document that contains the configuration
@@ -705,6 +705,12 @@ module Aws::SSM
705
705
  #
706
706
  # By default, all associations use `AUTO` mode.
707
707
  #
708
+ # @option params [Boolean] :apply_only_at_cron_interval
709
+ # By default, when you create a new associations, the system runs it
710
+ # immediately after it is created and then according to the schedule you
711
+ # specified. Specify this option if you don't want an association to
712
+ # run immediately after you create it.
713
+ #
708
714
  # @return [Types::CreateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
709
715
  #
710
716
  # * {Types::CreateAssociationResult#association_description #association_description} => Types::AssociationDescription
@@ -738,6 +744,7 @@ module Aws::SSM
738
744
  # max_concurrency: "MaxConcurrency",
739
745
  # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
740
746
  # sync_compliance: "AUTO", # accepts AUTO, MANUAL
747
+ # apply_only_at_cron_interval: false,
741
748
  # })
742
749
  #
743
750
  # @example Response structure
@@ -776,6 +783,7 @@ module Aws::SSM
776
783
  # resp.association_description.max_concurrency #=> String
777
784
  # resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
778
785
  # resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
786
+ # resp.association_description.apply_only_at_cron_interval #=> Boolean
779
787
  #
780
788
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociation AWS API Documentation
781
789
  #
@@ -836,6 +844,7 @@ module Aws::SSM
836
844
  # max_concurrency: "MaxConcurrency",
837
845
  # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
838
846
  # sync_compliance: "AUTO", # accepts AUTO, MANUAL
847
+ # apply_only_at_cron_interval: false,
839
848
  # },
840
849
  # ],
841
850
  # })
@@ -877,6 +886,7 @@ module Aws::SSM
877
886
  # resp.successful[0].max_concurrency #=> String
878
887
  # resp.successful[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
879
888
  # resp.successful[0].sync_compliance #=> String, one of "AUTO", "MANUAL"
889
+ # resp.successful[0].apply_only_at_cron_interval #=> Boolean
880
890
  # resp.failed #=> Array
881
891
  # resp.failed[0].entry.name #=> String
882
892
  # resp.failed[0].entry.instance_id #=> String
@@ -898,6 +908,7 @@ module Aws::SSM
898
908
  # resp.failed[0].entry.max_concurrency #=> String
899
909
  # resp.failed[0].entry.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
900
910
  # resp.failed[0].entry.sync_compliance #=> String, one of "AUTO", "MANUAL"
911
+ # resp.failed[0].entry.apply_only_at_cron_interval #=> Boolean
901
912
  # resp.failed[0].message #=> String
902
913
  # resp.failed[0].fault #=> String, one of "Client", "Server", "Unknown"
903
914
  #
@@ -963,7 +974,7 @@ module Aws::SSM
963
974
  # You can't use the following strings as document name prefixes. These
964
975
  # are reserved by AWS for use as document name prefixes:
965
976
  #
966
- # * `aws`
977
+ # * `aws-`
967
978
  #
968
979
  # * `amazon`
969
980
  #
@@ -1471,7 +1482,7 @@ module Aws::SSM
1471
1482
  # @example Request syntax with placeholder values
1472
1483
  #
1473
1484
  # resp = client.create_patch_baseline({
1474
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
1485
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
1475
1486
  # name: "BaselineName", # required
1476
1487
  # global_filters: {
1477
1488
  # patch_filters: [ # required
@@ -2219,6 +2230,7 @@ module Aws::SSM
2219
2230
  # resp.association_description.max_concurrency #=> String
2220
2231
  # resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
2221
2232
  # resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
2233
+ # resp.association_description.apply_only_at_cron_interval #=> Boolean
2222
2234
  #
2223
2235
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociation AWS API Documentation
2224
2236
  #
@@ -3990,7 +4002,7 @@ module Aws::SSM
3990
4002
  # resp.baseline_identities #=> Array
3991
4003
  # resp.baseline_identities[0].baseline_id #=> String
3992
4004
  # resp.baseline_identities[0].baseline_name #=> String
3993
- # resp.baseline_identities[0].operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS"
4005
+ # resp.baseline_identities[0].operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
3994
4006
  # resp.baseline_identities[0].baseline_description #=> String
3995
4007
  # resp.baseline_identities[0].default_baseline #=> Boolean
3996
4008
  # resp.next_token #=> String
@@ -4086,7 +4098,7 @@ module Aws::SSM
4086
4098
  # resp.mappings[0].patch_group #=> String
4087
4099
  # resp.mappings[0].baseline_identity.baseline_id #=> String
4088
4100
  # resp.mappings[0].baseline_identity.baseline_name #=> String
4089
- # resp.mappings[0].baseline_identity.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS"
4101
+ # resp.mappings[0].baseline_identity.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
4090
4102
  # resp.mappings[0].baseline_identity.baseline_description #=> String
4091
4103
  # resp.mappings[0].baseline_identity.default_baseline #=> Boolean
4092
4104
  # resp.next_token #=> String
@@ -4167,7 +4179,7 @@ module Aws::SSM
4167
4179
  # @example Request syntax with placeholder values
4168
4180
  #
4169
4181
  # resp = client.describe_patch_properties({
4170
- # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
4182
+ # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
4171
4183
  # property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
4172
4184
  # patch_set: "OS", # accepts OS, APPLICATION
4173
4185
  # max_results: 1,
@@ -4551,13 +4563,13 @@ module Aws::SSM
4551
4563
  # @example Request syntax with placeholder values
4552
4564
  #
4553
4565
  # resp = client.get_default_patch_baseline({
4554
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
4566
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
4555
4567
  # })
4556
4568
  #
4557
4569
  # @example Response structure
4558
4570
  #
4559
4571
  # resp.baseline_id #=> String
4560
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS"
4572
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
4561
4573
  #
4562
4574
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaseline AWS API Documentation
4563
4575
  #
@@ -5562,7 +5574,7 @@ module Aws::SSM
5562
5574
  #
5563
5575
  # resp.baseline_id #=> String
5564
5576
  # resp.name #=> String
5565
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS"
5577
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
5566
5578
  # resp.global_filters.patch_filters #=> Array
5567
5579
  # resp.global_filters.patch_filters[0].key #=> String, one of "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "MSRC_SEVERITY", "PATCH_ID", "SECTION", "PRIORITY", "SEVERITY"
5568
5580
  # resp.global_filters.patch_filters[0].values #=> Array
@@ -5623,14 +5635,14 @@ module Aws::SSM
5623
5635
  #
5624
5636
  # resp = client.get_patch_baseline_for_patch_group({
5625
5637
  # patch_group: "PatchGroup", # required
5626
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
5638
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
5627
5639
  # })
5628
5640
  #
5629
5641
  # @example Response structure
5630
5642
  #
5631
5643
  # resp.baseline_id #=> String
5632
5644
  # resp.patch_group #=> String
5633
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS"
5645
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
5634
5646
  #
5635
5647
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroup AWS API Documentation
5636
5648
  #
@@ -5817,6 +5829,7 @@ module Aws::SSM
5817
5829
  # resp.association_versions[0].max_concurrency #=> String
5818
5830
  # resp.association_versions[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
5819
5831
  # resp.association_versions[0].sync_compliance #=> String, one of "AUTO", "MANUAL"
5832
+ # resp.association_versions[0].apply_only_at_cron_interval #=> Boolean
5820
5833
  # resp.next_token #=> String
5821
5834
  #
5822
5835
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListAssociationVersions AWS API Documentation
@@ -7047,7 +7060,7 @@ module Aws::SSM
7047
7060
  # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-policies.html
7048
7061
  #
7049
7062
  # @option params [String] :data_type
7050
- # The data type for a String parameter. Supported data types include
7063
+ # The data type for a `String` parameter. Supported data types include
7051
7064
  # plain text and Amazon Machine Image IDs.
7052
7065
  #
7053
7066
  # **The following data type values are supported.**
@@ -7056,11 +7069,12 @@ module Aws::SSM
7056
7069
  #
7057
7070
  # * `aws:ec2:image`
7058
7071
  #
7059
- # When you create a String parameter and specify `aws:ec2:image`,
7060
- # Systems Manager validates the parameter value you provide against that
7061
- # data type. The required format is `ami-12345abcdeEXAMPLE`. For more
7062
- # information, see [Native parameter support for Amazon Machine Image
7063
- # IDs][1] in the *AWS Systems Manager User Guide*.
7072
+ # When you create a `String` parameter and specify `aws:ec2:image`,
7073
+ # Systems Manager validates the parameter value is in the required
7074
+ # format, such as `ami-12345abcdeEXAMPLE`, and that the specified AMI is
7075
+ # available in your AWS account. For more information, see [Native
7076
+ # parameter support for Amazon Machine Image IDs][1] in the *AWS Systems
7077
+ # Manager User Guide*.
7064
7078
  #
7065
7079
  #
7066
7080
  #
@@ -8261,6 +8275,19 @@ module Aws::SSM
8261
8275
  #
8262
8276
  # By default, all associations use `AUTO` mode.
8263
8277
  #
8278
+ # @option params [Boolean] :apply_only_at_cron_interval
8279
+ # By default, when you update an association, the system runs it
8280
+ # immediately after it is updated and then according to the schedule you
8281
+ # specified. Specify this option if you don't want an association to
8282
+ # run immediately after you update it.
8283
+ #
8284
+ # Also, if you specified this option when you created the association,
8285
+ # you can reset it. To do so, specify the
8286
+ # `no-apply-only-at-cron-interval` parameter when you update the
8287
+ # association from the command line. This parameter forces the
8288
+ # association to run immediately after updating it and according to the
8289
+ # interval specified.
8290
+ #
8264
8291
  # @return [Types::UpdateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8265
8292
  #
8266
8293
  # * {Types::UpdateAssociationResult#association_description #association_description} => Types::AssociationDescription
@@ -8295,6 +8322,7 @@ module Aws::SSM
8295
8322
  # max_concurrency: "MaxConcurrency",
8296
8323
  # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
8297
8324
  # sync_compliance: "AUTO", # accepts AUTO, MANUAL
8325
+ # apply_only_at_cron_interval: false,
8298
8326
  # })
8299
8327
  #
8300
8328
  # @example Response structure
@@ -8333,6 +8361,7 @@ module Aws::SSM
8333
8361
  # resp.association_description.max_concurrency #=> String
8334
8362
  # resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
8335
8363
  # resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
8364
+ # resp.association_description.apply_only_at_cron_interval #=> Boolean
8336
8365
  #
8337
8366
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociation AWS API Documentation
8338
8367
  #
@@ -8408,6 +8437,7 @@ module Aws::SSM
8408
8437
  # resp.association_description.max_concurrency #=> String
8409
8438
  # resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
8410
8439
  # resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
8440
+ # resp.association_description.apply_only_at_cron_interval #=> Boolean
8411
8441
  #
8412
8442
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationStatus AWS API Documentation
8413
8443
  #
@@ -9338,7 +9368,7 @@ module Aws::SSM
9338
9368
  #
9339
9369
  # resp.baseline_id #=> String
9340
9370
  # resp.name #=> String
9341
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS"
9371
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
9342
9372
  # resp.global_filters.patch_filters #=> Array
9343
9373
  # resp.global_filters.patch_filters[0].key #=> String, one of "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "MSRC_SEVERITY", "PATCH_ID", "SECTION", "PRIORITY", "SEVERITY"
9344
9374
  # resp.global_filters.patch_filters[0].values #=> Array
@@ -9507,7 +9537,7 @@ module Aws::SSM
9507
9537
  params: params,
9508
9538
  config: config)
9509
9539
  context[:gem_name] = 'aws-sdk-ssm'
9510
- context[:gem_version] = '1.76.0'
9540
+ context[:gem_version] = '1.81.1'
9511
9541
  Seahorse::Client::Request.new(handlers, context)
9512
9542
  end
9513
9543
 
@@ -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"))
@@ -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
 
@@ -2820,7 +2855,7 @@ module Aws::SSM
2820
2855
  # You can't use the following strings as document name prefixes.
2821
2856
  # These are reserved by AWS for use as document name prefixes:
2822
2857
  #
2823
- # * `aws`
2858
+ # * `aws-`
2824
2859
  #
2825
2860
  # * `amazon`
2826
2861
  #
@@ -3197,7 +3232,7 @@ module Aws::SSM
3197
3232
  # data as a hash:
3198
3233
  #
3199
3234
  # {
3200
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
3235
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
3201
3236
  # name: "BaselineName", # required
3202
3237
  # global_filters: {
3203
3238
  # patch_filters: [ # required
@@ -5880,7 +5915,7 @@ module Aws::SSM
5880
5915
  # data as a hash:
5881
5916
  #
5882
5917
  # {
5883
- # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
5918
+ # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
5884
5919
  # property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
5885
5920
  # patch_set: "OS", # accepts OS, APPLICATION
5886
5921
  # max_results: 1,
@@ -6980,7 +7015,7 @@ module Aws::SSM
6980
7015
  # data as a hash:
6981
7016
  #
6982
7017
  # {
6983
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
7018
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
6984
7019
  # }
6985
7020
  #
6986
7021
  # @!attribute [rw] operating_system
@@ -8192,7 +8227,7 @@ module Aws::SSM
8192
8227
  #
8193
8228
  # {
8194
8229
  # patch_group: "PatchGroup", # required
8195
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
8230
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
8196
8231
  # }
8197
8232
  #
8198
8233
  # @!attribute [rw] patch_group
@@ -13685,7 +13720,7 @@ module Aws::SSM
13685
13720
  # @return [String]
13686
13721
  #
13687
13722
  # @!attribute [rw] data_type
13688
- # The data type for a String parameter. Supported data types include
13723
+ # The data type for a `String` parameter. Supported data types include
13689
13724
  # plain text and Amazon Machine Image IDs.
13690
13725
  #
13691
13726
  # **The following data type values are supported.**
@@ -13694,11 +13729,12 @@ module Aws::SSM
13694
13729
  #
13695
13730
  # * `aws:ec2:image`
13696
13731
  #
13697
- # When you create a String parameter and specify `aws:ec2:image`,
13698
- # Systems Manager validates the parameter value you provide against
13699
- # that data type. The required format is `ami-12345abcdeEXAMPLE`. For
13700
- # more information, see [Native parameter support for Amazon Machine
13701
- # Image IDs][1] in the *AWS Systems Manager User Guide*.
13732
+ # When you create a `String` parameter and specify `aws:ec2:image`,
13733
+ # Systems Manager validates the parameter value is in the required
13734
+ # format, such as `ami-12345abcdeEXAMPLE`, and that the specified AMI
13735
+ # is available in your AWS account. For more information, see [Native
13736
+ # parameter support for Amazon Machine Image IDs][1] in the *AWS
13737
+ # Systems Manager User Guide*.
13702
13738
  #
13703
13739
  #
13704
13740
  #
@@ -16271,6 +16307,7 @@ module Aws::SSM
16271
16307
  # max_concurrency: "MaxConcurrency",
16272
16308
  # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
16273
16309
  # sync_compliance: "AUTO", # accepts AUTO, MANUAL
16310
+ # apply_only_at_cron_interval: false,
16274
16311
  # }
16275
16312
  #
16276
16313
  # @!attribute [rw] association_id
@@ -16391,6 +16428,20 @@ module Aws::SSM
16391
16428
  # By default, all associations use `AUTO` mode.
16392
16429
  # @return [String]
16393
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
+ #
16394
16445
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationRequest AWS API Documentation
16395
16446
  #
16396
16447
  class UpdateAssociationRequest < Struct.new(
@@ -16407,7 +16458,8 @@ module Aws::SSM
16407
16458
  :max_errors,
16408
16459
  :max_concurrency,
16409
16460
  :compliance_severity,
16410
- :sync_compliance)
16461
+ :sync_compliance,
16462
+ :apply_only_at_cron_interval)
16411
16463
  include Aws::Structure
16412
16464
  end
16413
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.76.0
4
+ version: 1.81.1
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-05-05 00:00:00.000000000 Z
11
+ date: 2020-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.71.0
22
+ version: 3.99.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement