1<?php
2
3declare(strict_types=1);
4
5namespace OpenStack\Compute\v2;
6
7/**
8 * Represents common constants.
9 */
10abstract class Enum
11{
12    const REBOOT_SOFT         = 'SOFT';
13    const REBOOT_HARD         = 'HARD';
14    const CONSOLE_NOVNC       = 'novnc';
15    const CONSOLE_XVPNC       = 'xvpvnc';
16    const CONSOLE_RDP_HTML5   = 'rdp-html5';
17    const CONSOLE_SPICE_HTML5 = 'spice-html5';
18    const CONSOLE_SERIAL      = 'serial';
19}
20