aws-sdk-ssm 1.5.0 → 1.6.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 +66 -4
- data/lib/aws-sdk-ssm/types.rb +239 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93a276cf67c32f21c0dfebd6863a515243415827
|
4
|
+
data.tar.gz: e1cce126470d295781e7bbb15c4cda97eed7a330
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24708afe50adaf92fe9ef12e322c758aee17dcdeca99d99445de14980e48aa9472ee474c62b7edae2562f3dc286605516aa595eff4c3837d1a33c019ccc6f4e1
|
7
|
+
data.tar.gz: 154d1d32ad07e0b08523ee83e92ed245540d339f8d8c18a801b328605f614f69dda29a447e4925c0d6c6b8ab7a0c517ef5e02868e435ba075531a564e2aa785b
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -166,7 +166,7 @@ module Aws::SSM
|
|
166
166
|
# Key=Owner and Value=DbAdmin, SysAdmin, or Dev. Or Key=Stack and
|
167
167
|
# Value=Production, Pre-Production, or Test.
|
168
168
|
#
|
169
|
-
# Each resource can have a maximum of
|
169
|
+
# Each resource can have a maximum of 50 tags.
|
170
170
|
#
|
171
171
|
# We recommend that you devise a set of tag keys that meets your needs
|
172
172
|
# for each resource type. Using a consistent set of tag keys makes it
|
@@ -683,6 +683,15 @@ module Aws::SSM
|
|
683
683
|
|
684
684
|
# Creates a patch baseline.
|
685
685
|
#
|
686
|
+
# <note markdown="1"> For information about valid key and value pairs in `PatchFilters` for
|
687
|
+
# each supported operating system type, see [PatchFilter][1].
|
688
|
+
#
|
689
|
+
# </note>
|
690
|
+
#
|
691
|
+
#
|
692
|
+
#
|
693
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/APIReference/API_PatchFilter.html
|
694
|
+
#
|
686
695
|
# @option params [String] :operating_system
|
687
696
|
# Defines the operating system the patch baseline applies to. The
|
688
697
|
# Default value is WINDOWS.
|
@@ -3498,6 +3507,10 @@ module Aws::SSM
|
|
3498
3507
|
# You can specify the `NextToken` in a subsequent call to get the next
|
3499
3508
|
# set of results.
|
3500
3509
|
#
|
3510
|
+
# <note markdown="1"> This API action doesn't support filtering by tags.
|
3511
|
+
#
|
3512
|
+
# </note>
|
3513
|
+
#
|
3501
3514
|
#
|
3502
3515
|
#
|
3503
3516
|
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-working.html
|
@@ -3505,8 +3518,8 @@ module Aws::SSM
|
|
3505
3518
|
# @option params [required, String] :path
|
3506
3519
|
# The hierarchy for the parameter. Hierarchies start with a forward
|
3507
3520
|
# slash (/) and end with the parameter name. A hierarchy can have a
|
3508
|
-
# maximum of
|
3509
|
-
# `/Finance/Prod/IAD/WinServ2016/
|
3521
|
+
# maximum of 15 levels. Here is an example of a hierarchy:
|
3522
|
+
# `/Finance/Prod/IAD/WinServ2016/license33`
|
3510
3523
|
#
|
3511
3524
|
# @option params [Boolean] :recursive
|
3512
3525
|
# Retrieve all parameters within a hierarchy.
|
@@ -4501,6 +4514,46 @@ module Aws::SSM
|
|
4501
4514
|
# information on the resource, so you must provide a full list of
|
4502
4515
|
# compliance items each time that you send the request.
|
4503
4516
|
#
|
4517
|
+
# ComplianceType can be one of the following:
|
4518
|
+
#
|
4519
|
+
# * ExecutionId: The execution ID when the patch, association, or custom
|
4520
|
+
# compliance item was applied.
|
4521
|
+
#
|
4522
|
+
# * ExecutionType: Specify patch, association, or Custom:`string`.
|
4523
|
+
#
|
4524
|
+
# * ExecutionTime. The time the patch, association, or custom compliance
|
4525
|
+
# item was applied to the instance.
|
4526
|
+
#
|
4527
|
+
# * Id: The patch, association, or custom compliance ID.
|
4528
|
+
#
|
4529
|
+
# * Title: A title.
|
4530
|
+
#
|
4531
|
+
# * Status: The status of the compliance item. For example, `approved`
|
4532
|
+
# for patches, or `Failed` for associations.
|
4533
|
+
#
|
4534
|
+
# * Severity: A patch severity. For example, `critical`.
|
4535
|
+
#
|
4536
|
+
# * DocumentName: A SSM document name. For example,
|
4537
|
+
# AWS-RunPatchBaseline.
|
4538
|
+
#
|
4539
|
+
# * DocumentVersion: An SSM document version number. For example, 4.
|
4540
|
+
#
|
4541
|
+
# * Classification: A patch classification. For example, `security
|
4542
|
+
# updates`.
|
4543
|
+
#
|
4544
|
+
# * PatchBaselineId: A patch baseline ID.
|
4545
|
+
#
|
4546
|
+
# * PatchSeverity: A patch severity. For example, `Critical`.
|
4547
|
+
#
|
4548
|
+
# * PatchState: A patch state. For example,
|
4549
|
+
# `InstancesWithFailedPatches`.
|
4550
|
+
#
|
4551
|
+
# * PatchGroup: The name of a patch group.
|
4552
|
+
#
|
4553
|
+
# * InstalledTime: The time the association, patch, or custom compliance
|
4554
|
+
# item was applied to the resource. Specify the time by using the
|
4555
|
+
# following format: yyyy-MM-dd'T'HH:mm:ss'Z'
|
4556
|
+
#
|
4504
4557
|
# @option params [required, String] :resource_id
|
4505
4558
|
# Specify an ID for this resource. For a managed instance, this is the
|
4506
4559
|
# instance ID.
|
@@ -5995,6 +6048,15 @@ module Aws::SSM
|
|
5995
6048
|
# Modifies an existing patch baseline. Fields not specified in the
|
5996
6049
|
# request are left unchanged.
|
5997
6050
|
#
|
6051
|
+
# <note markdown="1"> For information about valid key and value pairs in `PatchFilters` for
|
6052
|
+
# each supported operating system type, see [PatchFilter][1].
|
6053
|
+
#
|
6054
|
+
# </note>
|
6055
|
+
#
|
6056
|
+
#
|
6057
|
+
#
|
6058
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/APIReference/API_PatchFilter.html
|
6059
|
+
#
|
5998
6060
|
# @option params [required, String] :baseline_id
|
5999
6061
|
# The ID of the patch baseline to update.
|
6000
6062
|
#
|
@@ -6115,7 +6177,7 @@ module Aws::SSM
|
|
6115
6177
|
params: params,
|
6116
6178
|
config: config)
|
6117
6179
|
context[:gem_name] = 'aws-sdk-ssm'
|
6118
|
-
context[:gem_version] = '1.
|
6180
|
+
context[:gem_version] = '1.6.0'
|
6119
6181
|
Seahorse::Client::Request.new(handlers, context)
|
6120
6182
|
end
|
6121
6183
|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -5343,8 +5343,8 @@ module Aws::SSM
|
|
5343
5343
|
# @!attribute [rw] path
|
5344
5344
|
# The hierarchy for the parameter. Hierarchies start with a forward
|
5345
5345
|
# slash (/) and end with the parameter name. A hierarchy can have a
|
5346
|
-
# maximum of
|
5347
|
-
# `/Finance/Prod/IAD/WinServ2016/
|
5346
|
+
# maximum of 15 levels. Here is an example of a hierarchy:
|
5347
|
+
# `/Finance/Prod/IAD/WinServ2016/license33`
|
5348
5348
|
# @return [String]
|
5349
5349
|
#
|
5350
5350
|
# @!attribute [rw] recursive
|
@@ -7937,8 +7937,7 @@ module Aws::SSM
|
|
7937
7937
|
include Aws::Structure
|
7938
7938
|
end
|
7939
7939
|
|
7940
|
-
#
|
7941
|
-
# results.
|
7940
|
+
# This data type is deprecated. Instead, use ParameterStringFilter.
|
7942
7941
|
#
|
7943
7942
|
# @note When making an API call, you may pass ParametersFilter
|
7944
7943
|
# data as a hash:
|
@@ -8123,6 +8122,235 @@ module Aws::SSM
|
|
8123
8122
|
|
8124
8123
|
# Defines a patch filter.
|
8125
8124
|
#
|
8125
|
+
# A patch filter consists of key/value pairs, but not all keys are valid
|
8126
|
+
# for all operating system types. For example, the key `PRODUCT` is
|
8127
|
+
# valid for all supported operating system types. The key
|
8128
|
+
# `MSRC_SEVERITY`, however, is valid only for Windows operating systems,
|
8129
|
+
# and the key `SECTION` is valid only for Ubuntu operating systems.
|
8130
|
+
#
|
8131
|
+
# Refer to the following sections for information about which keys may
|
8132
|
+
# be used with each major operating system, and which values are valid
|
8133
|
+
# for each key.
|
8134
|
+
#
|
8135
|
+
# **Windows Operating Systems**
|
8136
|
+
#
|
8137
|
+
# The supported keys for Windows operating systems are `PRODUCT`,
|
8138
|
+
# `CLASSIFICATION`, and `MSRC_SEVERITY`. See the following lists for
|
8139
|
+
# valid values for each of these keys.
|
8140
|
+
#
|
8141
|
+
# *Supported key:* `PRODUCT`
|
8142
|
+
#
|
8143
|
+
# *Supported values:*
|
8144
|
+
#
|
8145
|
+
# * `Windows7`
|
8146
|
+
#
|
8147
|
+
# * `Windows8`
|
8148
|
+
#
|
8149
|
+
# * `Windows8.1`
|
8150
|
+
#
|
8151
|
+
# * `Windows8Embedded`
|
8152
|
+
#
|
8153
|
+
# * `Windows10`
|
8154
|
+
#
|
8155
|
+
# * `Windows10LTSB`
|
8156
|
+
#
|
8157
|
+
# * `WindowsServer2008`
|
8158
|
+
#
|
8159
|
+
# * `WindowsServer2008R2`
|
8160
|
+
#
|
8161
|
+
# * `WindowsServer2012`
|
8162
|
+
#
|
8163
|
+
# * `WindowsServer2012R2`
|
8164
|
+
#
|
8165
|
+
# * `WindowsServer2016`
|
8166
|
+
#
|
8167
|
+
# *Supported key:* `CLASSIFICATION`
|
8168
|
+
#
|
8169
|
+
# *Supported values:*
|
8170
|
+
#
|
8171
|
+
# * `CriticalUpdates`
|
8172
|
+
#
|
8173
|
+
# * `DefinitionUpdates`
|
8174
|
+
#
|
8175
|
+
# * `Drivers`
|
8176
|
+
#
|
8177
|
+
# * `FeaturePacks`
|
8178
|
+
#
|
8179
|
+
# * `SecurityUpdates`
|
8180
|
+
#
|
8181
|
+
# * `ServicePacks`
|
8182
|
+
#
|
8183
|
+
# * `Tools`
|
8184
|
+
#
|
8185
|
+
# * `UpdateRollups`
|
8186
|
+
#
|
8187
|
+
# * `Updates`
|
8188
|
+
#
|
8189
|
+
# * `Upgrades`
|
8190
|
+
#
|
8191
|
+
# *Supported key:* `MSRC_SEVERITY`
|
8192
|
+
#
|
8193
|
+
# *Supported values:*
|
8194
|
+
#
|
8195
|
+
# * `Critical`
|
8196
|
+
#
|
8197
|
+
# * `Important`
|
8198
|
+
#
|
8199
|
+
# * `Moderate`
|
8200
|
+
#
|
8201
|
+
# * `Low`
|
8202
|
+
#
|
8203
|
+
# * `Unspecified`
|
8204
|
+
#
|
8205
|
+
# **Ubuntu Operating Systems**
|
8206
|
+
#
|
8207
|
+
# The supported keys for Ubuntu operating systems are `PRODUCT`,
|
8208
|
+
# `PRIORITY`, and `SECTION`. See the following lists for valid values
|
8209
|
+
# for each of these keys.
|
8210
|
+
#
|
8211
|
+
# *Supported key:* `PRODUCT`
|
8212
|
+
#
|
8213
|
+
# *Supported values:*
|
8214
|
+
#
|
8215
|
+
# * `Ubuntu14.04`
|
8216
|
+
#
|
8217
|
+
# * `Ubuntu16.04`
|
8218
|
+
#
|
8219
|
+
# *Supported key:* `PRIORITY`
|
8220
|
+
#
|
8221
|
+
# *Supported values:*
|
8222
|
+
#
|
8223
|
+
# * `Required`
|
8224
|
+
#
|
8225
|
+
# * `Important`
|
8226
|
+
#
|
8227
|
+
# * `Standard`
|
8228
|
+
#
|
8229
|
+
# * `Optional`
|
8230
|
+
#
|
8231
|
+
# * `Extra`
|
8232
|
+
#
|
8233
|
+
# *Supported key:* `SECTION`
|
8234
|
+
#
|
8235
|
+
# Only the length of the key value is validated. Minimum length is 1.
|
8236
|
+
# Maximum length is 64.
|
8237
|
+
#
|
8238
|
+
# **Amazon Linux Operating Systems**
|
8239
|
+
#
|
8240
|
+
# The supported keys for Amazon Linux operating systems are `PRODUCT`,
|
8241
|
+
# `CLASSIFICATION`, and `SEVERITY`. See the following lists for valid
|
8242
|
+
# values for each of these keys.
|
8243
|
+
#
|
8244
|
+
# *Supported key:* `PRODUCT`
|
8245
|
+
#
|
8246
|
+
# *Supported values:*
|
8247
|
+
#
|
8248
|
+
# * `AmazonLinux2012.03`
|
8249
|
+
#
|
8250
|
+
# * `AmazonLinux2012.09`
|
8251
|
+
#
|
8252
|
+
# * `AmazonLinux2013.03`
|
8253
|
+
#
|
8254
|
+
# * `AmazonLinux2013.09`
|
8255
|
+
#
|
8256
|
+
# * `AmazonLinux2014.03`
|
8257
|
+
#
|
8258
|
+
# * `AmazonLinux2014.09`
|
8259
|
+
#
|
8260
|
+
# * `AmazonLinux2015.03`
|
8261
|
+
#
|
8262
|
+
# * `AmazonLinux2015.09`
|
8263
|
+
#
|
8264
|
+
# * `AmazonLinux2016.03`
|
8265
|
+
#
|
8266
|
+
# * `AmazonLinux2016.09`
|
8267
|
+
#
|
8268
|
+
# * `AmazonLinux2017.03`
|
8269
|
+
#
|
8270
|
+
# * `AmazonLinux2017.09`
|
8271
|
+
#
|
8272
|
+
# *Supported key:* `CLASSIFICATION`
|
8273
|
+
#
|
8274
|
+
# *Supported values:*
|
8275
|
+
#
|
8276
|
+
# * `Security`
|
8277
|
+
#
|
8278
|
+
# * `Bugfix`
|
8279
|
+
#
|
8280
|
+
# * `Enhancement`
|
8281
|
+
#
|
8282
|
+
# * `Recommended`
|
8283
|
+
#
|
8284
|
+
# * `Newpackage`
|
8285
|
+
#
|
8286
|
+
# *Supported key:* `SEVERITY`
|
8287
|
+
#
|
8288
|
+
# *Supported values:*
|
8289
|
+
#
|
8290
|
+
# * `Critical`
|
8291
|
+
#
|
8292
|
+
# * `Important`
|
8293
|
+
#
|
8294
|
+
# * `Medium`
|
8295
|
+
#
|
8296
|
+
# * `Low`
|
8297
|
+
#
|
8298
|
+
# **RedHat Enterprise Linux (RHEL) Operating Systems**
|
8299
|
+
#
|
8300
|
+
# The supported keys for RedHat Enterprise Linux operating systems are
|
8301
|
+
# `PRODUCT`, `CLASSIFICATION`, and `SEVERITY`. See the following lists
|
8302
|
+
# for valid values for each of these keys.
|
8303
|
+
#
|
8304
|
+
# *Supported key:* `PRODUCT`
|
8305
|
+
#
|
8306
|
+
# *Supported values:*
|
8307
|
+
#
|
8308
|
+
# * `RedhatEnterpriseLinux6.5`
|
8309
|
+
#
|
8310
|
+
# * `RedhatEnterpriseLinux6.6`
|
8311
|
+
#
|
8312
|
+
# * `RedhatEnterpriseLinux6.7`
|
8313
|
+
#
|
8314
|
+
# * `RedhatEnterpriseLinux6.8`
|
8315
|
+
#
|
8316
|
+
# * `RedhatEnterpriseLinux6.9`
|
8317
|
+
#
|
8318
|
+
# * `RedhatEnterpriseLinux7.0`
|
8319
|
+
#
|
8320
|
+
# * `RedhatEnterpriseLinux7.1`
|
8321
|
+
#
|
8322
|
+
# * `RedhatEnterpriseLinux7.2`
|
8323
|
+
#
|
8324
|
+
# * `RedhatEnterpriseLinux7.3`
|
8325
|
+
#
|
8326
|
+
# * `RedhatEnterpriseLinux7.4`
|
8327
|
+
#
|
8328
|
+
# *Supported key:* `CLASSIFICATION`
|
8329
|
+
#
|
8330
|
+
# *Supported values:*
|
8331
|
+
#
|
8332
|
+
# * `Security`
|
8333
|
+
#
|
8334
|
+
# * `Bugfix`
|
8335
|
+
#
|
8336
|
+
# * `Enhancement`
|
8337
|
+
#
|
8338
|
+
# * `Recommended`
|
8339
|
+
#
|
8340
|
+
# * `Newpackage`
|
8341
|
+
#
|
8342
|
+
# *Supported key:* `SEVERITY`
|
8343
|
+
#
|
8344
|
+
# *Supported values:*
|
8345
|
+
#
|
8346
|
+
# * `Critical`
|
8347
|
+
#
|
8348
|
+
# * `Important`
|
8349
|
+
#
|
8350
|
+
# * `Medium`
|
8351
|
+
#
|
8352
|
+
# * `Low`
|
8353
|
+
#
|
8126
8354
|
# @note When making an API call, you may pass PatchFilter
|
8127
8355
|
# data as a hash:
|
8128
8356
|
#
|
@@ -8132,12 +8360,17 @@ module Aws::SSM
|
|
8132
8360
|
# }
|
8133
8361
|
#
|
8134
8362
|
# @!attribute [rw] key
|
8135
|
-
# The key for the filter
|
8136
|
-
#
|
8363
|
+
# The key for the filter.
|
8364
|
+
#
|
8365
|
+
# See PatchFilter for lists of valid keys for each operating system
|
8366
|
+
# type.
|
8137
8367
|
# @return [String]
|
8138
8368
|
#
|
8139
8369
|
# @!attribute [rw] values
|
8140
8370
|
# The value for the filter key.
|
8371
|
+
#
|
8372
|
+
# See PatchFilter for lists of valid values for each key based on
|
8373
|
+
# operating system type.
|
8141
8374
|
# @return [Array<String>]
|
8142
8375
|
#
|
8143
8376
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchFilter AWS API Documentation
|
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.6.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:
|
11
|
+
date: 2018-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|