PacketCaptureStorageLocationResponse

data class PacketCaptureStorageLocationResponse(val filePath: String? = null, val storageId: String? = null, val storagePath: String? = null)

The storage location for a packet capture session.

Constructors

Link copied to clipboard
constructor(filePath: String? = null, storageId: String? = null, storagePath: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val filePath: String? = null

A valid local path on the targeting VM. Must include the name of the capture file (*.cap). For linux virtual machine it must start with /var/captures. Required if no storage ID is provided, otherwise optional.

Link copied to clipboard
val storageId: String? = null

The ID of the storage account to save the packet capture session. Required if no local file path is provided.

Link copied to clipboard
val storagePath: String? = null

The URI of the storage path to save the packet capture. Must be a well-formed URI describing the location to save the packet capture.