google-apis-ondemandscanning_v1 0.30.0 → 0.32.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: 454085b328fdec7f8426a45919b967f8b900d2bd3bb7115ae1931370cf182361
4
- data.tar.gz: 3cd22e280082063b70a45d0b9b39a6e8e50d4a86d92da85fd15af91092c4f606
3
+ metadata.gz: 6073fe6ed4113fd0b4051d03cd56094f18a00d3fe449f4a1011e66c07fe6f1d2
4
+ data.tar.gz: b974c75f480eae98c28ac889dc320f8b30c1cc5ace5232e29902af89f96ee8ab
5
5
  SHA512:
6
- metadata.gz: 6bd5c91fa3daf9504d349c01255dffcf8ca4272e7e797b17a44ca7715db50e7ccebe3eb6df5dc91f49af4dc8aae3e9dd1d55e22938dc11b53e3efdc848c3456a
7
- data.tar.gz: 642e33219cdc47ee221189352394799024d011061cbde87951b5f83d15d047b6955b4a5b81c9d50eed10a43278c114b58f800fedf65d5a674bf975283129082c
6
+ metadata.gz: 4678c46b6a6260a803992784d2df32370c1588b5a6ad78ec91aa94c966d49c4d87948a915fb948921675cb39ae378e7e2ca9779d6047b1dee567855bba696175
7
+ data.tar.gz: ffdbbcb793197724e7ced6a12afbcbb6fae55450ceb719a71a4c08626bbec9b9e2fcc17e050f1ada647386bc1cdf1450e5fcabe375f959f7ec746eff33a2322f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-ondemandscanning_v1
2
2
 
3
+ ### v0.32.0 (2023-02-19)
4
+
5
+ * Regenerated from discovery document revision 20230213
6
+ * Regenerated using generator version 0.12.0
7
+
8
+ ### v0.31.0 (2022-10-27)
9
+
10
+ * Regenerated from discovery document revision 20221024
11
+
3
12
  ### v0.30.0 (2022-10-20)
4
13
 
5
14
  * Regenerated using generator version 0.11.0
@@ -1985,14 +1985,13 @@ module Google
1985
1985
  # @return [String]
1986
1986
  attr_accessor :hash_digest
1987
1987
 
1988
- # The OS affected by a vulnerability This field is deprecated and the
1989
- # information is in cpe_uri
1988
+ # The OS affected by a vulnerability Used to generate the cpe_uri for OS
1989
+ # packages
1990
1990
  # Corresponds to the JSON property `os`
1991
1991
  # @return [String]
1992
1992
  attr_accessor :os
1993
1993
 
1994
- # The version of the OS This field is deprecated and the information is in
1995
- # cpe_uri
1994
+ # The version of the OS Used to generate the cpe_uri for OS packages
1996
1995
  # Corresponds to the JSON property `osVersion`
1997
1996
  # @return [String]
1998
1997
  attr_accessor :os_version
@@ -2935,6 +2934,14 @@ module Google
2935
2934
  # @return [Float]
2936
2935
  attr_accessor :cvss_score
2937
2936
 
2937
+ # Common Vulnerability Scoring System. For details, see https://www.first.org/
2938
+ # cvss/specification-document This is a message we will try to use for storing
2939
+ # various versions of CVSS rather than making a separate proto for storing a
2940
+ # specific version.
2941
+ # Corresponds to the JSON property `cvssV2`
2942
+ # @return [Google::Apis::OndemandscanningV1::Cvss]
2943
+ attr_accessor :cvss_v2
2944
+
2938
2945
  # Output only. CVSS version used to populate cvss_score and severity.
2939
2946
  # Corresponds to the JSON property `cvssVersion`
2940
2947
  # @return [String]
@@ -3005,6 +3012,7 @@ module Google
3005
3012
  # Update properties of this object
3006
3013
  def update!(**args)
3007
3014
  @cvss_score = args[:cvss_score] if args.key?(:cvss_score)
3015
+ @cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
3008
3016
  @cvss_version = args[:cvss_version] if args.key?(:cvss_version)
3009
3017
  @cvssv3 = args[:cvssv3] if args.key?(:cvssv3)
3010
3018
  @effective_severity = args[:effective_severity] if args.key?(:effective_severity)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module OndemandscanningV1
18
18
  # Version of the google-apis-ondemandscanning_v1 gem
19
- GEM_VERSION = "0.30.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220917"
25
+ REVISION = "20230213"
26
26
  end
27
27
  end
28
28
  end
@@ -1272,6 +1272,8 @@ module Google
1272
1272
  # @private
1273
1273
  class Representation < Google::Apis::Core::JsonRepresentation
1274
1274
  property :cvss_score, as: 'cvssScore'
1275
+ property :cvss_v2, as: 'cvssV2', class: Google::Apis::OndemandscanningV1::Cvss, decorator: Google::Apis::OndemandscanningV1::Cvss::Representation
1276
+
1275
1277
  property :cvss_version, as: 'cvssVersion'
1276
1278
  property :cvssv3, as: 'cvssv3', class: Google::Apis::OndemandscanningV1::Cvss, decorator: Google::Apis::OndemandscanningV1::Cvss::Representation
1277
1279
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-ondemandscanning_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.30.0
4
+ version: 0.32.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-10-21 00:00:00.000000000 Z
11
+ date: 2023-02-19 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-ondemandscanning_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.30.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.32.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ondemandscanning_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for On-Demand Scanning API V1