@kubevirt-ui/kubevirt-api
    Preparing search index...

    Interface V1VolumeStatus

    VolumeStatus represents information about the status of volumes attached to the VirtualMachineInstance.

    interface V1VolumeStatus {
        containerDiskVolume?: V1ContainerDiskInfo;
        hotplugVolume?: V1HotplugVolumeStatus;
        memoryDumpVolume?: V1DomainMemoryDumpInfo;
        message?: string;
        name: string;
        persistentVolumeClaimInfo?: V1PersistentVolumeClaimInfo;
        phase?: string;
        reason?: string;
        size?: number;
        target: string;
    }
    Index

    Properties

    containerDiskVolume?: V1ContainerDiskInfo

    ContainerDiskVolume shows info about the containerdisk, if the volume is a containerdisk

    hotplugVolume?: V1HotplugVolumeStatus

    If the volume is hotplug, this will contain the hotplug status.

    memoryDumpVolume?: V1DomainMemoryDumpInfo

    If the volume is memorydump volume, this will contain the memorydump info.

    message?: string

    Message is a detailed message about the current hotplug volume phase

    name: string

    Name is the name of the volume

    ""
    
    persistentVolumeClaimInfo?: V1PersistentVolumeClaimInfo

    PersistentVolumeClaimInfo is information about the PVC that handler requires during start flow

    phase?: string

    Phase is the phase

    reason?: string

    Reason is a brief description of why we are in the current hotplug volume phase

    size?: number

    Represents the size of the volume

    int64

    target: string

    Target is the target name used when adding the volume to the VM, eg: vda

    ""