Package org.ovirt.engine.sdk4.services
Interface TemplateService.ExportToPathOnHostRequest
-
- All Superinterfaces:
Request<TemplateService.ExportToPathOnHostRequest,TemplateService.ExportToPathOnHostResponse>
- Enclosing interface:
- TemplateService
public static interface TemplateService.ExportToPathOnHostRequest extends Request<TemplateService.ExportToPathOnHostRequest,TemplateService.ExportToPathOnHostResponse>
Exports a template as an OVA file to a given path on a specified host.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TemplateService.ExportToPathOnHostRequest
directory(String directory)
An absolute path of a directory on the host to generate the OVA file in.TemplateService.ExportToPathOnHostRequest
exclusive(Boolean exclusive)
Indicates if the existing templates with the same name should be overwritten.TemplateService.ExportToPathOnHostRequest
filename(String filename)
The name of the OVA file.TemplateService.ExportToPathOnHostRequest
host(HostBuilder host)
The host to generate the OVA file on.TemplateService.ExportToPathOnHostRequest
host(Host host)
TemplateService.ExportToPathOnHostRequest
storageDomain(StorageDomainBuilder storageDomain)
Specifies the destination export storage domain.TemplateService.ExportToPathOnHostRequest
storageDomain(StorageDomain storageDomain)
-
-
-
Method Detail
-
directory
TemplateService.ExportToPathOnHostRequest directory(String directory)
An absolute path of a directory on the host to generate the OVA file in.
-
exclusive
TemplateService.ExportToPathOnHostRequest exclusive(Boolean exclusive)
Indicates if the existing templates with the same name should be overwritten. The export action reports a failed action if a template of the same name exists in the destination domain. Set this parameter to `true` to change this behavior and overwrite any existing template.
-
filename
TemplateService.ExportToPathOnHostRequest filename(String filename)
The name of the OVA file. This is an optional parameter. If it is not specified, the name of the OVA file is determined according to the name of the template. It will conform to the following pattern: ".ova".
-
host
TemplateService.ExportToPathOnHostRequest host(Host host)
-
host
TemplateService.ExportToPathOnHostRequest host(HostBuilder host)
The host to generate the OVA file on.
-
storageDomain
TemplateService.ExportToPathOnHostRequest storageDomain(StorageDomain storageDomain)
-
storageDomain
TemplateService.ExportToPathOnHostRequest storageDomain(StorageDomainBuilder storageDomain)
Specifies the destination export storage domain.
-
-