FileMetadataArgs

data class FileMetadataArgs(val fileFormat: Output<Either<String, FileFormat>>? = null, val fileName: Output<String>? = null, val fileSize: Output<Int>? = null) : ConvertibleToJava<FileMetadataArgs>

Represents a file.

Constructors

Link copied to clipboard
constructor(fileFormat: Output<Either<String, FileFormat>>? = null, fileName: Output<String>? = null, fileSize: Output<Int>? = null)

Properties

Link copied to clipboard
val fileFormat: Output<Either<String, FileFormat>>? = null

The format of the file

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

The name of the file.

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

The size of the file.

Functions

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