ExportResponse

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

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: String? = null, blobPath: List<String>? = null, blobPathPrefix: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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: List<String>? = null

A collection of blob-path strings.

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

A collection of blob-prefix strings.