google-apis-cloudbuild_v1 0.75.0 → 0.76.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: 3ac5ea027d23663205f540281681373674799d88b4051a15bb42edaa5b50c7a8
|
|
4
|
+
data.tar.gz: '0628fbbadfcbf73156112858eceed651299aff179b59d4c57dba7a4878187a15'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 194c45706c631875affc9fda7c1de67f1265439c154d7baaeef189ce3fbf36d2d452a5bc3c29bca9decc1941615b1a8fd62b4d8bce20d4ab1c1c64fc8cea1908
|
|
7
|
+
data.tar.gz: 159a0f85f8d541132ce5d9393b189d679effc33af179c32b2e2fdafab0f2dd9b98ad5c804f353860cf0d85407397b2db24986f6e3943bc2c5f6ceb6ea3975c57
|
data/CHANGELOG.md
CHANGED
|
@@ -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)
|
|
@@ -4579,6 +4585,11 @@ module Google
|
|
|
4579
4585
|
class UploadedGoModule
|
|
4580
4586
|
include Google::Apis::Core::Hashable
|
|
4581
4587
|
|
|
4588
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
4589
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
4590
|
+
# @return [String]
|
|
4591
|
+
attr_accessor :artifact_registry_package
|
|
4592
|
+
|
|
4582
4593
|
# Container message for hashes of byte content of files, used in
|
|
4583
4594
|
# SourceProvenance messages to verify integrity of source input to the build.
|
|
4584
4595
|
# Corresponds to the JSON property `fileHashes`
|
|
@@ -4601,6 +4612,7 @@ module Google
|
|
|
4601
4612
|
|
|
4602
4613
|
# Update properties of this object
|
|
4603
4614
|
def update!(**args)
|
|
4615
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
4604
4616
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
4605
4617
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
4606
4618
|
@uri = args[:uri] if args.key?(:uri)
|
|
@@ -4611,6 +4623,11 @@ module Google
|
|
|
4611
4623
|
class UploadedMavenArtifact
|
|
4612
4624
|
include Google::Apis::Core::Hashable
|
|
4613
4625
|
|
|
4626
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
4627
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
4628
|
+
# @return [String]
|
|
4629
|
+
attr_accessor :artifact_registry_package
|
|
4630
|
+
|
|
4614
4631
|
# Container message for hashes of byte content of files, used in
|
|
4615
4632
|
# SourceProvenance messages to verify integrity of source input to the build.
|
|
4616
4633
|
# Corresponds to the JSON property `fileHashes`
|
|
@@ -4633,6 +4650,7 @@ module Google
|
|
|
4633
4650
|
|
|
4634
4651
|
# Update properties of this object
|
|
4635
4652
|
def update!(**args)
|
|
4653
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
4636
4654
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
4637
4655
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
4638
4656
|
@uri = args[:uri] if args.key?(:uri)
|
|
@@ -4643,6 +4661,11 @@ module Google
|
|
|
4643
4661
|
class UploadedNpmPackage
|
|
4644
4662
|
include Google::Apis::Core::Hashable
|
|
4645
4663
|
|
|
4664
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
4665
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
4666
|
+
# @return [String]
|
|
4667
|
+
attr_accessor :artifact_registry_package
|
|
4668
|
+
|
|
4646
4669
|
# Container message for hashes of byte content of files, used in
|
|
4647
4670
|
# SourceProvenance messages to verify integrity of source input to the build.
|
|
4648
4671
|
# Corresponds to the JSON property `fileHashes`
|
|
@@ -4665,6 +4688,7 @@ module Google
|
|
|
4665
4688
|
|
|
4666
4689
|
# Update properties of this object
|
|
4667
4690
|
def update!(**args)
|
|
4691
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
4668
4692
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
4669
4693
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
4670
4694
|
@uri = args[:uri] if args.key?(:uri)
|
|
@@ -4675,6 +4699,11 @@ module Google
|
|
|
4675
4699
|
class UploadedPythonPackage
|
|
4676
4700
|
include Google::Apis::Core::Hashable
|
|
4677
4701
|
|
|
4702
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
4703
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
4704
|
+
# @return [String]
|
|
4705
|
+
attr_accessor :artifact_registry_package
|
|
4706
|
+
|
|
4678
4707
|
# Container message for hashes of byte content of files, used in
|
|
4679
4708
|
# SourceProvenance messages to verify integrity of source input to the build.
|
|
4680
4709
|
# Corresponds to the JSON property `fileHashes`
|
|
@@ -4697,6 +4726,7 @@ module Google
|
|
|
4697
4726
|
|
|
4698
4727
|
# Update properties of this object
|
|
4699
4728
|
def update!(**args)
|
|
4729
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
4700
4730
|
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
4701
4731
|
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
4702
4732
|
@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.76.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 = "20251111"
|
|
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
|
|
@@ -1930,6 +1931,7 @@ module Google
|
|
|
1930
1931
|
class UploadedGoModule
|
|
1931
1932
|
# @private
|
|
1932
1933
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1934
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1933
1935
|
property :file_hashes, as: 'fileHashes', class: Google::Apis::CloudbuildV1::FileHashes, decorator: Google::Apis::CloudbuildV1::FileHashes::Representation
|
|
1934
1936
|
|
|
1935
1937
|
property :push_timing, as: 'pushTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
|
@@ -1941,6 +1943,7 @@ module Google
|
|
|
1941
1943
|
class UploadedMavenArtifact
|
|
1942
1944
|
# @private
|
|
1943
1945
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1946
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1944
1947
|
property :file_hashes, as: 'fileHashes', class: Google::Apis::CloudbuildV1::FileHashes, decorator: Google::Apis::CloudbuildV1::FileHashes::Representation
|
|
1945
1948
|
|
|
1946
1949
|
property :push_timing, as: 'pushTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
|
@@ -1952,6 +1955,7 @@ module Google
|
|
|
1952
1955
|
class UploadedNpmPackage
|
|
1953
1956
|
# @private
|
|
1954
1957
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1958
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1955
1959
|
property :file_hashes, as: 'fileHashes', class: Google::Apis::CloudbuildV1::FileHashes, decorator: Google::Apis::CloudbuildV1::FileHashes::Representation
|
|
1956
1960
|
|
|
1957
1961
|
property :push_timing, as: 'pushTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
|
@@ -1963,6 +1967,7 @@ module Google
|
|
|
1963
1967
|
class UploadedPythonPackage
|
|
1964
1968
|
# @private
|
|
1965
1969
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1970
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
1966
1971
|
property :file_hashes, as: 'fileHashes', class: Google::Apis::CloudbuildV1::FileHashes, decorator: Google::Apis::CloudbuildV1::FileHashes::Representation
|
|
1967
1972
|
|
|
1968
1973
|
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.76.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.76.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:
|