CloudBuildOptionsArgs

data class CloudBuildOptionsArgs(val appYamlPath: Output<String>? = null, val cloudBuildTimeout: Output<String>? = null) : ConvertibleToJava<CloudBuildOptionsArgs>

Options for the build operations performed as a part of the version deployment. Only applicable for App Engine flexible environment when creating a version using source code directly.

Constructors

Link copied to clipboard
fun CloudBuildOptionsArgs(appYamlPath: Output<String>? = null, cloudBuildTimeout: Output<String>? = null)

Functions

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

Properties

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

Path to the yaml file used in deployment, used to determine runtime configuration details.Required for flexible environment builds.See https://cloud.google.com/appengine/docs/standard/python/config/appref for more details.

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

The Cloud Build timeout used as part of any dependent builds performed by version creation. Defaults to 10 minutes.