ProvidersMock.ts 852 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. import { Providers } from "@src/@types/Providers";
  2. import { providerTypes } from "@src/constants";
  3. export const PROVIDERS_MOCK: Providers = {
  4. aws: {
  5. types: [],
  6. },
  7. azure: {
  8. types: [],
  9. },
  10. openstack: {
  11. types: [providerTypes.DESTINATION_MINION_POOL],
  12. },
  13. opc: {
  14. types: [],
  15. },
  16. opca: {
  17. types: [],
  18. },
  19. o3c: {
  20. types: [],
  21. },
  22. oracle_vm: {
  23. types: [],
  24. },
  25. vmware_vsphere: {
  26. types: [providerTypes.SOURCE_MINION_POOL],
  27. },
  28. oci: {
  29. types: [],
  30. },
  31. "hyper-v": {
  32. types: [],
  33. },
  34. scvmm: {
  35. types: [],
  36. },
  37. olvm: {
  38. types: [],
  39. },
  40. proxmox: {
  41. types: [],
  42. },
  43. kubevirt: {
  44. types: [],
  45. },
  46. harvester: {
  47. types: [],
  48. },
  49. metal: {
  50. types: [],
  51. },
  52. rhev: {
  53. types: [],
  54. },
  55. lxd: {
  56. types: [],
  57. },
  58. libvirt: {
  59. types: [],
  60. },
  61. vhi: {
  62. types: [],
  63. },
  64. };