ExecutionConfigArgs

data class ExecutionConfigArgs(val artifactStorage: Output<String>? = null, val defaultPool: Output<DefaultPoolArgs>? = null, val executionTimeout: Output<String>? = null, val privatePool: Output<PrivatePoolArgs>? = null, val serviceAccount: Output<String>? = null, val usages: Output<List<ExecutionConfigUsagesItem>>, val workerPool: Output<String>? = null) : ConvertibleToJava<ExecutionConfigArgs>

Configuration of the environment to use when calling Skaffold.

Constructors

Link copied to clipboard
fun ExecutionConfigArgs(artifactStorage: Output<String>? = null, defaultPool: Output<DefaultPoolArgs>? = null, executionTimeout: Output<String>? = null, privatePool: Output<PrivatePoolArgs>? = null, serviceAccount: Output<String>? = null, usages: Output<List<ExecutionConfigUsagesItem>>, workerPool: Output<String>? = null)

Functions

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

Properties

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

Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.

Link copied to clipboard
val defaultPool: Output<DefaultPoolArgs>? = null

Optional. Use default Cloud Build pool.

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

Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.

Link copied to clipboard
val privatePool: Output<PrivatePoolArgs>? = null

Optional. Use private Cloud Build pool.

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

Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.

Link copied to clipboard

Usages when this configuration should be applied.

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

Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.