google-apis-cloudbuild_v1 0.78.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 +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/cloudbuild_v1/classes.rb +235 -0
- data/lib/google/apis/cloudbuild_v1/gem_version.rb +3 -3
- data/lib/google/apis/cloudbuild_v1/representations.rb +104 -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,14 @@
|
|
|
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
|
+
|
|
8
|
+
### v0.79.0 (2026-03-15)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20260309
|
|
11
|
+
|
|
3
12
|
### v0.78.0 (2026-01-11)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260106
|
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.
|
|
@@ -218,6 +225,15 @@ module Google
|
|
|
218
225
|
# @return [Google::Apis::CloudbuildV1::ArtifactObjects]
|
|
219
226
|
attr_accessor :objects
|
|
220
227
|
|
|
228
|
+
# Optional. A list of OCI images to be uploaded to Artifact Registry upon
|
|
229
|
+
# successful completion of all build steps. OCI images in the specified paths
|
|
230
|
+
# will be uploaded to the specified Artifact Registry repository using the
|
|
231
|
+
# builder service account's credentials. If any images fail to be pushed, the
|
|
232
|
+
# build is marked FAILURE.
|
|
233
|
+
# Corresponds to the JSON property `oci`
|
|
234
|
+
# @return [Array<Google::Apis::CloudbuildV1::Oci>]
|
|
235
|
+
attr_accessor :oci
|
|
236
|
+
|
|
221
237
|
# A list of Python packages to be uploaded to Artifact Registry upon successful
|
|
222
238
|
# completion of all build steps. The build service account credentials will be
|
|
223
239
|
# used to perform the upload. If any objects fail to be pushed, the build is
|
|
@@ -232,11 +248,13 @@ module Google
|
|
|
232
248
|
|
|
233
249
|
# Update properties of this object
|
|
234
250
|
def update!(**args)
|
|
251
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
235
252
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
236
253
|
@images = args[:images] if args.key?(:images)
|
|
237
254
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
238
255
|
@npm_packages = args[:npm_packages] if args.key?(:npm_packages)
|
|
239
256
|
@objects = args[:objects] if args.key?(:objects)
|
|
257
|
+
@oci = args[:oci] if args.key?(:oci)
|
|
240
258
|
@python_packages = args[:python_packages] if args.key?(:python_packages)
|
|
241
259
|
end
|
|
242
260
|
end
|
|
@@ -1224,6 +1242,11 @@ module Google
|
|
|
1224
1242
|
# @return [Google::Apis::CloudbuildV1::TimeSpan]
|
|
1225
1243
|
attr_accessor :pull_timing
|
|
1226
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
|
+
|
|
1227
1250
|
# A shell script to be executed in the step. When script is provided, the user
|
|
1228
1251
|
# cannot specify the entrypoint or args.
|
|
1229
1252
|
# Corresponds to the JSON property `script`
|
|
@@ -1290,6 +1313,7 @@ module Google
|
|
|
1290
1313
|
@id = args[:id] if args.key?(:id)
|
|
1291
1314
|
@name = args[:name] if args.key?(:name)
|
|
1292
1315
|
@pull_timing = args[:pull_timing] if args.key?(:pull_timing)
|
|
1316
|
+
@results = args[:results] if args.key?(:results)
|
|
1293
1317
|
@script = args[:script] if args.key?(:script)
|
|
1294
1318
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
|
1295
1319
|
@status = args[:status] if args.key?(:status)
|
|
@@ -1300,6 +1324,25 @@ module Google
|
|
|
1300
1324
|
end
|
|
1301
1325
|
end
|
|
1302
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
|
+
|
|
1303
1346
|
# Configuration for an automated build in response to source repository changes.
|
|
1304
1347
|
class BuildTrigger
|
|
1305
1348
|
include Google::Apis::Core::Hashable
|
|
@@ -1550,6 +1593,12 @@ module Google
|
|
|
1550
1593
|
# @return [String]
|
|
1551
1594
|
attr_accessor :name
|
|
1552
1595
|
|
|
1596
|
+
# Output only. The OCI media type of the artifact. Non-OCI images, such as
|
|
1597
|
+
# Docker images, will have an unspecified value.
|
|
1598
|
+
# Corresponds to the JSON property `ociMediaType`
|
|
1599
|
+
# @return [String]
|
|
1600
|
+
attr_accessor :oci_media_type
|
|
1601
|
+
|
|
1553
1602
|
# Start and end times for a build execution phase.
|
|
1554
1603
|
# Corresponds to the JSON property `pushTiming`
|
|
1555
1604
|
# @return [Google::Apis::CloudbuildV1::TimeSpan]
|
|
@@ -1564,6 +1613,7 @@ module Google
|
|
|
1564
1613
|
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
1565
1614
|
@digest = args[:digest] if args.key?(:digest)
|
|
1566
1615
|
@name = args[:name] if args.key?(:name)
|
|
1616
|
+
@oci_media_type = args[:oci_media_type] if args.key?(:oci_media_type)
|
|
1567
1617
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
1568
1618
|
end
|
|
1569
1619
|
end
|
|
@@ -2001,6 +2051,11 @@ module Google
|
|
|
2001
2051
|
attr_accessor :empty
|
|
2002
2052
|
alias_method :empty?, :empty
|
|
2003
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
|
+
|
|
2004
2059
|
# Represents a git repository as a build dependency.
|
|
2005
2060
|
# Corresponds to the JSON property `gitSource`
|
|
2006
2061
|
# @return [Google::Apis::CloudbuildV1::GitSourceDependency]
|
|
@@ -2013,6 +2068,7 @@ module Google
|
|
|
2013
2068
|
# Update properties of this object
|
|
2014
2069
|
def update!(**args)
|
|
2015
2070
|
@empty = args[:empty] if args.key?(:empty)
|
|
2071
|
+
@generic_artifact = args[:generic_artifact] if args.key?(:generic_artifact)
|
|
2016
2072
|
@git_source = args[:git_source] if args.key?(:git_source)
|
|
2017
2073
|
end
|
|
2018
2074
|
end
|
|
@@ -2150,6 +2206,61 @@ module Google
|
|
|
2150
2206
|
end
|
|
2151
2207
|
end
|
|
2152
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
|
+
|
|
2153
2264
|
# GitConfig is a configuration for git operations.
|
|
2154
2265
|
class GitConfig
|
|
2155
2266
|
include Google::Apis::Core::Hashable
|
|
@@ -3398,6 +3509,40 @@ module Google
|
|
|
3398
3509
|
end
|
|
3399
3510
|
end
|
|
3400
3511
|
|
|
3512
|
+
# OCI image to upload to Artifact Registry upon successful completion of all
|
|
3513
|
+
# build steps.
|
|
3514
|
+
class Oci
|
|
3515
|
+
include Google::Apis::Core::Hashable
|
|
3516
|
+
|
|
3517
|
+
# Required. Path on the local file system where to find the container to upload.
|
|
3518
|
+
# e.g. /workspace/my-image.tar
|
|
3519
|
+
# Corresponds to the JSON property `file`
|
|
3520
|
+
# @return [String]
|
|
3521
|
+
attr_accessor :file
|
|
3522
|
+
|
|
3523
|
+
# Required. Registry path to upload the container to. e.g. us-east1-docker.pkg.
|
|
3524
|
+
# dev/my-project/my-repo/my-image
|
|
3525
|
+
# Corresponds to the JSON property `registryPath`
|
|
3526
|
+
# @return [String]
|
|
3527
|
+
attr_accessor :registry_path
|
|
3528
|
+
|
|
3529
|
+
# Optional. Tags to apply to the uploaded image. e.g. latest, 1.0.0
|
|
3530
|
+
# Corresponds to the JSON property `tags`
|
|
3531
|
+
# @return [Array<String>]
|
|
3532
|
+
attr_accessor :tags
|
|
3533
|
+
|
|
3534
|
+
def initialize(**args)
|
|
3535
|
+
update!(**args)
|
|
3536
|
+
end
|
|
3537
|
+
|
|
3538
|
+
# Update properties of this object
|
|
3539
|
+
def update!(**args)
|
|
3540
|
+
@file = args[:file] if args.key?(:file)
|
|
3541
|
+
@registry_path = args[:registry_path] if args.key?(:registry_path)
|
|
3542
|
+
@tags = args[:tags] if args.key?(:tags)
|
|
3543
|
+
end
|
|
3544
|
+
end
|
|
3545
|
+
|
|
3401
3546
|
# This resource represents a long-running operation that is the result of a
|
|
3402
3547
|
# network API call.
|
|
3403
3548
|
class Operation
|
|
@@ -3992,6 +4137,17 @@ module Google
|
|
|
3992
4137
|
# @return [Array<String>]
|
|
3993
4138
|
attr_accessor :build_step_outputs
|
|
3994
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
|
+
|
|
3995
4151
|
# Optional. Go module artifacts uploaded to Artifact Registry at the end of the
|
|
3996
4152
|
# build.
|
|
3997
4153
|
# Corresponds to the JSON property `goModules`
|
|
@@ -4034,6 +4190,8 @@ module Google
|
|
|
4034
4190
|
@artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
|
|
4035
4191
|
@build_step_images = args[:build_step_images] if args.key?(:build_step_images)
|
|
4036
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)
|
|
4037
4195
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
4038
4196
|
@images = args[:images] if args.key?(:images)
|
|
4039
4197
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
@@ -4359,6 +4517,37 @@ module Google
|
|
|
4359
4517
|
end
|
|
4360
4518
|
end
|
|
4361
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
|
+
|
|
4362
4551
|
# Location of the source in an archive file in Cloud Storage.
|
|
4363
4552
|
class StorageSource
|
|
4364
4553
|
include Google::Apis::Core::Hashable
|
|
@@ -4589,6 +4778,52 @@ module Google
|
|
|
4589
4778
|
end
|
|
4590
4779
|
end
|
|
4591
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
|
+
|
|
4592
4827
|
# A Go module artifact uploaded to Artifact Registry using the GoModule
|
|
4593
4828
|
# directive.
|
|
4594
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
|
|
|
@@ -484,6 +502,12 @@ module Google
|
|
|
484
502
|
include Google::Apis::Core::JsonObjectSupport
|
|
485
503
|
end
|
|
486
504
|
|
|
505
|
+
class Oci
|
|
506
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
507
|
+
|
|
508
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
509
|
+
end
|
|
510
|
+
|
|
487
511
|
class Operation
|
|
488
512
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
489
513
|
|
|
@@ -634,6 +658,12 @@ module Google
|
|
|
634
658
|
include Google::Apis::Core::JsonObjectSupport
|
|
635
659
|
end
|
|
636
660
|
|
|
661
|
+
class StepResult
|
|
662
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
663
|
+
|
|
664
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
665
|
+
end
|
|
666
|
+
|
|
637
667
|
class StorageSource
|
|
638
668
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
639
669
|
|
|
@@ -676,6 +706,12 @@ module Google
|
|
|
676
706
|
include Google::Apis::Core::JsonObjectSupport
|
|
677
707
|
end
|
|
678
708
|
|
|
709
|
+
class UploadedGenericArtifact
|
|
710
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
711
|
+
|
|
712
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
713
|
+
end
|
|
714
|
+
|
|
679
715
|
class UploadedGoModule
|
|
680
716
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
681
717
|
|
|
@@ -778,6 +814,8 @@ module Google
|
|
|
778
814
|
class Artifacts
|
|
779
815
|
# @private
|
|
780
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
|
+
|
|
781
819
|
collection :go_modules, as: 'goModules', class: Google::Apis::CloudbuildV1::GoModule, decorator: Google::Apis::CloudbuildV1::GoModule::Representation
|
|
782
820
|
|
|
783
821
|
collection :images, as: 'images'
|
|
@@ -787,6 +825,8 @@ module Google
|
|
|
787
825
|
|
|
788
826
|
property :objects, as: 'objects', class: Google::Apis::CloudbuildV1::ArtifactObjects, decorator: Google::Apis::CloudbuildV1::ArtifactObjects::Representation
|
|
789
827
|
|
|
828
|
+
collection :oci, as: 'oci', class: Google::Apis::CloudbuildV1::Oci, decorator: Google::Apis::CloudbuildV1::Oci::Representation
|
|
829
|
+
|
|
790
830
|
collection :python_packages, as: 'pythonPackages', class: Google::Apis::CloudbuildV1::PythonPackage, decorator: Google::Apis::CloudbuildV1::PythonPackage::Representation
|
|
791
831
|
|
|
792
832
|
end
|
|
@@ -1027,6 +1067,8 @@ module Google
|
|
|
1027
1067
|
property :name, as: 'name'
|
|
1028
1068
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
|
1029
1069
|
|
|
1070
|
+
collection :results, as: 'results', class: Google::Apis::CloudbuildV1::StepResult, decorator: Google::Apis::CloudbuildV1::StepResult::Representation
|
|
1071
|
+
|
|
1030
1072
|
property :script, as: 'script'
|
|
1031
1073
|
collection :secret_env, as: 'secretEnv'
|
|
1032
1074
|
property :status, as: 'status'
|
|
@@ -1039,6 +1081,13 @@ module Google
|
|
|
1039
1081
|
end
|
|
1040
1082
|
end
|
|
1041
1083
|
|
|
1084
|
+
class BuildStepResults
|
|
1085
|
+
# @private
|
|
1086
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1087
|
+
hash :results, as: 'results'
|
|
1088
|
+
end
|
|
1089
|
+
end
|
|
1090
|
+
|
|
1042
1091
|
class BuildTrigger
|
|
1043
1092
|
# @private
|
|
1044
1093
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1091,6 +1140,7 @@ module Google
|
|
|
1091
1140
|
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1092
1141
|
property :digest, as: 'digest'
|
|
1093
1142
|
property :name, as: 'name'
|
|
1143
|
+
property :oci_media_type, as: 'ociMediaType'
|
|
1094
1144
|
property :push_timing, as: 'pushTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
|
1095
1145
|
|
|
1096
1146
|
end
|
|
@@ -1222,6 +1272,8 @@ module Google
|
|
|
1222
1272
|
# @private
|
|
1223
1273
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1224
1274
|
property :empty, as: 'empty'
|
|
1275
|
+
property :generic_artifact, as: 'genericArtifact', class: Google::Apis::CloudbuildV1::GenericArtifactDependency, decorator: Google::Apis::CloudbuildV1::GenericArtifactDependency::Representation
|
|
1276
|
+
|
|
1225
1277
|
property :git_source, as: 'gitSource', class: Google::Apis::CloudbuildV1::GitSourceDependency, decorator: Google::Apis::CloudbuildV1::GitSourceDependency::Representation
|
|
1226
1278
|
|
|
1227
1279
|
end
|
|
@@ -1270,6 +1322,22 @@ module Google
|
|
|
1270
1322
|
end
|
|
1271
1323
|
end
|
|
1272
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
|
+
|
|
1273
1341
|
class GitConfig
|
|
1274
1342
|
# @private
|
|
1275
1343
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1601,6 +1669,15 @@ module Google
|
|
|
1601
1669
|
end
|
|
1602
1670
|
end
|
|
1603
1671
|
|
|
1672
|
+
class Oci
|
|
1673
|
+
# @private
|
|
1674
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1675
|
+
property :file, as: 'file'
|
|
1676
|
+
property :registry_path, as: 'registryPath'
|
|
1677
|
+
collection :tags, as: 'tags'
|
|
1678
|
+
end
|
|
1679
|
+
end
|
|
1680
|
+
|
|
1604
1681
|
class Operation
|
|
1605
1682
|
# @private
|
|
1606
1683
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1755,6 +1832,10 @@ module Google
|
|
|
1755
1832
|
|
|
1756
1833
|
collection :build_step_images, as: 'buildStepImages'
|
|
1757
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
|
+
|
|
1758
1839
|
collection :go_modules, as: 'goModules', class: Google::Apis::CloudbuildV1::UploadedGoModule, decorator: Google::Apis::CloudbuildV1::UploadedGoModule::Representation
|
|
1759
1840
|
|
|
1760
1841
|
collection :images, as: 'images', class: Google::Apis::CloudbuildV1::BuiltImage, decorator: Google::Apis::CloudbuildV1::BuiltImage::Representation
|
|
@@ -1866,6 +1947,15 @@ module Google
|
|
|
1866
1947
|
end
|
|
1867
1948
|
end
|
|
1868
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
|
+
|
|
1869
1959
|
class StorageSource
|
|
1870
1960
|
# @private
|
|
1871
1961
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1929,6 +2019,20 @@ module Google
|
|
|
1929
2019
|
end
|
|
1930
2020
|
end
|
|
1931
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
|
+
|
|
1932
2036
|
class UploadedGoModule
|
|
1933
2037
|
# @private
|
|
1934
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
|
- - ">="
|