google-apis-containeranalysis_v1beta1 0.26.0 → 0.27.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: 1da5485c69700c4d5c8877fa80ba9c5dd3b9758dcfdd678deffde4d0b05f176a
|
4
|
+
data.tar.gz: 1b9c754721bf6320e7a93ab96db8b02372f6626c3e4418a60d154a0941d25325
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d62ad8c3de199ffa0e0f5f1a04a0b0d6e54ee86039f154c6684cf7d1623fb141534e57c7fada9585abc3640e1eef0918d5d30c15483b849056d9242658bed5c5
|
7
|
+
data.tar.gz: 3c48ec94035770cf36dc9f73f1526f50cc4c97ab94a14781a8c639ac227828eb242645d6b6cf2c67781e94aa582ea6c0f905e11b3e4ae50b3344ab0898956326
|
data/CHANGELOG.md
CHANGED
@@ -921,12 +921,29 @@ module Google
|
|
921
921
|
# @return [Array<String>]
|
922
922
|
attr_accessor :images
|
923
923
|
|
924
|
+
# A list of Maven artifacts to be uploaded to Artifact Registry upon successful
|
925
|
+
# completion of all build steps. Artifacts in the workspace matching specified
|
926
|
+
# paths globs will be uploaded to the specified Artifact Registry repository
|
927
|
+
# using the builder service account's credentials. If any artifacts fail to be
|
928
|
+
# pushed, the build is marked FAILURE.
|
929
|
+
# Corresponds to the JSON property `mavenArtifacts`
|
930
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact>]
|
931
|
+
attr_accessor :maven_artifacts
|
932
|
+
|
924
933
|
# Files in the workspace to upload to Cloud Storage upon successful completion
|
925
934
|
# of all build steps.
|
926
935
|
# Corresponds to the JSON property `objects`
|
927
936
|
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects]
|
928
937
|
attr_accessor :objects
|
929
938
|
|
939
|
+
# A list of Python packages to be uploaded to Artifact Registry upon successful
|
940
|
+
# completion of all build steps. The build service account credentials will be
|
941
|
+
# used to perform the upload. If any objects fail to be pushed, the build is
|
942
|
+
# marked FAILURE.
|
943
|
+
# Corresponds to the JSON property `pythonPackages`
|
944
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage>]
|
945
|
+
attr_accessor :python_packages
|
946
|
+
|
930
947
|
def initialize(**args)
|
931
948
|
update!(**args)
|
932
949
|
end
|
@@ -934,7 +951,9 @@ module Google
|
|
934
951
|
# Update properties of this object
|
935
952
|
def update!(**args)
|
936
953
|
@images = args[:images] if args.key?(:images)
|
954
|
+
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
937
955
|
@objects = args[:objects] if args.key?(:objects)
|
956
|
+
@python_packages = args[:python_packages] if args.key?(:python_packages)
|
938
957
|
end
|
939
958
|
end
|
940
959
|
|
@@ -973,6 +992,85 @@ module Google
|
|
973
992
|
end
|
974
993
|
end
|
975
994
|
|
995
|
+
# A Maven artifact to upload to Artifact Registry upon successful completion of
|
996
|
+
# all build steps.
|
997
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
|
998
|
+
include Google::Apis::Core::Hashable
|
999
|
+
|
1000
|
+
# Maven `artifactId` value used when uploading the artifact to Artifact Registry.
|
1001
|
+
# Corresponds to the JSON property `artifactId`
|
1002
|
+
# @return [String]
|
1003
|
+
attr_accessor :artifact_id
|
1004
|
+
|
1005
|
+
# Maven `groupId` value used when uploading the artifact to Artifact Registry.
|
1006
|
+
# Corresponds to the JSON property `groupId`
|
1007
|
+
# @return [String]
|
1008
|
+
attr_accessor :group_id
|
1009
|
+
|
1010
|
+
# Path to an artifact in the build's workspace to be uploaded to Artifact
|
1011
|
+
# Registry. This can be either an absolute path, e.g. /workspace/my-app/target/
|
1012
|
+
# my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/
|
1013
|
+
# my-app-1.0.SNAPSHOT.jar.
|
1014
|
+
# Corresponds to the JSON property `path`
|
1015
|
+
# @return [String]
|
1016
|
+
attr_accessor :path
|
1017
|
+
|
1018
|
+
# Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$
|
1019
|
+
# PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be
|
1020
|
+
# uploaded to Artifact Registry with this location as a prefix.
|
1021
|
+
# Corresponds to the JSON property `repository`
|
1022
|
+
# @return [String]
|
1023
|
+
attr_accessor :repository
|
1024
|
+
|
1025
|
+
# Maven `version` value used when uploading the artifact to Artifact Registry.
|
1026
|
+
# Corresponds to the JSON property `version`
|
1027
|
+
# @return [String]
|
1028
|
+
attr_accessor :version
|
1029
|
+
|
1030
|
+
def initialize(**args)
|
1031
|
+
update!(**args)
|
1032
|
+
end
|
1033
|
+
|
1034
|
+
# Update properties of this object
|
1035
|
+
def update!(**args)
|
1036
|
+
@artifact_id = args[:artifact_id] if args.key?(:artifact_id)
|
1037
|
+
@group_id = args[:group_id] if args.key?(:group_id)
|
1038
|
+
@path = args[:path] if args.key?(:path)
|
1039
|
+
@repository = args[:repository] if args.key?(:repository)
|
1040
|
+
@version = args[:version] if args.key?(:version)
|
1041
|
+
end
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
# Python package to upload to Artifact Registry upon successful completion of
|
1045
|
+
# all build steps. A package can encapsulate multiple objects to be uploaded to
|
1046
|
+
# a single repository.
|
1047
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage
|
1048
|
+
include Google::Apis::Core::Hashable
|
1049
|
+
|
1050
|
+
# Path globs used to match files in the build's workspace. For Python/ Twine,
|
1051
|
+
# this is usually `dist/*`, and sometimes additionally an `.asc` file.
|
1052
|
+
# Corresponds to the JSON property `paths`
|
1053
|
+
# @return [Array<String>]
|
1054
|
+
attr_accessor :paths
|
1055
|
+
|
1056
|
+
# Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$
|
1057
|
+
# PROJECT/$REPOSITORY" Files in the workspace matching any path pattern will be
|
1058
|
+
# uploaded to Artifact Registry with this location as a prefix.
|
1059
|
+
# Corresponds to the JSON property `repository`
|
1060
|
+
# @return [String]
|
1061
|
+
attr_accessor :repository
|
1062
|
+
|
1063
|
+
def initialize(**args)
|
1064
|
+
update!(**args)
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
# Update properties of this object
|
1068
|
+
def update!(**args)
|
1069
|
+
@paths = args[:paths] if args.key?(:paths)
|
1070
|
+
@repository = args[:repository] if args.key?(:repository)
|
1071
|
+
end
|
1072
|
+
end
|
1073
|
+
|
976
1074
|
# A build resource in the Cloud Build API. At a high level, a `Build` describes
|
977
1075
|
# where to find source code, how to build it (for example, the builder image to
|
978
1076
|
# run on the source), and where to store the built artifacts. Fields can include
|
@@ -1147,10 +1245,10 @@ module Google
|
|
1147
1245
|
attr_accessor :timeout
|
1148
1246
|
|
1149
1247
|
# Output only. Stores timing information for phases of the build. Valid keys are:
|
1150
|
-
# * BUILD: time to execute all build steps. * PUSH: time to push all
|
1151
|
-
#
|
1152
|
-
#
|
1153
|
-
# included.
|
1248
|
+
# * BUILD: time to execute all build steps. * PUSH: time to push all artifacts
|
1249
|
+
# including docker images and non docker artifacts. * FETCHSOURCE: time to fetch
|
1250
|
+
# source. * SETUPBUILD: time to set up build. If the build does not specify
|
1251
|
+
# source or images, these keys will not be included.
|
1154
1252
|
# Corresponds to the JSON property `timing`
|
1155
1253
|
# @return [Hash<String,Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan>]
|
1156
1254
|
attr_accessor :timing
|
@@ -1759,7 +1857,8 @@ module Google
|
|
1759
1857
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Results
|
1760
1858
|
include Google::Apis::Core::Hashable
|
1761
1859
|
|
1762
|
-
# Path to the artifact manifest
|
1860
|
+
# Path to the artifact manifest for non-container artifacts uploaded to Cloud
|
1861
|
+
# Storage. Only populated when artifacts are uploaded to Cloud Storage.
|
1763
1862
|
# Corresponds to the JSON property `artifactManifest`
|
1764
1863
|
# @return [String]
|
1765
1864
|
attr_accessor :artifact_manifest
|
@@ -1787,11 +1886,22 @@ module Google
|
|
1787
1886
|
# @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage>]
|
1788
1887
|
attr_accessor :images
|
1789
1888
|
|
1790
|
-
#
|
1889
|
+
# Maven artifacts uploaded to Artifact Registry at the end of the build.
|
1890
|
+
# Corresponds to the JSON property `mavenArtifacts`
|
1891
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact>]
|
1892
|
+
attr_accessor :maven_artifacts
|
1893
|
+
|
1894
|
+
# Number of non-container artifacts uploaded to Cloud Storage. Only populated
|
1895
|
+
# when artifacts are uploaded to Cloud Storage.
|
1791
1896
|
# Corresponds to the JSON property `numArtifacts`
|
1792
1897
|
# @return [Fixnum]
|
1793
1898
|
attr_accessor :num_artifacts
|
1794
1899
|
|
1900
|
+
# Python artifacts uploaded to Artifact Registry at the end of the build.
|
1901
|
+
# Corresponds to the JSON property `pythonPackages`
|
1902
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage>]
|
1903
|
+
attr_accessor :python_packages
|
1904
|
+
|
1795
1905
|
def initialize(**args)
|
1796
1906
|
update!(**args)
|
1797
1907
|
end
|
@@ -1803,7 +1913,9 @@ module Google
|
|
1803
1913
|
@build_step_images = args[:build_step_images] if args.key?(:build_step_images)
|
1804
1914
|
@build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
|
1805
1915
|
@images = args[:images] if args.key?(:images)
|
1916
|
+
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
1806
1917
|
@num_artifacts = args[:num_artifacts] if args.key?(:num_artifacts)
|
1918
|
+
@python_packages = args[:python_packages] if args.key?(:python_packages)
|
1807
1919
|
end
|
1808
1920
|
end
|
1809
1921
|
|
@@ -2067,6 +2179,70 @@ module Google
|
|
2067
2179
|
end
|
2068
2180
|
end
|
2069
2181
|
|
2182
|
+
# A Maven artifact uploaded using the MavenArtifact directive.
|
2183
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
|
2184
|
+
include Google::Apis::Core::Hashable
|
2185
|
+
|
2186
|
+
# Container message for hashes of byte content of files, used in
|
2187
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
2188
|
+
# Corresponds to the JSON property `fileHashes`
|
2189
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
|
2190
|
+
attr_accessor :file_hashes
|
2191
|
+
|
2192
|
+
# Start and end times for a build execution phase.
|
2193
|
+
# Corresponds to the JSON property `pushTiming`
|
2194
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
2195
|
+
attr_accessor :push_timing
|
2196
|
+
|
2197
|
+
# URI of the uploaded artifact.
|
2198
|
+
# Corresponds to the JSON property `uri`
|
2199
|
+
# @return [String]
|
2200
|
+
attr_accessor :uri
|
2201
|
+
|
2202
|
+
def initialize(**args)
|
2203
|
+
update!(**args)
|
2204
|
+
end
|
2205
|
+
|
2206
|
+
# Update properties of this object
|
2207
|
+
def update!(**args)
|
2208
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
2209
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
2210
|
+
@uri = args[:uri] if args.key?(:uri)
|
2211
|
+
end
|
2212
|
+
end
|
2213
|
+
|
2214
|
+
# Artifact uploaded using the PythonPackage directive.
|
2215
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
|
2216
|
+
include Google::Apis::Core::Hashable
|
2217
|
+
|
2218
|
+
# Container message for hashes of byte content of files, used in
|
2219
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
2220
|
+
# Corresponds to the JSON property `fileHashes`
|
2221
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
|
2222
|
+
attr_accessor :file_hashes
|
2223
|
+
|
2224
|
+
# Start and end times for a build execution phase.
|
2225
|
+
# Corresponds to the JSON property `pushTiming`
|
2226
|
+
# @return [Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
2227
|
+
attr_accessor :push_timing
|
2228
|
+
|
2229
|
+
# URI of the uploaded artifact.
|
2230
|
+
# Corresponds to the JSON property `uri`
|
2231
|
+
# @return [String]
|
2232
|
+
attr_accessor :uri
|
2233
|
+
|
2234
|
+
def initialize(**args)
|
2235
|
+
update!(**args)
|
2236
|
+
end
|
2237
|
+
|
2238
|
+
# Update properties of this object
|
2239
|
+
def update!(**args)
|
2240
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
2241
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
2242
|
+
@uri = args[:uri] if args.key?(:uri)
|
2243
|
+
end
|
2244
|
+
end
|
2245
|
+
|
2070
2246
|
# Volume describes a Docker container volume which is mounted into build steps
|
2071
2247
|
# in order to persist files across build step execution.
|
2072
2248
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Volume
|
@@ -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.27.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.10.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221001"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -172,6 +172,18 @@ module Google
|
|
172
172
|
include Google::Apis::Core::JsonObjectSupport
|
173
173
|
end
|
174
174
|
|
175
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
181
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
175
187
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Build
|
176
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
189
|
|
@@ -298,6 +310,18 @@ module Google
|
|
298
310
|
include Google::Apis::Core::JsonObjectSupport
|
299
311
|
end
|
300
312
|
|
313
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
319
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
301
325
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Volume
|
302
326
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
327
|
|
@@ -1007,8 +1031,12 @@ module Google
|
|
1007
1031
|
# @private
|
1008
1032
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1009
1033
|
collection :images, as: 'images'
|
1034
|
+
collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact::Representation
|
1035
|
+
|
1010
1036
|
property :objects, as: 'objects', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects::Representation
|
1011
1037
|
|
1038
|
+
collection :python_packages, as: 'pythonPackages', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage::Representation
|
1039
|
+
|
1012
1040
|
end
|
1013
1041
|
end
|
1014
1042
|
|
@@ -1022,6 +1050,25 @@ module Google
|
|
1022
1050
|
end
|
1023
1051
|
end
|
1024
1052
|
|
1053
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact
|
1054
|
+
# @private
|
1055
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1056
|
+
property :artifact_id, as: 'artifactId'
|
1057
|
+
property :group_id, as: 'groupId'
|
1058
|
+
property :path, as: 'path'
|
1059
|
+
property :repository, as: 'repository'
|
1060
|
+
property :version, as: 'version'
|
1061
|
+
end
|
1062
|
+
end
|
1063
|
+
|
1064
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage
|
1065
|
+
# @private
|
1066
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1067
|
+
collection :paths, as: 'paths'
|
1068
|
+
property :repository, as: 'repository'
|
1069
|
+
end
|
1070
|
+
end
|
1071
|
+
|
1025
1072
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Build
|
1026
1073
|
# @private
|
1027
1074
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1208,7 +1255,11 @@ module Google
|
|
1208
1255
|
collection :build_step_outputs, as: 'buildStepOutputs'
|
1209
1256
|
collection :images, as: 'images', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage::Representation
|
1210
1257
|
|
1258
|
+
collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact::Representation
|
1259
|
+
|
1211
1260
|
property :num_artifacts, :numeric_string => true, as: 'numArtifacts'
|
1261
|
+
collection :python_packages, as: 'pythonPackages', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage::Representation
|
1262
|
+
|
1212
1263
|
end
|
1213
1264
|
end
|
1214
1265
|
|
@@ -1290,6 +1341,28 @@ module Google
|
|
1290
1341
|
end
|
1291
1342
|
end
|
1292
1343
|
|
1344
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedMavenArtifact
|
1345
|
+
# @private
|
1346
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1347
|
+
property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
1348
|
+
|
1349
|
+
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
1350
|
+
|
1351
|
+
property :uri, as: 'uri'
|
1352
|
+
end
|
1353
|
+
end
|
1354
|
+
|
1355
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedPythonPackage
|
1356
|
+
# @private
|
1357
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1358
|
+
property :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
1359
|
+
|
1360
|
+
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
1361
|
+
|
1362
|
+
property :uri, as: 'uri'
|
1363
|
+
end
|
1364
|
+
end
|
1365
|
+
|
1293
1366
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Volume
|
1294
1367
|
# @private
|
1295
1368
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.27.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-10-
|
11
|
+
date: 2022-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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-containeranalysis_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.27.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|