google-apis-ondemandscanning_v1beta1 0.31.0 → 0.33.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf0678d2fc148eb69ee2849544586e3cd6040438a87927d29a3ae22bad379bf3
|
4
|
+
data.tar.gz: acec55094e0bc6d07529870c30696c15b2e35a92e601358f8c848fe394b2bd86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20aa5760048833d303af64661502f3ef8381a41d852c5c555a053599ab56785a5785e51f796f868e80e128b838a8f2c1a2dea92df262387dcbbdcb622d35c30b
|
7
|
+
data.tar.gz: '049c2dda292dd468e7e6cb037a865b6d41c69a017ca1140de4a78dc9f1df662a158990e61a04636d55b3c8500329772fe9566d07c9c2abd2cbe2e5aa8317167a'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-ondemandscanning_v1beta1
|
2
2
|
|
3
|
+
### v0.33.0 (2023-03-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230227
|
6
|
+
|
7
|
+
### v0.32.0 (2023-02-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230213
|
10
|
+
|
3
11
|
### v0.31.0 (2023-02-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230109
|
@@ -1638,6 +1638,31 @@ module Google
|
|
1638
1638
|
end
|
1639
1639
|
end
|
1640
1640
|
|
1641
|
+
#
|
1642
|
+
class Maintainer
|
1643
|
+
include Google::Apis::Core::Hashable
|
1644
|
+
|
1645
|
+
#
|
1646
|
+
# Corresponds to the JSON property `kind`
|
1647
|
+
# @return [String]
|
1648
|
+
attr_accessor :kind
|
1649
|
+
|
1650
|
+
#
|
1651
|
+
# Corresponds to the JSON property `name`
|
1652
|
+
# @return [String]
|
1653
|
+
attr_accessor :name
|
1654
|
+
|
1655
|
+
def initialize(**args)
|
1656
|
+
update!(**args)
|
1657
|
+
end
|
1658
|
+
|
1659
|
+
# Update properties of this object
|
1660
|
+
def update!(**args)
|
1661
|
+
@kind = args[:kind] if args.key?(:kind)
|
1662
|
+
@name = args[:name] if args.key?(:name)
|
1663
|
+
end
|
1664
|
+
end
|
1665
|
+
|
1641
1666
|
#
|
1642
1667
|
class Material
|
1643
1668
|
include Google::Apis::Core::Hashable
|
@@ -1977,6 +2002,11 @@ module Google
|
|
1977
2002
|
# @return [String]
|
1978
2003
|
attr_accessor :hash_digest
|
1979
2004
|
|
2005
|
+
# The maintainer of the package.
|
2006
|
+
# Corresponds to the JSON property `maintainer`
|
2007
|
+
# @return [Google::Apis::OndemandscanningV1beta1::Maintainer]
|
2008
|
+
attr_accessor :maintainer
|
2009
|
+
|
1980
2010
|
# The OS affected by a vulnerability Used to generate the cpe_uri for OS
|
1981
2011
|
# packages
|
1982
2012
|
# Corresponds to the JSON property `os`
|
@@ -2024,6 +2054,7 @@ module Google
|
|
2024
2054
|
@dependency_chain = args[:dependency_chain] if args.key?(:dependency_chain)
|
2025
2055
|
@file_location = args[:file_location] if args.key?(:file_location)
|
2026
2056
|
@hash_digest = args[:hash_digest] if args.key?(:hash_digest)
|
2057
|
+
@maintainer = args[:maintainer] if args.key?(:maintainer)
|
2027
2058
|
@os = args[:os] if args.key?(:os)
|
2028
2059
|
@os_version = args[:os_version] if args.key?(:os_version)
|
2029
2060
|
@package = args[:package] if args.key?(:package)
|
@@ -2926,6 +2957,14 @@ module Google
|
|
2926
2957
|
# @return [Float]
|
2927
2958
|
attr_accessor :cvss_score
|
2928
2959
|
|
2960
|
+
# Common Vulnerability Scoring System. For details, see https://www.first.org/
|
2961
|
+
# cvss/specification-document This is a message we will try to use for storing
|
2962
|
+
# various versions of CVSS rather than making a separate proto for storing a
|
2963
|
+
# specific version.
|
2964
|
+
# Corresponds to the JSON property `cvssV2`
|
2965
|
+
# @return [Google::Apis::OndemandscanningV1beta1::Cvss]
|
2966
|
+
attr_accessor :cvss_v2
|
2967
|
+
|
2929
2968
|
# Output only. CVSS version used to populate cvss_score and severity.
|
2930
2969
|
# Corresponds to the JSON property `cvssVersion`
|
2931
2970
|
# @return [String]
|
@@ -2996,6 +3035,7 @@ module Google
|
|
2996
3035
|
# Update properties of this object
|
2997
3036
|
def update!(**args)
|
2998
3037
|
@cvss_score = args[:cvss_score] if args.key?(:cvss_score)
|
3038
|
+
@cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
|
2999
3039
|
@cvss_version = args[:cvss_version] if args.key?(:cvss_version)
|
3000
3040
|
@cvssv3 = args[:cvssv3] if args.key?(:cvssv3)
|
3001
3041
|
@effective_severity = args[:effective_severity] if args.key?(:effective_severity)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module OndemandscanningV1beta1
|
18
18
|
# Version of the google-apis-ondemandscanning_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.33.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 = "
|
25
|
+
REVISION = "20230227"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -310,6 +310,12 @@ module Google
|
|
310
310
|
include Google::Apis::Core::JsonObjectSupport
|
311
311
|
end
|
312
312
|
|
313
|
+
class Maintainer
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
313
319
|
class Material
|
314
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
321
|
|
@@ -946,6 +952,14 @@ module Google
|
|
946
952
|
end
|
947
953
|
end
|
948
954
|
|
955
|
+
class Maintainer
|
956
|
+
# @private
|
957
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
958
|
+
property :kind, as: 'kind'
|
959
|
+
property :name, as: 'name'
|
960
|
+
end
|
961
|
+
end
|
962
|
+
|
949
963
|
class Material
|
950
964
|
# @private
|
951
965
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1031,6 +1045,8 @@ module Google
|
|
1031
1045
|
collection :file_location, as: 'fileLocation', class: Google::Apis::OndemandscanningV1beta1::FileLocation, decorator: Google::Apis::OndemandscanningV1beta1::FileLocation::Representation
|
1032
1046
|
|
1033
1047
|
property :hash_digest, as: 'hashDigest'
|
1048
|
+
property :maintainer, as: 'maintainer', class: Google::Apis::OndemandscanningV1beta1::Maintainer, decorator: Google::Apis::OndemandscanningV1beta1::Maintainer::Representation
|
1049
|
+
|
1034
1050
|
property :os, as: 'os'
|
1035
1051
|
property :os_version, as: 'osVersion'
|
1036
1052
|
property :package, as: 'package'
|
@@ -1271,6 +1287,8 @@ module Google
|
|
1271
1287
|
# @private
|
1272
1288
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1273
1289
|
property :cvss_score, as: 'cvssScore'
|
1290
|
+
property :cvss_v2, as: 'cvssV2', class: Google::Apis::OndemandscanningV1beta1::Cvss, decorator: Google::Apis::OndemandscanningV1beta1::Cvss::Representation
|
1291
|
+
|
1274
1292
|
property :cvss_version, as: 'cvssVersion'
|
1275
1293
|
property :cvssv3, as: 'cvssv3', class: Google::Apis::OndemandscanningV1beta1::Cvss, decorator: Google::Apis::OndemandscanningV1beta1::Cvss::Representation
|
1276
1294
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-ondemandscanning_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.33.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-
|
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-ondemandscanning_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.33.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ondemandscanning_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|