ConfigurableOption.php 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace ModulesGarden\Servers\ProxmoxCloudVps\App\Enum;
  3. use ModulesGarden\Servers\ProxmoxCloudVps\Core\Enum\Enum;
  4. /**
  5. * @deprecated
  6. */
  7. final class ConfigurableOption extends Enum
  8. {
  9. const SOCKETS = "CPU Sockets Limit";
  10. const CORES_PER_SOCKET = "The number of cores per socket";
  11. const CORES = "CPU Cores Limit";
  12. const CPU_LIMIT = "cpuLimit";
  13. const CPU_UNITS = "CPU Weight Limit";
  14. const MEMORY = "Memory Limit";
  15. const STORAGE = "Storage Limit";
  16. const IPV4 = "IP Addresses Limit";
  17. const IPV6 = "IPv6 Addresses Limit";
  18. const SWAP = "SWAP Limit";
  19. const BACKUPS_SIZE = "Backups Size Limit";
  20. const BACKUPS_FILES = "Backups Files Limit";
  21. const SNAPSHOTS = "snapshots";
  22. const NETWORK_RATE = "networkRate";
  23. const VCPUS = "vcpus";
  24. const BANDWIDTH = 'Bandwidth';
  25. const VIRTUAL_NETWORKS = 'virtualNetworks';
  26. const DISK_SIZE = "Disk Space";
  27. }