From 578a61ab7da6786a13698a58dd7332bc6779b792 Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 17:06:23 -0700 Subject: [PATCH] feat: add Skaffold verbose support to Execution Environment properties (#7315) PiperOrigin-RevId: 634060715 Source-Link: https://github.com/googleapis/googleapis/commit/0d8db1a5197b56c3d4dd5dd058d3e0e041c84f90 Source-Link: https://github.com/googleapis/googleapis-gen/commit/54e64117b755a0e71244197414ab9738d4d5790d Copy-Tag: eyJwIjoiRGVwbG95Ly5Pd2xCb3QueWFtbCIsImgiOiI1NGU2NDExN2I3NTVhMGU3MTI0NDE5NzQxNGFiOTczOGQ0ZDU3OTBkIn0= --- Deploy/metadata/V1/CloudDeploy.php | Bin 43788 -> 43810 bytes Deploy/src/V1/ExecutionConfig.php | 38 +++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/Deploy/metadata/V1/CloudDeploy.php b/Deploy/metadata/V1/CloudDeploy.php index a882503800722b4794b7ff8f0b53f60a05266a26..84e15015363046e44b6729f0f325bcafe6701b22 100644 GIT binary patch delta 46 zcmeCV#JcESaPHppKk7!U&$yaB*MjBmRgjQUz{qzp}?rYu~}d7ZYKb6 CjSjT{ delta 28 kcmZ2.google.protobuf.Duration execution_timeout = 7 [(.google.api.field_behavior) = OPTIONAL]; */ private $execution_timeout = null; + /** + * Optional. If true, additional logging will be enabled when running builds + * in this execution environment. + * + * Generated from protobuf field bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL]; + */ + private $verbose = false; protected $execution_environment; /** @@ -87,6 +94,9 @@ class ExecutionConfig extends \Google\Protobuf\Internal\Message * Optional. Execution timeout for a Cloud Build Execution. This must be * between 10m and 24h in seconds format. If unspecified, a default timeout of * 1h is used. + * @type bool $verbose + * Optional. If true, additional logging will be enabled when running builds + * in this execution environment. * } */ public function __construct($data = NULL) { @@ -316,6 +326,34 @@ public function setExecutionTimeout($var) return $this; } + /** + * Optional. If true, additional logging will be enabled when running builds + * in this execution environment. + * + * Generated from protobuf field bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL]; + * @return bool + */ + public function getVerbose() + { + return $this->verbose; + } + + /** + * Optional. If true, additional logging will be enabled when running builds + * in this execution environment. + * + * Generated from protobuf field bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL]; + * @param bool $var + * @return $this + */ + public function setVerbose($var) + { + GPBUtil::checkBool($var); + $this->verbose = $var; + + return $this; + } + /** * @return string */