google-apis-containeranalysis_v1 0.59.0 → 0.60.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea0ae0ba5cbce6b8385fc0cf7827920660670064414598b6e0fb74061a63ae78
|
4
|
+
data.tar.gz: f030dc50bc6aadabeceb665f5367389cf4b598350e25763a4841a65632c430f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff02377a3f85806193330c7adfb163803fe33286c4193bd576e5217a15e588b3d89e8a6639eeb0cbfb54fa07dc27a874ee978e7512bf5f105a21ea759929b07c
|
7
|
+
data.tar.gz: 50106ad0bf0f23dde177801485237c4a3e7654fb65f47de07bad24c74205e5eadf0e28a1054b5e782be4db4b607ae968488d36957a9525544229c589e9c1c6c1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1
|
2
2
|
|
3
|
+
### v0.60.0 (2025-06-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250528
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.59.0 (2025-05-18)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250509
|
@@ -2513,9 +2513,8 @@ module Google
|
|
2513
2513
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
|
2514
2514
|
include Google::Apis::Core::Hashable
|
2515
2515
|
|
2516
|
-
# The Developer Connect Git repository link
|
2517
|
-
#
|
2518
|
-
# /gitRepositoryLink/*`
|
2516
|
+
# The Developer Connect Git repository link formatted as `projects/*/locations/*/
|
2517
|
+
# connections/*/gitRepositoryLink/*`
|
2519
2518
|
# Corresponds to the JSON property `developerConnect`
|
2520
2519
|
# @return [String]
|
2521
2520
|
attr_accessor :developer_connect
|
@@ -3686,6 +3685,11 @@ module Google
|
|
3686
3685
|
# @return [String]
|
3687
3686
|
attr_accessor :cpe
|
3688
3687
|
|
3688
|
+
# Files that make up the resource described by the occurrence.
|
3689
|
+
# Corresponds to the JSON property `files`
|
3690
|
+
# @return [Array<Google::Apis::ContaineranalysisV1::File>]
|
3691
|
+
attr_accessor :files
|
3692
|
+
|
3689
3693
|
# The last time this resource was scanned.
|
3690
3694
|
# Corresponds to the JSON property `lastScanTime`
|
3691
3695
|
# @return [String]
|
@@ -3709,6 +3713,7 @@ module Google
|
|
3709
3713
|
@archive_time = args[:archive_time] if args.key?(:archive_time)
|
3710
3714
|
@continuous_analysis = args[:continuous_analysis] if args.key?(:continuous_analysis)
|
3711
3715
|
@cpe = args[:cpe] if args.key?(:cpe)
|
3716
|
+
@files = args[:files] if args.key?(:files)
|
3712
3717
|
@last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time)
|
3713
3718
|
@sbom_status = args[:sbom_status] if args.key?(:sbom_status)
|
3714
3719
|
end
|
@@ -3936,6 +3941,31 @@ module Google
|
|
3936
3941
|
end
|
3937
3942
|
end
|
3938
3943
|
|
3944
|
+
#
|
3945
|
+
class File
|
3946
|
+
include Google::Apis::Core::Hashable
|
3947
|
+
|
3948
|
+
#
|
3949
|
+
# Corresponds to the JSON property `digest`
|
3950
|
+
# @return [Hash<String,String>]
|
3951
|
+
attr_accessor :digest
|
3952
|
+
|
3953
|
+
#
|
3954
|
+
# Corresponds to the JSON property `name`
|
3955
|
+
# @return [String]
|
3956
|
+
attr_accessor :name
|
3957
|
+
|
3958
|
+
def initialize(**args)
|
3959
|
+
update!(**args)
|
3960
|
+
end
|
3961
|
+
|
3962
|
+
# Update properties of this object
|
3963
|
+
def update!(**args)
|
3964
|
+
@digest = args[:digest] if args.key?(:digest)
|
3965
|
+
@name = args[:name] if args.key?(:name)
|
3966
|
+
end
|
3967
|
+
end
|
3968
|
+
|
3939
3969
|
# Container message for hashes of byte content of files, used in source messages
|
3940
3970
|
# to verify integrity of source input to the build.
|
3941
3971
|
class FileHashes
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContaineranalysisV1
|
18
18
|
# Version of the google-apis-containeranalysis_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.60.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250528"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -550,6 +550,12 @@ module Google
|
|
550
550
|
include Google::Apis::Core::JsonObjectSupport
|
551
551
|
end
|
552
552
|
|
553
|
+
class File
|
554
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
|
+
|
556
|
+
include Google::Apis::Core::JsonObjectSupport
|
557
|
+
end
|
558
|
+
|
553
559
|
class FileHashes
|
554
560
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
561
|
|
@@ -2026,6 +2032,8 @@ module Google
|
|
2026
2032
|
property :archive_time, as: 'archiveTime'
|
2027
2033
|
property :continuous_analysis, as: 'continuousAnalysis'
|
2028
2034
|
property :cpe, as: 'cpe'
|
2035
|
+
collection :files, as: 'files', class: Google::Apis::ContaineranalysisV1::File, decorator: Google::Apis::ContaineranalysisV1::File::Representation
|
2036
|
+
|
2029
2037
|
property :last_scan_time, as: 'lastScanTime'
|
2030
2038
|
property :sbom_status, as: 'sbomStatus', class: Google::Apis::ContaineranalysisV1::SbomStatus, decorator: Google::Apis::ContaineranalysisV1::SbomStatus::Representation
|
2031
2039
|
|
@@ -2094,6 +2102,14 @@ module Google
|
|
2094
2102
|
end
|
2095
2103
|
end
|
2096
2104
|
|
2105
|
+
class File
|
2106
|
+
# @private
|
2107
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2108
|
+
hash :digest, as: 'digest'
|
2109
|
+
property :name, as: 'name'
|
2110
|
+
end
|
2111
|
+
end
|
2112
|
+
|
2097
2113
|
class FileHashes
|
2098
2114
|
# @private
|
2099
2115
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-containeranalysis_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.60.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.60.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Container Analysis API V1
|
79
79
|
test_files: []
|