VerifyJobRun(mapping=None, *, ignore_unknown_fields=False, **kwargs)
VerifyJobRun contains information specific to a verify JobRun
.
Attributes | |
---|---|
Name | Description |
build |
str
Output only. The resource name of the Cloud Build Build
object that is used to verify. Format is
projects/{project}/locations/{location}/builds/{build}.
|
artifact_uri |
str
Output only. URI of a directory containing the verify artifacts. This contains the Skaffold event log. |
event_log_path |
str
Output only. File path of the Skaffold event log relative to the artifact URI. |
failure_cause |
google.cloud.deploy_v1.types.VerifyJobRun.FailureCause
Output only. The reason the verify failed. This will always be unspecified while the verify is in progress or if it succeeded. |
failure_message |
str
Output only. Additional information about the verify failure, if available. |
Classes
FailureCause
FailureCause(value)
Well-known verify failures.
Values:
FAILURE_CAUSE_UNSPECIFIED (0):
No reason for failure is specified.
CLOUD_BUILD_UNAVAILABLE (1):
Cloud Build is not available, either because it is not
enabled or because Google Cloud Deploy has insufficient
permissions. See required
permission </deploy/docs/cloud-deploy-service-account#required_permissions>
__.
EXECUTION_FAILED (2):
The verify operation did not complete
successfully; check Cloud Build logs.
DEADLINE_EXCEEDED (3):
The verify build did not complete within the
alloted time.
VERIFICATION_CONFIG_NOT_FOUND (4):
No Skaffold verify configuration was found.
CLOUD_BUILD_REQUEST_FAILED (5):
Cloud Build failed to fulfill Google Cloud Deploy's request.
See failure_message for additional details.