GcsDataArgs

data class GcsDataArgs(val bucketName: Output<String>, val path: Output<String>? = null) : ConvertibleToJava<GcsDataArgs>

In a GcsData resource, an object's name is the Cloud Storage object's name and its "last modification time" refers to the object's updated property of Cloud Storage objects, which changes when the content or the metadata of the object is updated.

Constructors

Link copied to clipboard
fun GcsDataArgs(bucketName: Output<String>, path: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard
val bucketName: Output<String>

Cloud Storage bucket name. Must meet /storage/docs/naming#requirements.

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

Root path to transfer objects. Must be an empty string or full path name that ends with a '/'. This field is treated as an object prefix. As such, it should generally not begin with a '/'. The root path value must meet /storage/docs/naming#objectnames.