import { Kms } from './encryption/Kms';
/** Volume encryption settings */
export interface Encryption {
    /** Create the volume encrypted (auto-derives a LUKS volume type) */
    encrypted: boolean;
    /** OVH KMS key reference. When omitted, the volume is encrypted with an OVH-managed key. */
    kms?: Kms;
}
//# sourceMappingURL=Encryption.d.ts.map