google-cloud-build-v1 0.10.0 → 0.11.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: fd40b4de3a3e9c119234c2ef6410466a2dee0c04010a10c4cb6ed3453fc71990
|
|
4
|
+
data.tar.gz: 47dbaa0397f1d3daa1dfe6b58431d7ff58e36f87d0e6ac36e00656120e19093f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfa7705a8d5aa23c7822e700dd96b2f1ffc27667f3d3146bd6adf05e370df8a99f0c50dde168da8d4e35c4cc07e971d3aea8f0ad21d847723dcbb2707fa34246
|
|
7
|
+
data.tar.gz: b7d62494256852bebf51e434042fed0d5763355e05548097f29b8c1e7d2bbefbb04d6087012b7d272b1aa18d202a2dd6baebaaa4aab7b5786e007da471107abc
|
|
@@ -74,6 +74,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
74
74
|
optional :pull_timing, :message, 13, "google.devtools.cloudbuild.v1.TimeSpan"
|
|
75
75
|
optional :timeout, :message, 11, "google.protobuf.Duration"
|
|
76
76
|
optional :status, :enum, 12, "google.devtools.cloudbuild.v1.Build.Status"
|
|
77
|
+
optional :script, :string, 19
|
|
77
78
|
end
|
|
78
79
|
add_message "google.devtools.cloudbuild.v1.Volume" do
|
|
79
80
|
optional :name, :string, 1
|
|
@@ -280,6 +281,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
280
281
|
repeated :ignored_files, :string, 15
|
|
281
282
|
repeated :included_files, :string, 16
|
|
282
283
|
optional :filter, :string, 30
|
|
284
|
+
optional :service_account, :string, 33
|
|
283
285
|
oneof :build_template do
|
|
284
286
|
optional :autodetect, :bool, 18
|
|
285
287
|
optional :build, :message, 4, "google.devtools.cloudbuild.v1.Build"
|
|
@@ -277,6 +277,11 @@ module Google
|
|
|
277
277
|
# Output only. Status of the build step. At this time, build step status is
|
|
278
278
|
# only updated on build completion; step status is not updated in real-time
|
|
279
279
|
# as the build progresses.
|
|
280
|
+
# @!attribute [rw] script
|
|
281
|
+
# @return [::String]
|
|
282
|
+
# A shell script to be executed in the step.
|
|
283
|
+
#
|
|
284
|
+
# When script is provided, the user cannot specify the entrypoint or args.
|
|
280
285
|
class BuildStep
|
|
281
286
|
include ::Google::Protobuf::MessageExts
|
|
282
287
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -1139,6 +1144,13 @@ module Google
|
|
|
1139
1144
|
# @!attribute [rw] filter
|
|
1140
1145
|
# @return [::String]
|
|
1141
1146
|
# Optional. A Common Expression Language string.
|
|
1147
|
+
# @!attribute [rw] service_account
|
|
1148
|
+
# @return [::String]
|
|
1149
|
+
# The service account used for all user-controlled operations including
|
|
1150
|
+
# UpdateBuildTrigger, RunBuildTrigger, CreateBuild, and CancelBuild.
|
|
1151
|
+
# If no service account is set, then the standard Cloud Build service account
|
|
1152
|
+
# ([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.
|
|
1153
|
+
# Format: `projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT_ID_OR_EMAIL}`
|
|
1142
1154
|
class BuildTrigger
|
|
1143
1155
|
include ::Google::Protobuf::MessageExts
|
|
1144
1156
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-build-v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-08-
|
|
11
|
+
date: 2021-08-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|