CloudLabels.js 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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_name: "Migration Network Name",
  41. migr_image_name: "Migration Image Name",
  42. migr_image_name_map: "Migration Image Name Map",
  43. migr_image_id: "Migration Image ID",
  44. migr_worker_use_config_drive: "Migration Worker use ConfigDrive",
  45. migr_worker_use_fip: "Migration Worker use FIP",
  46. delete_disks_on_vm_termination: "Delete Disks on VM termination",
  47. set_dhcp: "Set DHCP",
  48. vm_size: "VM Size",
  49. location: "Location",
  50. resource_group: "Resource Group",
  51. worker_size: "Worker Size",
  52. subscription_id: "Subscription ID",
  53. user_credentials: "User Credentials",
  54. service_principal_credentials: "Service Principal Credentials",
  55. tenant_id: "Tenant ID",
  56. client_id: "Client ID",
  57. client_secret: "Client Secret",
  58. server_pool_name: "Server Pool Name",
  59. migr_template_name: "Migration Template Name",
  60. migr_template_username: "Migration Template Username",
  61. migr_template_password: "Migration Template Password",
  62. repository_name: "Repository Name",
  63. shape_name: "Shape Name",
  64. migr_shape_name: "Migration Shape Name",
  65. allow_untrusted_swift: "Allow Untrusted Swift",
  66. glance_api_version: "Glance API Version",
  67. region: "Region",
  68. access_key_id: "Access Key ID",
  69. secret_access_key: "Secret Access Key",
  70. session_token: "Session Token",
  71. clone_disks: "Clone Disks",
  72. force: "Force",
  73. skip_os_morphing: "Skip OS Morphing",
  74. shutdown_instances: "Shutdown Instances"
  75. }
  76. export const cloudLabels = {
  77. vmware_vsphere: 'vmware'
  78. }