google-apis-ondemandscanning_v1beta1 0.25.0 → 0.26.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: 5a7b7984ce56841270050af2201fc995282b9ac0269f525878fa1ca943cf02d9
|
4
|
+
data.tar.gz: 0e81331af3e4a1d55c5eb52a3e43dc58be8c447f1d8cb6e5536528e0b221e73d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c417f04a80e8c140cdb4e600ac9c069bd6c3560104273e1feecd99e9fc1d88ae40acdec499548e4c03bce248e7b5cd0734ddbbecf55ddaf16fec2e95f6a0d439
|
7
|
+
data.tar.gz: b96084fe41461dea266fad75898e0aebee2c00eb1d594340926ab2fe958be9b5ba3af10fa62786fc602c6fd5d1d5ba636c46d7d84034fa1eda79c04980c43587
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-ondemandscanning_v1beta1
|
2
2
|
|
3
|
+
### v0.26.0 (2022-06-19)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.7.0
|
6
|
+
* Regenerated from discovery document revision 20220612
|
7
|
+
|
3
8
|
### v0.25.0 (2022-06-06)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220530
|
@@ -1440,6 +1440,32 @@ module Google
|
|
1440
1440
|
end
|
1441
1441
|
end
|
1442
1442
|
|
1443
|
+
# Indicates a language package available between this package and the customer's
|
1444
|
+
# resource artifact.
|
1445
|
+
class LanguagePackageDependency
|
1446
|
+
include Google::Apis::Core::Hashable
|
1447
|
+
|
1448
|
+
#
|
1449
|
+
# Corresponds to the JSON property `package`
|
1450
|
+
# @return [String]
|
1451
|
+
attr_accessor :package
|
1452
|
+
|
1453
|
+
#
|
1454
|
+
# Corresponds to the JSON property `version`
|
1455
|
+
# @return [String]
|
1456
|
+
attr_accessor :version
|
1457
|
+
|
1458
|
+
def initialize(**args)
|
1459
|
+
update!(**args)
|
1460
|
+
end
|
1461
|
+
|
1462
|
+
# Update properties of this object
|
1463
|
+
def update!(**args)
|
1464
|
+
@package = args[:package] if args.key?(:package)
|
1465
|
+
@version = args[:version] if args.key?(:version)
|
1466
|
+
end
|
1467
|
+
end
|
1468
|
+
|
1443
1469
|
# Layer holds metadata specific to a layer of a Docker image.
|
1444
1470
|
class Layer
|
1445
1471
|
include Google::Apis::Core::Hashable
|
@@ -1899,6 +1925,13 @@ module Google
|
|
1899
1925
|
# @return [String]
|
1900
1926
|
attr_accessor :cpe_uri
|
1901
1927
|
|
1928
|
+
# The dependency chain between this package and the user's artifact. List in
|
1929
|
+
# order from the customer's package under review first, to the current package
|
1930
|
+
# last. Inclusive of the original package and the current package.
|
1931
|
+
# Corresponds to the JSON property `dependencyChain`
|
1932
|
+
# @return [Array<Google::Apis::OndemandscanningV1beta1::LanguagePackageDependency>]
|
1933
|
+
attr_accessor :dependency_chain
|
1934
|
+
|
1902
1935
|
# The path to the jar file / go binary file.
|
1903
1936
|
# Corresponds to the JSON property `fileLocation`
|
1904
1937
|
# @return [Array<Google::Apis::OndemandscanningV1beta1::FileLocation>]
|
@@ -1955,6 +1988,7 @@ module Google
|
|
1955
1988
|
# Update properties of this object
|
1956
1989
|
def update!(**args)
|
1957
1990
|
@cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri)
|
1991
|
+
@dependency_chain = args[:dependency_chain] if args.key?(:dependency_chain)
|
1958
1992
|
@file_location = args[:file_location] if args.key?(:file_location)
|
1959
1993
|
@hash_digest = args[:hash_digest] if args.key?(:hash_digest)
|
1960
1994
|
@os = args[:os] if args.key?(:os)
|
@@ -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.26.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.7.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
|
|
@@ -871,6 +877,14 @@ module Google
|
|
871
877
|
end
|
872
878
|
end
|
873
879
|
|
880
|
+
class LanguagePackageDependency
|
881
|
+
# @private
|
882
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
883
|
+
property :package, as: 'package'
|
884
|
+
property :version, as: 'version'
|
885
|
+
end
|
886
|
+
end
|
887
|
+
|
874
888
|
class Layer
|
875
889
|
# @private
|
876
890
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -995,6 +1009,8 @@ module Google
|
|
995
1009
|
# @private
|
996
1010
|
class Representation < Google::Apis::Core::JsonRepresentation
|
997
1011
|
property :cpe_uri, as: 'cpeUri'
|
1012
|
+
collection :dependency_chain, as: 'dependencyChain', class: Google::Apis::OndemandscanningV1beta1::LanguagePackageDependency, decorator: Google::Apis::OndemandscanningV1beta1::LanguagePackageDependency::Representation
|
1013
|
+
|
998
1014
|
collection :file_location, as: 'fileLocation', class: Google::Apis::OndemandscanningV1beta1::FileLocation, decorator: Google::Apis::OndemandscanningV1beta1::FileLocation::Representation
|
999
1015
|
|
1000
1016
|
property :hash_digest, as: 'hashDigest'
|
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.26.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
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.6'
|
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.
|
29
|
+
version: '0.6'
|
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_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.26.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: []
|