google-apis-containeranalysis_v1 0.20.0 → 0.21.0

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: d558d7137beb7013c60bdb720bf90a6aab932dad88e00cf47c12722ce35f7ab5
4
- data.tar.gz: c18da444e8b5c3b9aadd666d5f0f93841916975cef6982e63b6a64adfc74e5d8
3
+ metadata.gz: 11ad75b0f9bebd501a109ee986557406b78b5ff44d4495f2e32dee5b7abd1d97
4
+ data.tar.gz: 8ccb58545dbff86eb9eed6b04bb28ef09e864b6df8f7109e16e8523c0407a8fb
5
5
  SHA512:
6
- metadata.gz: dd69f8b318ac7be65b52bd0531d3a2c4a215258c36915fa34367da62658ea7b4d301f645000cbfc79a867569418c1924b038226bc05074aafaa0bd483089a38f
7
- data.tar.gz: 1e08deb91e43325f3688e6982b33c229e1b8aba9bec9e0010b3ea0613e3935608d390df43ad9339c32e0f9e0a34df882e2e1451ed9eff9b6788ae25b95fd00c2
6
+ metadata.gz: 685406b46da1ac7c58747987822abff4ede217c35372b8c5a0748f69a21379f1d8d99aaec7269cd1fd954ae0a11f402b1bc0c25d5260b7ec9b690d0198420841
7
+ data.tar.gz: 82a79fbc63a4659e68e1f127d76ad619e24b105e1e3aa203052c7619999b4f462210af2175de11a287d9e5041f15e232bf41ec2bd961b886559df9b5b38afbbf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-containeranalysis_v1
2
2
 
3
+ ### v0.21.0 (2022-09-28)
4
+
5
+ * Regenerated from discovery document revision 20220923
6
+
3
7
  ### v0.20.0 (2022-09-20)
4
8
 
5
9
  * Regenerated using generator version 0.10.0
@@ -5270,6 +5270,11 @@ module Google
5270
5270
  # @return [Google::Apis::ContaineranalysisV1::CvsSv3]
5271
5271
  attr_accessor :cvss_v3
5272
5272
 
5273
+ # CVSS version used to populate cvss_score and severity.
5274
+ # Corresponds to the JSON property `cvssVersion`
5275
+ # @return [String]
5276
+ attr_accessor :cvss_version
5277
+
5273
5278
  # Details of all known distros and packages affected by this vulnerability.
5274
5279
  # Corresponds to the JSON property `details`
5275
5280
  # @return [Array<Google::Apis::ContaineranalysisV1::Detail>]
@@ -5303,6 +5308,7 @@ module Google
5303
5308
  def update!(**args)
5304
5309
  @cvss_score = args[:cvss_score] if args.key?(:cvss_score)
5305
5310
  @cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3)
5311
+ @cvss_version = args[:cvss_version] if args.key?(:cvss_version)
5306
5312
  @details = args[:details] if args.key?(:details)
5307
5313
  @severity = args[:severity] if args.key?(:severity)
5308
5314
  @source_update_time = args[:source_update_time] if args.key?(:source_update_time)
@@ -5320,6 +5326,11 @@ module Google
5320
5326
  # @return [Float]
5321
5327
  attr_accessor :cvss_score
5322
5328
 
5329
+ # Output only. CVSS version used to populate cvss_score and severity.
5330
+ # Corresponds to the JSON property `cvssVersion`
5331
+ # @return [String]
5332
+ attr_accessor :cvss_version
5333
+
5323
5334
  # Common Vulnerability Scoring System. For details, see https://www.first.org/
5324
5335
  # cvss/specification-document This is a message we will try to use for storing
5325
5336
  # various versions of CVSS rather than making a separate proto for storing a
@@ -5385,6 +5396,7 @@ module Google
5385
5396
  # Update properties of this object
5386
5397
  def update!(**args)
5387
5398
  @cvss_score = args[:cvss_score] if args.key?(:cvss_score)
5399
+ @cvss_version = args[:cvss_version] if args.key?(:cvss_version)
5388
5400
  @cvssv3 = args[:cvssv3] if args.key?(:cvssv3)
5389
5401
  @effective_severity = args[:effective_severity] if args.key?(:effective_severity)
5390
5402
  @fix_available = args[:fix_available] if args.key?(:fix_available)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1
18
18
  # Version of the google-apis-containeranalysis_v1 gem
19
- GEM_VERSION = "0.20.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220902"
25
+ REVISION = "20220923"
26
26
  end
27
27
  end
28
28
  end
@@ -2182,6 +2182,7 @@ module Google
2182
2182
  property :cvss_score, as: 'cvssScore'
2183
2183
  property :cvss_v3, as: 'cvssV3', class: Google::Apis::ContaineranalysisV1::CvsSv3, decorator: Google::Apis::ContaineranalysisV1::CvsSv3::Representation
2184
2184
 
2185
+ property :cvss_version, as: 'cvssVersion'
2185
2186
  collection :details, as: 'details', class: Google::Apis::ContaineranalysisV1::Detail, decorator: Google::Apis::ContaineranalysisV1::Detail::Representation
2186
2187
 
2187
2188
  property :severity, as: 'severity'
@@ -2195,6 +2196,7 @@ module Google
2195
2196
  # @private
2196
2197
  class Representation < Google::Apis::Core::JsonRepresentation
2197
2198
  property :cvss_score, as: 'cvssScore'
2199
+ property :cvss_version, as: 'cvssVersion'
2198
2200
  property :cvssv3, as: 'cvssv3', class: Google::Apis::ContaineranalysisV1::Cvss, decorator: Google::Apis::ContaineranalysisV1::Cvss::Representation
2199
2201
 
2200
2202
  property :effective_severity, as: 'effectiveSeverity'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-26 00:00:00.000000000 Z
11
+ date: 2022-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.21.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
63
63
  post_install_message:
64
64
  rdoc_options: []