google-apis-ondemandscanning_v1 0.23.0 → 0.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7eaada581f2f619b9a3fe7ad8acb475ef3cb35bdf15a30db5e3c654e6ad3c2a
4
- data.tar.gz: 7e7c8969b92f44dbef3b36913804d7e96d603b09733eed992da558715cf0e544
3
+ metadata.gz: b1ebb5f2a9f00fa7d1804b802ac1910ddd2dd6e639a715397e383d3d82ac1b52
4
+ data.tar.gz: eaf29ee917d498a2f278c81a9928e093b004c71452ac0c661a6b9c20769ff644
5
5
  SHA512:
6
- metadata.gz: 7e75e9bb17cb328b8cf4bf60c1e4d24c6c85daf85fa2499207107b148290b7f88550abe63c8165b579f871eeff2963325dbc55f947b9fd6bc8116d8e9d8d10c0
7
- data.tar.gz: 3df89da1005cf9b0ebc2363fa6a5d27e81b4194ea40b8016fdc4e781a7b05cbf8d5cc05ea99dd1965421f57eeecccf32d745c964f85b2bc6be80f4075992e8a9
6
+ metadata.gz: bba0e932c082e6f4822986129c084661371e8d70c4da8808e683ef50ed8f9fcd9344fbec0057dc44c03bf6415eb15553c1e977c471bc834878ef55c930a82266
7
+ data.tar.gz: b38d2306c980d6764820b3a50854f8c12b2734502a68f5fde05e630bc29f04385df3acf22a234d44e76a3db75055bee1d5c5633ac843458de91b20960aa02a7b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-ondemandscanning_v1
2
2
 
3
+ ### v0.26.0 (2022-07-03)
4
+
5
+ * Regenerated using generator version 0.8.0
6
+
7
+ ### v0.25.0 (2022-06-21)
8
+
9
+ * Regenerated using generator version 0.7.0
10
+
11
+ ### v0.24.0 (2022-06-16)
12
+
13
+ * Regenerated from discovery document revision 20220612
14
+ * Regenerated using generator version 0.6.0
15
+
3
16
  ### v0.23.0 (2022-06-03)
4
17
 
5
18
  * 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.23.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.5.0"
22
+ GENERATOR_VERSION = "0.8.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220530"
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.23.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-13 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.5'
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.5'
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.23.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.26.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: []