aws-sdk-ssm 1.94.0 → 1.95.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f4ee7898abab202265e5683df1dd3ee63e32ca0f305e833bfeb5911bdc1886b
4
- data.tar.gz: 6c5df6a825f7637ed7f6801950dcde030ec1c0dd5842f8b1f5a1f8be24cf43fc
3
+ metadata.gz: febaf0c6db9fce4e913a11067e3a00c1517749a48fe42f6ab73e355bae0a8359
4
+ data.tar.gz: 1981a5a741289f6d029c0714490342792f4aa296b2cfcd95462b4f353492fb12
5
5
  SHA512:
6
- metadata.gz: e2697209bcc6993b16ffec15ce998b8f51db5b8422b395eb4f39f2ab8d10d167ff7a493772fa0b5f56bb4b679e95a572d038e1d1c470a3517657b48d29f09748
7
- data.tar.gz: 3a5ca0268063639e26d5e5a6eb1d17427e5f144613b46b2b9ed7856d26f4c1c07fbcdc820919add48b5c16cd8d9ac6d6630ce3d34850e70a3f120c730cbd0f5f
6
+ metadata.gz: 03fda2577685c4019683efed6e119de3e46c3179b7694f5d29d7e1d64ba2b7a120c5cd143370e465e5540a703384de4db92cf01915e9fc444a9b0e76ef20f0f4
7
+ data.tar.gz: 6ca9a7dc6edac5b9a0b886740dab647ca689f9eb9a839a8414ef781d65dfabee8564e5271aec071ee5b358064d230973b6e0e3f47430ba266fd535f347e1b59f
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-ssm/customizations'
49
49
  # @!group service
50
50
  module Aws::SSM
51
51
 
52
- GEM_VERSION = '1.94.0'
52
+ GEM_VERSION = '1.95.0'
53
53
 
54
54
  end
@@ -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 or in the China Regions.
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.94.0'
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)
@@ -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 or in the China Regions.
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.94.0
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-15 00:00:00.000000000 Z
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