Red Hat Training

A Red Hat training course is available for Red Hat Virtualization

2.9. Getting Sub-Resources

The following example outlines how to reference the sub-resources of a resource. In this example, a disk with the name 'my disk' that belongs to a virtual machine with the name 'test' is referenced.

Procedure 2.5. Getting the Sub-Resources of a Resource

  1. Declare an instance of the resource whose sub-resources are to be referenced:
    VM vm = api.getVMs().get("test");
  2. Declare an instance of the sub-resource to be referenced:
    VMDisk disk = vm.getDisks().get("my disk");