BuildArgs

data class BuildArgs(val artifacts: Output<ArtifactsArgs>? = null, val availableSecrets: Output<SecretsArgs>? = null, val images: Output<List<String>>? = null, val location: Output<String>? = null, val logsBucket: Output<String>? = null, val options: Output<BuildOptionsArgs>? = null, val project: Output<String>? = null, val projectId: Output<String>? = null, val queueTtl: Output<String>? = null, val secrets: Output<List<SecretArgs>>? = null, val serviceAccount: Output<String>? = null, val source: Output<SourceArgs>? = null, val steps: Output<List<BuildStepArgs>>? = null, val substitutions: Output<Map<String, String>>? = null, val tags: Output<List<String>>? = null, val timeout: Output<String>? = null) : ConvertibleToJava<BuildArgs>

Starts a build with the specified configuration. This method returns a long-running Operation, which includes the build ID. Pass the build ID to GetBuild to determine the build status (such as SUCCESS or FAILURE). Auto-naming is currently not supported for this resource. Note - this resource's API doesn't support deletion. When deleted, the resource will persist on Google Cloud even though it will be deleted from Pulumi state.

Constructors

Link copied to clipboard
fun BuildArgs(artifacts: Output<ArtifactsArgs>? = null, availableSecrets: Output<SecretsArgs>? = null, images: Output<List<String>>? = null, location: Output<String>? = null, logsBucket: Output<String>? = null, options: Output<BuildOptionsArgs>? = null, project: Output<String>? = null, projectId: Output<String>? = null, queueTtl: Output<String>? = null, secrets: Output<List<SecretArgs>>? = null, serviceAccount: Output<String>? = null, source: Output<SourceArgs>? = null, steps: Output<List<BuildStepArgs>>? = null, substitutions: Output<Map<String, String>>? = null, tags: Output<List<String>>? = null, timeout: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): BuildArgs

Properties

Link copied to clipboard
val artifacts: Output<ArtifactsArgs>? = null

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

Link copied to clipboard
val availableSecrets: Output<SecretsArgs>? = null

Secrets and secret environment variables.

Link copied to clipboard
val images: Output<List<String>>? = null

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
val location: Output<String>? = null
Link copied to clipboard
val logsBucket: Output<String>? = null

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
val options: Output<BuildOptionsArgs>? = null

Special options for this build.

Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard
val projectId: Output<String>? = null

Required. ID of the project.

Link copied to clipboard
val queueTtl: Output<String>? = null

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
val secrets: Output<List<SecretArgs>>? = null

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
val serviceAccount: Output<String>? = null

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
val source: Output<SourceArgs>? = null

The location of the source files to build.

Link copied to clipboard
val steps: Output<List<BuildStepArgs>>? = null

The operations to be performed on the workspace.

Link copied to clipboard
val substitutions: Output<Map<String, String>>? = null

Substitutions data for Build resource.

Link copied to clipboard
val tags: Output<List<String>>? = null

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

Link copied to clipboard
val timeout: Output<String>? = null

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.