Skip to content

Commit

Permalink
feat: [google-cloud-deploy] add Skaffold verbose support to Execution…
Browse files Browse the repository at this point in the history
… 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 <[email protected]>
  • Loading branch information
3 people authored May 16, 2024
1 parent f8ff81b commit 03c7b0c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1651,6 +1651,10 @@ class ExecutionConfig(proto.Message):
Execution. This must be between 10m and 24h in
seconds format. If unspecified, a default
timeout of 1h is used.
verbose (bool):
Optional. If true, additional logging will be
enabled when running builds in this execution
environment.
"""

class ExecutionEnvironmentUsage(proto.Enum):
Expand Down Expand Up @@ -1711,6 +1715,10 @@ class ExecutionEnvironmentUsage(proto.Enum):
number=7,
message=duration_pb2.Duration,
)
verbose: bool = proto.Field(
proto.BOOL,
number=8,
)


class DefaultPool(proto.Message):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21459,6 +21459,7 @@ def test_create_target_rest(request_type):
"service_account": "service_account_value",
"artifact_storage": "artifact_storage_value",
"execution_timeout": {"seconds": 751, "nanos": 543},
"verbose": True,
}
],
"deploy_parameters": {},
Expand Down Expand Up @@ -21903,6 +21904,7 @@ def test_update_target_rest(request_type):
"service_account": "service_account_value",
"artifact_storage": "artifact_storage_value",
"execution_timeout": {"seconds": 751, "nanos": 543},
"verbose": True,
}
],
"deploy_parameters": {},
Expand Down Expand Up @@ -25405,6 +25407,7 @@ def test_create_release_rest(request_type):
"service_account": "service_account_value",
"artifact_storage": "artifact_storage_value",
"execution_timeout": {},
"verbose": True,
}
],
"deploy_parameters": {},
Expand Down

0 comments on commit 03c7b0c

Please sign in to comment.