google-apis-containeranalysis_v1 0.19.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: b4431799b399d00c03a624a51de22ecb088bae62750adbb1189f922d11ceb2ae
4
- data.tar.gz: dbfd3c117e817b1d99519fa800439de4490ace0f73c086b049f18ad9e62aeb1f
3
+ metadata.gz: 11ad75b0f9bebd501a109ee986557406b78b5ff44d4495f2e32dee5b7abd1d97
4
+ data.tar.gz: 8ccb58545dbff86eb9eed6b04bb28ef09e864b6df8f7109e16e8523c0407a8fb
5
5
  SHA512:
6
- metadata.gz: 528917fa0d354a24373e9d154c1d983b8d3fb539baad39c6a8f21a555d2baff534e01c919f9f8203d786b7c83d2ebe12a7be97a9ec4f0c2349974474562f9464
7
- data.tar.gz: de369527fb01596ca7854ff4a8671cd11b8835b41296dab4ea677304193449e1d0115e76dd6245030315d5c12f7f142fd91875cf1dd53bc9239c60bda22f376e
6
+ metadata.gz: 685406b46da1ac7c58747987822abff4ede217c35372b8c5a0748f69a21379f1d8d99aaec7269cd1fd954ae0a11f402b1bc0c25d5260b7ec9b690d0198420841
7
+ data.tar.gz: 82a79fbc63a4659e68e1f127d76ad619e24b105e1e3aa203052c7619999b4f462210af2175de11a287d9e5041f15e232bf41ec2bd961b886559df9b5b38afbbf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.20.0 (2022-09-20)
8
+
9
+ * Regenerated using generator version 0.10.0
10
+
3
11
  ### v0.19.0 (2022-09-18)
4
12
 
5
13
  * Unspecified changes
@@ -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.19.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
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.19.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-19 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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.7.2
19
+ version: 0.9.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.7.2
29
+ version: 0.9.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.19.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: []