google-apis-ondemandscanning_v1beta1 0.25.0 → 0.28.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: ecbb347ea576b81dbd678488a91bb6132c158df67fe4d046505b098507e9fc80
4
- data.tar.gz: 8f0eccba24969b749c327570961dcff8957da3e769bdb5b107217a0ede1e24c4
3
+ metadata.gz: 3bcf094cdf64121a64e87afe1021f440a5041e17ce91a6557b8c8e100e58dfbf
4
+ data.tar.gz: 2b0a601acdef5b0418898fc7ecd508effbf1c1482ea3a449a81a93852c6b7704
5
5
  SHA512:
6
- metadata.gz: de49c8d83f81850eb01d4257bdee83eff7b8a1fc10f0389999060ee1151fa8614990f1ed1b7dd7d79f72086e95003a0e1da71189614fe194a39d77da25f4481b
7
- data.tar.gz: f74ad5c82b86db9994d95ec1fb614db2e091794c57bb7cfcd8ac157cb6b89e29d1e9c215abec1d93ed176f4dd93cb927ac571f9d0a91393e24b4c812a1f3a5b9
6
+ metadata.gz: e023bc23f1f94bd555e34a7b6758bb3fc108ef3a254cbb3444113a2a1d9edb50e0760934bfcaf9ca6c8650da916e0837a4d1ffa05cda7986a534cc62415dd18f
7
+ data.tar.gz: 0f901c93eacec3ac5c1529e90f7e527109aef1bb30bcaae4c6a97bf75e43dc7ca98926c69709b055cf504465676546d8d19d843d74624221c6a5d848f1938342
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-ondemandscanning_v1beta1
2
2
 
3
+ ### v0.28.0 (2022-07-13)
4
+
5
+ * Regenerated from discovery document revision 20220711
6
+ * Regenerated using generator version 0.9.0
7
+
8
+ ### v0.27.0 (2022-06-30)
9
+
10
+ * Regenerated using generator version 0.8.0
11
+
12
+ ### v0.26.0 (2022-06-19)
13
+
14
+ * Regenerated using generator version 0.7.0
15
+ * Regenerated from discovery document revision 20220612
16
+
3
17
  ### v0.25.0 (2022-06-06)
4
18
 
5
19
  * Regenerated from discovery document revision 20220530
@@ -47,6 +47,26 @@ module Google
47
47
  end
48
48
  end
49
49
 
50
+ # Indicates which analysis completed successfully. Multiple types of analysis
51
+ # can be performed on a single resource.
52
+ class AnalysisCompleted
53
+ include Google::Apis::Core::Hashable
54
+
55
+ #
56
+ # Corresponds to the JSON property `analysisType`
57
+ # @return [Array<String>]
58
+ attr_accessor :analysis_type
59
+
60
+ def initialize(**args)
61
+ update!(**args)
62
+ end
63
+
64
+ # Update properties of this object
65
+ def update!(**args)
66
+ @analysis_type = args[:analysis_type] if args.key?(:analysis_type)
67
+ end
68
+ end
69
+
50
70
  # AnalyzePackagesMetadata contains metadata for an active scan of a container
51
71
  # image.
52
72
  class AnalyzePackagesMetadata
@@ -761,6 +781,18 @@ module Google
761
781
  class DiscoveryOccurrence
762
782
  include Google::Apis::Core::Hashable
763
783
 
784
+ # Indicates which analysis completed successfully. Multiple types of analysis
785
+ # can be performed on a single resource.
786
+ # Corresponds to the JSON property `analysisCompleted`
787
+ # @return [Google::Apis::OndemandscanningV1beta1::AnalysisCompleted]
788
+ attr_accessor :analysis_completed
789
+
790
+ # Indicates any errors encountered during analysis of a resource. There could be
791
+ # 0 or more of these errors.
792
+ # Corresponds to the JSON property `analysisError`
793
+ # @return [Array<Google::Apis::OndemandscanningV1beta1::Status>]
794
+ attr_accessor :analysis_error
795
+
764
796
  # The status of discovery for the resource.
765
797
  # Corresponds to the JSON property `analysisStatus`
766
798
  # @return [String]
@@ -803,6 +835,8 @@ module Google
803
835
 
804
836
  # Update properties of this object
805
837
  def update!(**args)
838
+ @analysis_completed = args[:analysis_completed] if args.key?(:analysis_completed)
839
+ @analysis_error = args[:analysis_error] if args.key?(:analysis_error)
806
840
  @analysis_status = args[:analysis_status] if args.key?(:analysis_status)
807
841
  @analysis_status_error = args[:analysis_status_error] if args.key?(:analysis_status_error)
808
842
  @archive_time = args[:archive_time] if args.key?(:archive_time)
@@ -1440,6 +1474,32 @@ module Google
1440
1474
  end
1441
1475
  end
1442
1476
 
1477
+ # Indicates a language package available between this package and the customer's
1478
+ # resource artifact.
1479
+ class LanguagePackageDependency
1480
+ include Google::Apis::Core::Hashable
1481
+
1482
+ #
1483
+ # Corresponds to the JSON property `package`
1484
+ # @return [String]
1485
+ attr_accessor :package
1486
+
1487
+ #
1488
+ # Corresponds to the JSON property `version`
1489
+ # @return [String]
1490
+ attr_accessor :version
1491
+
1492
+ def initialize(**args)
1493
+ update!(**args)
1494
+ end
1495
+
1496
+ # Update properties of this object
1497
+ def update!(**args)
1498
+ @package = args[:package] if args.key?(:package)
1499
+ @version = args[:version] if args.key?(:version)
1500
+ end
1501
+ end
1502
+
1443
1503
  # Layer holds metadata specific to a layer of a Docker image.
1444
1504
  class Layer
1445
1505
  include Google::Apis::Core::Hashable
@@ -1899,6 +1959,13 @@ module Google
1899
1959
  # @return [String]
1900
1960
  attr_accessor :cpe_uri
1901
1961
 
1962
+ # The dependency chain between this package and the user's artifact. List in
1963
+ # order from the customer's package under review first, to the current package
1964
+ # last. Inclusive of the original package and the current package.
1965
+ # Corresponds to the JSON property `dependencyChain`
1966
+ # @return [Array<Google::Apis::OndemandscanningV1beta1::LanguagePackageDependency>]
1967
+ attr_accessor :dependency_chain
1968
+
1902
1969
  # The path to the jar file / go binary file.
1903
1970
  # Corresponds to the JSON property `fileLocation`
1904
1971
  # @return [Array<Google::Apis::OndemandscanningV1beta1::FileLocation>]
@@ -1955,6 +2022,7 @@ module Google
1955
2022
  # Update properties of this object
1956
2023
  def update!(**args)
1957
2024
  @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri)
2025
+ @dependency_chain = args[:dependency_chain] if args.key?(:dependency_chain)
1958
2026
  @file_location = args[:file_location] if args.key?(:file_location)
1959
2027
  @hash_digest = args[:hash_digest] if args.key?(:hash_digest)
1960
2028
  @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.25.0"
19
+ GEM_VERSION = "0.28.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.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220530"
25
+ REVISION = "20220711"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,12 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class AnalysisCompleted
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
31
37
  class AnalyzePackagesMetadata
32
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
39
 
@@ -268,6 +274,12 @@ module Google
268
274
  include Google::Apis::Core::JsonObjectSupport
269
275
  end
270
276
 
277
+ class LanguagePackageDependency
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
271
283
  class Layer
272
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
273
285
 
@@ -474,6 +486,13 @@ module Google
474
486
  end
475
487
  end
476
488
 
489
+ class AnalysisCompleted
490
+ # @private
491
+ class Representation < Google::Apis::Core::JsonRepresentation
492
+ collection :analysis_type, as: 'analysisType'
493
+ end
494
+ end
495
+
477
496
  class AnalyzePackagesMetadata
478
497
  # @private
479
498
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -668,6 +687,10 @@ module Google
668
687
  class DiscoveryOccurrence
669
688
  # @private
670
689
  class Representation < Google::Apis::Core::JsonRepresentation
690
+ property :analysis_completed, as: 'analysisCompleted', class: Google::Apis::OndemandscanningV1beta1::AnalysisCompleted, decorator: Google::Apis::OndemandscanningV1beta1::AnalysisCompleted::Representation
691
+
692
+ collection :analysis_error, as: 'analysisError', class: Google::Apis::OndemandscanningV1beta1::Status, decorator: Google::Apis::OndemandscanningV1beta1::Status::Representation
693
+
671
694
  property :analysis_status, as: 'analysisStatus'
672
695
  property :analysis_status_error, as: 'analysisStatusError', class: Google::Apis::OndemandscanningV1beta1::Status, decorator: Google::Apis::OndemandscanningV1beta1::Status::Representation
673
696
 
@@ -871,6 +894,14 @@ module Google
871
894
  end
872
895
  end
873
896
 
897
+ class LanguagePackageDependency
898
+ # @private
899
+ class Representation < Google::Apis::Core::JsonRepresentation
900
+ property :package, as: 'package'
901
+ property :version, as: 'version'
902
+ end
903
+ end
904
+
874
905
  class Layer
875
906
  # @private
876
907
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -995,6 +1026,8 @@ module Google
995
1026
  # @private
996
1027
  class Representation < Google::Apis::Core::JsonRepresentation
997
1028
  property :cpe_uri, as: 'cpeUri'
1029
+ collection :dependency_chain, as: 'dependencyChain', class: Google::Apis::OndemandscanningV1beta1::LanguagePackageDependency, decorator: Google::Apis::OndemandscanningV1beta1::LanguagePackageDependency::Representation
1030
+
998
1031
  collection :file_location, as: 'fileLocation', class: Google::Apis::OndemandscanningV1beta1::FileLocation, decorator: Google::Apis::OndemandscanningV1beta1::FileLocation::Representation
999
1032
 
1000
1033
  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.25.0
4
+ version: 0.28.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-18 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.28.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: []