aws-sdk-ssm 1.75.0 → 1.80.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/lib/aws-sdk-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +82 -29
- data/lib/aws-sdk-ssm/client_api.rb +12 -1
- data/lib/aws-sdk-ssm/types.rb +109 -16
- 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
@@ -105,7 +105,7 @@ module Aws::SSM
|
|
105
105
|
# @option options [required, String] :region
|
106
106
|
# The AWS region to connect to. The configured `:region` is
|
107
107
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
108
|
+
# a default `:region` is searched for in the following locations:
|
109
109
|
#
|
110
110
|
# * `Aws.config[:region]`
|
111
111
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +161,7 @@ module Aws::SSM
|
|
161
161
|
# @option options [String] :endpoint
|
162
162
|
# The client endpoint is normally constructed from the `:region`
|
163
163
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
164
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
165
165
|
#
|
166
166
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
167
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +176,7 @@ module Aws::SSM
|
|
176
176
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
177
|
#
|
178
178
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
179
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
180
|
#
|
181
181
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
182
|
# The log formatter.
|
@@ -335,11 +335,10 @@ module Aws::SSM
|
|
335
335
|
# for each resource type. Using a consistent set of tag keys makes it
|
336
336
|
# easier for you to manage your resources. You can search and filter the
|
337
337
|
# resources based on the tags you add. Tags don't have any semantic
|
338
|
-
# meaning to
|
339
|
-
# characters.
|
338
|
+
# meaning to and are interpreted strictly as a string of characters.
|
340
339
|
#
|
341
|
-
# For more information about tags, see [Tagging
|
342
|
-
# resources][1] in the *Amazon EC2 User Guide*.
|
340
|
+
# For more information about using tags with EC2 instances, see [Tagging
|
341
|
+
# your Amazon EC2 resources][1] in the *Amazon EC2 User Guide*.
|
343
342
|
#
|
344
343
|
#
|
345
344
|
#
|
@@ -581,13 +580,11 @@ module Aws::SSM
|
|
581
580
|
# Associates the specified Systems Manager document with the specified
|
582
581
|
# instances or targets.
|
583
582
|
#
|
584
|
-
# When you associate a document with one or more instances
|
585
|
-
#
|
586
|
-
#
|
587
|
-
#
|
588
|
-
#
|
589
|
-
# associated document, the system returns the AssociationAlreadyExists
|
590
|
-
# exception.
|
583
|
+
# When you associate a document with one or more instances, SSM Agent
|
584
|
+
# running on the instance processes the document and configures the
|
585
|
+
# instance as specified. If you associate a document with an instance
|
586
|
+
# that already has an associated document, the system returns the
|
587
|
+
# `AssociationAlreadyExists` exception.
|
591
588
|
#
|
592
589
|
# @option params [required, String] :name
|
593
590
|
# The name of the SSM document that contains the configuration
|
@@ -706,6 +703,12 @@ module Aws::SSM
|
|
706
703
|
#
|
707
704
|
# By default, all associations use `AUTO` mode.
|
708
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
|
+
#
|
709
712
|
# @return [Types::CreateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
710
713
|
#
|
711
714
|
# * {Types::CreateAssociationResult#association_description #association_description} => Types::AssociationDescription
|
@@ -739,6 +742,7 @@ module Aws::SSM
|
|
739
742
|
# max_concurrency: "MaxConcurrency",
|
740
743
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
741
744
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
745
|
+
# apply_only_at_cron_interval: false,
|
742
746
|
# })
|
743
747
|
#
|
744
748
|
# @example Response structure
|
@@ -777,6 +781,7 @@ module Aws::SSM
|
|
777
781
|
# resp.association_description.max_concurrency #=> String
|
778
782
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
779
783
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
784
|
+
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
780
785
|
#
|
781
786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociation AWS API Documentation
|
782
787
|
#
|
@@ -837,6 +842,7 @@ module Aws::SSM
|
|
837
842
|
# max_concurrency: "MaxConcurrency",
|
838
843
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
839
844
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
845
|
+
# apply_only_at_cron_interval: false,
|
840
846
|
# },
|
841
847
|
# ],
|
842
848
|
# })
|
@@ -878,6 +884,7 @@ module Aws::SSM
|
|
878
884
|
# resp.successful[0].max_concurrency #=> String
|
879
885
|
# resp.successful[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
880
886
|
# resp.successful[0].sync_compliance #=> String, one of "AUTO", "MANUAL"
|
887
|
+
# resp.successful[0].apply_only_at_cron_interval #=> Boolean
|
881
888
|
# resp.failed #=> Array
|
882
889
|
# resp.failed[0].entry.name #=> String
|
883
890
|
# resp.failed[0].entry.instance_id #=> String
|
@@ -899,6 +906,7 @@ module Aws::SSM
|
|
899
906
|
# resp.failed[0].entry.max_concurrency #=> String
|
900
907
|
# resp.failed[0].entry.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
901
908
|
# resp.failed[0].entry.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
909
|
+
# resp.failed[0].entry.apply_only_at_cron_interval #=> Boolean
|
902
910
|
# resp.failed[0].message #=> String
|
903
911
|
# resp.failed[0].fault #=> String, one of "Client", "Server", "Unknown"
|
904
912
|
#
|
@@ -964,7 +972,7 @@ module Aws::SSM
|
|
964
972
|
# You can't use the following strings as document name prefixes. These
|
965
973
|
# are reserved by AWS for use as document name prefixes:
|
966
974
|
#
|
967
|
-
# * `aws
|
975
|
+
# * `aws-`
|
968
976
|
#
|
969
977
|
# * `amazon`
|
970
978
|
#
|
@@ -1277,7 +1285,7 @@ module Aws::SSM
|
|
1277
1285
|
# impacted resource.
|
1278
1286
|
#
|
1279
1287
|
# @option params [required, String] :source
|
1280
|
-
# The origin of the OpsItem, such as EC2 or Systems Manager.
|
1288
|
+
# The origin of the OpsItem, such as Amazon EC2 or Systems Manager.
|
1281
1289
|
#
|
1282
1290
|
# <note markdown="1"> The source name can't contain the following strings: aws, amazon, and
|
1283
1291
|
# amzn.
|
@@ -1472,7 +1480,7 @@ module Aws::SSM
|
|
1472
1480
|
# @example Request syntax with placeholder values
|
1473
1481
|
#
|
1474
1482
|
# resp = client.create_patch_baseline({
|
1475
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
|
1483
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
|
1476
1484
|
# name: "BaselineName", # required
|
1477
1485
|
# global_filters: {
|
1478
1486
|
# patch_filters: [ # required
|
@@ -2220,6 +2228,7 @@ module Aws::SSM
|
|
2220
2228
|
# resp.association_description.max_concurrency #=> String
|
2221
2229
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
2222
2230
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
2231
|
+
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
2223
2232
|
#
|
2224
2233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociation AWS API Documentation
|
2225
2234
|
#
|
@@ -3939,6 +3948,7 @@ module Aws::SSM
|
|
3939
3948
|
# resp.parameters[0].policies[0].policy_text #=> String
|
3940
3949
|
# resp.parameters[0].policies[0].policy_type #=> String
|
3941
3950
|
# resp.parameters[0].policies[0].policy_status #=> String
|
3951
|
+
# resp.parameters[0].data_type #=> String
|
3942
3952
|
# resp.next_token #=> String
|
3943
3953
|
#
|
3944
3954
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeParameters AWS API Documentation
|
@@ -3990,7 +4000,7 @@ module Aws::SSM
|
|
3990
4000
|
# resp.baseline_identities #=> Array
|
3991
4001
|
# resp.baseline_identities[0].baseline_id #=> String
|
3992
4002
|
# 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"
|
4003
|
+
# 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
4004
|
# resp.baseline_identities[0].baseline_description #=> String
|
3995
4005
|
# resp.baseline_identities[0].default_baseline #=> Boolean
|
3996
4006
|
# resp.next_token #=> String
|
@@ -4086,7 +4096,7 @@ module Aws::SSM
|
|
4086
4096
|
# resp.mappings[0].patch_group #=> String
|
4087
4097
|
# resp.mappings[0].baseline_identity.baseline_id #=> String
|
4088
4098
|
# 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"
|
4099
|
+
# 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
4100
|
# resp.mappings[0].baseline_identity.baseline_description #=> String
|
4091
4101
|
# resp.mappings[0].baseline_identity.default_baseline #=> Boolean
|
4092
4102
|
# resp.next_token #=> String
|
@@ -4167,7 +4177,7 @@ module Aws::SSM
|
|
4167
4177
|
# @example Request syntax with placeholder values
|
4168
4178
|
#
|
4169
4179
|
# resp = client.describe_patch_properties({
|
4170
|
-
# operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
|
4180
|
+
# operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
|
4171
4181
|
# property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
|
4172
4182
|
# patch_set: "OS", # accepts OS, APPLICATION
|
4173
4183
|
# max_results: 1,
|
@@ -4551,13 +4561,13 @@ module Aws::SSM
|
|
4551
4561
|
# @example Request syntax with placeholder values
|
4552
4562
|
#
|
4553
4563
|
# resp = client.get_default_patch_baseline({
|
4554
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
|
4564
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
|
4555
4565
|
# })
|
4556
4566
|
#
|
4557
4567
|
# @example Response structure
|
4558
4568
|
#
|
4559
4569
|
# resp.baseline_id #=> String
|
4560
|
-
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS"
|
4570
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
|
4561
4571
|
#
|
4562
4572
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaseline AWS API Documentation
|
4563
4573
|
#
|
@@ -5314,6 +5324,7 @@ module Aws::SSM
|
|
5314
5324
|
# resp.parameter.source_result #=> String
|
5315
5325
|
# resp.parameter.last_modified_date #=> Time
|
5316
5326
|
# resp.parameter.arn #=> String
|
5327
|
+
# resp.parameter.data_type #=> String
|
5317
5328
|
#
|
5318
5329
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParameter AWS API Documentation
|
5319
5330
|
#
|
@@ -5377,6 +5388,7 @@ module Aws::SSM
|
|
5377
5388
|
# resp.parameters[0].policies[0].policy_text #=> String
|
5378
5389
|
# resp.parameters[0].policies[0].policy_type #=> String
|
5379
5390
|
# resp.parameters[0].policies[0].policy_status #=> String
|
5391
|
+
# resp.parameters[0].data_type #=> String
|
5380
5392
|
# resp.next_token #=> String
|
5381
5393
|
#
|
5382
5394
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParameterHistory AWS API Documentation
|
@@ -5422,6 +5434,7 @@ module Aws::SSM
|
|
5422
5434
|
# resp.parameters[0].source_result #=> String
|
5423
5435
|
# resp.parameters[0].last_modified_date #=> Time
|
5424
5436
|
# resp.parameters[0].arn #=> String
|
5437
|
+
# resp.parameters[0].data_type #=> String
|
5425
5438
|
# resp.invalid_parameters #=> Array
|
5426
5439
|
# resp.invalid_parameters[0] #=> String
|
5427
5440
|
#
|
@@ -5514,6 +5527,7 @@ module Aws::SSM
|
|
5514
5527
|
# resp.parameters[0].source_result #=> String
|
5515
5528
|
# resp.parameters[0].last_modified_date #=> Time
|
5516
5529
|
# resp.parameters[0].arn #=> String
|
5530
|
+
# resp.parameters[0].data_type #=> String
|
5517
5531
|
# resp.next_token #=> String
|
5518
5532
|
#
|
5519
5533
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParametersByPath AWS API Documentation
|
@@ -5558,7 +5572,7 @@ module Aws::SSM
|
|
5558
5572
|
#
|
5559
5573
|
# resp.baseline_id #=> String
|
5560
5574
|
# resp.name #=> String
|
5561
|
-
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS"
|
5575
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
|
5562
5576
|
# resp.global_filters.patch_filters #=> Array
|
5563
5577
|
# resp.global_filters.patch_filters[0].key #=> String, one of "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "MSRC_SEVERITY", "PATCH_ID", "SECTION", "PRIORITY", "SEVERITY"
|
5564
5578
|
# resp.global_filters.patch_filters[0].values #=> Array
|
@@ -5619,14 +5633,14 @@ module Aws::SSM
|
|
5619
5633
|
#
|
5620
5634
|
# resp = client.get_patch_baseline_for_patch_group({
|
5621
5635
|
# patch_group: "PatchGroup", # required
|
5622
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
|
5636
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
|
5623
5637
|
# })
|
5624
5638
|
#
|
5625
5639
|
# @example Response structure
|
5626
5640
|
#
|
5627
5641
|
# resp.baseline_id #=> String
|
5628
5642
|
# resp.patch_group #=> String
|
5629
|
-
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS"
|
5643
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
|
5630
5644
|
#
|
5631
5645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroup AWS API Documentation
|
5632
5646
|
#
|
@@ -5813,6 +5827,7 @@ module Aws::SSM
|
|
5813
5827
|
# resp.association_versions[0].max_concurrency #=> String
|
5814
5828
|
# resp.association_versions[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
5815
5829
|
# resp.association_versions[0].sync_compliance #=> String, one of "AUTO", "MANUAL"
|
5830
|
+
# resp.association_versions[0].apply_only_at_cron_interval #=> Boolean
|
5816
5831
|
# resp.next_token #=> String
|
5817
5832
|
#
|
5818
5833
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListAssociationVersions AWS API Documentation
|
@@ -6879,7 +6894,7 @@ module Aws::SSM
|
|
6879
6894
|
# parameters have a value limit of 4 KB. Advanced parameters have a
|
6880
6895
|
# value limit of 8 KB.
|
6881
6896
|
#
|
6882
|
-
# @option params [
|
6897
|
+
# @option params [String] :type
|
6883
6898
|
# The type of parameter that you want to add to the system.
|
6884
6899
|
#
|
6885
6900
|
# Items in a `StringList` must be separated by a comma (,). You can't
|
@@ -7042,6 +7057,27 @@ module Aws::SSM
|
|
7042
7057
|
#
|
7043
7058
|
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-policies.html
|
7044
7059
|
#
|
7060
|
+
# @option params [String] :data_type
|
7061
|
+
# The data type for a `String` parameter. Supported data types include
|
7062
|
+
# plain text and Amazon Machine Image IDs.
|
7063
|
+
#
|
7064
|
+
# **The following data type values are supported.**
|
7065
|
+
#
|
7066
|
+
# * `text`
|
7067
|
+
#
|
7068
|
+
# * `aws:ec2:image`
|
7069
|
+
#
|
7070
|
+
# When you create a `String` parameter and specify `aws:ec2:image`,
|
7071
|
+
# Systems Manager validates the parameter value is in the required
|
7072
|
+
# format, such as `ami-12345abcdeEXAMPLE`, and that the specified AMI is
|
7073
|
+
# available in your AWS account. For more information, see [Native
|
7074
|
+
# parameter support for Amazon Machine Image IDs][1] in the *AWS Systems
|
7075
|
+
# Manager User Guide*.
|
7076
|
+
#
|
7077
|
+
#
|
7078
|
+
#
|
7079
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-ec2-aliases.html
|
7080
|
+
#
|
7045
7081
|
# @return [Types::PutParameterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7046
7082
|
#
|
7047
7083
|
# * {Types::PutParameterResult#version #version} => Integer
|
@@ -7053,7 +7089,7 @@ module Aws::SSM
|
|
7053
7089
|
# name: "PSParameterName", # required
|
7054
7090
|
# description: "ParameterDescription",
|
7055
7091
|
# value: "PSParameterValue", # required
|
7056
|
-
# type: "String", #
|
7092
|
+
# type: "String", # accepts String, StringList, SecureString
|
7057
7093
|
# key_id: "ParameterKeyId",
|
7058
7094
|
# overwrite: false,
|
7059
7095
|
# allowed_pattern: "AllowedPattern",
|
@@ -7065,6 +7101,7 @@ module Aws::SSM
|
|
7065
7101
|
# ],
|
7066
7102
|
# tier: "Standard", # accepts Standard, Advanced, Intelligent-Tiering
|
7067
7103
|
# policies: "ParameterPolicies",
|
7104
|
+
# data_type: "ParameterDataType",
|
7068
7105
|
# })
|
7069
7106
|
#
|
7070
7107
|
# @example Response structure
|
@@ -8236,6 +8273,19 @@ module Aws::SSM
|
|
8236
8273
|
#
|
8237
8274
|
# By default, all associations use `AUTO` mode.
|
8238
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
|
+
#
|
8239
8289
|
# @return [Types::UpdateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8240
8290
|
#
|
8241
8291
|
# * {Types::UpdateAssociationResult#association_description #association_description} => Types::AssociationDescription
|
@@ -8270,6 +8320,7 @@ module Aws::SSM
|
|
8270
8320
|
# max_concurrency: "MaxConcurrency",
|
8271
8321
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
8272
8322
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
8323
|
+
# apply_only_at_cron_interval: false,
|
8273
8324
|
# })
|
8274
8325
|
#
|
8275
8326
|
# @example Response structure
|
@@ -8308,6 +8359,7 @@ module Aws::SSM
|
|
8308
8359
|
# resp.association_description.max_concurrency #=> String
|
8309
8360
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
8310
8361
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
8362
|
+
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
8311
8363
|
#
|
8312
8364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociation AWS API Documentation
|
8313
8365
|
#
|
@@ -8383,6 +8435,7 @@ module Aws::SSM
|
|
8383
8435
|
# resp.association_description.max_concurrency #=> String
|
8384
8436
|
# resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
|
8385
8437
|
# resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
|
8438
|
+
# resp.association_description.apply_only_at_cron_interval #=> Boolean
|
8386
8439
|
#
|
8387
8440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationStatus AWS API Documentation
|
8388
8441
|
#
|
@@ -9313,7 +9366,7 @@ module Aws::SSM
|
|
9313
9366
|
#
|
9314
9367
|
# resp.baseline_id #=> String
|
9315
9368
|
# resp.name #=> String
|
9316
|
-
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS"
|
9369
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
|
9317
9370
|
# resp.global_filters.patch_filters #=> Array
|
9318
9371
|
# resp.global_filters.patch_filters[0].key #=> String, one of "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "MSRC_SEVERITY", "PATCH_ID", "SECTION", "PRIORITY", "SEVERITY"
|
9319
9372
|
# resp.global_filters.patch_filters[0].values #=> Array
|
@@ -9482,7 +9535,7 @@ module Aws::SSM
|
|
9482
9535
|
params: params,
|
9483
9536
|
config: config)
|
9484
9537
|
context[:gem_name] = 'aws-sdk-ssm'
|
9485
|
-
context[:gem_version] = '1.
|
9538
|
+
context[:gem_version] = '1.80.0'
|
9486
9539
|
Seahorse::Client::Request.new(handlers, context)
|
9487
9540
|
end
|
9488
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')
|
@@ -723,6 +724,7 @@ module Aws::SSM
|
|
723
724
|
PSParameterVersion = Shapes::IntegerShape.new(name: 'PSParameterVersion')
|
724
725
|
Parameter = Shapes::StructureShape.new(name: 'Parameter')
|
725
726
|
ParameterAlreadyExists = Shapes::StructureShape.new(name: 'ParameterAlreadyExists')
|
727
|
+
ParameterDataType = Shapes::StringShape.new(name: 'ParameterDataType')
|
726
728
|
ParameterDescription = Shapes::StringShape.new(name: 'ParameterDescription')
|
727
729
|
ParameterHistory = Shapes::StructureShape.new(name: 'ParameterHistory')
|
728
730
|
ParameterHistoryList = Shapes::ListShape.new(name: 'ParameterHistoryList')
|
@@ -1109,6 +1111,7 @@ module Aws::SSM
|
|
1109
1111
|
AssociationDescription.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1110
1112
|
AssociationDescription.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1111
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"))
|
1112
1115
|
AssociationDescription.struct_class = Types::AssociationDescription
|
1113
1116
|
|
1114
1117
|
AssociationDescriptionList.member = Shapes::ShapeRef.new(shape: AssociationDescription)
|
@@ -1197,6 +1200,7 @@ module Aws::SSM
|
|
1197
1200
|
AssociationVersionInfo.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1198
1201
|
AssociationVersionInfo.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1199
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"))
|
1200
1204
|
AssociationVersionInfo.struct_class = Types::AssociationVersionInfo
|
1201
1205
|
|
1202
1206
|
AssociationVersionLimitExceeded.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -1483,6 +1487,7 @@ module Aws::SSM
|
|
1483
1487
|
CreateAssociationBatchRequestEntry.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1484
1488
|
CreateAssociationBatchRequestEntry.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1485
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"))
|
1486
1491
|
CreateAssociationBatchRequestEntry.struct_class = Types::CreateAssociationBatchRequestEntry
|
1487
1492
|
|
1488
1493
|
CreateAssociationBatchResult.add_member(:successful, Shapes::ShapeRef.new(shape: AssociationDescriptionList, location_name: "Successful"))
|
@@ -1502,6 +1507,7 @@ module Aws::SSM
|
|
1502
1507
|
CreateAssociationRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1503
1508
|
CreateAssociationRequest.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1504
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"))
|
1505
1511
|
CreateAssociationRequest.struct_class = Types::CreateAssociationRequest
|
1506
1512
|
|
1507
1513
|
CreateAssociationResult.add_member(:association_description, Shapes::ShapeRef.new(shape: AssociationDescription, location_name: "AssociationDescription"))
|
@@ -3197,6 +3203,7 @@ module Aws::SSM
|
|
3197
3203
|
Parameter.add_member(:source_result, Shapes::ShapeRef.new(shape: String, location_name: "SourceResult"))
|
3198
3204
|
Parameter.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastModifiedDate"))
|
3199
3205
|
Parameter.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
3206
|
+
Parameter.add_member(:data_type, Shapes::ShapeRef.new(shape: ParameterDataType, location_name: "DataType"))
|
3200
3207
|
Parameter.struct_class = Types::Parameter
|
3201
3208
|
|
3202
3209
|
ParameterAlreadyExists.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
@@ -3214,6 +3221,7 @@ module Aws::SSM
|
|
3214
3221
|
ParameterHistory.add_member(:labels, Shapes::ShapeRef.new(shape: ParameterLabelList, location_name: "Labels"))
|
3215
3222
|
ParameterHistory.add_member(:tier, Shapes::ShapeRef.new(shape: ParameterTier, location_name: "Tier"))
|
3216
3223
|
ParameterHistory.add_member(:policies, Shapes::ShapeRef.new(shape: ParameterPolicyList, location_name: "Policies"))
|
3224
|
+
ParameterHistory.add_member(:data_type, Shapes::ShapeRef.new(shape: ParameterDataType, location_name: "DataType"))
|
3217
3225
|
ParameterHistory.struct_class = Types::ParameterHistory
|
3218
3226
|
|
3219
3227
|
ParameterHistoryList.member = Shapes::ShapeRef.new(shape: ParameterHistory)
|
@@ -3243,6 +3251,7 @@ module Aws::SSM
|
|
3243
3251
|
ParameterMetadata.add_member(:version, Shapes::ShapeRef.new(shape: PSParameterVersion, location_name: "Version"))
|
3244
3252
|
ParameterMetadata.add_member(:tier, Shapes::ShapeRef.new(shape: ParameterTier, location_name: "Tier"))
|
3245
3253
|
ParameterMetadata.add_member(:policies, Shapes::ShapeRef.new(shape: ParameterPolicyList, location_name: "Policies"))
|
3254
|
+
ParameterMetadata.add_member(:data_type, Shapes::ShapeRef.new(shape: ParameterDataType, location_name: "DataType"))
|
3246
3255
|
ParameterMetadata.struct_class = Types::ParameterMetadata
|
3247
3256
|
|
3248
3257
|
ParameterMetadataList.member = Shapes::ShapeRef.new(shape: ParameterMetadata)
|
@@ -3414,13 +3423,14 @@ module Aws::SSM
|
|
3414
3423
|
PutParameterRequest.add_member(:name, Shapes::ShapeRef.new(shape: PSParameterName, required: true, location_name: "Name"))
|
3415
3424
|
PutParameterRequest.add_member(:description, Shapes::ShapeRef.new(shape: ParameterDescription, location_name: "Description"))
|
3416
3425
|
PutParameterRequest.add_member(:value, Shapes::ShapeRef.new(shape: PSParameterValue, required: true, location_name: "Value"))
|
3417
|
-
PutParameterRequest.add_member(:type, Shapes::ShapeRef.new(shape: ParameterType,
|
3426
|
+
PutParameterRequest.add_member(:type, Shapes::ShapeRef.new(shape: ParameterType, location_name: "Type"))
|
3418
3427
|
PutParameterRequest.add_member(:key_id, Shapes::ShapeRef.new(shape: ParameterKeyId, location_name: "KeyId"))
|
3419
3428
|
PutParameterRequest.add_member(:overwrite, Shapes::ShapeRef.new(shape: Boolean, location_name: "Overwrite", metadata: {"box"=>true}))
|
3420
3429
|
PutParameterRequest.add_member(:allowed_pattern, Shapes::ShapeRef.new(shape: AllowedPattern, location_name: "AllowedPattern"))
|
3421
3430
|
PutParameterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3422
3431
|
PutParameterRequest.add_member(:tier, Shapes::ShapeRef.new(shape: ParameterTier, location_name: "Tier"))
|
3423
3432
|
PutParameterRequest.add_member(:policies, Shapes::ShapeRef.new(shape: ParameterPolicies, location_name: "Policies"))
|
3433
|
+
PutParameterRequest.add_member(:data_type, Shapes::ShapeRef.new(shape: ParameterDataType, location_name: "DataType"))
|
3424
3434
|
PutParameterRequest.struct_class = Types::PutParameterRequest
|
3425
3435
|
|
3426
3436
|
PutParameterResult.add_member(:version, Shapes::ShapeRef.new(shape: PSParameterVersion, location_name: "Version"))
|
@@ -3851,6 +3861,7 @@ module Aws::SSM
|
|
3851
3861
|
UpdateAssociationRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
3852
3862
|
UpdateAssociationRequest.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
3853
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"))
|
3854
3865
|
UpdateAssociationRequest.struct_class = Types::UpdateAssociationRequest
|
3855
3866
|
|
3856
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
|
|
@@ -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
|
#
|
@@ -3125,7 +3160,7 @@ module Aws::SSM
|
|
3125
3160
|
# @return [Array<Types::RelatedOpsItem>]
|
3126
3161
|
#
|
3127
3162
|
# @!attribute [rw] source
|
3128
|
-
# The origin of the OpsItem, such as EC2 or Systems Manager.
|
3163
|
+
# The origin of the OpsItem, such as Amazon EC2 or Systems Manager.
|
3129
3164
|
#
|
3130
3165
|
# <note markdown="1"> The source name can't contain the following strings: aws, amazon,
|
3131
3166
|
# and amzn.
|
@@ -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
|
@@ -12416,6 +12451,11 @@ module Aws::SSM
|
|
12416
12451
|
# The Amazon Resource Name (ARN) of the parameter.
|
12417
12452
|
# @return [String]
|
12418
12453
|
#
|
12454
|
+
# @!attribute [rw] data_type
|
12455
|
+
# The data type of the parameter, such as `text` or `aws:ec2:image`.
|
12456
|
+
# The default is `text`.
|
12457
|
+
# @return [String]
|
12458
|
+
#
|
12419
12459
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Parameter AWS API Documentation
|
12420
12460
|
#
|
12421
12461
|
class Parameter < Struct.new(
|
@@ -12426,7 +12466,8 @@ module Aws::SSM
|
|
12426
12466
|
:selector,
|
12427
12467
|
:source_result,
|
12428
12468
|
:last_modified_date,
|
12429
|
-
:arn
|
12469
|
+
:arn,
|
12470
|
+
:data_type)
|
12430
12471
|
include Aws::Structure
|
12431
12472
|
end
|
12432
12473
|
|
@@ -12502,6 +12543,11 @@ module Aws::SSM
|
|
12502
12543
|
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-policies.html
|
12503
12544
|
# @return [Array<Types::ParameterInlinePolicy>]
|
12504
12545
|
#
|
12546
|
+
# @!attribute [rw] data_type
|
12547
|
+
# The data type of the parameter, such as `text` or `aws:ec2:image`.
|
12548
|
+
# The default is `text`.
|
12549
|
+
# @return [String]
|
12550
|
+
#
|
12505
12551
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParameterHistory AWS API Documentation
|
12506
12552
|
#
|
12507
12553
|
class ParameterHistory < Struct.new(
|
@@ -12516,7 +12562,8 @@ module Aws::SSM
|
|
12516
12562
|
:version,
|
12517
12563
|
:labels,
|
12518
12564
|
:tier,
|
12519
|
-
:policies
|
12565
|
+
:policies,
|
12566
|
+
:data_type)
|
12520
12567
|
include Aws::Structure
|
12521
12568
|
end
|
12522
12569
|
|
@@ -12619,6 +12666,11 @@ module Aws::SSM
|
|
12619
12666
|
# A list of policies associated with a parameter.
|
12620
12667
|
# @return [Array<Types::ParameterInlinePolicy>]
|
12621
12668
|
#
|
12669
|
+
# @!attribute [rw] data_type
|
12670
|
+
# The data type of the parameter, such as `text` or `aws:ec2:image`.
|
12671
|
+
# The default is `text`.
|
12672
|
+
# @return [String]
|
12673
|
+
#
|
12622
12674
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParameterMetadata AWS API Documentation
|
12623
12675
|
#
|
12624
12676
|
class ParameterMetadata < Struct.new(
|
@@ -12631,7 +12683,8 @@ module Aws::SSM
|
|
12631
12683
|
:allowed_pattern,
|
12632
12684
|
:version,
|
12633
12685
|
:tier,
|
12634
|
-
:policies
|
12686
|
+
:policies,
|
12687
|
+
:data_type)
|
12635
12688
|
include Aws::Structure
|
12636
12689
|
end
|
12637
12690
|
|
@@ -13423,7 +13476,7 @@ module Aws::SSM
|
|
13423
13476
|
# name: "PSParameterName", # required
|
13424
13477
|
# description: "ParameterDescription",
|
13425
13478
|
# value: "PSParameterValue", # required
|
13426
|
-
# type: "String", #
|
13479
|
+
# type: "String", # accepts String, StringList, SecureString
|
13427
13480
|
# key_id: "ParameterKeyId",
|
13428
13481
|
# overwrite: false,
|
13429
13482
|
# allowed_pattern: "AllowedPattern",
|
@@ -13435,6 +13488,7 @@ module Aws::SSM
|
|
13435
13488
|
# ],
|
13436
13489
|
# tier: "Standard", # accepts Standard, Advanced, Intelligent-Tiering
|
13437
13490
|
# policies: "ParameterPolicies",
|
13491
|
+
# data_type: "ParameterDataType",
|
13438
13492
|
# }
|
13439
13493
|
#
|
13440
13494
|
# @!attribute [rw] name
|
@@ -13665,6 +13719,28 @@ module Aws::SSM
|
|
13665
13719
|
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-policies.html
|
13666
13720
|
# @return [String]
|
13667
13721
|
#
|
13722
|
+
# @!attribute [rw] data_type
|
13723
|
+
# The data type for a `String` parameter. Supported data types include
|
13724
|
+
# plain text and Amazon Machine Image IDs.
|
13725
|
+
#
|
13726
|
+
# **The following data type values are supported.**
|
13727
|
+
#
|
13728
|
+
# * `text`
|
13729
|
+
#
|
13730
|
+
# * `aws:ec2:image`
|
13731
|
+
#
|
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*.
|
13738
|
+
#
|
13739
|
+
#
|
13740
|
+
#
|
13741
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-ec2-aliases.html
|
13742
|
+
# @return [String]
|
13743
|
+
#
|
13668
13744
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutParameterRequest AWS API Documentation
|
13669
13745
|
#
|
13670
13746
|
class PutParameterRequest < Struct.new(
|
@@ -13677,7 +13753,8 @@ module Aws::SSM
|
|
13677
13753
|
:allowed_pattern,
|
13678
13754
|
:tags,
|
13679
13755
|
:tier,
|
13680
|
-
:policies
|
13756
|
+
:policies,
|
13757
|
+
:data_type)
|
13681
13758
|
include Aws::Structure
|
13682
13759
|
end
|
13683
13760
|
|
@@ -16230,6 +16307,7 @@ module Aws::SSM
|
|
16230
16307
|
# max_concurrency: "MaxConcurrency",
|
16231
16308
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
16232
16309
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
16310
|
+
# apply_only_at_cron_interval: false,
|
16233
16311
|
# }
|
16234
16312
|
#
|
16235
16313
|
# @!attribute [rw] association_id
|
@@ -16350,6 +16428,20 @@ module Aws::SSM
|
|
16350
16428
|
# By default, all associations use `AUTO` mode.
|
16351
16429
|
# @return [String]
|
16352
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
|
+
#
|
16353
16445
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationRequest AWS API Documentation
|
16354
16446
|
#
|
16355
16447
|
class UpdateAssociationRequest < Struct.new(
|
@@ -16366,7 +16458,8 @@ module Aws::SSM
|
|
16366
16458
|
:max_errors,
|
16367
16459
|
:max_concurrency,
|
16368
16460
|
:compliance_severity,
|
16369
|
-
:sync_compliance
|
16461
|
+
:sync_compliance,
|
16462
|
+
:apply_only_at_cron_interval)
|
16370
16463
|
include Aws::Structure
|
16371
16464
|
end
|
16372
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
|