GetBuildResult

data class GetBuildResult(val approval: BuildApprovalResponse, val artifacts: ArtifactsResponse, val availableSecrets: SecretsResponse, val buildTriggerId: String, val createTime: String, val failureInfo: FailureInfoResponse, val finishTime: String, val images: List<String>, val logUrl: String, val logsBucket: String, val name: String, val options: BuildOptionsResponse, val project: String, val queueTtl: String, val results: ResultsResponse, val secrets: List<SecretResponse>, val serviceAccount: String, val source: SourceResponse, val sourceProvenance: SourceProvenanceResponse, val startTime: String, val status: String, val statusDetail: String, val steps: List<BuildStepResponse>, val substitutions: Map<String, String>, val tags: List<String>, val timeout: String, val timing: Map<String, String>, val warnings: List<WarningResponse>)

Constructors

Link copied to clipboard
fun GetBuildResult(approval: BuildApprovalResponse, artifacts: ArtifactsResponse, availableSecrets: SecretsResponse, buildTriggerId: String, createTime: String, failureInfo: FailureInfoResponse, finishTime: String, images: List<String>, logUrl: String, logsBucket: String, name: String, options: BuildOptionsResponse, project: String, queueTtl: String, results: ResultsResponse, secrets: List<SecretResponse>, serviceAccount: String, source: SourceResponse, sourceProvenance: SourceProvenanceResponse, startTime: String, status: String, statusDetail: String, steps: List<BuildStepResponse>, substitutions: Map<String, String>, tags: List<String>, timeout: String, timing: Map<String, String>, warnings: List<WarningResponse>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Describes this build's approval configuration, status, and result.

Link copied to clipboard

Artifacts produced by the build that should be uploaded upon successful completion of all build steps.

Link copied to clipboard

Secrets and secret environment variables.

Link copied to clipboard

The ID of the BuildTrigger that triggered this build, if it was triggered automatically.

Link copied to clipboard

Time at which the request to create the build was received.

Link copied to clipboard

Contains information about the build when status=FAILURE.

Link copied to clipboard

Time at which execution of the build was finished. The difference between finish_time and start_time is the duration of the build's execution.

Link copied to clipboard

A list of images to be pushed upon the successful completion of all build steps. The images are pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build status is marked FAILURE.

Link copied to clipboard

Google Cloud Storage bucket where logs should be written (see Bucket Name Requirements). Logs file names will be of the format ${logs_bucket}/log-${build_id}.txt.

Link copied to clipboard

URL to logs for this build in Google Cloud Console.

Link copied to clipboard

The 'Build' name with format: projects/{project}/locations/{location}/builds/{build}, where {build} is a unique identifier generated by the service.

Link copied to clipboard

Special options for this build.

Link copied to clipboard

ID of the project.

Link copied to clipboard

TTL in queue for this build. If provided and the build is enqueued longer than this value, the build will expire and the build status will be EXPIRED. The TTL starts ticking from create_time.

Link copied to clipboard

Results of the build.

Link copied to clipboard

Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secrets to configure builds to access secrets from Secret Manager. For instructions, see: https://cloud.google.com/cloud-build/docs/securing-builds/use-secrets

Link copied to clipboard

IAM service account whose credentials will be used at build runtime. Must be of the format projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}. ACCOUNT can be email address or uniqueId of the service account.

Link copied to clipboard

The location of the source files to build.

Link copied to clipboard

A permanent fixed identifier for source.

Link copied to clipboard

Time at which execution of the build was started.

Link copied to clipboard

Status of the build.

Link copied to clipboard

Customer-readable message about the current status.

Link copied to clipboard

The operations to be performed on the workspace.

Link copied to clipboard

Substitutions data for Build resource.

Link copied to clipboard

Tags for annotation of a Build. These are not docker tags.

Link copied to clipboard

Amount of time that this build should be allowed to run, to second granularity. If this amount of time elapses, work on the build will cease and the build status will be TIMEOUT. timeout starts ticking from startTime. Default time is 60 minutes.

Link copied to clipboard

Stores timing information for phases of the build. Valid keys are: * BUILD: time to execute all build steps. * PUSH: time to push all artifacts including docker images and non docker artifacts. * FETCHSOURCE: time to fetch source. * SETUPBUILD: time to set up build. If the build does not specify source or images, these keys will not be included.

Link copied to clipboard

Non-fatal problems encountered during the execution of the build.