constants.js 919 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. export const priorityRuleMap = {
  2. aws: {
  3. priorityNoSupport: true,
  4. },
  5. bingocloud: {
  6. priorityNoSupport: true,
  7. },
  8. openstack: {
  9. priorityNoSupport: true,
  10. },
  11. aliyun: {
  12. min: 1,
  13. max: 100,
  14. },
  15. apsara: {
  16. min: 1,
  17. max: 100,
  18. },
  19. azure: {
  20. min: 100,
  21. max: 4096,
  22. canRepeat: false,
  23. portSupportComma: true,
  24. },
  25. ctyun: {
  26. min: 1,
  27. max: 100,
  28. },
  29. google: {
  30. min: 0,
  31. max: 65535,
  32. },
  33. huawei: {
  34. min: 1,
  35. max: 100,
  36. },
  37. hcso: {
  38. min: 1,
  39. max: 100,
  40. },
  41. qcloud: {
  42. min: 0,
  43. max: 99,
  44. portSupportComma: true,
  45. },
  46. ucloud: {
  47. min: 1,
  48. max: 3,
  49. },
  50. cloudpods: {
  51. min: 1,
  52. max: 100,
  53. isMaxHigh: true,
  54. portSupportComma: true,
  55. },
  56. onecloud: {
  57. min: 1,
  58. max: 100,
  59. isMaxHigh: true,
  60. portSupportComma: true,
  61. },
  62. volcengine: {
  63. min: 1,
  64. max: 100,
  65. },
  66. ksyun: {
  67. min: 1,
  68. max: 1000,
  69. },
  70. }