google-apis-containeranalysis_v1 0.28.0 → 0.29.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: 33ffa5ae1ab6aa3e43932b72d409f35d3914c668a2da8a3319a552c60ad90bc2
4
- data.tar.gz: cd13a24ccb24cd31a9a101aa07f0dbfd7e6e3ff59917008991c73b8a3a3e71d0
3
+ metadata.gz: 1a6f522e1e5bd426526c71667c6348b7a293b4b3cd7d6251e8d8f40e623f70f2
4
+ data.tar.gz: a3ed576ea29a354a7bab80bae435e6a7ffff4e5054806d6433330bd92004423c
5
5
  SHA512:
6
- metadata.gz: bea6f71601983eadb3af38125d4fdf6a021b7d5123b0fafd11d52932a24b997f238cc421aa16433cd62214369016629866212215873a9bce7e92ed3fcb765539
7
- data.tar.gz: bcd293249e2f79a4f7e9cc23b8a80ee7c0487843bb62fbb1dac9d14741921e574257d7f99fced971cb1a77ec1fcf2307d710fee96230867c046724d37444e8a7
6
+ metadata.gz: c72d5bf471cf65ddefcfc2fa6c3a667f815791ece6a0955b1ffe09610d88d5ee10cab2d1a9cdef0f50f93f46251758e724294c33a2712fcc7b7ee23b70e0adbd
7
+ data.tar.gz: 8a636c79e9d3193e2b4695fd2dc84978a5fbe2016733dc40338afe3cab8d37040e847a0e7c94dcabfccc4a22504fbd6c263b7987bcd33db9ed438dd4cc477737
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-containeranalysis_v1
2
2
 
3
+ ### v0.29.0 (2023-03-05)
4
+
5
+ * Regenerated from discovery document revision 20230221
6
+
3
7
  ### v0.28.0 (2023-02-15)
4
8
 
5
9
  * Regenerated using generator version 0.12.0
@@ -5654,6 +5654,14 @@ module Google
5654
5654
  # @return [Float]
5655
5655
  attr_accessor :cvss_score
5656
5656
 
5657
+ # Common Vulnerability Scoring System. For details, see https://www.first.org/
5658
+ # cvss/specification-document This is a message we will try to use for storing
5659
+ # various versions of CVSS rather than making a separate proto for storing a
5660
+ # specific version.
5661
+ # Corresponds to the JSON property `cvssV2`
5662
+ # @return [Google::Apis::ContaineranalysisV1::Cvss]
5663
+ attr_accessor :cvss_v2
5664
+
5657
5665
  # Common Vulnerability Scoring System version 3. For details, see https://www.
5658
5666
  # first.org/cvss/specification-document
5659
5667
  # Corresponds to the JSON property `cvssV3`
@@ -5697,6 +5705,7 @@ module Google
5697
5705
  # Update properties of this object
5698
5706
  def update!(**args)
5699
5707
  @cvss_score = args[:cvss_score] if args.key?(:cvss_score)
5708
+ @cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
5700
5709
  @cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3)
5701
5710
  @cvss_version = args[:cvss_version] if args.key?(:cvss_version)
5702
5711
  @details = args[:details] if args.key?(:details)
@@ -5716,6 +5725,14 @@ module Google
5716
5725
  # @return [Float]
5717
5726
  attr_accessor :cvss_score
5718
5727
 
5728
+ # Common Vulnerability Scoring System. For details, see https://www.first.org/
5729
+ # cvss/specification-document This is a message we will try to use for storing
5730
+ # various versions of CVSS rather than making a separate proto for storing a
5731
+ # specific version.
5732
+ # Corresponds to the JSON property `cvssV2`
5733
+ # @return [Google::Apis::ContaineranalysisV1::Cvss]
5734
+ attr_accessor :cvss_v2
5735
+
5719
5736
  # Output only. CVSS version used to populate cvss_score and severity.
5720
5737
  # Corresponds to the JSON property `cvssVersion`
5721
5738
  # @return [String]
@@ -5786,6 +5803,7 @@ module Google
5786
5803
  # Update properties of this object
5787
5804
  def update!(**args)
5788
5805
  @cvss_score = args[:cvss_score] if args.key?(:cvss_score)
5806
+ @cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
5789
5807
  @cvss_version = args[:cvss_version] if args.key?(:cvss_version)
5790
5808
  @cvssv3 = args[:cvssv3] if args.key?(:cvssv3)
5791
5809
  @effective_severity = args[:effective_severity] if args.key?(:effective_severity)
@@ -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.28.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230127"
25
+ REVISION = "20230221"
26
26
  end
27
27
  end
28
28
  end
@@ -2313,6 +2313,8 @@ module Google
2313
2313
  # @private
2314
2314
  class Representation < Google::Apis::Core::JsonRepresentation
2315
2315
  property :cvss_score, as: 'cvssScore'
2316
+ property :cvss_v2, as: 'cvssV2', class: Google::Apis::ContaineranalysisV1::Cvss, decorator: Google::Apis::ContaineranalysisV1::Cvss::Representation
2317
+
2316
2318
  property :cvss_v3, as: 'cvssV3', class: Google::Apis::ContaineranalysisV1::CvsSv3, decorator: Google::Apis::ContaineranalysisV1::CvsSv3::Representation
2317
2319
 
2318
2320
  property :cvss_version, as: 'cvssVersion'
@@ -2329,6 +2331,8 @@ module Google
2329
2331
  # @private
2330
2332
  class Representation < Google::Apis::Core::JsonRepresentation
2331
2333
  property :cvss_score, as: 'cvssScore'
2334
+ property :cvss_v2, as: 'cvssV2', class: Google::Apis::ContaineranalysisV1::Cvss, decorator: Google::Apis::ContaineranalysisV1::Cvss::Representation
2335
+
2332
2336
  property :cvss_version, as: 'cvssVersion'
2333
2337
  property :cvssv3, as: 'cvssv3', class: Google::Apis::ContaineranalysisV1::Cvss, decorator: Google::Apis::ContaineranalysisV1::Cvss::Representation
2334
2338
 
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.28.0
4
+ version: 0.29.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: 2023-02-19 00:00:00.000000000 Z
11
+ date: 2023-03-05 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.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.29.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: []