CloudLabels.js 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. api_endpoint: "API Endpoint",
  20. allow_untrusted: "Allow Untrusted",
  21. identity_api_version: "Identity Version",
  22. identity_domain: "Identity Domain",
  23. auth_url: "Auth URL",
  24. storage_api_endpoint: "Storage Api Endpoint",
  25. storage_auth_endpoint: "Storage Authentication Endpoint",
  26. user_domain_name: "User Domain Name",
  27. project_name: "Project Name",
  28. project_domain_name: "Project Domain Name",
  29. flavor_name: { label: "Flavor Name", description: "Destination flavor name for the migrated VM" },
  30. hypervisor_type: "Hypervisor Type",
  31. container_format: "Container Format",
  32. disk_format: "Disk Format",
  33. glance_upload: "Glance Upload",
  34. keypair_name: "Keypair Name",
  35. fip_pool_name: "Floating IP Pool",
  36. migr_fip_pool_name: "Migration Floating IP Pool",
  37. migr_flavor_name: "Migration Flavor Name",
  38. migr_image: "Migration Image Name or Id",
  39. migr_image_map: "Migration Image Map",
  40. migr_network: "Migration Network Name or ID",
  41. volumes_are_zeroed: "Volumes on destination are created zeroed",
  42. port_reuse_policy: "Port Reuse Policy",
  43. keep_mac: "Keep MAC address",
  44. reuse_port: "Reuse Existing Ports",
  45. replace_mac: "Replace MAC address",
  46. migr_image_name: "Migration Image Name",
  47. migr_image_name_map: "Migration Image Name Map",
  48. migr_image_id: "Migration Image ID",
  49. migr_worker_use_config_drive: "Migration Worker use ConfigDrive",
  50. migr_worker_use_fip: "Migration Worker use FIP",
  51. delete_disks_on_vm_termination: "Delete Disks on VM termination",
  52. set_dhcp: "Set DHCP",
  53. vm_size: "VM Size",
  54. location: "Location",
  55. resource_group: "Resource Group",
  56. worker_size: "Worker Size",
  57. subscription_id: "Subscription ID",
  58. user_credentials: "User Credentials",
  59. service_principal_credentials: "Service Principal Credentials",
  60. tenant_id: "Tenant ID",
  61. client_id: "Client ID",
  62. client_secret: "Client Secret",
  63. server_pool_name: "Server Pool Name",
  64. migr_template_name: "Migration Template Name",
  65. migr_template_username: "Migration Template Username",
  66. migr_template_password: "Migration Template Password",
  67. repository_name: "Repository Name",
  68. shape_name: "Shape Name",
  69. migr_shape_name: "Migration Shape Name",
  70. allow_untrusted_swift: "Allow Untrusted Swift",
  71. glance_api_version: "Glance API Version",
  72. region: "Region",
  73. access_key_id: "Access Key ID",
  74. secret_access_key: "Secret Access Key",
  75. session_token: "Session Token",
  76. clone_disks: "Clone Disks",
  77. force: "Force",
  78. skip_os_morphing: "Skip OS Morphing",
  79. shutdown_instances: "Shutdown Instances"
  80. }
  81. export const cloudLabels = {
  82. vmware_vsphere: 'vmware'
  83. }