/** *

Describes a block storage disk mapping.

*/ export interface _DiskMap { /** *

The original disk path exposed to the instance (for example, /dev/sdh).

*/ originalDiskPath?: string; /** *

The new disk name (e.g., my-new-disk).

*/ newDiskName?: string; } export declare type _UnmarshalledDiskMap = _DiskMap;