Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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