google-apis-cloudbuild_v1 0.75.0 → 0.77.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: 981e8e7452a41e88f3eeb978f02c880fa1cc576fa4298cf86ba0d22a8693c557
|
|
4
|
+
data.tar.gz: c8b826b08b172962bf636497643c1d01383e72e5dca6e748c5065e477e5b8392
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c33818ae1dfede8a545e0e897469feadd19ac983a6e162a3e95db6b587755f8c650e87bcba3f3711a25db2b960951a8d678cc6b8a6b5d4f99771a418c3049b3
|
|
7
|
+
data.tar.gz: a8ae8f8c183ce0e70404b61914d016fce85b79e6ac1db3ff518b0ca98cc50b0243f383aa5f3226cc98813360169c7c07f2795758160e6f680bc683be7a5753e9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1
|
|
2
2
|
|
|
3
|
+
### v0.77.0 (2025-12-07)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251125
|
|
6
|
+
|
|
7
|
+
### v0.76.0 (2025-11-16)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251111
|
|
10
|
+
|
|
3
11
|
### v0.75.0 (2025-10-12)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250930
|
|
@@ -1534,6 +1534,11 @@ module Google
|
|
|
1534
1534
|
class BuiltImage
|
|
1535
1535
|
include Google::Apis::Core::Hashable
|
|
1536
1536
|
|
|
1537
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
1538
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
1539
|
+
# @return [String]
|
|
1540
|
+
attr_accessor :artifact_registry_package
|
|
1541
|
+
|
|
1537
1542
|
# Docker Registry 2.0 digest.
|
|
1538
1543
|
# Corresponds to the JSON property `digest`
|
|
1539
1544
|
# @return [String]
|
|
@@ -1556,6 +1561,7 @@ module Google
|
|
|
1556
1561
|
|
|
1557
1562
|
# Update properties of this object
|
|
1558
1563
|
def update!(**args)
|
|
1564
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
1559
1565
|
@digest = args[:digest] if args.key?(:digest)
|
|
1560
1566
|
@name = args[:name] if args.key?(:name)
|
|
1561
1567
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
@@ -3272,6 +3278,14 @@ module Google
|
|
|
3272
3278
|
# @return [String]
|
|
3273
3279
|
attr_accessor :artifact_id
|
|
3274
3280
|
|
|
3281
|
+
# Optional. Path to a folder containing the files to upload to Artifact Registry.
|
|
3282
|
+
# This can be either an absolute path, e.g. `/workspace/my-app/target/`, or a
|
|
3283
|
+
# relative path from /workspace, e.g. `my-app/target/`. This field is mutually
|
|
3284
|
+
# exclusive with the `path` field.
|
|
3285
|
+
# Corresponds to the JSON property `deployFolder`
|
|
3286
|
+
# @return [String]
|
|
3287
|
+
attr_accessor :deploy_folder
|
|
3288
|
+
|
|
3275
3289
|
# Maven `groupId` value used when uploading the artifact to Artifact Registry.
|
|
3276
3290
|
# Corresponds to the JSON property `groupId`
|
|
3277
3291
|
# @return [String]
|
|
@@ -3304,6 +3318,7 @@ module Google
|
|
|
3304
3318
|
# Update properties of this object
|
|
3305
3319
|
def update!(**args)
|
|
3306
3320
|
@artifact_id = args[:artifact_id] if args.key?(:artifact_id)
|
|
3321
|
+
@deploy_folder = args[:deploy_folder] if args.key?(:deploy_folder)
|
|
3307
3322
|
@group_id = args[:group_id] if args.key?(:group_id)
|
|
3308
3323
|
@path = args[:path] if args.key?(:path)
|
|
3309
3324
|
@repository = args[:repository] if args.key?(:repository)
|
|
@@ -4579,6 +4594,11 @@ module Google
|
|
|
4579
4594
|
class UploadedGoModule
|
|
4580
4595
|
include Google::Apis::Core::Hashable
|
|
4581
4596
|
|
|
4597
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
4598
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
4599
|
+
# @return [String]
|
|
4600
|
+
attr_accessor :artifact_registry_package
|
|
4601
|
+
|
|
4582
4602
|
# Container message for hashes of byte content of files, used in
|
|
4583
4603
|
# SourceProvenance messages to verify integrity of source input to the build.
|
|
4584
4604
|
# Corresponds to the JSON property `fileHashes`
|
|
@@ -4601,6 +4621,7 @@ module Google
|
|
|
4601
4621
|
|
|
4602
4622
|
# Update properties of this object
|
|
4603
4623
|
def update!(**args)
|
|
4624
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
4604
4625
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
4605
4626
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
4606
4627
|
@uri = args[:uri] if args.key?(:uri)
|
|
@@ -4611,6 +4632,11 @@ module Google
|
|
|
4611
4632
|
class UploadedMavenArtifact
|
|
4612
4633
|
include Google::Apis::Core::Hashable
|
|
4613
4634
|
|
|
4635
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
4636
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
4637
|
+
# @return [String]
|
|
4638
|
+
attr_accessor :artifact_registry_package
|
|
4639
|
+
|
|
4614
4640
|
# Container message for hashes of byte content of files, used in
|
|
4615
4641
|
# SourceProvenance messages to verify integrity of source input to the build.
|
|
4616
4642
|
# Corresponds to the JSON property `fileHashes`
|
|
@@ -4633,6 +4659,7 @@ module Google
|
|
|
4633
4659
|
|
|
4634
4660
|
# Update properties of this object
|
|
4635
4661
|
def update!(**args)
|
|
4662
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
4636
4663
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
4637
4664
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
4638
4665
|
@uri = args[:uri] if args.key?(:uri)
|
|
@@ -4643,6 +4670,11 @@ module Google
|
|
|
4643
4670
|
class UploadedNpmPackage
|
|
4644
4671
|
include Google::Apis::Core::Hashable
|
|
4645
4672
|
|
|
4673
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
4674
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
4675
|
+
# @return [String]
|
|
4676
|
+
attr_accessor :artifact_registry_package
|
|
4677
|
+
|
|
4646
4678
|
# Container message for hashes of byte content of files, used in
|
|
4647
4679
|
# SourceProvenance messages to verify integrity of source input to the build.
|
|
4648
4680
|
# Corresponds to the JSON property `fileHashes`
|
|
@@ -4665,6 +4697,7 @@ module Google
|
|
|
4665
4697
|
|
|
4666
4698
|
# Update properties of this object
|
|
4667
4699
|
def update!(**args)
|
|
4700
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
4668
4701
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
4669
4702
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
4670
4703
|
@uri = args[:uri] if args.key?(:uri)
|
|
@@ -4675,6 +4708,11 @@ module Google
|
|
|
4675
4708
|
class UploadedPythonPackage
|
|
4676
4709
|
include Google::Apis::Core::Hashable
|
|
4677
4710
|
|
|
4711
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
4712
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
4713
|
+
# @return [String]
|
|
4714
|
+
attr_accessor :artifact_registry_package
|
|
4715
|
+
|
|
4678
4716
|
# Container message for hashes of byte content of files, used in
|
|
4679
4717
|
# SourceProvenance messages to verify integrity of source input to the build.
|
|
4680
4718
|
# Corresponds to the JSON property `fileHashes`
|
|
@@ -4697,6 +4735,7 @@ module Google
|
|
|
4697
4735
|
|
|
4698
4736
|
# Update properties of this object
|
|
4699
4737
|
def update!(**args)
|
|
4738
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
4700
4739
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
4701
4740
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
4702
4741
|
@uri = args[:uri] if args.key?(:uri)
|
|
@@ -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.77.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251125"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1088,6 +1088,7 @@ module Google
|
|
|
1088
1088
|
class BuiltImage
|
|
1089
1089
|
# @private
|
|
1090
1090
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1091
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1091
1092
|
property :digest, as: 'digest'
|
|
1092
1093
|
property :name, as: 'name'
|
|
1093
1094
|
property :push_timing, as: 'pushTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
|
@@ -1575,6 +1576,7 @@ module Google
|
|
|
1575
1576
|
# @private
|
|
1576
1577
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1577
1578
|
property :artifact_id, as: 'artifactId'
|
|
1579
|
+
property :deploy_folder, as: 'deployFolder'
|
|
1578
1580
|
property :group_id, as: 'groupId'
|
|
1579
1581
|
property :path, as: 'path'
|
|
1580
1582
|
property :repository, as: 'repository'
|
|
@@ -1930,6 +1932,7 @@ module Google
|
|
|
1930
1932
|
class UploadedGoModule
|
|
1931
1933
|
# @private
|
|
1932
1934
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1935
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1933
1936
|
property :file_hashes, as: 'fileHashes', class: Google::Apis::CloudbuildV1::FileHashes, decorator: Google::Apis::CloudbuildV1::FileHashes::Representation
|
|
1934
1937
|
|
|
1935
1938
|
property :push_timing, as: 'pushTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
|
@@ -1941,6 +1944,7 @@ module Google
|
|
|
1941
1944
|
class UploadedMavenArtifact
|
|
1942
1945
|
# @private
|
|
1943
1946
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1947
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1944
1948
|
property :file_hashes, as: 'fileHashes', class: Google::Apis::CloudbuildV1::FileHashes, decorator: Google::Apis::CloudbuildV1::FileHashes::Representation
|
|
1945
1949
|
|
|
1946
1950
|
property :push_timing, as: 'pushTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
|
@@ -1952,6 +1956,7 @@ module Google
|
|
|
1952
1956
|
class UploadedNpmPackage
|
|
1953
1957
|
# @private
|
|
1954
1958
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1959
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1955
1960
|
property :file_hashes, as: 'fileHashes', class: Google::Apis::CloudbuildV1::FileHashes, decorator: Google::Apis::CloudbuildV1::FileHashes::Representation
|
|
1956
1961
|
|
|
1957
1962
|
property :push_timing, as: 'pushTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
|
@@ -1963,6 +1968,7 @@ module Google
|
|
|
1963
1968
|
class UploadedPythonPackage
|
|
1964
1969
|
# @private
|
|
1965
1970
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1971
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1966
1972
|
property :file_hashes, as: 'fileHashes', class: Google::Apis::CloudbuildV1::FileHashes, decorator: Google::Apis::CloudbuildV1::FileHashes::Representation
|
|
1967
1973
|
|
|
1968
1974
|
property :push_timing, as: 'pushTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
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.77.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.77.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:
|