Container Upload Args
data class ContainerUploadArgs(val content: Output<String>? = null, val contentBase64: Output<String>? = null, val executable: Output<Boolean>? = null, val file: Output<String>, val permissions: Output<String>? = null, val source: Output<String>? = null, val sourceHash: Output<String>? = null) : ConvertibleToJava<ContainerUploadArgs>
Constructors
Properties
Link copied to clipboard
Base64-encoded data that will be decoded and uploaded as raw bytes for the object content. This allows safely uploading non-UTF8 binary data, but is recommended only for larger binary content such as the result of the base64encode
interpolation function. See here for the reason. Conflicts with content
&source
Link copied to clipboard
If true
, the file will be uploaded with user executable permission. Defaults to false
.
Link copied to clipboard
The permission mode for the file in the container. Has precedence over executable
.
Link copied to clipboard
If using source
, this will force an update if the file content has updated but the filename has not.