google-apis-cloudbuild_v1 0.67.0 → 0.68.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: 8f76f2eea63d2d74ac251dab0b288c81ce98339c6c43d42796b26b742c957d4c
|
4
|
+
data.tar.gz: e5633b8b1a54c10082a4c302e89bff20aab51c8c28e222442943f3532016d920
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eccada023f8c04efe36137a73c6cee6dbd8dc709a454869c6e3978a136edf7ba26dfbcb633dfcdc2760088115d147e0bfc2eea8cbeccf60a839ff84a9649409e
|
7
|
+
data.tar.gz: 12e95aceb43a5f300f88c0efe73294606d4e475bfa801c46b8d13b3e5b9615a46205991eb823fa020e18c4878033591385d533b8f5e0f8b335f672255cca1fc2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1
|
2
2
|
|
3
|
+
### v0.68.0 (2025-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250211
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.67.0 (2024-12-15)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241210
|
@@ -178,6 +178,13 @@ module Google
|
|
178
178
|
class Artifacts
|
179
179
|
include Google::Apis::Core::Hashable
|
180
180
|
|
181
|
+
# Optional. A list of Go modules to be uploaded to Artifact Registry upon
|
182
|
+
# successful completion of all build steps. If any objects fail to be pushed,
|
183
|
+
# the build is marked FAILURE.
|
184
|
+
# Corresponds to the JSON property `goModules`
|
185
|
+
# @return [Array<Google::Apis::CloudbuildV1::GoModule>]
|
186
|
+
attr_accessor :go_modules
|
187
|
+
|
181
188
|
# A list of images to be pushed upon the successful completion of all build
|
182
189
|
# steps. The images will be pushed using the builder service account's
|
183
190
|
# credentials. The digests of the pushed images will be stored in the Build
|
@@ -225,6 +232,7 @@ module Google
|
|
225
232
|
|
226
233
|
# Update properties of this object
|
227
234
|
def update!(**args)
|
235
|
+
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
228
236
|
@images = args[:images] if args.key?(:images)
|
229
237
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
230
238
|
@npm_packages = args[:npm_packages] if args.key?(:npm_packages)
|
@@ -724,6 +732,12 @@ module Google
|
|
724
732
|
# @return [String]
|
725
733
|
attr_accessor :create_time
|
726
734
|
|
735
|
+
# Optional. Dependencies that the Cloud Build worker will fetch before executing
|
736
|
+
# user steps.
|
737
|
+
# Corresponds to the JSON property `dependencies`
|
738
|
+
# @return [Array<Google::Apis::CloudbuildV1::Dependency>]
|
739
|
+
attr_accessor :dependencies
|
740
|
+
|
727
741
|
# A fatal problem encountered during the execution of the build.
|
728
742
|
# Corresponds to the JSON property `failureInfo`
|
729
743
|
# @return [Google::Apis::CloudbuildV1::FailureInfo]
|
@@ -885,6 +899,7 @@ module Google
|
|
885
899
|
@available_secrets = args[:available_secrets] if args.key?(:available_secrets)
|
886
900
|
@build_trigger_id = args[:build_trigger_id] if args.key?(:build_trigger_id)
|
887
901
|
@create_time = args[:create_time] if args.key?(:create_time)
|
902
|
+
@dependencies = args[:dependencies] if args.key?(:dependencies)
|
888
903
|
@failure_info = args[:failure_info] if args.key?(:failure_info)
|
889
904
|
@finish_time = args[:finish_time] if args.key?(:finish_time)
|
890
905
|
@git_config = args[:git_config] if args.key?(:git_config)
|
@@ -1009,6 +1024,13 @@ module Google
|
|
1009
1024
|
attr_accessor :dynamic_substitutions
|
1010
1025
|
alias_method :dynamic_substitutions?, :dynamic_substitutions
|
1011
1026
|
|
1027
|
+
# Optional. Option to specify whether structured logging is enabled. If true,
|
1028
|
+
# JSON-formatted logs are parsed as structured logs.
|
1029
|
+
# Corresponds to the JSON property `enableStructuredLogging`
|
1030
|
+
# @return [Boolean]
|
1031
|
+
attr_accessor :enable_structured_logging
|
1032
|
+
alias_method :enable_structured_logging?, :enable_structured_logging
|
1033
|
+
|
1012
1034
|
# A list of global environment variable definitions that will exist for all
|
1013
1035
|
# build steps in this build. If a variable is defined in both globally and in a
|
1014
1036
|
# build step, the variable will use the build step value. The elements are of
|
@@ -1041,6 +1063,11 @@ module Google
|
|
1041
1063
|
# @return [Google::Apis::CloudbuildV1::PoolOption]
|
1042
1064
|
attr_accessor :pool
|
1043
1065
|
|
1066
|
+
# Optional. Option to specify the Pub/Sub topic to receive build status updates.
|
1067
|
+
# Corresponds to the JSON property `pubsubTopic`
|
1068
|
+
# @return [String]
|
1069
|
+
attr_accessor :pubsub_topic
|
1070
|
+
|
1044
1071
|
# Requested verifiability options.
|
1045
1072
|
# Corresponds to the JSON property `requestedVerifyOption`
|
1046
1073
|
# @return [String]
|
@@ -1090,11 +1117,13 @@ module Google
|
|
1090
1117
|
@default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
|
1091
1118
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
1092
1119
|
@dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
|
1120
|
+
@enable_structured_logging = args[:enable_structured_logging] if args.key?(:enable_structured_logging)
|
1093
1121
|
@env = args[:env] if args.key?(:env)
|
1094
1122
|
@log_streaming_option = args[:log_streaming_option] if args.key?(:log_streaming_option)
|
1095
1123
|
@logging = args[:logging] if args.key?(:logging)
|
1096
1124
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
1097
1125
|
@pool = args[:pool] if args.key?(:pool)
|
1126
|
+
@pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
|
1098
1127
|
@requested_verify_option = args[:requested_verify_option] if args.key?(:requested_verify_option)
|
1099
1128
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
1100
1129
|
@source_provenance_hash = args[:source_provenance_hash] if args.key?(:source_provenance_hash)
|
@@ -1947,6 +1976,34 @@ module Google
|
|
1947
1976
|
end
|
1948
1977
|
end
|
1949
1978
|
|
1979
|
+
# A dependency that the Cloud Build worker will fetch before executing user
|
1980
|
+
# steps.
|
1981
|
+
class Dependency
|
1982
|
+
include Google::Apis::Core::Hashable
|
1983
|
+
|
1984
|
+
# If set to true disable all dependency fetching (ignoring the default source as
|
1985
|
+
# well).
|
1986
|
+
# Corresponds to the JSON property `empty`
|
1987
|
+
# @return [Boolean]
|
1988
|
+
attr_accessor :empty
|
1989
|
+
alias_method :empty?, :empty
|
1990
|
+
|
1991
|
+
# Represents a git repository as a build dependency.
|
1992
|
+
# Corresponds to the JSON property `gitSource`
|
1993
|
+
# @return [Google::Apis::CloudbuildV1::GitSourceDependency]
|
1994
|
+
attr_accessor :git_source
|
1995
|
+
|
1996
|
+
def initialize(**args)
|
1997
|
+
update!(**args)
|
1998
|
+
end
|
1999
|
+
|
2000
|
+
# Update properties of this object
|
2001
|
+
def update!(**args)
|
2002
|
+
@empty = args[:empty] if args.key?(:empty)
|
2003
|
+
@git_source = args[:git_source] if args.key?(:git_source)
|
2004
|
+
end
|
2005
|
+
end
|
2006
|
+
|
1950
2007
|
# This config defines the location of a source through Developer Connect.
|
1951
2008
|
class DeveloperConnectConfig
|
1952
2009
|
include Google::Apis::Core::Hashable
|
@@ -2704,6 +2761,136 @@ module Google
|
|
2704
2761
|
end
|
2705
2762
|
end
|
2706
2763
|
|
2764
|
+
# Represents a git repository as a build dependency.
|
2765
|
+
class GitSourceDependency
|
2766
|
+
include Google::Apis::Core::Hashable
|
2767
|
+
|
2768
|
+
# Optional. How much history should be fetched for the build (default 1, -1 for
|
2769
|
+
# all history).
|
2770
|
+
# Corresponds to the JSON property `depth`
|
2771
|
+
# @return [Fixnum]
|
2772
|
+
attr_accessor :depth
|
2773
|
+
|
2774
|
+
# Required. Where should the files be placed on the worker.
|
2775
|
+
# Corresponds to the JSON property `destPath`
|
2776
|
+
# @return [String]
|
2777
|
+
attr_accessor :dest_path
|
2778
|
+
|
2779
|
+
# Optional. True if submodules should be fetched too (default false).
|
2780
|
+
# Corresponds to the JSON property `recurseSubmodules`
|
2781
|
+
# @return [Boolean]
|
2782
|
+
attr_accessor :recurse_submodules
|
2783
|
+
alias_method :recurse_submodules?, :recurse_submodules
|
2784
|
+
|
2785
|
+
# A repository for a git source.
|
2786
|
+
# Corresponds to the JSON property `repository`
|
2787
|
+
# @return [Google::Apis::CloudbuildV1::GitSourceRepository]
|
2788
|
+
attr_accessor :repository
|
2789
|
+
|
2790
|
+
# Required. The revision that we will fetch the repo at.
|
2791
|
+
# Corresponds to the JSON property `revision`
|
2792
|
+
# @return [String]
|
2793
|
+
attr_accessor :revision
|
2794
|
+
|
2795
|
+
def initialize(**args)
|
2796
|
+
update!(**args)
|
2797
|
+
end
|
2798
|
+
|
2799
|
+
# Update properties of this object
|
2800
|
+
def update!(**args)
|
2801
|
+
@depth = args[:depth] if args.key?(:depth)
|
2802
|
+
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
2803
|
+
@recurse_submodules = args[:recurse_submodules] if args.key?(:recurse_submodules)
|
2804
|
+
@repository = args[:repository] if args.key?(:repository)
|
2805
|
+
@revision = args[:revision] if args.key?(:revision)
|
2806
|
+
end
|
2807
|
+
end
|
2808
|
+
|
2809
|
+
# A repository for a git source.
|
2810
|
+
class GitSourceRepository
|
2811
|
+
include Google::Apis::Core::Hashable
|
2812
|
+
|
2813
|
+
# The Developer Connect Git repository link or the url that matches a repository
|
2814
|
+
# link in the current project, formatted as `projects/*/locations/*/connections/*
|
2815
|
+
# /gitRepositoryLink/*`
|
2816
|
+
# Corresponds to the JSON property `developerConnect`
|
2817
|
+
# @return [String]
|
2818
|
+
attr_accessor :developer_connect
|
2819
|
+
|
2820
|
+
# Location of the Git repository.
|
2821
|
+
# Corresponds to the JSON property `url`
|
2822
|
+
# @return [String]
|
2823
|
+
attr_accessor :url
|
2824
|
+
|
2825
|
+
def initialize(**args)
|
2826
|
+
update!(**args)
|
2827
|
+
end
|
2828
|
+
|
2829
|
+
# Update properties of this object
|
2830
|
+
def update!(**args)
|
2831
|
+
@developer_connect = args[:developer_connect] if args.key?(:developer_connect)
|
2832
|
+
@url = args[:url] if args.key?(:url)
|
2833
|
+
end
|
2834
|
+
end
|
2835
|
+
|
2836
|
+
# Go module to upload to Artifact Registry upon successful completion of all
|
2837
|
+
# build steps. A module refers to all dependencies in a go.mod file.
|
2838
|
+
class GoModule
|
2839
|
+
include Google::Apis::Core::Hashable
|
2840
|
+
|
2841
|
+
# Optional. The Go module's "module path". e.g. example.com/foo/v2
|
2842
|
+
# Corresponds to the JSON property `modulePath`
|
2843
|
+
# @return [String]
|
2844
|
+
attr_accessor :module_path
|
2845
|
+
|
2846
|
+
# Optional. The Go module's semantic version in the form vX.Y.Z. e.g. v0.1.1 Pre-
|
2847
|
+
# release identifiers can also be added by appending a dash and dot separated
|
2848
|
+
# ASCII alphanumeric characters and hyphens. e.g. v0.2.3-alpha.x.12m.5
|
2849
|
+
# Corresponds to the JSON property `moduleVersion`
|
2850
|
+
# @return [String]
|
2851
|
+
attr_accessor :module_version
|
2852
|
+
|
2853
|
+
# Optional. Location of the Artifact Registry repository. i.e. us-east1 Defaults
|
2854
|
+
# to the build’s location.
|
2855
|
+
# Corresponds to the JSON property `repositoryLocation`
|
2856
|
+
# @return [String]
|
2857
|
+
attr_accessor :repository_location
|
2858
|
+
|
2859
|
+
# Optional. Artifact Registry repository name. Specified Go modules will be
|
2860
|
+
# zipped and uploaded to Artifact Registry with this location as a prefix. e.g.
|
2861
|
+
# my-go-repo
|
2862
|
+
# Corresponds to the JSON property `repositoryName`
|
2863
|
+
# @return [String]
|
2864
|
+
attr_accessor :repository_name
|
2865
|
+
|
2866
|
+
# Optional. Project ID of the Artifact Registry repository. Defaults to the
|
2867
|
+
# build project.
|
2868
|
+
# Corresponds to the JSON property `repositoryProjectId`
|
2869
|
+
# @return [String]
|
2870
|
+
attr_accessor :repository_project_id
|
2871
|
+
|
2872
|
+
# Optional. Source path of the go.mod file in the build's workspace. If not
|
2873
|
+
# specified, this will default to the current directory. e.g. ~/code/go/
|
2874
|
+
# mypackage
|
2875
|
+
# Corresponds to the JSON property `sourcePath`
|
2876
|
+
# @return [String]
|
2877
|
+
attr_accessor :source_path
|
2878
|
+
|
2879
|
+
def initialize(**args)
|
2880
|
+
update!(**args)
|
2881
|
+
end
|
2882
|
+
|
2883
|
+
# Update properties of this object
|
2884
|
+
def update!(**args)
|
2885
|
+
@module_path = args[:module_path] if args.key?(:module_path)
|
2886
|
+
@module_version = args[:module_version] if args.key?(:module_version)
|
2887
|
+
@repository_location = args[:repository_location] if args.key?(:repository_location)
|
2888
|
+
@repository_name = args[:repository_name] if args.key?(:repository_name)
|
2889
|
+
@repository_project_id = args[:repository_project_id] if args.key?(:repository_project_id)
|
2890
|
+
@source_path = args[:source_path] if args.key?(:source_path)
|
2891
|
+
end
|
2892
|
+
end
|
2893
|
+
|
2707
2894
|
# Container message for hash values.
|
2708
2895
|
class HashProp
|
2709
2896
|
include Google::Apis::Core::Hashable
|
@@ -3744,6 +3931,12 @@ module Google
|
|
3744
3931
|
# @return [Array<String>]
|
3745
3932
|
attr_accessor :build_step_outputs
|
3746
3933
|
|
3934
|
+
# Optional. Go module artifacts uploaded to Artifact Registry at the end of the
|
3935
|
+
# build.
|
3936
|
+
# Corresponds to the JSON property `goModules`
|
3937
|
+
# @return [Array<Google::Apis::CloudbuildV1::UploadedGoModule>]
|
3938
|
+
attr_accessor :go_modules
|
3939
|
+
|
3747
3940
|
# Container images that were built as a part of the build.
|
3748
3941
|
# Corresponds to the JSON property `images`
|
3749
3942
|
# @return [Array<Google::Apis::CloudbuildV1::BuiltImage>]
|
@@ -3780,6 +3973,7 @@ module Google
|
|
3780
3973
|
@artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
|
3781
3974
|
@build_step_images = args[:build_step_images] if args.key?(:build_step_images)
|
3782
3975
|
@build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
|
3976
|
+
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
3783
3977
|
@images = args[:images] if args.key?(:images)
|
3784
3978
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
3785
3979
|
@npm_packages = args[:npm_packages] if args.key?(:npm_packages)
|
@@ -4334,6 +4528,39 @@ module Google
|
|
4334
4528
|
end
|
4335
4529
|
end
|
4336
4530
|
|
4531
|
+
# A Go module artifact uploaded to Artifact Registry using the GoModule
|
4532
|
+
# directive.
|
4533
|
+
class UploadedGoModule
|
4534
|
+
include Google::Apis::Core::Hashable
|
4535
|
+
|
4536
|
+
# Container message for hashes of byte content of files, used in
|
4537
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
4538
|
+
# Corresponds to the JSON property `fileHashes`
|
4539
|
+
# @return [Google::Apis::CloudbuildV1::FileHashes]
|
4540
|
+
attr_accessor :file_hashes
|
4541
|
+
|
4542
|
+
# Start and end times for a build execution phase.
|
4543
|
+
# Corresponds to the JSON property `pushTiming`
|
4544
|
+
# @return [Google::Apis::CloudbuildV1::TimeSpan]
|
4545
|
+
attr_accessor :push_timing
|
4546
|
+
|
4547
|
+
# URI of the uploaded artifact.
|
4548
|
+
# Corresponds to the JSON property `uri`
|
4549
|
+
# @return [String]
|
4550
|
+
attr_accessor :uri
|
4551
|
+
|
4552
|
+
def initialize(**args)
|
4553
|
+
update!(**args)
|
4554
|
+
end
|
4555
|
+
|
4556
|
+
# Update properties of this object
|
4557
|
+
def update!(**args)
|
4558
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
4559
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
4560
|
+
@uri = args[:uri] if args.key?(:uri)
|
4561
|
+
end
|
4562
|
+
end
|
4563
|
+
|
4337
4564
|
# A Maven artifact uploaded using the MavenArtifact directive.
|
4338
4565
|
class UploadedMavenArtifact
|
4339
4566
|
include Google::Apis::Core::Hashable
|
@@ -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.68.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250211"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -256,6 +256,12 @@ module Google
|
|
256
256
|
include Google::Apis::Core::JsonObjectSupport
|
257
257
|
end
|
258
258
|
|
259
|
+
class Dependency
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
259
265
|
class DeveloperConnectConfig
|
260
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
267
|
|
@@ -364,6 +370,24 @@ module Google
|
|
364
370
|
include Google::Apis::Core::JsonObjectSupport
|
365
371
|
end
|
366
372
|
|
373
|
+
class GitSourceDependency
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
+
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
377
|
+
end
|
378
|
+
|
379
|
+
class GitSourceRepository
|
380
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
|
+
|
382
|
+
include Google::Apis::Core::JsonObjectSupport
|
383
|
+
end
|
384
|
+
|
385
|
+
class GoModule
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
367
391
|
class HashProp
|
368
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
393
|
|
@@ -646,6 +670,12 @@ module Google
|
|
646
670
|
include Google::Apis::Core::JsonObjectSupport
|
647
671
|
end
|
648
672
|
|
673
|
+
class UploadedGoModule
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
675
|
+
|
676
|
+
include Google::Apis::Core::JsonObjectSupport
|
677
|
+
end
|
678
|
+
|
649
679
|
class UploadedMavenArtifact
|
650
680
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
651
681
|
|
@@ -742,6 +772,8 @@ module Google
|
|
742
772
|
class Artifacts
|
743
773
|
# @private
|
744
774
|
class Representation < Google::Apis::Core::JsonRepresentation
|
775
|
+
collection :go_modules, as: 'goModules', class: Google::Apis::CloudbuildV1::GoModule, decorator: Google::Apis::CloudbuildV1::GoModule::Representation
|
776
|
+
|
745
777
|
collection :images, as: 'images'
|
746
778
|
collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::CloudbuildV1::MavenArtifact, decorator: Google::Apis::CloudbuildV1::MavenArtifact::Representation
|
747
779
|
|
@@ -890,6 +922,8 @@ module Google
|
|
890
922
|
|
891
923
|
property :build_trigger_id, as: 'buildTriggerId'
|
892
924
|
property :create_time, as: 'createTime'
|
925
|
+
collection :dependencies, as: 'dependencies', class: Google::Apis::CloudbuildV1::Dependency, decorator: Google::Apis::CloudbuildV1::Dependency::Representation
|
926
|
+
|
893
927
|
property :failure_info, as: 'failureInfo', class: Google::Apis::CloudbuildV1::FailureInfo, decorator: Google::Apis::CloudbuildV1::FailureInfo::Representation
|
894
928
|
|
895
929
|
property :finish_time, as: 'finishTime'
|
@@ -954,12 +988,14 @@ module Google
|
|
954
988
|
property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
|
955
989
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
956
990
|
property :dynamic_substitutions, as: 'dynamicSubstitutions'
|
991
|
+
property :enable_structured_logging, as: 'enableStructuredLogging'
|
957
992
|
collection :env, as: 'env'
|
958
993
|
property :log_streaming_option, as: 'logStreamingOption'
|
959
994
|
property :logging, as: 'logging'
|
960
995
|
property :machine_type, as: 'machineType'
|
961
996
|
property :pool, as: 'pool', class: Google::Apis::CloudbuildV1::PoolOption, decorator: Google::Apis::CloudbuildV1::PoolOption::Representation
|
962
997
|
|
998
|
+
property :pubsub_topic, as: 'pubsubTopic'
|
963
999
|
property :requested_verify_option, as: 'requestedVerifyOption'
|
964
1000
|
collection :secret_env, as: 'secretEnv'
|
965
1001
|
collection :source_provenance_hash, as: 'sourceProvenanceHash'
|
@@ -1173,6 +1209,15 @@ module Google
|
|
1173
1209
|
end
|
1174
1210
|
end
|
1175
1211
|
|
1212
|
+
class Dependency
|
1213
|
+
# @private
|
1214
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1215
|
+
property :empty, as: 'empty'
|
1216
|
+
property :git_source, as: 'gitSource', class: Google::Apis::CloudbuildV1::GitSourceDependency, decorator: Google::Apis::CloudbuildV1::GitSourceDependency::Representation
|
1217
|
+
|
1218
|
+
end
|
1219
|
+
end
|
1220
|
+
|
1176
1221
|
class DeveloperConnectConfig
|
1177
1222
|
# @private
|
1178
1223
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1371,6 +1416,38 @@ module Google
|
|
1371
1416
|
end
|
1372
1417
|
end
|
1373
1418
|
|
1419
|
+
class GitSourceDependency
|
1420
|
+
# @private
|
1421
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1422
|
+
property :depth, :numeric_string => true, as: 'depth'
|
1423
|
+
property :dest_path, as: 'destPath'
|
1424
|
+
property :recurse_submodules, as: 'recurseSubmodules'
|
1425
|
+
property :repository, as: 'repository', class: Google::Apis::CloudbuildV1::GitSourceRepository, decorator: Google::Apis::CloudbuildV1::GitSourceRepository::Representation
|
1426
|
+
|
1427
|
+
property :revision, as: 'revision'
|
1428
|
+
end
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
class GitSourceRepository
|
1432
|
+
# @private
|
1433
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1434
|
+
property :developer_connect, as: 'developerConnect'
|
1435
|
+
property :url, as: 'url'
|
1436
|
+
end
|
1437
|
+
end
|
1438
|
+
|
1439
|
+
class GoModule
|
1440
|
+
# @private
|
1441
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1442
|
+
property :module_path, as: 'modulePath'
|
1443
|
+
property :module_version, as: 'moduleVersion'
|
1444
|
+
property :repository_location, as: 'repositoryLocation'
|
1445
|
+
property :repository_name, as: 'repositoryName'
|
1446
|
+
property :repository_project_id, as: 'repositoryProjectId'
|
1447
|
+
property :source_path, as: 'sourcePath'
|
1448
|
+
end
|
1449
|
+
end
|
1450
|
+
|
1374
1451
|
class HashProp
|
1375
1452
|
# @private
|
1376
1453
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1656,6 +1733,8 @@ module Google
|
|
1656
1733
|
|
1657
1734
|
collection :build_step_images, as: 'buildStepImages'
|
1658
1735
|
collection :build_step_outputs, as: 'buildStepOutputs'
|
1736
|
+
collection :go_modules, as: 'goModules', class: Google::Apis::CloudbuildV1::UploadedGoModule, decorator: Google::Apis::CloudbuildV1::UploadedGoModule::Representation
|
1737
|
+
|
1659
1738
|
collection :images, as: 'images', class: Google::Apis::CloudbuildV1::BuiltImage, decorator: Google::Apis::CloudbuildV1::BuiltImage::Representation
|
1660
1739
|
|
1661
1740
|
collection :maven_artifacts, as: 'mavenArtifacts', class: Google::Apis::CloudbuildV1::UploadedMavenArtifact, decorator: Google::Apis::CloudbuildV1::UploadedMavenArtifact::Representation
|
@@ -1828,6 +1907,17 @@ module Google
|
|
1828
1907
|
end
|
1829
1908
|
end
|
1830
1909
|
|
1910
|
+
class UploadedGoModule
|
1911
|
+
# @private
|
1912
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1913
|
+
property :file_hashes, as: 'fileHashes', class: Google::Apis::CloudbuildV1::FileHashes, decorator: Google::Apis::CloudbuildV1::FileHashes::Representation
|
1914
|
+
|
1915
|
+
property :push_timing, as: 'pushTiming', class: Google::Apis::CloudbuildV1::TimeSpan, decorator: Google::Apis::CloudbuildV1::TimeSpan::Representation
|
1916
|
+
|
1917
|
+
property :uri, as: 'uri'
|
1918
|
+
end
|
1919
|
+
end
|
1920
|
+
|
1831
1921
|
class UploadedMavenArtifact
|
1832
1922
|
# @private
|
1833
1923
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.68.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.68.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud Build API V1
|
82
79
|
test_files: []
|