Interface VmService.StartRequest

    • Method Detail

      • filter

        VmService.StartRequest filter​(Boolean filter)
        Indicates if the results should be filtered according to the permissions of the user.
      • useCloudInit

        VmService.StartRequest useCloudInit​(Boolean useCloudInit)
        If set to `true`, the initialization type is set to _cloud-init_. The default value is `false`. See https://cloudinit.readthedocs.io/en/latest[this] for details.
      • useIgnition

        VmService.StartRequest useIgnition​(Boolean useIgnition)
        If set to `true`, the initialization type is set to _Ignition_. The default value is `false`. See https://coreos.com/ignition/docs/latest/[this] for details.
      • useInitialization

        VmService.StartRequest useInitialization​(Boolean useInitialization)
        If set to `true`, the initialization type is set by the VM's OS. Windows will set to _Sysprep_, Linux to _cloud-init_ and RedHat CoreOS to _Ignition_. If any of the initialization-types are explicitly set (useCloudInit, useSysprep or useIgnition), they will be prioritized and this flag will be ignored. The default value is `false`.
      • useSysprep

        VmService.StartRequest useSysprep​(Boolean useSysprep)
        If set to `true`, the initialization type is set to _Sysprep_. The default value is `false`. See https://en.wikipedia.org/wiki/Sysprep[this] for details.
      • vm

        VmService.StartRequest vm​(VmBuilder vm)
        The definition of the virtual machine for this specific run. For example: [source,xml] ---- cdrom ---- This will set the boot device to the CDROM only for this specific start. After the virtual machine is powered off, this definition will be reverted.
      • volatile_

        VmService.StartRequest volatile_​(Boolean volatile_)
        Indicates that this run configuration will be discarded even in the case of guest-initiated reboot. The default value is `false`.