google-apis-cloudbuild_v1 0.79.0 → 0.80.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/cloudbuild_v1/classes.rb +184 -0
- data/lib/google/apis/cloudbuild_v1/gem_version.rb +3 -3
- data/lib/google/apis/cloudbuild_v1/representations.rb +86 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ba88a7c15e8ec3f9a3fdd06445bb918da9ea24661f2c3ab5e2f2b8cb20f7c71
|
|
4
|
+
data.tar.gz: 8ab7737136c36c875850ce162a0603f4de4556783a577ceb16b60735a0b11ad0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8f2201ae20d14b940e10b565d5eb994bd9745f5b54fa8e5c6e6472ce2dceecdbcb70430d4eda6c822d30363b4aeaff01bbe602d43ce24bde9e41153ca381f1f
|
|
7
|
+
data.tar.gz: 482cc0f865d98464911da4b6b433d3646bdbf2a28a293d13a3e947013a08b8a0711dc8ab9af3cfb1052d045e55356276e9cae508e6b1ea695169f80aa8828918
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1
|
|
2
2
|
|
|
3
|
+
### v0.80.0 (2026-06-10)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260511
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.79.0 (2026-03-15)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20260309
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/cloud-build/docs/) may prov
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -178,6 +178,13 @@ module Google
|
|
|
178
178
|
class Artifacts
|
|
179
179
|
include Google::Apis::Core::Hashable
|
|
180
180
|
|
|
181
|
+
# Optional. A list of generic artifacts to be uploaded to Artifact Registry upon
|
|
182
|
+
# successful completion of all build steps. If any artifacts fail to be pushed,
|
|
183
|
+
# the build is marked FAILURE.
|
|
184
|
+
# Corresponds to the JSON property `genericArtifacts`
|
|
185
|
+
# @return [Array<Google::Apis::CloudbuildV1::GenericArtifact>]
|
|
186
|
+
attr_accessor :generic_artifacts
|
|
187
|
+
|
|
181
188
|
# Optional. A list of Go modules to be uploaded to Artifact Registry upon
|
|
182
189
|
# successful completion of all build steps. If any objects fail to be pushed,
|
|
183
190
|
# the build is marked FAILURE.
|
|
@@ -241,6 +248,7 @@ module Google
|
|
|
241
248
|
|
|
242
249
|
# Update properties of this object
|
|
243
250
|
def update!(**args)
|
|
251
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
244
252
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
245
253
|
@images = args[:images] if args.key?(:images)
|
|
246
254
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
@@ -1234,6 +1242,11 @@ module Google
|
|
|
1234
1242
|
# @return [Google::Apis::CloudbuildV1::TimeSpan]
|
|
1235
1243
|
attr_accessor :pull_timing
|
|
1236
1244
|
|
|
1245
|
+
# Declaration of results for this build step.
|
|
1246
|
+
# Corresponds to the JSON property `results`
|
|
1247
|
+
# @return [Array<Google::Apis::CloudbuildV1::StepResult>]
|
|
1248
|
+
attr_accessor :results
|
|
1249
|
+
|
|
1237
1250
|
# A shell script to be executed in the step. When script is provided, the user
|
|
1238
1251
|
# cannot specify the entrypoint or args.
|
|
1239
1252
|
# Corresponds to the JSON property `script`
|
|
@@ -1300,6 +1313,7 @@ module Google
|
|
|
1300
1313
|
@id = args[:id] if args.key?(:id)
|
|
1301
1314
|
@name = args[:name] if args.key?(:name)
|
|
1302
1315
|
@pull_timing = args[:pull_timing] if args.key?(:pull_timing)
|
|
1316
|
+
@results = args[:results] if args.key?(:results)
|
|
1303
1317
|
@script = args[:script] if args.key?(:script)
|
|
1304
1318
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
|
1305
1319
|
@status = args[:status] if args.key?(:status)
|
|
@@ -1310,6 +1324,25 @@ module Google
|
|
|
1310
1324
|
end
|
|
1311
1325
|
end
|
|
1312
1326
|
|
|
1327
|
+
# Results for a build step.
|
|
1328
|
+
class BuildStepResults
|
|
1329
|
+
include Google::Apis::Core::Hashable
|
|
1330
|
+
|
|
1331
|
+
# Results for a build step.
|
|
1332
|
+
# Corresponds to the JSON property `results`
|
|
1333
|
+
# @return [Hash<String,String>]
|
|
1334
|
+
attr_accessor :results
|
|
1335
|
+
|
|
1336
|
+
def initialize(**args)
|
|
1337
|
+
update!(**args)
|
|
1338
|
+
end
|
|
1339
|
+
|
|
1340
|
+
# Update properties of this object
|
|
1341
|
+
def update!(**args)
|
|
1342
|
+
@results = args[:results] if args.key?(:results)
|
|
1343
|
+
end
|
|
1344
|
+
end
|
|
1345
|
+
|
|
1313
1346
|
# Configuration for an automated build in response to source repository changes.
|
|
1314
1347
|
class BuildTrigger
|
|
1315
1348
|
include Google::Apis::Core::Hashable
|
|
@@ -2018,6 +2051,11 @@ module Google
|
|
|
2018
2051
|
attr_accessor :empty
|
|
2019
2052
|
alias_method :empty?, :empty
|
|
2020
2053
|
|
|
2054
|
+
# Represents a generic artifact as a build dependency.
|
|
2055
|
+
# Corresponds to the JSON property `genericArtifact`
|
|
2056
|
+
# @return [Google::Apis::CloudbuildV1::GenericArtifactDependency]
|
|
2057
|
+
attr_accessor :generic_artifact
|
|
2058
|
+
|
|
2021
2059
|
# Represents a git repository as a build dependency.
|
|
2022
2060
|
# Corresponds to the JSON property `gitSource`
|
|
2023
2061
|
# @return [Google::Apis::CloudbuildV1::GitSourceDependency]
|
|
@@ -2030,6 +2068,7 @@ module Google
|
|
|
2030
2068
|
# Update properties of this object
|
|
2031
2069
|
def update!(**args)
|
|
2032
2070
|
@empty = args[:empty] if args.key?(:empty)
|
|
2071
|
+
@generic_artifact = args[:generic_artifact] if args.key?(:generic_artifact)
|
|
2033
2072
|
@git_source = args[:git_source] if args.key?(:git_source)
|
|
2034
2073
|
end
|
|
2035
2074
|
end
|
|
@@ -2167,6 +2206,61 @@ module Google
|
|
|
2167
2206
|
end
|
|
2168
2207
|
end
|
|
2169
2208
|
|
|
2209
|
+
# Generic artifact to upload to Artifact Registry upon successful completion of
|
|
2210
|
+
# all build steps.
|
|
2211
|
+
class GenericArtifact
|
|
2212
|
+
include Google::Apis::Core::Hashable
|
|
2213
|
+
|
|
2214
|
+
# Required. Path to the generic artifact in the build's workspace to be uploaded
|
|
2215
|
+
# to Artifact Registry.
|
|
2216
|
+
# Corresponds to the JSON property `folder`
|
|
2217
|
+
# @return [String]
|
|
2218
|
+
attr_accessor :folder
|
|
2219
|
+
|
|
2220
|
+
# Required. Registry path to upload the generic artifact to, in the form
|
|
2221
|
+
# projects/$PROJECT/locations/$LOCATION/repositories/$REPO/packages/$PACKAGE/
|
|
2222
|
+
# versions/$VERSION
|
|
2223
|
+
# Corresponds to the JSON property `registryPath`
|
|
2224
|
+
# @return [String]
|
|
2225
|
+
attr_accessor :registry_path
|
|
2226
|
+
|
|
2227
|
+
def initialize(**args)
|
|
2228
|
+
update!(**args)
|
|
2229
|
+
end
|
|
2230
|
+
|
|
2231
|
+
# Update properties of this object
|
|
2232
|
+
def update!(**args)
|
|
2233
|
+
@folder = args[:folder] if args.key?(:folder)
|
|
2234
|
+
@registry_path = args[:registry_path] if args.key?(:registry_path)
|
|
2235
|
+
end
|
|
2236
|
+
end
|
|
2237
|
+
|
|
2238
|
+
# Represents a generic artifact as a build dependency.
|
|
2239
|
+
class GenericArtifactDependency
|
|
2240
|
+
include Google::Apis::Core::Hashable
|
|
2241
|
+
|
|
2242
|
+
# Required. Where the artifact files should be placed on the worker.
|
|
2243
|
+
# Corresponds to the JSON property `destPath`
|
|
2244
|
+
# @return [String]
|
|
2245
|
+
attr_accessor :dest_path
|
|
2246
|
+
|
|
2247
|
+
# Required. The location to download the artifact files from. Ex: projects/p1/
|
|
2248
|
+
# locations/us/repositories/r1/packages/p1/versions/v1
|
|
2249
|
+
# Corresponds to the JSON property `resource`
|
|
2250
|
+
# @return [String]
|
|
2251
|
+
attr_accessor :resource
|
|
2252
|
+
|
|
2253
|
+
def initialize(**args)
|
|
2254
|
+
update!(**args)
|
|
2255
|
+
end
|
|
2256
|
+
|
|
2257
|
+
# Update properties of this object
|
|
2258
|
+
def update!(**args)
|
|
2259
|
+
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
|
2260
|
+
@resource = args[:resource] if args.key?(:resource)
|
|
2261
|
+
end
|
|
2262
|
+
end
|
|
2263
|
+
|
|
2170
2264
|
# GitConfig is a configuration for git operations.
|
|
2171
2265
|
class GitConfig
|
|
2172
2266
|
include Google::Apis::Core::Hashable
|
|
@@ -4043,6 +4137,17 @@ module Google
|
|
|
4043
4137
|
# @return [Array<String>]
|
|
4044
4138
|
attr_accessor :build_step_outputs
|
|
4045
4139
|
|
|
4140
|
+
# Results for build steps. step_id ->
|
|
4141
|
+
# Corresponds to the JSON property `buildStepResults`
|
|
4142
|
+
# @return [Hash<String,Google::Apis::CloudbuildV1::BuildStepResults>]
|
|
4143
|
+
attr_accessor :build_step_results
|
|
4144
|
+
|
|
4145
|
+
# Output only. Generic artifacts uploaded to Artifact Registry at the end of the
|
|
4146
|
+
# build.
|
|
4147
|
+
# Corresponds to the JSON property `genericArtifacts`
|
|
4148
|
+
# @return [Array<Google::Apis::CloudbuildV1::UploadedGenericArtifact>]
|
|
4149
|
+
attr_accessor :generic_artifacts
|
|
4150
|
+
|
|
4046
4151
|
# Optional. Go module artifacts uploaded to Artifact Registry at the end of the
|
|
4047
4152
|
# build.
|
|
4048
4153
|
# Corresponds to the JSON property `goModules`
|
|
@@ -4085,6 +4190,8 @@ module Google
|
|
|
4085
4190
|
@artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
|
|
4086
4191
|
@build_step_images = args[:build_step_images] if args.key?(:build_step_images)
|
|
4087
4192
|
@build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
|
|
4193
|
+
@build_step_results = args[:build_step_results] if args.key?(:build_step_results)
|
|
4194
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
4088
4195
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
4089
4196
|
@images = args[:images] if args.key?(:images)
|
|
4090
4197
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
@@ -4410,6 +4517,37 @@ module Google
|
|
|
4410
4517
|
end
|
|
4411
4518
|
end
|
|
4412
4519
|
|
|
4520
|
+
# StepResult is the declaration of a result for a build step.
|
|
4521
|
+
class StepResult
|
|
4522
|
+
include Google::Apis::Core::Hashable
|
|
4523
|
+
|
|
4524
|
+
# Optional. The content of the attestation to be generated.
|
|
4525
|
+
# Corresponds to the JSON property `attestationContent`
|
|
4526
|
+
# @return [String]
|
|
4527
|
+
attr_accessor :attestation_content
|
|
4528
|
+
|
|
4529
|
+
# Optional. The type of attestation to be generated.
|
|
4530
|
+
# Corresponds to the JSON property `attestationType`
|
|
4531
|
+
# @return [String]
|
|
4532
|
+
attr_accessor :attestation_type
|
|
4533
|
+
|
|
4534
|
+
# Required. The name of the result.
|
|
4535
|
+
# Corresponds to the JSON property `name`
|
|
4536
|
+
# @return [String]
|
|
4537
|
+
attr_accessor :name
|
|
4538
|
+
|
|
4539
|
+
def initialize(**args)
|
|
4540
|
+
update!(**args)
|
|
4541
|
+
end
|
|
4542
|
+
|
|
4543
|
+
# Update properties of this object
|
|
4544
|
+
def update!(**args)
|
|
4545
|
+
@attestation_content = args[:attestation_content] if args.key?(:attestation_content)
|
|
4546
|
+
@attestation_type = args[:attestation_type] if args.key?(:attestation_type)
|
|
4547
|
+
@name = args[:name] if args.key?(:name)
|
|
4548
|
+
end
|
|
4549
|
+
end
|
|
4550
|
+
|
|
4413
4551
|
# Location of the source in an archive file in Cloud Storage.
|
|
4414
4552
|
class StorageSource
|
|
4415
4553
|
include Google::Apis::Core::Hashable
|
|
@@ -4640,6 +4778,52 @@ module Google
|
|
|
4640
4778
|
end
|
|
4641
4779
|
end
|
|
4642
4780
|
|
|
4781
|
+
# A generic artifact uploaded to Artifact Registry using the GenericArtifact
|
|
4782
|
+
# directive.
|
|
4783
|
+
class UploadedGenericArtifact
|
|
4784
|
+
include Google::Apis::Core::Hashable
|
|
4785
|
+
|
|
4786
|
+
# Container message for hashes of byte content of files, used in
|
|
4787
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
|
4788
|
+
# Corresponds to the JSON property `artifactFingerprint`
|
|
4789
|
+
# @return [Google::Apis::CloudbuildV1::FileHashes]
|
|
4790
|
+
attr_accessor :artifact_fingerprint
|
|
4791
|
+
|
|
4792
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
4793
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
4794
|
+
# @return [String]
|
|
4795
|
+
attr_accessor :artifact_registry_package
|
|
4796
|
+
|
|
4797
|
+
# Output only. The file hashes that make up the generic artifact.
|
|
4798
|
+
# Corresponds to the JSON property `fileHashes`
|
|
4799
|
+
# @return [Hash<String,Google::Apis::CloudbuildV1::FileHashes>]
|
|
4800
|
+
attr_accessor :file_hashes
|
|
4801
|
+
|
|
4802
|
+
# Start and end times for a build execution phase.
|
|
4803
|
+
# Corresponds to the JSON property `pushTiming`
|
|
4804
|
+
# @return [Google::Apis::CloudbuildV1::TimeSpan]
|
|
4805
|
+
attr_accessor :push_timing
|
|
4806
|
+
|
|
4807
|
+
# Output only. URI of the uploaded artifact. Ex: projects/p1/locations/us/
|
|
4808
|
+
# repositories/r1/packages/p1/versions/v1
|
|
4809
|
+
# Corresponds to the JSON property `uri`
|
|
4810
|
+
# @return [String]
|
|
4811
|
+
attr_accessor :uri
|
|
4812
|
+
|
|
4813
|
+
def initialize(**args)
|
|
4814
|
+
update!(**args)
|
|
4815
|
+
end
|
|
4816
|
+
|
|
4817
|
+
# Update properties of this object
|
|
4818
|
+
def update!(**args)
|
|
4819
|
+
@artifact_fingerprint = args[:artifact_fingerprint] if args.key?(:artifact_fingerprint)
|
|
4820
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
4821
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
4822
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
4823
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
4824
|
+
end
|
|
4825
|
+
end
|
|
4826
|
+
|
|
4643
4827
|
# A Go module artifact uploaded to Artifact Registry using the GoModule
|
|
4644
4828
|
# directive.
|
|
4645
4829
|
class UploadedGoModule
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudbuildV1
|
|
18
18
|
# Version of the google-apis-cloudbuild_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.80.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260511"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -160,6 +160,12 @@ module Google
|
|
|
160
160
|
include Google::Apis::Core::JsonObjectSupport
|
|
161
161
|
end
|
|
162
162
|
|
|
163
|
+
class BuildStepResults
|
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
165
|
+
|
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
167
|
+
end
|
|
168
|
+
|
|
163
169
|
class BuildTrigger
|
|
164
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
165
171
|
|
|
@@ -292,6 +298,18 @@ module Google
|
|
|
292
298
|
include Google::Apis::Core::JsonObjectSupport
|
|
293
299
|
end
|
|
294
300
|
|
|
301
|
+
class GenericArtifact
|
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
303
|
+
|
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
class GenericArtifactDependency
|
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
309
|
+
|
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
311
|
+
end
|
|
312
|
+
|
|
295
313
|
class GitConfig
|
|
296
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
297
315
|
|
|
@@ -640,6 +658,12 @@ module Google
|
|
|
640
658
|
include Google::Apis::Core::JsonObjectSupport
|
|
641
659
|
end
|
|
642
660
|
|
|
661
|
+
class StepResult
|
|
662
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
663
|
+
|
|
664
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
665
|
+
end
|
|
666
|
+
|
|
643
667
|
class StorageSource
|
|
644
668
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
645
669
|
|
|
@@ -682,6 +706,12 @@ module Google
|
|
|
682
706
|
include Google::Apis::Core::JsonObjectSupport
|
|
683
707
|
end
|
|
684
708
|
|
|
709
|
+
class UploadedGenericArtifact
|
|
710
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
711
|
+
|
|
712
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
713
|
+
end
|
|
714
|
+
|
|
685
715
|
class UploadedGoModule
|
|
686
716
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
687
717
|
|
|
@@ -784,6 +814,8 @@ module Google
|
|
|
784
814
|
class Artifacts
|
|
785
815
|
# @private
|
|
786
816
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
817
|
+
collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::CloudbuildV1::GenericArtifact, decorator: Google::Apis::CloudbuildV1::GenericArtifact::Representation
|
|
818
|
+
|
|
787
819
|
collection :go_modules, as: 'goModules', class: Google::Apis::CloudbuildV1::GoModule, decorator: Google::Apis::CloudbuildV1::GoModule::Representation
|
|
788
820
|
|
|
789
821
|
collection :images, as: 'images'
|
|
@@ -1035,6 +1067,8 @@ module Google
|
|
|
1035
1067
|
property :name, as: 'name'
|
|
1036
1068
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
|
1037
1069
|
|
|
1070
|
+
collection :results, as: 'results', class: Google::Apis::CloudbuildV1::StepResult, decorator: Google::Apis::CloudbuildV1::StepResult::Representation
|
|
1071
|
+
|
|
1038
1072
|
property :script, as: 'script'
|
|
1039
1073
|
collection :secret_env, as: 'secretEnv'
|
|
1040
1074
|
property :status, as: 'status'
|
|
@@ -1047,6 +1081,13 @@ module Google
|
|
|
1047
1081
|
end
|
|
1048
1082
|
end
|
|
1049
1083
|
|
|
1084
|
+
class BuildStepResults
|
|
1085
|
+
# @private
|
|
1086
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1087
|
+
hash :results, as: 'results'
|
|
1088
|
+
end
|
|
1089
|
+
end
|
|
1090
|
+
|
|
1050
1091
|
class BuildTrigger
|
|
1051
1092
|
# @private
|
|
1052
1093
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1231,6 +1272,8 @@ module Google
|
|
|
1231
1272
|
# @private
|
|
1232
1273
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1233
1274
|
property :empty, as: 'empty'
|
|
1275
|
+
property :generic_artifact, as: 'genericArtifact', class: Google::Apis::CloudbuildV1::GenericArtifactDependency, decorator: Google::Apis::CloudbuildV1::GenericArtifactDependency::Representation
|
|
1276
|
+
|
|
1234
1277
|
property :git_source, as: 'gitSource', class: Google::Apis::CloudbuildV1::GitSourceDependency, decorator: Google::Apis::CloudbuildV1::GitSourceDependency::Representation
|
|
1235
1278
|
|
|
1236
1279
|
end
|
|
@@ -1279,6 +1322,22 @@ module Google
|
|
|
1279
1322
|
end
|
|
1280
1323
|
end
|
|
1281
1324
|
|
|
1325
|
+
class GenericArtifact
|
|
1326
|
+
# @private
|
|
1327
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1328
|
+
property :folder, as: 'folder'
|
|
1329
|
+
property :registry_path, as: 'registryPath'
|
|
1330
|
+
end
|
|
1331
|
+
end
|
|
1332
|
+
|
|
1333
|
+
class GenericArtifactDependency
|
|
1334
|
+
# @private
|
|
1335
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1336
|
+
property :dest_path, as: 'destPath'
|
|
1337
|
+
property :resource, as: 'resource'
|
|
1338
|
+
end
|
|
1339
|
+
end
|
|
1340
|
+
|
|
1282
1341
|
class GitConfig
|
|
1283
1342
|
# @private
|
|
1284
1343
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1773,6 +1832,10 @@ module Google
|
|
|
1773
1832
|
|
|
1774
1833
|
collection :build_step_images, as: 'buildStepImages'
|
|
1775
1834
|
collection :build_step_outputs, as: 'buildStepOutputs'
|
|
1835
|
+
hash :build_step_results, as: 'buildStepResults', class: Google::Apis::CloudbuildV1::BuildStepResults, decorator: Google::Apis::CloudbuildV1::BuildStepResults::Representation
|
|
1836
|
+
|
|
1837
|
+
collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::CloudbuildV1::UploadedGenericArtifact, decorator: Google::Apis::CloudbuildV1::UploadedGenericArtifact::Representation
|
|
1838
|
+
|
|
1776
1839
|
collection :go_modules, as: 'goModules', class: Google::Apis::CloudbuildV1::UploadedGoModule, decorator: Google::Apis::CloudbuildV1::UploadedGoModule::Representation
|
|
1777
1840
|
|
|
1778
1841
|
collection :images, as: 'images', class: Google::Apis::CloudbuildV1::BuiltImage, decorator: Google::Apis::CloudbuildV1::BuiltImage::Representation
|
|
@@ -1884,6 +1947,15 @@ module Google
|
|
|
1884
1947
|
end
|
|
1885
1948
|
end
|
|
1886
1949
|
|
|
1950
|
+
class StepResult
|
|
1951
|
+
# @private
|
|
1952
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1953
|
+
property :attestation_content, as: 'attestationContent'
|
|
1954
|
+
property :attestation_type, as: 'attestationType'
|
|
1955
|
+
property :name, as: 'name'
|
|
1956
|
+
end
|
|
1957
|
+
end
|
|
1958
|
+
|
|
1887
1959
|
class StorageSource
|
|
1888
1960
|
# @private
|
|
1889
1961
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1947,6 +2019,20 @@ module Google
|
|
|
1947
2019
|
end
|
|
1948
2020
|
end
|
|
1949
2021
|
|
|
2022
|
+
class UploadedGenericArtifact
|
|
2023
|
+
# @private
|
|
2024
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2025
|
+
property :artifact_fingerprint, as: 'artifactFingerprint', class: Google::Apis::CloudbuildV1::FileHashes, decorator: Google::Apis::CloudbuildV1::FileHashes::Representation
|
|
2026
|
+
|
|
2027
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
2028
|
+
hash :file_hashes, as: 'fileHashes', class: Google::Apis::CloudbuildV1::FileHashes, decorator: Google::Apis::CloudbuildV1::FileHashes::Representation
|
|
2029
|
+
|
|
2030
|
+
property :push_timing, as: 'pushTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
|
2031
|
+
|
|
2032
|
+
property :uri, as: 'uri'
|
|
2033
|
+
end
|
|
2034
|
+
end
|
|
2035
|
+
|
|
1950
2036
|
class UploadedGoModule
|
|
1951
2037
|
# @private
|
|
1952
2038
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudbuild_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.80.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-cloudbuild_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.80.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|