Skip to content

Commit 03c7b0c

Browse files
feat: [google-cloud-deploy] add Skaffold verbose support to Execution Environment properties (#12701)
- [ ] Regenerate this pull request now. PiperOrigin-RevId: 634060715 Source-Link: googleapis/googleapis@0d8db1a Source-Link: googleapis/googleapis-gen@54e6411 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRlcGxveS8uT3dsQm90LnlhbWwiLCJoIjoiNTRlNjQxMTdiNzU1YTBlNzEyNDQxOTc0MTRhYjk3MzhkNGQ1NzkwZCJ9 --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <partheniou@google.com>
1 parent f8ff81b commit 03c7b0c

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

packages/google-cloud-deploy/google/cloud/deploy_v1/types/cloud_deploy.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1651,6 +1651,10 @@ class ExecutionConfig(proto.Message):
16511651
Execution. This must be between 10m and 24h in
16521652
seconds format. If unspecified, a default
16531653
timeout of 1h is used.
1654+
verbose (bool):
1655+
Optional. If true, additional logging will be
1656+
enabled when running builds in this execution
1657+
environment.
16541658
"""
16551659

16561660
class ExecutionEnvironmentUsage(proto.Enum):
@@ -1711,6 +1715,10 @@ class ExecutionEnvironmentUsage(proto.Enum):
17111715
number=7,
17121716
message=duration_pb2.Duration,
17131717
)
1718+
verbose: bool = proto.Field(
1719+
proto.BOOL,
1720+
number=8,
1721+
)
17141722

17151723

17161724
class DefaultPool(proto.Message):

packages/google-cloud-deploy/tests/unit/gapic/deploy_v1/test_cloud_deploy.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21459,6 +21459,7 @@ def test_create_target_rest(request_type):
2145921459
"service_account": "service_account_value",
2146021460
"artifact_storage": "artifact_storage_value",
2146121461
"execution_timeout": {"seconds": 751, "nanos": 543},
21462+
"verbose": True,
2146221463
}
2146321464
],
2146421465
"deploy_parameters": {},
@@ -21903,6 +21904,7 @@ def test_update_target_rest(request_type):
2190321904
"service_account": "service_account_value",
2190421905
"artifact_storage": "artifact_storage_value",
2190521906
"execution_timeout": {"seconds": 751, "nanos": 543},
21907+
"verbose": True,
2190621908
}
2190721909
],
2190821910
"deploy_parameters": {},
@@ -25405,6 +25407,7 @@ def test_create_release_rest(request_type):
2540525407
"service_account": "service_account_value",
2540625408
"artifact_storage": "artifact_storage_value",
2540725409
"execution_timeout": {},
25410+
"verbose": True,
2540825411
}
2540925412
],
2541025413
"deploy_parameters": {},

0 commit comments

Comments
 (0)