google-apis-containeranalysis_v1beta1 0.62.0 → 0.63.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: 548770a31689806bd0e648ecd81429d7470ad4b69c607d946bab85f9eb4dbb98
|
4
|
+
data.tar.gz: 2c28f976ddeb01ba1099e14c3b4f42aa1e9f0b581ba699af59cd2fa0c10af451
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd3ac733a833547f228e7af77c324ab81533c806fc67e228ba8ccd5dd6c878a9a9bbeeb8b43b5c49d0731bc7702e3a498aeb1fcb58f5f70a7d7b3e2fbb54f0a2
|
7
|
+
data.tar.gz: '05958da3addbd381eff7262b0cf500585cc7368be305d484b5bfe5c87298c940e7a77a9f9d32ca419075c33810341cee2c9afa47969fb046c2fb13e1b67b89ff'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1beta1
|
2
2
|
|
3
|
+
### v0.63.0 (2025-06-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250528
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.62.0 (2025-05-04)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250425
|
@@ -2312,9 +2312,8 @@ module Google
|
|
2312
2312
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
|
2313
2313
|
include Google::Apis::Core::Hashable
|
2314
2314
|
|
2315
|
-
# The Developer Connect Git repository link
|
2316
|
-
#
|
2317
|
-
# /gitRepositoryLink/*`
|
2315
|
+
# The Developer Connect Git repository link formatted as `projects/*/locations/*/
|
2316
|
+
# connections/*/gitRepositoryLink/*`
|
2318
2317
|
# Corresponds to the JSON property `developerConnect`
|
2319
2318
|
# @return [String]
|
2320
2319
|
attr_accessor :developer_connect
|
@@ -3427,6 +3426,11 @@ module Google
|
|
3427
3426
|
# @return [String]
|
3428
3427
|
attr_accessor :continuous_analysis
|
3429
3428
|
|
3429
|
+
# Files that make up the resource described by the occurrence.
|
3430
|
+
# Corresponds to the JSON property `files`
|
3431
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::File>]
|
3432
|
+
attr_accessor :files
|
3433
|
+
|
3430
3434
|
# The last time continuous analysis was done for this resource. Deprecated, do
|
3431
3435
|
# not use.
|
3432
3436
|
# Corresponds to the JSON property `lastAnalysisTime`
|
@@ -3454,6 +3458,7 @@ module Google
|
|
3454
3458
|
@analysis_status = args[:analysis_status] if args.key?(:analysis_status)
|
3455
3459
|
@analysis_status_error = args[:analysis_status_error] if args.key?(:analysis_status_error)
|
3456
3460
|
@continuous_analysis = args[:continuous_analysis] if args.key?(:continuous_analysis)
|
3461
|
+
@files = args[:files] if args.key?(:files)
|
3457
3462
|
@last_analysis_time = args[:last_analysis_time] if args.key?(:last_analysis_time)
|
3458
3463
|
@last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time)
|
3459
3464
|
@sbom_status = args[:sbom_status] if args.key?(:sbom_status)
|
@@ -3864,6 +3869,31 @@ module Google
|
|
3864
3869
|
end
|
3865
3870
|
end
|
3866
3871
|
|
3872
|
+
#
|
3873
|
+
class File
|
3874
|
+
include Google::Apis::Core::Hashable
|
3875
|
+
|
3876
|
+
#
|
3877
|
+
# Corresponds to the JSON property `digest`
|
3878
|
+
# @return [Hash<String,String>]
|
3879
|
+
attr_accessor :digest
|
3880
|
+
|
3881
|
+
#
|
3882
|
+
# Corresponds to the JSON property `name`
|
3883
|
+
# @return [String]
|
3884
|
+
attr_accessor :name
|
3885
|
+
|
3886
|
+
def initialize(**args)
|
3887
|
+
update!(**args)
|
3888
|
+
end
|
3889
|
+
|
3890
|
+
# Update properties of this object
|
3891
|
+
def update!(**args)
|
3892
|
+
@digest = args[:digest] if args.key?(:digest)
|
3893
|
+
@name = args[:name] if args.key?(:name)
|
3894
|
+
end
|
3895
|
+
end
|
3896
|
+
|
3867
3897
|
# Container message for hashes of byte content of files, used in source messages
|
3868
3898
|
# to verify integrity of source input to the build.
|
3869
3899
|
class FileHashes
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContaineranalysisV1beta1
|
18
18
|
# Version of the google-apis-containeranalysis_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.63.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
|
@@ -538,6 +538,12 @@ module Google
|
|
538
538
|
include Google::Apis::Core::JsonObjectSupport
|
539
539
|
end
|
540
540
|
|
541
|
+
class File
|
542
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
|
+
|
544
|
+
include Google::Apis::Core::JsonObjectSupport
|
545
|
+
end
|
546
|
+
|
541
547
|
class FileHashes
|
542
548
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
549
|
|
@@ -1893,6 +1899,8 @@ module Google
|
|
1893
1899
|
property :analysis_status_error, as: 'analysisStatusError', class: Google::Apis::ContaineranalysisV1beta1::Status, decorator: Google::Apis::ContaineranalysisV1beta1::Status::Representation
|
1894
1900
|
|
1895
1901
|
property :continuous_analysis, as: 'continuousAnalysis'
|
1902
|
+
collection :files, as: 'files', class: Google::Apis::ContaineranalysisV1beta1::File, decorator: Google::Apis::ContaineranalysisV1beta1::File::Representation
|
1903
|
+
|
1896
1904
|
property :last_analysis_time, as: 'lastAnalysisTime'
|
1897
1905
|
property :last_scan_time, as: 'lastScanTime'
|
1898
1906
|
property :sbom_status, as: 'sbomStatus', class: Google::Apis::ContaineranalysisV1beta1::SbomStatus, decorator: Google::Apis::ContaineranalysisV1beta1::SbomStatus::Representation
|
@@ -2007,6 +2015,14 @@ module Google
|
|
2007
2015
|
end
|
2008
2016
|
end
|
2009
2017
|
|
2018
|
+
class File
|
2019
|
+
# @private
|
2020
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2021
|
+
hash :digest, as: 'digest'
|
2022
|
+
property :name, as: 'name'
|
2023
|
+
end
|
2024
|
+
end
|
2025
|
+
|
2010
2026
|
class FileHashes
|
2011
2027
|
# @private
|
2012
2028
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-containeranalysis_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.63.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_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.63.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
|
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 V1beta1
|
79
79
|
test_files: []
|