This repository has been archived by the owner on Aug 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.js
1308 lines (1258 loc) · 48.1 KB
/
docs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
cloudStack.docs = {
//Dedicate Resource
helpDedicateResource: {
desc: 'Check this box to dedicate the resources to specific domain/account',
externalLink: ''
},
helpAccountForDedication: {
desc: 'Please enter an account name which belongs to the above selected domain in order to dedicate this resource to this account',
externalLink: ''
},
//Delete/archive events
helpEventsDeleteType: {
desc: 'Delete all the events by specifying its TYPE (e.g., USER.LOGIN)',
externalLink: ''
},
helpEventsDeleteDate: {
desc: 'Delete all the events which have been created in date range (specify start and end date)',
externalLink: ''
},
helpEventsArchiveType: {
desc: 'Archive all the events by specifying its TYPE (i.e., USER.LOGIN)',
externalLink: ''
},
helpEventsArchiveDate: {
desc: 'Archive all the events which have been created in date range (specify start and end date)',
externalLink: ''
},
//Delete/archive Alerts
helpAlertsDeleteType: {
desc: 'Delete all the alerts by specifying its TYPE (integer number)',
externalLink: ''
},
helpAlertsDeleteDate: {
desc: 'Delete all the alerts which have been created in date range (specify start and end date)',
externalLink: ''
},
helpAlertsArchiveType: {
desc: 'Archive all the alerts by specifying its TYPE (integer number)',
externalLink: ''
},
helpAlertsArchiveDate: {
desc: 'Archive all the alerts which have been created in date range (specify start and end date)',
externalLink: ''
},
helpManaged: {
desc: 'True if CloudStack manages the storage; else, false (check with storage provider if unknown)',
externalLink: ''
},
helpCapacityBytes: {
desc: 'Number of bytes for the primary storage to have',
externalLink: ''
},
helpCapacityIops: {
desc: 'Number of IOPS for the primary storage to have',
externalLink: ''
},
helpUrl: {
desc: 'Arbitrary data to be sent to the storage provider for configuration purposes',
externalLink: ''
},
//Ldap
helpLdapQueryFilter: {
desc: 'Query filter is used to find a mapped user in the external LDAP server.Cloudstack provides some wildchars to represent the unique attributes in its database . Example - If Cloudstack account-name is same as the LDAP uid, then following will be a valid filter: Queryfilter : (&(uid=%u) , Queryfilter: .incase of Active Directory , Email _ID :(&(mail=%e)) , displayName :(&(displayName=%u)',
externalLink: ''
},
//IP Reservation tooltips
helpIPReservationCidr: {
desc: 'Edit CIDR when you want to configure IP Reservation in isolated guest Network',
externalLink: ''
},
helpIPReservationNetworkCidr: {
desc: 'The CIDR of the entire network when IP reservation is configured',
externalLink: ' '
},
helpReservedIPRange: {
desc: 'The IP Range which is not used by CloudStack to allocate to Guest VMs.Can be used for Non Cloudstack purposes.',
externalLink: ''
},
// Add account
helpAccountUsername: {
desc: 'Any desired login ID. Must be unique in the current domain. The same username can exist in other domains, including sub-domains.',
externalLink: ''
},
helpOverridePublicNetwork: {
desc: 'Choose to override zone wide traffic label for guest traffic for this cluster',
externalLink: ''
},
helpOverrideGuestNetwork: {
desc: 'Choose to override zone wide traffic label for guest traffic for this cluster',
externalLink: ''
},
helpAccountPassword: {
desc: 'Any desired password',
externalLink: ''
},
helpAccountConfirmPassword: {
desc: 'Type the same password again',
externalLink: ''
},
helpAccountEmail: {
desc: 'The account\'s email address',
externalLink: ''
},
helpAccountFirstName: {
desc: 'The first name, also known as the given name, of a person; or the first part of the entity represented by the account, such as a customer or department',
externalLink: ''
},
helpAccountLastName: {
desc: 'The last name, also known as the family name, of a person; or the second part of the name of a customer or department',
externalLink: ''
},
helpAccountDomain: {
desc: 'Domain in which the account is to be created',
externalLink: ''
},
helpAccountAccount: {
desc: 'Multiple users can exist in an account. Set the parent account name here.',
externalLink: ''
},
helpAccountType: {
desc: 'Root admin can access all resources. Domain admin can access the domain\'s users, but not physical servers. User sees only their own resources, such as VMs.',
externalLink: ''
},
helpAccountTimezone: {
desc: 'Set the time zone that corresponds to the account\'s locale',
externalLink: ''
},
helpAccountNetworkDomain: {
desc: 'If you want to assign a special domain name to the account\'s guest VM network, specify the DNS suffix',
externalLink: ''
},
// Add cluster
helpClusterZone: {
desc: 'The zone in which you want to create the cluster',
externalLink: ''
},
helpClusterHypervisor: {
desc: 'The type of hypervisor software that runs on the hosts in this cluster. All hosts in a cluster run the same hypervisor.',
externalLink: ''
},
helpClusterPod: {
desc: 'The pod in which you want to create the cluster',
externalLink: ''
},
helpClusterName: {
desc: 'Cluster name. Used for display only. For VMware hypervisor, this must be a predefined name in VCenter.',
externalLink: ''
},
helpClustervCenterHost: {
desc: 'The hostname or IP address of the vCenter server',
externalLink: ''
},
helpClustervCenterUsername: {
desc: 'ID of a user with all administrative privileges on vCenter',
externalLink: ''
},
helpClustervCenterPassword: {
desc: 'Password of the user in Username',
externalLink: ''
},
helpClustervCenterDatacenter: {
desc: 'The vCenter datacenter that the cluster is in. For example, cloud.dc.VM',
externalLink: ''
},
// Add compute offering
helpComputeOfferingName: {
desc: 'Any desired name for the offering',
externalLink: ''
},
helpComputeOfferingDescription: {
desc: 'A short description of the offering that can be displayed to users',
externalLink: ''
},
helpComputeOfferingStorageType: {
desc: 'Type of disk for the VM. Local storage is attached to the hypervisor host where the VM is running. Shared storage is accessible via NFS.',
externalLink: ''
},
helpComputeOfferingProvisioningType: {
desc: 'Provisioning type to create a volume. Thin and sparse is lazy allocation. fat is eager allocation.',
externalLink: ''
},
helpComputeOfferingCPUCores: {
desc: 'The number of cores which should be allocated to a VM with this offering',
externalLink: ''
},
helpComputeOfferingCPUMHz: {
desc: 'The CPU speed of the cores that the VM is allocated. For example, 2000 provides a 2 GHz clock.',
externalLink: ''
},
helpComputeOfferingMemory: {
desc: 'The amount of memory in megabytes to allocate for the system VM. For example, 2048 provides 2 GB RAM.',
externalLink: ''
},
helpComputeOfferingNetworkRate: {
desc: 'Allowed data transfer rate in megabits(Mb) per second',
externalLink: ''
},
helpComputeOfferingDiskBytesReadRate: {
desc: 'Allowed disk read rate in bytes per second',
externalLink: ''
},
helpComputeOfferingDiskBytesWriteRate: {
desc: 'Allowed disk write rate in bytes per second',
externalLink: ''
},
helpComputeOfferingDiskIopsReadRate: {
desc: 'Allowed disk read rate in I/O requests per second',
externalLink: ''
},
helpComputeOfferingDiskIopsWriteRate: {
desc: 'Allowed disk write rate in I/O requests per second',
externalLink: ''
},
helpComputeOfferingHA: {
desc: 'If yes, the administrator can choose to have the VM be monitored and as highly available as possible',
externalLink: ''
},
helpComputeOfferingStorageTags: {
desc: 'Comma-separated list of attributes that should be associated with the primary storage used by the VM. For example "ssd,blue".',
externalLink: ''
},
helpComputeOfferingHostTags: {
desc: 'Any tags that you use to organize your hosts',
externalLink: ''
},
helpComputeOfferingCPUCap: {
desc: 'If yes, the system will limit the level of CPU usage even if spare capacity is available',
externalLink: ''
},
helpComputeOfferingPublic: {
desc: 'Yes makes the offering available to all domains. No limits the scope to a subdomain; you will be prompted for the subdomain\'s name.',
externalLink: ''
},
helpComputeOfferingDomain: {
desc: 'The domain to associate this compute offering with'
},
// Add disk offering
helpDiskOfferingName: {
desc: 'Any desired name for the offering',
externalLink: ''
},
helpDiskOfferingDescription: {
desc: 'A short description of the offering that can be displayed to users',
externalLink: ''
},
helpDiskOfferingProvisioningType: {
desc: 'Provisioning type to create a volume. Thin and sparse is lazy allocation. fat is eager allocation.',
externalLink: ''
},
helpDiskOfferingStorageType: {
desc: 'Type of disk for the VM. Local is attached to the hypervisor host where the VM is running. Shared is storage accessible via NFS.',
externalLink: ''
},
helpDiskOfferingQoSType: {
desc: 'Type of Quality of Service desired, if any.',
externalLink: ''
},
helpDiskOfferingCustomDiskSize: {
desc: 'If checked, the user can set their own disk size. If not checked, the root administrator must define a value in Disk Size.',
externalLink: ''
},
helpDiskOfferingDiskSize: {
desc: 'Appears only if Custom Disk Size is not selected. Define the volume size in GB.',
externalLink: ''
},
helpDiskOfferingDiskBytesReadRate: {
desc: 'Allowed disk read rate in bytes per second',
externalLink: ''
},
helpDiskOfferingDiskBytesWriteRate: {
desc: 'Allowed disk write rate in bytes per second',
externalLink: ''
},
helpDiskOfferingDiskIopsReadRate: {
desc: 'Allowed disk read rate in I/O requests per second',
externalLink: ''
},
helpDiskOfferingDiskIopsWriteRate: {
desc: 'Allowed disk write rate in I/O requests per second',
externalLink: ''
},
helpDiskOfferingCustomDiskIops: {
desc: 'If checked, the user can set Min and Max IOPS. If not checked, the root administrator can define such values.',
externalLink: ''
},
helpDiskOfferingDiskIopsMin: {
desc: 'Appears only if Custom IOPS is not selected. Define the minimum volume IOPS.',
externalLink: ''
},
helpDiskOfferingDiskIopsMax: {
desc: 'Appears only if Custom IOPS is not selected. Define the maximum volume IOPS.',
externalLink: ''
},
helpDiskOfferingHypervisorSnapshotReserve: {
desc: 'Hypervisor snapshot reserve space as a percent of a volume (for managed storage using XenServer or VMware) (Ex. The value 25 means 25%.)).',
},
helpDiskOfferingCacheMode: {
desc: 'The write caching mode to use for disks created with this disk offering. This can improve write performance.',
externalLink: ''
},
helpDiskOfferingStorageTags: {
desc: 'Comma-separated list of attributes that should be associated with the primary storage for this disk. For example "ssd,blue".',
externalLink: ''
},
helpDiskOfferingPublic: {
desc: 'Yes makes the offering available to all domains. No limits the scope to a subdomain; you will be prompted for the subdomain\'s name.',
externalLink: ''
},
helpDiskOfferingDomain: {
desc: 'Select the subdomain in which this offering is available',
externalLink: ''
},
// Add domain
helpDomainName: {
desc: 'Any desired name for the new sub-domain. Must be unique within the current domain.',
externalLink: ''
},
helpDomainNetworkDomain: {
desc: 'If you want to assign a special domain name to this domain\'s guest VM network, specify the DNS suffix',
externalLink: ''
},
// Add F5
helpF5IPAddress: {
desc: 'The IP address of the device',
externalLink: ''
},
helpF5Username: {
desc: 'A user ID with valid authentication credentials that provide to access the device',
externalLink: ''
},
helpF5Password: {
desc: 'The password for the user ID provided in Username',
externalLink: ''
},
helpF5Type: {
desc: 'The type of device that is being added',
externalLink: ''
},
helpF5PublicInterface: {
desc: 'Interface of device that is configured to be part of the public network',
externalLink: ''
},
helpF5PrivateInterface: {
desc: 'Interface of device that is configured to be part of the private network',
externalLink: ''
},
helpF5Retries: {
desc: 'Number of times to attempt a command on the device before considering the operation failed. Default is 2.',
externalLink: ''
},
helpF5Mode: {
desc: 'Side by side mode is supported for the F5.',
externalLink: ''
},
helpF5Dedicated: {
desc: 'Check this box to dedicate the device to a single account. The value in the Capacity field will be ignored.',
externalLink: ''
},
helpF5Capacity: {
desc: 'Number of guest networks/accounts that will share this device',
externalLink: ''
},
// Add guest network
helpGuestNetworkName: {
desc: 'The name of the network. This will be user-visible.',
externalLink: ''
},
helpGuestNetworkDisplayText: {
desc: 'The description of the network. This will be user-visible.',
externalLink: ''
},
helpGuestNetworkZone: {
desc: 'The name of the zone this network applies to. The administrator must configure the IP range for the guest networks in each zone.',
externalLink: ''
},
helpGuestNetworkNetworkOffering: {
desc: 'If the administrator has configured multiple network offerings, select the one you want to use for this network',
externalLink: ''
},
helpGuestNetworkGateway: {
desc: 'The gateway that the guests should use.',
externalLink: ''
},
helpGuestNetworkNetmask: {
desc: 'The netmask in use on the subnet the guests will use.',
externalLink: ''
},
// Add guest network from zone
helpGuestNetworkZoneName: {
desc: 'The name of the network. This will be user-visible.',
externalLink: ''
},
helpGuestNetworkZoneDescription: {
desc: 'The description of the network. This will be user-visible.',
externalLink: ''
},
helpGuestNetworkZoneVLANID: {
desc: 'The VLAN tag for this network',
externalLink: ''
},
helpGuestNetworkZoneScope: {
desc: 'Scope',
externalLink: ''
},
helpGuestNetworkZoneNetworkOffering: {
desc: 'If the administrator has configured multiple network offerings, select the one you want to use for this network',
externalLink: ''
},
helpGuestNetworkZoneGateway: {
desc: 'The gateway that the guests should use.',
externalLink: ''
},
helpGuestNetworkZoneNetmask: {
desc: 'The netmask in use on the subnet the guests will use.',
externalLink: ''
},
helpGuestNetworkZoneStartIP: {
desc: 'The first IP address to define a range that can be assigned to guests. We strongly recommend the use of multiple NICs.',
externalLink: ''
},
helpGuestNetworkZoneEndIP: {
desc: 'The final IP address to define a range that can be assigned to guests. We strongly recommend the use of multiple NICs.',
externalLink: ''
},
helpGuestNetworkZoneNetworkDomain: {
desc: 'If you want to assign a special domain name to this guest VM network, specify the DNS suffix',
externalLink: ''
},
// Add host
helpHostZone: {
desc: 'The zone where you want to add the host',
externalLink: ''
},
helpHostPod: {
desc: 'The pod where you want to add the host',
externalLink: ''
},
helpHostCluster: {
desc: 'The cluster where you want to add the host',
externalLink: ''
},
helpHostName: {
desc: 'The DNS name or IP address of the host',
externalLink: ''
},
helpHostUsername: {
desc: 'Usually root',
externalLink: ''
},
helpHostPassword: {
desc: 'The password for the user named in Username. The password was set during hypervisor installation on the host.',
externalLink: ''
},
helpHostTags: {
desc: 'Any labels that you use to categorize hosts for ease of maintenance or to enable HA.',
externalLink: ''
},
// Add Netscaler
helpNetScalerIPAddress: {
desc: 'The IP address of the device',
externalLink: ''
},
helpNetScalerUsername: {
desc: 'A user ID with valid authentication credentials that provide to access the device',
externalLink: ''
},
helpNetScalerPassword: {
desc: 'The password for the user ID provided in Username',
externalLink: ''
},
helpNetScalerType: {
desc: 'The type of device that is being added',
externalLink: ''
},
helpNetScalerPublicInterface: {
desc: 'Interface of device that is configured to be part of the public network',
externalLink: ''
},
helpNetScalerPrivateInterface: {
desc: 'Interface of device that is configured to be part of the private network',
externalLink: ''
},
helpNetScalerRetries: {
desc: 'Number of times to attempt a command on the device before considering the operation failed. Default is 2.',
externalLink: ''
},
helpNetScalerDedicated: {
desc: 'Check this box to dedicate the device to a single account. The value in the Capacity field will be ignored.',
externalLink: ''
},
helpNetScalerCapacity: {
desc: 'Number of guest networks/accounts that will share this device',
externalLink: ''
},
// Add network offering
helpNetworkOfferingName: {
desc: 'Any desired name for the network offering',
externalLink: ''
},
helpNetworkOfferingDescription: {
desc: 'A short description of the offering that can be displayed to users',
externalLink: ''
},
helpNetworkOfferingNetworkRate: {
desc: 'Allowed data transfer rate in megabits(Mb) per second',
externalLink: ''
},
helpNetworkOfferingTrafficType: {
desc: 'The type of network traffic that will be carried on the network',
externalLink: ''
},
helpNetworkOfferingGuestType: {
desc: 'Choose whether the guest network is isolated or shared.',
externalLink: ''
},
helpNetworkOfferingSpecifyVLAN: {
desc: '(Isolated guest networks only) Indicate whether a VLAN should be specified when this offering is used',
externalLink: ''
},
helpNetworkOfferingVPC: {
desc: 'Specify whether this offering is for a virtual private cloud',
externalLink: ''
},
helpNetworkOfferingSystemOffering: {
desc: 'Choose the system service offering that you want the virtual routers to use in this network',
externalLink: ''
},
helpNetworkOfferingLBIsolation: {
desc: 'Specify what type of load balancer isolation you want for the network: Shared or Dedicated',
externalLink: ''
},
helpNetworkOfferingMode: {
desc: 'Choose Inline or Side by Side to specify whether a firewall is placed in front of the load balancing device (inline) or in parallel with it (side-by-side)',
externalLink: ''
},
helpNetworkOfferingAssociatePublicIP: {
desc: 'Select this option if you want to assign a public IP address to the VMs deployed in the guest network',
externalLink: ''
},
helpNetworkOfferingRedundantRouterCapability: {
desc: 'Select this option if you want to use two virtual routers in the network for uninterrupted connection: one operating as the master virtual router and the other as the backup',
externalLink: ''
},
helpNetworkOfferingConserveMode: {
desc: 'Check this box to use conserve mode, where network resources are allocated only when the first VM starts. You can define more than one service on the same public IP only when conserve mode is on.',
externalLink: ''
},
helpNetworkOfferingTags: {
desc: 'Network tag to specify which physical network to use',
externalLink: ''
},
// Add pod
helpPodZone: {
desc: 'The zone where you want to add the pod',
externalLink: ''
},
helpPodName: {
desc: 'Set a name for the pod',
externalLink: ''
},
helpPodGateway: {
desc: 'The gateway for the hosts in the pod',
externalLink: ''
},
helpPodNetmask: {
desc: 'The network prefix that defines the pod\'s subnet.',
externalLink: ''
},
helpPodStartIP: {
desc: 'The first IP address to define a range in the management network that is used to manage various system VMs',
externalLink: ''
},
helpPodEndIP: {
desc: 'The last IP address to define a range in the management network that is used to manage various system VMs',
externalLink: ''
},
// Add primary storage
helpPrimaryStorageZone: {
desc: 'The zone in which you want to create the primary storage',
externalLink: ''
},
helpPrimaryStoragePod: {
desc: 'The pod in which you want to create the primary storage',
externalLink: ''
},
helpPrimaryStorageCluster: {
desc: 'The cluster in which you want to create the primary storage',
externalLink: ''
},
helpPrimaryStorageName: {
desc: 'The name of the storage device',
externalLink: ''
},
helpPrimaryStorageProtocol: {
desc: 'For XenServer, choose NFS, iSCSI, or PreSetup. For KVM, choose NFS or SharedMountPoint. For vSphere, choose VMFS (iSCSI or FiberChannel) or NFS. For Hyper-V, choose SMB/CIFS',
externalLink: ''
},
helpPrimaryStorageServer: {
desc: 'NFS, iSCSI, or PreSetup: IP address or DNS name of the storage device. VMFS: IP address or DNS name of the vCenter server.',
externalLink: ''
},
helpPrimaryStoragePath: {
desc: 'NFS: exported path from the server. VMFS: /datacenter name/datastore name. SharedMountPoint: path where primary storage is mounted, such as "/mnt/primary"',
externalLink: ''
},
helpPrimaryStorageSRNameLabel: {
desc: 'The name-label of the SR that has been set up independently of the cloud management system',
externalLink: ''
},
helpPrimaryStorageTargetIQN: {
desc: 'In iSCSI, this is the IQN of the target. For example, iqn.1986-03.com.sun:02:01ec9bb549-1271378984',
externalLink: ''
},
helpPrimaryStorageLun: {
desc: 'In iSCSI, this is the LUN number. For example, 3.',
externalLink: ''
},
helpPrimaryStorageRBDMonitor: {
desc: 'The address of a Ceph monitor. Can also be a Round Robin DNS record',
externalLink: ''
},
helpPrimaryStorageRBDPool: {
desc: 'The pool to use on the Ceph cluster. This pool should already exist',
externalLink: ''
},
helpPrimaryStorageRBDId: {
desc: 'The cephx user to use without the client. prefix. For example: admin',
externalLink: ''
},
helpPrimaryStorageRBDSecret: {
desc: 'The base64 encoded secret of the cephx user.',
externalLink: ''
},
helpPrimaryStorageTags: {
desc: 'Comma-separated list of tags for this storage device. Must be the same set or a superset of the tags on your disk offerings.',
externalLink: ''
},
// Add secondary storage
helpSecondaryStorageZone: {
desc: 'The zone in which you want to create the secondary storage',
externalLink: ''
},
helpSecondaryStorageNFSServer: {
desc: 'The IP address of the server',
externalLink: ''
},
helpSecondaryStoragePath: {
desc: 'The exported path from the server',
externalLink: ''
},
// S3
helpS3AccessKey: {
desc: 'This identifies the S3 user account',
externalLink: ''
},
helpS3SecretKey: {
desc: 'The password matching the S3 Access Key',
externalLink: ''
},
helpS3Bucket: {
desc: 'The S3 bucket to store CloudStack data in. The bucket must be created and owned by the same user identified by the S3 Access Key',
externalLink: ''
},
helpS3Endpoint: {
desc: 'The S3 server to use. Non-standard ports can be appended to the hostname as per s3.amazonaws.com:8080',
externalLink: ''
},
helpS3ConnectionTimeout: {
desc: 'The number of milliseconds to wait when establishing an S3 connection. This is optional',
externalLink: ''
},
helpS3MaxErrorRetry: {
desc: 'The number of times to retry S3 requests before failing. This is optional',
externalLink: ''
},
helpS3SocketTimeout: {
desc: 'The number of milliseconds to wait while reading an S3 response. This is optional',
externalLink: ''
},
helpNFSStagingServer: {
desc: 'The name or IP address of the NFS secondary staging server',
externalLink: ''
},
helpNFSStagingPath: {
desc: 'The exported path to use on the NFS staging server',
externalLink: ''
},
// Add SRX
helpSRXIPAddress: {
desc: 'The IP address of the device',
externalLink: ''
},
helpSRXUsername: {
desc: 'A user ID with valid authentication credentials that provide to access the device',
externalLink: ''
},
helpSRXPassword: {
desc: 'The password for the user ID provided in Username',
externalLink: ''
},
helpSRXType: {
desc: 'The type of device that is being added',
externalLink: ''
},
helpSRXPublicInterface: {
desc: 'Interface of device that is configured to be part of the public network. For example, ge-0/0/2',
externalLink: ''
},
helpSRXPrivateInterface: {
desc: 'Interface of device that is configured to be part of the private network. For example, ge-0/0/1',
externalLink: ''
},
helpSRXUsageInterface: {
desc: 'Interface used to meter traffic. If you don\'t want to use the public interface, specify a different interface name here.',
externalLink: ''
},
helpSRXRetries: {
desc: 'Number of times to attempt a command on the device before considering the operation failed. Default is 2.',
externalLink: ''
},
helpSRXTimeout: {
desc: 'The time to wait for a command on the SRX before considering it failed. Default is 300 seconds.',
externalLink: ''
},
helpSRXMode: {
desc: 'Side by side mode is supported for the SRX.',
externalLink: ''
},
helpSRXPublicNetwork: {
desc: 'The name of the public network on the SRX. For example, trust.',
externalLink: ''
},
helpSRXPrivateNetwork: {
desc: 'The name of the private network on the SRX. For example, untrust.',
externalLink: ''
},
helpSRXDedicated: {
desc: 'Check this box to dedicate the device to a single account. The value in the Capacity field will be ignored.',
externalLink: ''
},
helpSRXCapacity: {
desc: 'Number of guest networks/accounts that will share this device',
externalLink: ''
},
// Add Palo Alto
helpPaloAltoIPAddress: {
desc: 'The IP address of the device',
externalLink: ''
},
helpPaloAltoUsername: {
desc: 'A user ID with valid authentication credentials that provide to access the device',
externalLink: ''
},
helpPaloAltoPassword: {
desc: 'The password for the user ID provided in Username',
externalLink: ''
},
helpPaloAltoType: {
desc: 'The type of device that is being added',
externalLink: ''
},
helpPaloAltoPublicInterface: {
desc: 'Interface of device that is configured to be part of the public network. For example, ge-0/0/2',
externalLink: ''
},
helpPaloAltoPrivateInterface: {
desc: 'Interface of device that is configured to be part of the private network. For example, ge-0/0/1',
externalLink: ''
},
helpPaloAltoUsageInterface: {
desc: 'Interface used to meter traffic. If you don\'t want to use the public interface, specify a different interface name here.',
externalLink: ''
},
helpPaloAltoRetries: {
desc: 'Number of times to attempt a command on the device before considering the operation failed. Default is 2.',
externalLink: ''
},
helpPaloAltoTimeout: {
desc: 'The time to wait for a command on the Palo Alto before considering it failed. Default is 300 seconds.',
externalLink: ''
},
helpPaloAltoMode: {
desc: 'Side by side mode is supported for the Palo Alto.',
externalLink: ''
},
helpPaloAltoPublicNetwork: {
desc: 'The name of the public network on the Palo Alto. For example, trust.',
externalLink: ''
},
helpPaloAltoPrivateNetwork: {
desc: 'The name of the private network on the Palo Alto. For example, untrust.',
externalLink: ''
},
helpPaloAltoVirtualRouter: {
desc: 'The name of the virtual router on the Palo Alto.',
externalLink: ''
},
helpPaloAltoThreatProfile: {
desc: 'The threat profile name/group to associate with allow firewall policies.',
externalLink: ''
},
helpPaloAltoLogProfile: {
desc: 'The log profile name/group to associate with allow firewall policies.',
externalLink: ''
},
helpPaloAltoDedicated: {
desc: 'Check this box to dedicate the device to a single account. The value in the Capacity field will be ignored.',
externalLink: ''
},
helpPaloAltoCapacity: {
desc: 'Number of guest networks/accounts that will share this device',
externalLink: ''
},
// Add system service offering
helpSystemOfferingName: {
desc: 'Any desired name for the offering',
externalLink: ''
},
helpSystemOfferingDescription: {
desc: 'A short description of the offering that can be displayed to the root administrator',
externalLink: ''
},
helpSystemOfferingVMType: {
desc: 'The type of system VM that is being offered',
externalLink: ''
},
helpSystemOfferingStorageType: {
desc: 'Type of disk for the system VM. Local storage is attached to the host where the system VM is running. Shared storage is accessible via NFS.',
externalLink: ''
},
helpSystemOfferingCPUCores: {
desc: 'The number of cores which should be allocated to a system VM with this offering',
externalLink: ''
},
helpSystemOfferingCPUMHz: {
desc: 'The CPU speed of the cores that the system VM is allocated. For example, 2000 would provide for a 2 GHz clock.',
externalLink: ''
},
helpSystemOfferingMemory: {
desc: 'The amount of memory in megabytes to allocate for the system VM. For example, 2048 provides 2 GB RAM.',
externalLink: ''
},
helpSystemOfferingNetworkRate: {
desc: 'Allowed data transfer rate in megabits(Mb) per second',
externalLink: ''
},
helpSystemOfferingDiskBytesReadRate: {
desc: 'Allowed disk read rate in bytes per second',
externalLink: ''
},
helpSystemOfferingDiskBytesWriteRate: {
desc: 'Allowed disk write rate in bytes per second',
externalLink: ''
},
helpSystemOfferingDiskIopsReadRate: {
desc: 'Allowed disk read rate in I/O requests per second',
externalLink: ''
},
helpSystemOfferingDiskIopsWriteRate: {
desc: 'Allowed disk write rate in I/O requests per second',
externalLink: ''
},
helpSystemOfferingHA: {
desc: 'If yes, the administrator can choose to have the system VM be monitored and as highly available as possible',
externalLink: ''
},
helpSystemOfferingStorageTags: {
desc: 'Comma-separated list of attributes that should be associated with the primary storage used by the system VM. For example "ssd,blue".',
externalLink: ''
},
helpSystemOfferingHostTags: {
desc: 'Any tags that you use to organize your hosts',
externalLink: ''
},
helpSystemOfferingCPUCap: {
desc: 'If yes, the system will limit the level of CPU usage even if spare capacity is available',
externalLink: ''
},
helpSystemOfferingPublic: {
desc: 'Yes makes the offering available to all domains. No limits the scope to a subdomain; you will be prompted for the subdomain\'s name.',
externalLink: ''
},
helpSystemOfferingDomain: {
desc: 'Select the subdomain in which this offering is available',
externalLink: ''
},
// Add tier
helpTierName: {
desc: 'A unique name for the tier',
externalLink: ''
},
helpTierNetworkOffering: {
desc: 'If the administrator has configured multiple network offerings, select the one you want to use for this tier',
externalLink: ''
},
helpTierGateway: {
desc: 'The gateway for the tier. Must be in the Super CIDR range of the VPC and not overlapping the CIDR of any other tier in this VPC.',
externalLink: ''
},
helpTierNetmask: {
desc: 'Netmask for the tier. For example, with VPC CIDR of 10.0.0.0/16 and network tier CIDR of 10.0.1.0/24, gateway is 10.0.1.1 and netmask is 255.255.255.0',
externalLink: ''
},
// Add user
helpUserUsername: {
desc: 'Any desired user ID. Must be unique in the current domain. The same username can exist in other domains, including sub-domains.',
externalLink: ''
},
helpUserPassword: {
desc: 'Any desired user password',
externalLink: ''
},
helpUserConfirmPassword: {
desc: 'Type the same password again',
externalLink: ''
},
helpUserEmail: {
desc: 'The user\'s email address',
externalLink: ''
},
helpUserFirstName: {
desc: 'The user\'s first name, also known as the given name',
externalLink: ''
},
helpUserLastName: {
desc: 'The user\'s last name, also known as the family name',
externalLink: ''
},
helpUserTimezone: {
desc: 'Set the time zone that corresponds to the user\'s locale',
externalLink: ''
},
// Add volume
helpVolumeName: {