CloudLabels.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. Copyright (C) 2017 Cloudbase Solutions SRL
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Affero General Public License as
  5. published by the Free Software Foundation, either version 3 of the
  6. License, or (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Affero General Public License for more details.
  11. You should have received a copy of the GNU Affero General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. export const defaultLabels = {
  15. username: "Username",
  16. password: "Password",
  17. host: "Host",
  18. port: "Port",
  19. allow_untrusted: "Allow Untrusted",
  20. identity_api_version: "Identity Version",
  21. auth_url: "Auth URL",
  22. user_domain_name: "User Domain Name",
  23. project_name: "Project Name",
  24. project_domain_name: "Project Domain Name",
  25. flavor_name: "Flavor Name",
  26. hypervisor_type: "Hypervisor Type",
  27. container_format: "Container Format",
  28. disk_format: "Disk Format",
  29. glance_upload: "Glance Upload",
  30. keypair_name: "Keypair Name",
  31. fip_pool_name: "Floating IP Pool",
  32. migr_fip_pool_name: "Migration Floating IP Pool",
  33. migr_flavor_name: "Migration Flavor Name",
  34. migr_image_name: "Migration Image Name",
  35. migr_image_name_map: "Migration Image Name Map",
  36. migr_image_id: "Migration Image ID",
  37. migr_worker_use_config_drive: "Migration Worker use ConfigDrive",
  38. migr_worker_use_fip: "Migration Worker use FIP",
  39. delete_disks_on_vm_termination: "Delete Disks on VM termination",
  40. set_dhcp: "Set DHCP",
  41. vm_size: "VM Size",
  42. location: "Location",
  43. resource_group: "Resource Group",
  44. worker_size: "Worker Size",
  45. subscription_id: "Subscription ID",
  46. tenant_id: "Tenant ID",
  47. client_id: "Client ID",
  48. client_secret: "Client Secret",
  49. server_pool_name: "Server Pool Name",
  50. migr_template_name: "Migration Template Name",
  51. migr_template_username: "Migration Template Username",
  52. migr_template_password: "Migration Template Password",
  53. repository_name: "Repository Name",
  54. shape_name: "Shape Name",
  55. migr_shape_name: "Migration Shape Name",
  56. use_colocated_snapshots: "Use Collocated Snapshots",
  57. allow_untrusted_swift: "Allow Untrusted Swift",
  58. glance_api_version: "Glance API Version"
  59. }
  60. export const cloudLabels = {
  61. vmware_vsphere: 'vmware'
  62. }