google-apis-ondemandscanning_v1 0.23.0 → 0.24.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: 2397b749ee0a2ee0d1f853c9aa656910056d8503835ad25c8fc7238d698f10a4
|
4
|
+
data.tar.gz: 87cf821b49430048c1a21e629e98c877e0eade64f1fce0125ea766e78ca22ac5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 592c4daa725347268ad07dcdb31635da362c69628f04534699df49c96b45133f04840467c96deb82897cae7b4a10e61b5778557595d5393302041c31126bf146
|
7
|
+
data.tar.gz: 596f146e4419492645893f7ebb6d9b4633f433e9efd903b3378220d18da452a172fbabed66d07eebc09f31f6b92d65e16b0b1ddf8d5b41d72c7c622fa9e4ec4f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-ondemandscanning_v1
|
2
2
|
|
3
|
+
### v0.24.0 (2022-06-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220612
|
6
|
+
* Regenerated using generator version 0.6.0
|
7
|
+
|
3
8
|
### v0.23.0 (2022-06-03)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220530
|
@@ -1448,6 +1448,32 @@ module Google
|
|
1448
1448
|
end
|
1449
1449
|
end
|
1450
1450
|
|
1451
|
+
# Indicates a language package available between this package and the customer's
|
1452
|
+
# resource artifact.
|
1453
|
+
class LanguagePackageDependency
|
1454
|
+
include Google::Apis::Core::Hashable
|
1455
|
+
|
1456
|
+
#
|
1457
|
+
# Corresponds to the JSON property `package`
|
1458
|
+
# @return [String]
|
1459
|
+
attr_accessor :package
|
1460
|
+
|
1461
|
+
#
|
1462
|
+
# Corresponds to the JSON property `version`
|
1463
|
+
# @return [String]
|
1464
|
+
attr_accessor :version
|
1465
|
+
|
1466
|
+
def initialize(**args)
|
1467
|
+
update!(**args)
|
1468
|
+
end
|
1469
|
+
|
1470
|
+
# Update properties of this object
|
1471
|
+
def update!(**args)
|
1472
|
+
@package = args[:package] if args.key?(:package)
|
1473
|
+
@version = args[:version] if args.key?(:version)
|
1474
|
+
end
|
1475
|
+
end
|
1476
|
+
|
1451
1477
|
# Layer holds metadata specific to a layer of a Docker image.
|
1452
1478
|
class Layer
|
1453
1479
|
include Google::Apis::Core::Hashable
|
@@ -1907,6 +1933,13 @@ module Google
|
|
1907
1933
|
# @return [String]
|
1908
1934
|
attr_accessor :cpe_uri
|
1909
1935
|
|
1936
|
+
# The dependency chain between this package and the user's artifact. List in
|
1937
|
+
# order from the customer's package under review first, to the current package
|
1938
|
+
# last. Inclusive of the original package and the current package.
|
1939
|
+
# Corresponds to the JSON property `dependencyChain`
|
1940
|
+
# @return [Array<Google::Apis::OndemandscanningV1::LanguagePackageDependency>]
|
1941
|
+
attr_accessor :dependency_chain
|
1942
|
+
|
1910
1943
|
# The path to the jar file / go binary file.
|
1911
1944
|
# Corresponds to the JSON property `fileLocation`
|
1912
1945
|
# @return [Array<Google::Apis::OndemandscanningV1::FileLocation>]
|
@@ -1963,6 +1996,7 @@ module Google
|
|
1963
1996
|
# Update properties of this object
|
1964
1997
|
def update!(**args)
|
1965
1998
|
@cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri)
|
1999
|
+
@dependency_chain = args[:dependency_chain] if args.key?(:dependency_chain)
|
1966
2000
|
@file_location = args[:file_location] if args.key?(:file_location)
|
1967
2001
|
@hash_digest = args[:hash_digest] if args.key?(:hash_digest)
|
1968
2002
|
@os = args[:os] if args.key?(:os)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.24.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.6.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220612"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -268,6 +268,12 @@ module Google
|
|
268
268
|
include Google::Apis::Core::JsonObjectSupport
|
269
269
|
end
|
270
270
|
|
271
|
+
class LanguagePackageDependency
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
271
277
|
class Layer
|
272
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
279
|
|
@@ -872,6 +878,14 @@ module Google
|
|
872
878
|
end
|
873
879
|
end
|
874
880
|
|
881
|
+
class LanguagePackageDependency
|
882
|
+
# @private
|
883
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
884
|
+
property :package, as: 'package'
|
885
|
+
property :version, as: 'version'
|
886
|
+
end
|
887
|
+
end
|
888
|
+
|
875
889
|
class Layer
|
876
890
|
# @private
|
877
891
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -996,6 +1010,8 @@ module Google
|
|
996
1010
|
# @private
|
997
1011
|
class Representation < Google::Apis::Core::JsonRepresentation
|
998
1012
|
property :cpe_uri, as: 'cpeUri'
|
1013
|
+
collection :dependency_chain, as: 'dependencyChain', class: Google::Apis::OndemandscanningV1::LanguagePackageDependency, decorator: Google::Apis::OndemandscanningV1::LanguagePackageDependency::Representation
|
1014
|
+
|
999
1015
|
collection :file_location, as: 'fileLocation', class: Google::Apis::OndemandscanningV1::FileLocation, decorator: Google::Apis::OndemandscanningV1::FileLocation::Representation
|
1000
1016
|
|
1001
1017
|
property :hash_digest, as: 'hashDigest'
|
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.
|
4
|
+
version: 0.24.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-06-
|
11
|
+
date: 2022-06-20 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.24.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: []
|