google-apis-ondemandscanning_v1 0.22.0 → 0.25.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: 3036df429b6f93f653ac46e71ef2c8d82ef95e64867604a3edbd78e96cdcd895
4
- data.tar.gz: 5e5a12e5dfed7b7f189283e01c6401924ff1de0344b3bd36f0d15c066afde700
3
+ metadata.gz: 3912ae721358de9a328b0b3f2190c42a008e37762284b24754570ad7cdc839d5
4
+ data.tar.gz: 7fa1c096a84732b8bcd42e8542b69b6d94a0566878c71179a353a73db6b5f675
5
5
  SHA512:
6
- metadata.gz: 560c8fdc7fe0fd788f3b0643b1df700be354a681416ffa84bd3a41db24ce3a5f55ed0be04ae00990ba57cd377cc8e2b0c3bb23f2af82556edb44d1a8f6a64342
7
- data.tar.gz: 9b3a69e04794af1f0ba727c5c7b971b4b0e438aece1af5d69060e1583ded680ab609c6b84b6106391cc4a870a90803401a05f9b0891901d4d8346b0c6f9313e7
6
+ metadata.gz: 86765fa1068ebe9b983e7802d67bb913b2df7d7c22383a8c18db3c83a721a8682ea6c2e52d934e2afdebac599f71a45fd1a0c472338775a1f08b28682c28b8c5
7
+ data.tar.gz: ab834b847fc6d9e4947c648b096ef3cae9d30b82e8f8a3519877b0fbd079c4427e81f30b722f88dddc9e7dff2459efcbd7d56ff510e71a7a5862601806f48848
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-ondemandscanning_v1
2
2
 
3
+ ### v0.25.0 (2022-06-21)
4
+
5
+ * Regenerated using generator version 0.7.0
6
+
7
+ ### v0.24.0 (2022-06-16)
8
+
9
+ * Regenerated from discovery document revision 20220612
10
+ * Regenerated using generator version 0.6.0
11
+
12
+ ### v0.23.0 (2022-06-03)
13
+
14
+ * Regenerated from discovery document revision 20220530
15
+ * Regenerated using generator version 0.5.0
16
+
3
17
  ### v0.22.0 (2022-05-25)
4
18
 
5
19
  * Regenerated from discovery document revision 20220522
@@ -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>]
@@ -1940,6 +1973,12 @@ module Google
1940
1973
  # @return [String]
1941
1974
  attr_accessor :package_type
1942
1975
 
1976
+ # CVEs that this package is no longer vulnerable to go/drydock-dd-custom-binary-
1977
+ # scanning
1978
+ # Corresponds to the JSON property `patchedCve`
1979
+ # @return [Array<String>]
1980
+ attr_accessor :patched_cve
1981
+
1943
1982
  #
1944
1983
  # Corresponds to the JSON property `unused`
1945
1984
  # @return [String]
@@ -1957,12 +1996,14 @@ module Google
1957
1996
  # Update properties of this object
1958
1997
  def update!(**args)
1959
1998
  @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri)
1999
+ @dependency_chain = args[:dependency_chain] if args.key?(:dependency_chain)
1960
2000
  @file_location = args[:file_location] if args.key?(:file_location)
1961
2001
  @hash_digest = args[:hash_digest] if args.key?(:hash_digest)
1962
2002
  @os = args[:os] if args.key?(:os)
1963
2003
  @os_version = args[:os_version] if args.key?(:os_version)
1964
2004
  @package = args[:package] if args.key?(:package)
1965
2005
  @package_type = args[:package_type] if args.key?(:package_type)
2006
+ @patched_cve = args[:patched_cve] if args.key?(:patched_cve)
1966
2007
  @unused = args[:unused] if args.key?(:unused)
1967
2008
  @version = args[:version] if args.key?(:version)
1968
2009
  end
@@ -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.22.0"
19
+ GEM_VERSION = "0.25.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.7.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
 
@@ -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'
@@ -1003,6 +1019,7 @@ module Google
1003
1019
  property :os_version, as: 'osVersion'
1004
1020
  property :package, as: 'package'
1005
1021
  property :package_type, as: 'packageType'
1022
+ collection :patched_cve, as: 'patchedCve'
1006
1023
  property :unused, as: 'unused'
1007
1024
  property :version, as: 'version'
1008
1025
  end
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.22.0
4
+ version: 0.25.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-06-27 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.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.4'
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.25.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: []