ZipInfoArgs

data class ZipInfoArgs(val filesCount: Output<Int>? = null, val sourceUrl: Output<String>? = null) : ConvertibleToJava<ZipInfoArgs>

The zip file information for a zip deployment.

Constructors

Link copied to clipboard
fun ZipInfoArgs(filesCount: Output<Int>? = null, sourceUrl: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard
val filesCount: Output<Int>? = null

An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow.

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

URL of the zip file to deploy from. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.