ExportArgs

data class ExportArgs(val blobListBlobPath: Output<String>? = null, val blobPath: Output<List<String>>? = null, val blobPathPrefix: Output<List<String>>? = null) : ConvertibleToJava<ExportArgs>

A property containing information about the blobs to be exported for an export job. This property is required for export jobs, but must not be specified for import jobs.

Constructors

Link copied to clipboard
constructor(blobListBlobPath: Output<String>? = null, blobPath: Output<List<String>>? = null, blobPathPrefix: Output<List<String>>? = null)

Properties

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

The relative URI to the block blob that contains the list of blob paths or blob path prefixes as defined above, beginning with the container name. If the blob is in root container, the URI must begin with $root.

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

A collection of blob-path strings.

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

A collection of blob-prefix strings.

Functions

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