Struct google_appengine1::CloudBuildOptions[][src]

pub struct CloudBuildOptions {
    pub app_yaml_path: Option<String>,
    pub cloud_build_timeout: Option<String>,
}

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.

This type is not used in any activity, and only used as part of another schema.

Fields

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.

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

Trait Implementations

impl Default for CloudBuildOptions
[src]

Returns the "default value" for a type. Read more

impl Clone for CloudBuildOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CloudBuildOptions
[src]

Formats the value using the given formatter. Read more

impl Part for CloudBuildOptions
[src]

Auto Trait Implementations