-
Notifications
You must be signed in to change notification settings - Fork 898
/
miq_product_features.yml
7418 lines (7294 loc) · 232 KB
/
miq_product_features.yml
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
---
:name: Everything
:description: Access to Everything
:feature_type: node
:identifier: everything
:children:
# Workloads Explorer
- :name: Workloads
:description: Workloads Views
:feature_type: node
:identifier: vm_explorer
:children:
- :name: Accordions
:description: All Accordions under Workloads
:feature_type: node
:identifier: vm_explorer_accords
:children:
- :name: VMs & Instances
:description: VMs & Instances Accordion
:feature_type: node
:identifier: vms_instances_filter_accord
- :name: Templates & Images
:description: Templates & Images Accordion
:feature_type: node
:identifier: templates_images_filter_accord
# VM Explorer
- :name: Virtual Machines
:description: Virtual Machine Views
:feature_type: node
:identifier: vm_infra_explorer
:children:
- :name: Accordions
:description: All Accordions under Virtual Machines
:feature_type: node
:identifier: vm_infra_explorer_accords
:children:
- :name: VMs & Templates
:description: VMs & Templates Accordion
:feature_type: node
:identifier: vandt_accord
- :name: VMs
:description: VMs Accordion
:feature_type: node
:identifier: vms_filter_accord
- :name: Templates
:description: Templates Accordion
:feature_type: node
:identifier: templates_filter_accord
# Instance & Image Explorer
- :name: Instances
:description: Instance Views
:feature_type: node
:identifier: vm_cloud_explorer
:children:
- :name: Accordions
:description: All Accordions under Instances
:feature_type: node
:identifier: vm_cloud_explorer_accords
:children:
- :name: Instances by Provider
:description: Instances by Provider Accordion
:feature_type: node
:identifier: instances_accord
- :name: Images by Provider
:description: Images by Provider Accordion
:feature_type: node
:identifier: images_accord
- :name: Instances
:description: Instances Accordion
:feature_type: node
:identifier: instances_filter_accord
- :name: Images
:description: Images Accordion
:feature_type: node
:identifier: images_filter_accord
# Infrastructure Networks
- :name: Networking
:description: Everything under Networking
:feature_type: node
:identifier: infra_networking
:children:
- :name: View
:description: View Networking Elements
:feature_type: view
:identifier: infra_networking_view
:children:
- :name: List
:description: Display Lists of Networking Elements
:feature_type: view
:identifier: infra_networking_show_list
- :name: Show
:description: Display Individual Networking Elements
:feature_type: view
:identifier: infra_networking_show
- :name: Modify
:description: Modify Networking Element
:feature_type: admin
:identifier: infra_networking_admin
:children:
- :name: Remove
:description: Remove Networks
:feature_type: admin
:identifier: infra_networking_delete
- :name: Edit
:description: Edit Network
:feature_type: admin
:identifier: infra_networking_edit
- :name: Operate
:description: Perform Operations on Networking Elements
:feature_type: control
:identifier: infra_networking_control
:children:
- :name: Edit Tags
:description: Edit Tags for Networking Elements
:feature_type: control
:identifier: infra_networking_tag
# Infrastructure Topology
- :name: Infra Topology
:description: Infra Topology
:feature_type: node
:identifier: infra_topology
:children:
- :name: View
:description: View Infra Topology
:feature_type: view
:identifier: infra_topology_view
# MiqRequest under Services maintab for all Request types
- :name: Requests
:description: Everything under Requests
:feature_type: node
:identifier: miq_request
:children:
- :name: View
:description: View Requests
:feature_type: view
:identifier: miq_request_view
:children:
- :name: List
:description: Display Lists of Requests
:feature_type: view
:identifier: miq_request_show_list
- :name: Show
:description: Display Individual Requests
:feature_type: view
:identifier: miq_request_show
- :name: Reload
:description: Reload Requests
:feature_type: view
:hidden: true
:identifier: miq_request_reload
- :name: Logs
:description: Display Request Logs
:feature_type: view
:identifier: miq_request_show_logs
- :name: Operate
:description: Perform Operations on Requests
:feature_type: control
:identifier: miq_request_control
:children:
- :name: Approve and Deny
:description: Approve and Deny Requests
:feature_type: control
:identifier: miq_request_approval
- :name: Modify
:description: Modify Requests
:feature_type: admin
:identifier: miq_request_admin
:children:
- :name: Copy
:description: Copy a Request
:feature_type: admin
:identifier: miq_request_copy
- :name: Delete
:description: Delete Requests
:feature_type: admin
:identifier: miq_request_delete
- :name: Edit
:description: Edit a Request
:feature_type: admin
:identifier: miq_request_edit
# MiqRequest under Automation/Automate tab for Automate Requests
- :name: Requests
:description: Everything under Requests
:feature_type: node
:identifier: ae_miq_request
:children:
- :name: View
:description: View Requests
:feature_type: view
:identifier: ae_miq_request_view
:children:
- :name: List
:description: Display Lists of Requests
:feature_type: view
:identifier: ae_miq_request_show_list
- :name: Show
:description: Display Individual Requests
:feature_type: view
:identifier: ae_miq_request_show
- :name: Reload
:description: Reload Requests
:feature_type: view
:hidden: true
:identifier: ae_miq_request_reload
- :name: Operate
:description: Perform Operations on Requests
:feature_type: control
:identifier: ae_miq_request_control
:children:
- :name: Approve and Deny
:description: Approve and Deny Requests
:feature_type: control
:identifier: ae_miq_request_approval
- :name: Modify
:description: Modify Requests
:feature_type: admin
:identifier: ae_miq_request_admin
:children:
- :name: Copy
:description: Copy a Request
:feature_type: admin
:identifier: ae_miq_request_copy
- :name: Delete
:description: Delete Requests
:feature_type: admin
:identifier: ae_miq_request_delete
- :name: Edit
:description: Edit a Request
:feature_type: admin
:identifier: ae_miq_request_edit
# Catalog Items
- :name: Catalogs Explorer
:description: Everything under Catalogs
:feature_type: node
:identifier: catalog
:children:
- :name: Catalog Items
:description: Everything under All Catalog Items Accordion
:feature_type: node
:identifier: catalog_items_accord
:children:
- :name: View Catalog Items
:description: View Catalog Items
:feature_type: view
:identifier: catalog_items_view
- :name: Modify
:description: Modify Catalog Items
:feature_type: admin
:identifier: catalogitem_admin
:children:
- :name: Remove Catalog Item
:description: Remove Catalog Items
:feature_type: admin
:identifier: catalogitem_delete
- :name: Set Ownership
:description: Set Ownership of Catalog Item
:feature_type: control
:identifier: catalogitem_ownership
- :name: Edit Composite Catalog Item
:description: Edit a Composite Catalog Item
:feature_type: admin
:identifier: catalogitem_edit
- :name: Add Composite Catalog Item
:description: Add a Composite Catalog Item
:feature_type: admin
:identifier: catalogitem_new
- :name: Copy Composite Catalog Item
:description: Copy a Composite Catalog Item
:feature_type: admin
:identifier: catalogitem_copy
- :name: Edit Atomic Catalog Item
:description: Edit an Atomic Catalog Item
:feature_type: admin
:identifier: atomic_catalogitem_edit
- :name: Add Atomic Catalog Item
:description: Add Atomic Catalog Item
:feature_type: admin
:identifier: atomic_catalogitem_new
- :name: Operate
:description: Perform Operations on Catalog Items
:feature_type: control
:identifier: catalogitem_control
:children:
- :name: Edit Tags
:description: Edit Catalog Items Tags
:feature_type: control
:identifier: catalogitem_tag
- :name: Service Catalogs
:description: Everything under All Service Catalogs Accordion
:feature_type: node
:identifier: svc_catalog_accord
:children:
- :name: Modify
:description: Modify Available Services
:feature_type: admin
:identifier: svc_catalog_admin
:children:
- :name: Order Services
:description: Request to Order Services
:feature_type: admin
:identifier: svc_catalog_provision
- :name: Archive Services
:description: Request to Archive Services
:feature_type: admin
:identifier: svc_catalog_archive
- :name: Unarchive Services
:description: Request to Unarchive Services
:feature_type: admin
:identifier: svc_catalog_unarchive
- :name: Catalogs
:description: Everything under Catalogs Accordion
:feature_type: node
:identifier: st_catalog_accord
:children:
- :name: View Catalogs
:description: View Catalogs
:feature_type: view
:identifier: st_catalog_view
- :name: Modify
:description: Modify Catalog
:feature_type: admin
:identifier: st_catalog_admin
:children:
- :name: Remove Catalog
:description: Remove Catalog
:feature_type: admin
:identifier: st_catalog_delete
- :name: Edit Catalog
:description: Edit a Catalog
:feature_type: admin
:identifier: st_catalog_edit
- :name: Add Catalog
:description: Add a Composite Catalog
:feature_type: admin
:identifier: st_catalog_new
- :name: Orchestration Templates
:description: Everything under Orchestration Templates Accordion
:feature_type: node
:identifier: orchestration_templates_accord
:children:
- :name: View Orchestration Templates
:description: View Orchestration Templates
:feature_type: view
:identifier: orchestration_templates_view
- :name: Modify Orchestration Templates
:description: Modify Orchestration Templates
:feature_type: admin
:identifier: orchestration_templates_admin
:children:
- :name: Add Orchestration Template
:description: Add Orchestration Template
:identifier: orchestration_template_add
:feature_type: admin
- :name: Edit Orchestration Template
:description: Edit Orchestration Template
:identifier: orchestration_template_edit
:feature_type: admin
- :name: Copy Orchestration Template
:description: Copy Orchestration Template
:identifier: orchestration_template_copy
:feature_type: admin
- :name: Remove Orchestration Template
:description: Remove Orchestration Template
:identifier: orchestration_template_remove
:feature_type: admin
- :name: Operate
:description: Perform Operations on Orchestration Templates
:feature_type: control
:identifier: orchestration_template_control
:children:
- :name: Edit Tags
:description: Edit Orchestration Templates Tags
:feature_type: control
:identifier: orchestration_template_tag
- :name: Make Template Orderable
:description: Make Orchestration Template orderable
:feature_type: control
:identifier: make_ot_orderable
- :name: Create Service Dialog from Orchestration Template
:description: Create Service Dialog from Orchestration Template
:identifier: service_dialog_from_ot
:feature_type: admin
# My Services
- :name: My Services
:description: Everything under Services
:feature_type: node
:identifier: service
:children:
- :name: View All Services
:description: View Services
:feature_type: view
:identifier: service_view
:children:
- :name: List
:description: Display Lists of Services
:feature_type: view
:identifier: service_show_list
- :name: Show
:description: Display Individual Cloud Providers
:feature_type: view
:identifier: service_show
- :name: Modify
:description: Modify Services
:feature_type: admin
:identifier: service_admin
:children:
- :name: Edit Services
:description: Edit Services
:feature_type: admin
:identifier: service_edit
- :name: Remove Services
:description: Remove Services
:feature_type: admin
:identifier: service_delete
- :name: Set Ownership
:description: Set Ownership of Services
:feature_type: control
:identifier: service_ownership
- :name: Reconfigure Services
:description: Reconfigure Services Options
:feature_type: admin
:identifier: service_reconfigure
- :name: Operate
:description: Perform Operations on Services
:feature_type: control
:identifier: service_control
:children:
- :name: Edit Tags
:description: Edit Tags of Services
:feature_type: control
:identifier: service_tag
- :name: Set Retirement Date
:description: Set Retirement Date for Services
:feature_type: control
:identifier: service_retire
- :name: Create Services
:description: Create Services
:feature_type: control
:identifier: service_create
- :name: Retire Services
:description: Retire Services
:feature_type: control
:identifier: service_retire_now
# EmsCloud
- :name: Cloud Providers
:description: Everything under Cloud Providers
:feature_type: node
:identifier: ems_cloud
:children:
- :name: View
:description: View Cloud Providers
:feature_type: view
:identifier: ems_cloud_view
:children:
- :name: List
:description: Display Lists of Cloud Providers
:feature_type: view
:identifier: ems_cloud_show_list
- :name: Show
:description: Display Individual Cloud Providers
:feature_type: view
:identifier: ems_cloud_show
- :name: Timeline
:description: Display Timelines for Cloud Providers
:feature_type: view
:identifier: ems_cloud_timeline
- :name: Operate
:description: Perform Operations on Cloud Providers
:feature_type: control
:identifier: ems_cloud_control
:children:
- :name: Edit Tags
:description: Edit Tags of Cloud Providers
:feature_type: control
:identifier: ems_cloud_tag
- :name: Manage Policies
:description: Manage Policies of Cloud Providers
:feature_type: control
:identifier: ems_cloud_protect
- :name: Check Compliance
:description: Check Compliance of Last Known Configuration
:feature_type: control
:identifier: ems_cloud_check_compliance
- :name: Refresh
:description: Refresh Cloud Providers
:feature_type: control
:identifier: ems_cloud_refresh
- :name: Re-check Authentication Status
:description: Re-check Authentication Status of Cloud Providers
:feature_type: control
:identifier: ems_cloud_recheck_auth_status
- :name: Native Console
:description: Provides the native webconsole of the Cloud Provider
:feature_type: control
:identifier: ems_native_console
- :name: Modify
:description: Modify Cloud Providers
:feature_type: admin
:identifier: ems_cloud_admin
:children:
- :name: Remove
:description: Remove Cloud Providers
:feature_type: admin
:identifier: ems_cloud_delete
- :name: Edit
:description: Edit a Cloud Provider
:feature_type: admin
:identifier: ems_cloud_edit
- :name: Add
:description: Add a Cloud Provider
:feature_type: admin
:identifier: ems_cloud_new
- :name: Sync Users
:description: Sync Users from Cloud Provider
:feature_type: admin
:identifier: ems_cloud_user_sync
# Cloud Topology
- :name: Cloud Topology
:description: Cloud Topology
:feature_type: node
:identifier: cloud_topology
:children:
- :name: View
:description: View Cloud Topology
:feature_type: view
:identifier: cloud_topology_view
# AvailabilityZone
- :name: Availability Zones
:description: Everything under Availability Zones
:feature_type: node
:identifier: availability_zone
:children:
- :name: View
:description: View Availability Zones
:feature_type: view
:identifier: availability_zone_view
:children:
- :name: List
:description: Display Lists of Availability Zones
:feature_type: view
:identifier: availability_zone_show_list
- :name: Show
:description: Display Individual Availability Zones
:feature_type: view
:identifier: availability_zone_show
- :name: Utilization
:description: Show Capacity & Utilization data of Availability Zones
:feature_type: view
:identifier: availability_zone_perf
- :name: Timeline
:description: Display Timelines for Availability Zones
:feature_type: view
:identifier: availability_zone_timeline
- :name: Operate
:description: Perform Operations on Availability Zones
:feature_type: control
:identifier: availability_zone_control
:children:
- :name: Edit Tags
:description: Edit Tags of Availability Zone
:feature_type: control
:identifier: availability_zone_tag
# HostAggregate
- :name: Host Aggregates
:description: Everything under Host Aggregates
:feature_type: node
:identifier: host_aggregate
:children:
- :name: View
:description: View Host Aggregates
:feature_type: view
:identifier: host_aggregate_view
:children:
- :name: List
:description: Display Lists of Host Aggregates
:feature_type: view
:identifier: host_aggregate_show_list
- :name: Show
:description: Display Individual Host Aggregates
:feature_type: view
:identifier: host_aggregate_show
- :name: Utilization
:description: Show Capacity & Utilization data of Host Aggregates
:feature_type: view
:identifier: host_aggregate_perf
- :name: Timeline
:description: Display Timelines for Host Aggregates
:feature_type: view
:identifier: host_aggregate_timeline
- :name: Operate
:description: Perform Operations on Host Aggregates
:feature_type: control
:identifier: host_aggregate_control
:children:
- :name: Edit Tags
:description: Edit Tags of Host Aggregate
:feature_type: control
:identifier: host_aggregate_tag
- :name: Modify
:description: Modify Host Aggregate
:feature_type: admin
:identifier: host_aggregate_admin
:children:
- :name: Add
:description: Create a Host Aggregate
:feature_type: admin
:identifier: host_aggregate_new
- :name: Edit
:description: Edit a Host Aggregate
:feature_type: admin
:identifier: host_aggregate_edit
- :name: Remove
:description: Remove Host Aggregates
:feature_type: admin
:identifier: host_aggregate_delete
- :name: Add Host
:description: Add Host to Host Aggregate
:feature_type: admin
:identifier: host_aggregate_add_host
- :name: Remove Host
:description: Remove Host from Host Aggregate
:feature_type: admin
:identifier: host_aggregate_remove_host
# CloudObjectStoreContainer
- :name: Cloud Object Store Containers
:description: Everything under Cloud Object Store Containers
:feature_type: node
:identifier: cloud_object_store_container
:children:
- :name: View
:description: View Cloud Object Store Containers
:feature_type: view
:identifier: cloudobject_store_container_view
:children:
- :name: List
:description: Display Lists of Cloud Object Store Containers
:feature_type: view
:identifier: cloud_object_store_container_show_list
- :name: Show
:description: Display Individual Cloud Object Store Container
:feature_type: view
:identifier: cloud_object_store_container_show
- :name: Operate
:description: Perform Operations on Cloud Object Store Container
:feature_type: control
:identifier: cloud_object_store_container_control
:children:
- :name: Edit Tags
:description: Edit Tags of Cloud Object Store Container
:feature_type: control
:identifier: cloud_object_store_container_tag
- :name: Modify
:description: Modify Cloud Object Store Container
:feature_type: admin
:identifier: cloud_object_store_container_admin
:children:
- :name: Create
:description: Create Cloud Object Store Container
:feature_type: admin
:identifier: cloud_object_store_container_new
- :name: Delete
:description: Delete Cloud Object Store Container
:feature_type: admin
:identifier: cloud_object_store_container_delete
- :name: Clear
:description: Clear Cloud Object Store Container
:feature_type: admin
:identifier: cloud_object_store_container_clear
# CloudObjectStoreObject
- :name: Cloud Object Store Objects
:description: Everything under Cloud Object Store Objects
:feature_type: node
:identifier: cloud_object_store_object
:children:
- :name: View
:description: View Cloud Object Store Objects
:feature_type: view
:identifier: cloud_object_store_object_view
:children:
- :name: List
:description: Display Lists of Cloud Object Store Objects
:feature_type: view
:identifier: cloud_object_store_object_show_list
- :name: Show
:description: Display Individual Cloud Object Store Object
:feature_type: view
:identifier: cloud_object_store_object_show
- :name: Operate
:description: Perform Operations on Cloud Object Store Object
:feature_type: control
:identifier: cloud_object_store_object_control
:children:
- :name: Edit Tags
:description: Edit Tags of Cloud Object Store Object
:feature_type: control
:identifier: cloud_object_store_object_tag
- :name: Modify
:description: Modify Cloud Object Store Object
:feature_type: admin
:identifier: cloud_object_store_object_admin
:children:
- :name: Delete
:description: Delete Cloud Object Store Object
:feature_type: admin
:identifier: cloud_object_store_object_delete
# CloudTenant
- :name: Cloud Tenants
:description: Everything under Cloud Tenants
:feature_type: node
:identifier: cloud_tenant
:children:
- :name: View
:description: View Tenants
:feature_type: view
:identifier: cloud_tenant_view
:children:
- :name: List
:description: Display Lists of Tenants
:feature_type: view
:identifier: cloud_tenant_show_list
- :name: Show
:description: Display Individual Tenants
:feature_type: view
:identifier: cloud_tenant_show
- :name: Utilization
:description: Show Capacity & Utilization data of Tenants
:feature_type: view
:identifier: cloud_tenant_perf
- :name: Timeline
:description: Display Timelines for Tenants
:feature_type: view
:identifier: cloud_tenant_timeline
- :name: Operate
:description: Perform Operations on Tenants
:feature_type: control
:identifier: cloud_tenant_control
:children:
- :name: Edit Tags
:description: Edit Tags of Tenants
:feature_type: control
:identifier: cloud_tenant_tag
- :name: Modify
:description: Modify Tenants
:feature_type: admin
:identifier: cloud_tenant_admin
:children:
- :name: Add
:description: Add a Tenant
:feature_type: admin
:identifier: cloud_tenant_new
- :name: Edit
:description: Edit a Tenant
:feature_type: admin
:identifier: cloud_tenant_edit
- :name: Remove
:description: Remove Tenants
:feature_type: admin
:identifier: cloud_tenant_delete
# CloudVolume
- :name: Cloud Volumes
:description: Everything under Cloud Volumes
:feature_type: node
:identifier: cloud_volume
:children:
- :name: View
:description: View Volumes
:feature_type: view
:identifier: cloud_volume_view
:children:
- :name: List
:description: Display Lists of Volumes
:feature_type: view
:identifier: cloud_volume_show_list
- :name: Show
:description: Display Individual Volumes
:feature_type: view
:identifier: cloud_volume_show
- :name: Operate
:description: Perform Operations on Volumes
:feature_type: control
:identifier: cloud_volume_control
:children:
- :name: Edit Tags
:description: Edit Tags of Volumes
:feature_type: control
:identifier: cloud_volume_tag
- :name: Modify
:description: Modify Volumes
:feature_type: admin
:identifier: cloud_volume_admin
:children:
- :name: Add
:description: Add a Volume
:feature_type: admin
:identifier: cloud_volume_new
- :name: Edit
:description: Edit a Volume
:feature_type: admin
:identifier: cloud_volume_edit
- :name: Create a Backup
:description: Create a Volume Backup
:feature_type: admin
:identifier: cloud_volume_backup_create
- :name: Restore from a Backup
:description: Restore from a Volume Backup
:feature_type: admin
:identifier: cloud_volume_backup_restore
- :name: Create a Snapshot
:description: Create a Volume Snapshot
:feature_type: admin
:identifier: cloud_volume_snapshot_create
- :name: Attach
:description: Attach a Volume
:feature_type: admin
:identifier: cloud_volume_attach
- :name: Detach
:description: Detach a Volume
:feature_type: admin
:identifier: cloud_volume_detach
- :name: Clone
:description: Clone a Volume
:feature_type: admin
:identifier: cloud_volume_clone
- :name: Remove
:description: Remove Volumes
:feature_type: admin
:identifier: cloud_volume_delete
- :name: Safe Remove
:description: Safely Remove Volumes
:feature_type: admin
:identifier: cloud_volume_safe_delete
- :name: Reload
:description: Reload the current display
:feature_type: admin
:identifier: cloud_volume_reload
- :name: Refresh
:description: Refresh Cloud Volumes
:feature_type: admin
:identifier: cloud_volume_refresh
# AuthKeyPair
- :name: Auth Key Pairs
:description: Everything under Auth Key Pairs
:feature_type: node
:identifier: auth_key_pair_cloud
:children:
- :name: View
:description: View Key Pairs
:feature_type: view
:identifier: auth_key_pair_cloud_view
:children:
- :name: List
:description: Display Lists of Key Pairs
:feature_type: view
:identifier: auth_key_pair_cloud_show_list
- :name: Show
:description: Display Individual Key Pairs
:feature_type: view
:identifier: auth_key_pair_cloud_show
- :name: Download
:description: Download Private Key
:feature_type: view
:identifier: auth_key_pair_cloud_download
- :name: Operate
:description: Perform Operations on Key Pairs
:feature_type: control
:identifier: auth_key_pair_cloud_control
:children:
- :name: Edit Tags
:description: Edit Tags of Key Pairs
:feature_type: control
:identifier: auth_key_pair_cloud_tag
- :name: Set Ownership
:description: Set Ownership of Keys Pairs
:feature_type: control
:identifier: auth_key_pair_ownership
- :name: Modify
:description: Modify Key Pairs
:feature_type: admin
:identifier: auth_key_pair_cloud_admin
:children:
- :name: Add
:description: Add a Key Pair
:feature_type: admin
:identifier: auth_key_pair_cloud_new
- :name: Remove
:description: Remove Key Pairs
:feature_type: admin
:identifier: auth_key_pair_cloud_delete
# Placement Groups
- :name: Placement Group
:description: Placement Group
:feature_type: node
:identifier: placement_group
:children:
- :name: View
:description: View Placement Group
:feature_type: view
:identifier: placement_group_view
:children:
- :name: List
:description: Display Lists of Placement Groups
:feature_type: view
:identifier: placement_group_show_list
- :name: Show
:description: Display Individual Placement Groups
:feature_type: view
:identifier: placement_group_show
- :name: Operate
:description: Perform Operations on Placement Groups
:feature_type: control
:identifier: placement_group_control
:children:
- :name: Edit Tags
:description: Edit Tags of Placement Group
:feature_type: control
:identifier: placement_group_edit
- :name: Add Placement Group
:description: Add Placement Group
:feature_type: control
:identifier: placement_group_add
- :name: Delete Placement Group
:description: Delete Placement Group
:feature_type: control
:identifier: placement_group_delete
- :name: Add VM to placement group
:description: Add VM to Placement Group
:feature_type: control
:identifier: placement_group_add_vm
- :name: Remove VM from Placement Group
:description: Delete VM from Placement Group
:feature_type: control
:identifier: placement_group_remove_vm
# CloudVolumeSnapshot
- :name: Cloud Volume Snapshots
:description: Everything under Cloud Volume Snapshots
:feature_type: node
:identifier: cloud_volume_snapshot
:children:
- :name: View
:description: View Snapshots
:feature_type: view
:identifier: cloud_volume_snapshot_view
:children:
- :name: List
:description: Display Lists of Snapshots
:feature_type: view
:identifier: cloud_volume_snapshot_show_list
- :name: Show
:description: Display Individual Snapshots
:feature_type: view
:identifier: cloud_volume_snapshot_show
- :name: Operate
:description: Perform Operations on Snapshots
:feature_type: control
:identifier: cloud_volume_snapshot_control
:children:
- :name: Edit Tags
:description: Edit Tags of Snapshots
:feature_type: control
:identifier: cloud_volume_snapshot_tag
- :name: Modify
:description: Modify Volume Snapshots
:feature_type: admin
:identifier: cloud_volume_snapshot_admin
:children:
- :name: Remove
:description: Remove a Volume Snapshot
:feature_type: admin
:identifier: cloud_volume_snapshot_delete
# CloudVolumeBackup
- :name: Cloud Volume Backups
:description: Everything under Cloud Volume Backups
:feature_type: node
:identifier: cloud_volume_backup
:children:
- :name: View
:description: View Backups
:feature_type: view