aws-sdk-ssm 1.94.0 → 1.95.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +3 -2
- data/lib/aws-sdk-ssm/client_api.rb +2 -0
- data/lib/aws-sdk-ssm/types.rb +8 -2
- 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: febaf0c6db9fce4e913a11067e3a00c1517749a48fe42f6ab73e355bae0a8359
|
4
|
+
data.tar.gz: 1981a5a741289f6d029c0714490342792f4aa296b2cfcd95462b4f353492fb12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03fda2577685c4019683efed6e119de3e46c3179b7694f5d29d7e1d64ba2b7a120c5cd143370e465e5540a703384de4db92cf01915e9fc444a9b0e76ef20f0f4
|
7
|
+
data.tar.gz: 6ca9a7dc6edac5b9a0b886740dab647ca689f9eb9a839a8414ef781d65dfabee8564e5271aec071ee5b358064d230973b6e0e3f47430ba266fd535f347e1b59f
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -3251,6 +3251,7 @@ module Aws::SSM
|
|
3251
3251
|
# resp.patches[0].severity #=> String
|
3252
3252
|
# resp.patches[0].state #=> String, one of "INSTALLED", "INSTALLED_OTHER", "INSTALLED_PENDING_REBOOT", "INSTALLED_REJECTED", "MISSING", "NOT_APPLICABLE", "FAILED"
|
3253
3253
|
# resp.patches[0].installed_time #=> Time
|
3254
|
+
# resp.patches[0].cve_ids #=> String
|
3254
3255
|
# resp.next_token #=> String
|
3255
3256
|
#
|
3256
3257
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatches AWS API Documentation
|
@@ -7090,7 +7091,7 @@ module Aws::SSM
|
|
7090
7091
|
# The type of parameter that you want to add to the system.
|
7091
7092
|
#
|
7092
7093
|
# <note markdown="1"> `SecureString` is not currently supported for AWS CloudFormation
|
7093
|
-
# templates
|
7094
|
+
# templates.
|
7094
7095
|
#
|
7095
7096
|
# </note>
|
7096
7097
|
#
|
@@ -9781,7 +9782,7 @@ module Aws::SSM
|
|
9781
9782
|
params: params,
|
9782
9783
|
config: config)
|
9783
9784
|
context[:gem_name] = 'aws-sdk-ssm'
|
9784
|
-
context[:gem_version] = '1.
|
9785
|
+
context[:gem_version] = '1.95.0'
|
9785
9786
|
Seahorse::Client::Request.new(handlers, context)
|
9786
9787
|
end
|
9787
9788
|
|
@@ -775,6 +775,7 @@ module Aws::SSM
|
|
775
775
|
PatchBugzillaIdList = Shapes::ListShape.new(name: 'PatchBugzillaIdList')
|
776
776
|
PatchCVEId = Shapes::StringShape.new(name: 'PatchCVEId')
|
777
777
|
PatchCVEIdList = Shapes::ListShape.new(name: 'PatchCVEIdList')
|
778
|
+
PatchCVEIds = Shapes::StringShape.new(name: 'PatchCVEIds')
|
778
779
|
PatchClassification = Shapes::StringShape.new(name: 'PatchClassification')
|
779
780
|
PatchComplianceData = Shapes::StructureShape.new(name: 'PatchComplianceData')
|
780
781
|
PatchComplianceDataList = Shapes::ListShape.new(name: 'PatchComplianceDataList')
|
@@ -3358,6 +3359,7 @@ module Aws::SSM
|
|
3358
3359
|
PatchComplianceData.add_member(:severity, Shapes::ShapeRef.new(shape: PatchSeverity, required: true, location_name: "Severity"))
|
3359
3360
|
PatchComplianceData.add_member(:state, Shapes::ShapeRef.new(shape: PatchComplianceDataState, required: true, location_name: "State"))
|
3360
3361
|
PatchComplianceData.add_member(:installed_time, Shapes::ShapeRef.new(shape: DateTime, required: true, location_name: "InstalledTime"))
|
3362
|
+
PatchComplianceData.add_member(:cve_ids, Shapes::ShapeRef.new(shape: PatchCVEIds, location_name: "CVEIds"))
|
3361
3363
|
PatchComplianceData.struct_class = Types::PatchComplianceData
|
3362
3364
|
|
3363
3365
|
PatchComplianceDataList.member = Shapes::ShapeRef.new(shape: PatchComplianceData)
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -13544,6 +13544,11 @@ module Aws::SSM
|
|
13544
13544
|
# all operating systems provide this level of information.
|
13545
13545
|
# @return [Time]
|
13546
13546
|
#
|
13547
|
+
# @!attribute [rw] cve_ids
|
13548
|
+
# The IDs of one or more Common Vulnerabilities and Exposure (CVE)
|
13549
|
+
# issues that are resolved by the patch.
|
13550
|
+
# @return [String]
|
13551
|
+
#
|
13547
13552
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchComplianceData AWS API Documentation
|
13548
13553
|
#
|
13549
13554
|
class PatchComplianceData < Struct.new(
|
@@ -13552,7 +13557,8 @@ module Aws::SSM
|
|
13552
13557
|
:classification,
|
13553
13558
|
:severity,
|
13554
13559
|
:state,
|
13555
|
-
:installed_time
|
13560
|
+
:installed_time,
|
13561
|
+
:cve_ids)
|
13556
13562
|
SENSITIVE = []
|
13557
13563
|
include Aws::Structure
|
13558
13564
|
end
|
@@ -14142,7 +14148,7 @@ module Aws::SSM
|
|
14142
14148
|
# The type of parameter that you want to add to the system.
|
14143
14149
|
#
|
14144
14150
|
# <note markdown="1"> `SecureString` is not currently supported for AWS CloudFormation
|
14145
|
-
# templates
|
14151
|
+
# templates.
|
14146
14152
|
#
|
14147
14153
|
# </note>
|
14148
14154
|
#
|
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.95.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-10-
|
11
|
+
date: 2020-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|