google-apis-ondemandscanning_v1beta1 0.24.0 → 0.27.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: 3139a8245bd06e01ceb040d239f05e03bd3d349ea371bff0cc8dee17fb3c0737
4
- data.tar.gz: cde16a3c2e08400c69e6e595e5eac19d854df4515eae3b11bae256038031a3e9
3
+ metadata.gz: f4dc3c3cb5f2b02b58728d5875524654476d6e1cf74373afc6b798fdf9f9046d
4
+ data.tar.gz: da9e696b24826601334416dfa041a0a26475883054f58c82c3390247dd686cb3
5
5
  SHA512:
6
- metadata.gz: c2752738f2a4bd26564f1e87aeeb301eba5ba38dbe1e80003ccf60f7e0074f8b8da3258de0fefd961eb4f9e34e151d7ea92233890fc334422beda13788c512da
7
- data.tar.gz: d447726d0914a3668ab9dfa02f2c707123d73a2d3f147f7389d2fa88753c2eb1fbe15933a55e4c4edb56691b633e111d6da7b26d800b8f63734276963acfe988
6
+ metadata.gz: aed7e63cc6373896015d93bbddd342d9c9461773a860201a6280489063202b2db8a2acd9230f312ae2071218c46892635c147b3b3d5adc25dc4715b4fa2ce019
7
+ data.tar.gz: b7b0ab679a19f2a155015145aea58f0e63f92defd5b530fa1696b21fb09660ae90bb1455e1a1cd343a17b122b3bba6bcec13242bc78e57e20f7902250bdb6106
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-ondemandscanning_v1beta1
2
2
 
3
+ ### v0.27.0 (2022-06-30)
4
+
5
+ * Regenerated using generator version 0.8.0
6
+
7
+ ### v0.26.0 (2022-06-19)
8
+
9
+ * Regenerated using generator version 0.7.0
10
+ * Regenerated from discovery document revision 20220612
11
+
12
+ ### v0.25.0 (2022-06-06)
13
+
14
+ * Regenerated from discovery document revision 20220530
15
+ * Regenerated using generator version 0.5.0
16
+
3
17
  ### v0.24.0 (2022-05-25)
4
18
 
5
19
  * Regenerated from discovery document revision 20220522
@@ -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>]
@@ -1932,6 +1965,12 @@ module Google
1932
1965
  # @return [String]
1933
1966
  attr_accessor :package_type
1934
1967
 
1968
+ # CVEs that this package is no longer vulnerable to go/drydock-dd-custom-binary-
1969
+ # scanning
1970
+ # Corresponds to the JSON property `patchedCve`
1971
+ # @return [Array<String>]
1972
+ attr_accessor :patched_cve
1973
+
1935
1974
  #
1936
1975
  # Corresponds to the JSON property `unused`
1937
1976
  # @return [String]
@@ -1949,12 +1988,14 @@ module Google
1949
1988
  # Update properties of this object
1950
1989
  def update!(**args)
1951
1990
  @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri)
1991
+ @dependency_chain = args[:dependency_chain] if args.key?(:dependency_chain)
1952
1992
  @file_location = args[:file_location] if args.key?(:file_location)
1953
1993
  @hash_digest = args[:hash_digest] if args.key?(:hash_digest)
1954
1994
  @os = args[:os] if args.key?(:os)
1955
1995
  @os_version = args[:os_version] if args.key?(:os_version)
1956
1996
  @package = args[:package] if args.key?(:package)
1957
1997
  @package_type = args[:package_type] if args.key?(:package_type)
1998
+ @patched_cve = args[:patched_cve] if args.key?(:patched_cve)
1958
1999
  @unused = args[:unused] if args.key?(:unused)
1959
2000
  @version = args[:version] if args.key?(:version)
1960
2001
  end
@@ -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.24.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.8.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220522"
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'
@@ -1002,6 +1018,7 @@ module Google
1002
1018
  property :os_version, as: 'osVersion'
1003
1019
  property :package, as: 'package'
1004
1020
  property :package_type, as: 'packageType'
1021
+ collection :patched_cve, as: 'patchedCve'
1005
1022
  property :unused, as: 'unused'
1006
1023
  property :version, as: 'version'
1007
1024
  end
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.24.0
4
+ version: 0.27.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-05-30 00:00:00.000000000 Z
11
+ date: 2022-07-04 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.4'
19
+ version: '0.7'
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.4'
29
+ version: '0.7'
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.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.27.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: []