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

    Interface V1AddVolumeOptions

    AddVolumeOptions is provided when dynamically hot plugging a volume and disk

    interface V1AddVolumeOptions {
        disk: V1Disk;
        dryRun?: string[];
        name: string;
        volumeSource: V1HotplugVolumeSource;
    }
    Index

    Properties

    disk: V1Disk

    Disk represents the hotplug disk that will be plugged into the running VMI

    dryRun?: string[]

    When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

    name: string

    Name represents the name that will be used to map the disk to the corresponding volume. This overrides any name set inside the Disk struct itself.

    ""
    
    volumeSource: V1HotplugVolumeSource

    VolumeSource represents the source of the volume to map to the disk.