google-apis-containeranalysis_v1beta1 0.32.0 → 0.34.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: 33e6b6f9d2180fa65a69dea804557ebc458a3b6871835cc54ff03a5b1b4e3f69
4
- data.tar.gz: e4c41e81ed43a455ce5d88472ba5dc0c1cb413ef3234d2a75702fc85e6daad44
3
+ metadata.gz: b16306ae1f2986db894951c0d40226fbcd7dde4de53043986a037c7fcb4c597f
4
+ data.tar.gz: 6c4eff67eb6c50d87868c6f974346560bc66f476b812f791013ed96d0ad28c2d
5
5
  SHA512:
6
- metadata.gz: 63637c879f6d47a2fdc11de4e50b62a70e9e9363b5408adde5e6db24d9fbe5e5c528eb2bb908e5cf9d0dec7aef5773ac099fc1f0eec3302188b89f7811a8a9ab
7
- data.tar.gz: 004a59d171d7e19c960b77a6f51ad3508ef4c9315a44519577788dd9a00e3f5426100d7bfb6591ad3969099f64af0d3975254126d48a76db18509e84cc3dacc2
6
+ metadata.gz: 295713c5578ab06efcf66e5e0b0615d070fe3aae2517ea09defae6ceebacdd32deba0a27bd36350e643d45cb22b450216b4d0ff97c4cf0895b9e60df78bfe818
7
+ data.tar.gz: 8bc1e175e73666da4cb109e4e3a47fbbfc15cce4529ce54b66468a7718d211645b9a15f1f4dc718bdbd1838af964f3cd96dc7d6ad5fba38be1365d07c439a860
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-containeranalysis_v1beta1
2
2
 
3
+ ### v0.34.0 (2023-02-26)
4
+
5
+ * Regenerated from discovery document revision 20230221
6
+
7
+ ### v0.33.0 (2023-02-19)
8
+
9
+ * Regenerated using generator version 0.12.0
10
+
3
11
  ### v0.32.0 (2023-02-12)
4
12
 
5
13
  * Regenerated from discovery document revision 20230203
@@ -3750,6 +3750,24 @@ module Google
3750
3750
  # @return [Float]
3751
3751
  attr_accessor :cvss_score
3752
3752
 
3753
+ # Common Vulnerability Scoring System. This message is compatible with CVSS v2
3754
+ # and v3. For CVSS v2 details, see https://www.first.org/cvss/v2/guide CVSS v2
3755
+ # calculator: https://nvd.nist.gov/vuln-metrics/cvss/v2-calculator For CVSS v3
3756
+ # details, see https://www.first.org/cvss/specification-document CVSS v3
3757
+ # calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator
3758
+ # Corresponds to the JSON property `cvssV2`
3759
+ # @return [Google::Apis::ContaineranalysisV1beta1::Cvss]
3760
+ attr_accessor :cvss_v2
3761
+
3762
+ # Common Vulnerability Scoring System. This message is compatible with CVSS v2
3763
+ # and v3. For CVSS v2 details, see https://www.first.org/cvss/v2/guide CVSS v2
3764
+ # calculator: https://nvd.nist.gov/vuln-metrics/cvss/v2-calculator For CVSS v3
3765
+ # details, see https://www.first.org/cvss/specification-document CVSS v3
3766
+ # calculator: https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator
3767
+ # Corresponds to the JSON property `cvssV3`
3768
+ # @return [Google::Apis::ContaineranalysisV1beta1::Cvss]
3769
+ attr_accessor :cvss_v3
3770
+
3753
3771
  # Output only. CVSS version used to populate cvss_score and severity.
3754
3772
  # Corresponds to the JSON property `cvssVersion`
3755
3773
  # @return [String]
@@ -3813,6 +3831,8 @@ module Google
3813
3831
  # Update properties of this object
3814
3832
  def update!(**args)
3815
3833
  @cvss_score = args[:cvss_score] if args.key?(:cvss_score)
3834
+ @cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
3835
+ @cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3)
3816
3836
  @cvss_version = args[:cvss_version] if args.key?(:cvss_version)
3817
3837
  @effective_severity = args[:effective_severity] if args.key?(:effective_severity)
3818
3838
  @long_description = args[:long_description] if args.key?(:long_description)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1beta1
18
18
  # Version of the google-apis-containeranalysis_v1beta1 gem
19
- GEM_VERSION = "0.32.0"
19
+ GEM_VERSION = "0.34.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230203"
25
+ REVISION = "20230221"
26
26
  end
27
27
  end
28
28
  end
@@ -1815,6 +1815,10 @@ module Google
1815
1815
  # @private
1816
1816
  class Representation < Google::Apis::Core::JsonRepresentation
1817
1817
  property :cvss_score, as: 'cvssScore'
1818
+ property :cvss_v2, as: 'cvssV2', class: Google::Apis::ContaineranalysisV1beta1::Cvss, decorator: Google::Apis::ContaineranalysisV1beta1::Cvss::Representation
1819
+
1820
+ property :cvss_v3, as: 'cvssV3', class: Google::Apis::ContaineranalysisV1beta1::Cvss, decorator: Google::Apis::ContaineranalysisV1beta1::Cvss::Representation
1821
+
1818
1822
  property :cvss_version, as: 'cvssVersion'
1819
1823
  property :effective_severity, as: 'effectiveSeverity'
1820
1824
  property :long_description, as: 'longDescription'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.34.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-12 00:00:00.000000000 Z
11
+ date: 2023-02-26 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.9.1
19
+ version: 0.11.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.9.1
29
+ version: 0.11.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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.34.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []