google-apis-ondemandscanning_v1beta1 0.54.0 → 0.55.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: 00752a1867d7faf7faae8ff59896df4d9666118414e0b6a372ef00add84fab3d
|
4
|
+
data.tar.gz: 1f71431cf88b023c810d22dae770e430a0f37ad3d589c61ecc39432f4246c792
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df0265a0c9d99249c0013fa2b3a84f4b2728e4f5f7cf2c9c9dc43ec48c33bdbb606ea7cc7b63427f33672ab8398ba81c2d1b113d6fa79c4fe6fbe7e4b22374f4
|
7
|
+
data.tar.gz: cdb6b9f06f2adccaf3ee135e6d6ea3d1d1604adc411794c3e536157c914e0304289b6201c7c1e7a36642fc62057f4151f94a7ac5b3d5453b286b96829e0314dd
|
data/CHANGELOG.md
CHANGED
@@ -1004,6 +1004,11 @@ module Google
|
|
1004
1004
|
# @return [String]
|
1005
1005
|
attr_accessor :cpe
|
1006
1006
|
|
1007
|
+
# Files that make up the resource described by the occurrence.
|
1008
|
+
# Corresponds to the JSON property `files`
|
1009
|
+
# @return [Array<Google::Apis::OndemandscanningV1beta1::File>]
|
1010
|
+
attr_accessor :files
|
1011
|
+
|
1007
1012
|
# The last time this resource was scanned.
|
1008
1013
|
# Corresponds to the JSON property `lastScanTime`
|
1009
1014
|
# @return [String]
|
@@ -1027,6 +1032,7 @@ module Google
|
|
1027
1032
|
@archive_time = args[:archive_time] if args.key?(:archive_time)
|
1028
1033
|
@continuous_analysis = args[:continuous_analysis] if args.key?(:continuous_analysis)
|
1029
1034
|
@cpe = args[:cpe] if args.key?(:cpe)
|
1035
|
+
@files = args[:files] if args.key?(:files)
|
1030
1036
|
@last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time)
|
1031
1037
|
@sbom_status = args[:sbom_status] if args.key?(:sbom_status)
|
1032
1038
|
end
|
@@ -1107,6 +1113,31 @@ module Google
|
|
1107
1113
|
end
|
1108
1114
|
end
|
1109
1115
|
|
1116
|
+
#
|
1117
|
+
class File
|
1118
|
+
include Google::Apis::Core::Hashable
|
1119
|
+
|
1120
|
+
#
|
1121
|
+
# Corresponds to the JSON property `digest`
|
1122
|
+
# @return [Hash<String,String>]
|
1123
|
+
attr_accessor :digest
|
1124
|
+
|
1125
|
+
#
|
1126
|
+
# Corresponds to the JSON property `name`
|
1127
|
+
# @return [String]
|
1128
|
+
attr_accessor :name
|
1129
|
+
|
1130
|
+
def initialize(**args)
|
1131
|
+
update!(**args)
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
# Update properties of this object
|
1135
|
+
def update!(**args)
|
1136
|
+
@digest = args[:digest] if args.key?(:digest)
|
1137
|
+
@name = args[:name] if args.key?(:name)
|
1138
|
+
end
|
1139
|
+
end
|
1140
|
+
|
1110
1141
|
# Container message for hashes of byte content of files, used in source messages
|
1111
1142
|
# to verify integrity of source input to the build.
|
1112
1143
|
class FileHashes
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.55.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250519"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -196,6 +196,12 @@ module Google
|
|
196
196
|
include Google::Apis::Core::JsonObjectSupport
|
197
197
|
end
|
198
198
|
|
199
|
+
class File
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
199
205
|
class FileHashes
|
200
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
207
|
|
@@ -899,6 +905,8 @@ module Google
|
|
899
905
|
property :archive_time, as: 'archiveTime'
|
900
906
|
property :continuous_analysis, as: 'continuousAnalysis'
|
901
907
|
property :cpe, as: 'cpe'
|
908
|
+
collection :files, as: 'files', class: Google::Apis::OndemandscanningV1beta1::File, decorator: Google::Apis::OndemandscanningV1beta1::File::Representation
|
909
|
+
|
902
910
|
property :last_scan_time, as: 'lastScanTime'
|
903
911
|
property :sbom_status, as: 'sbomStatus', class: Google::Apis::OndemandscanningV1beta1::SbomStatus, decorator: Google::Apis::OndemandscanningV1beta1::SbomStatus::Representation
|
904
912
|
|
@@ -929,6 +937,14 @@ module Google
|
|
929
937
|
end
|
930
938
|
end
|
931
939
|
|
940
|
+
class File
|
941
|
+
# @private
|
942
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
943
|
+
hash :digest, as: 'digest'
|
944
|
+
property :name, as: 'name'
|
945
|
+
end
|
946
|
+
end
|
947
|
+
|
932
948
|
class FileHashes
|
933
949
|
# @private
|
934
950
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-ondemandscanning_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.55.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-ondemandscanning_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.55.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ondemandscanning_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 On-Demand Scanning API V1beta1
|
79
79
|
test_files: []
|