types.Configuration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Model management tools for the oVirt Engine API.
/*
Copyright (c) 2015 Red Hat, Inc.
Licensed 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.
*/
package types;
import org.ovirt.api.metamodel.annotations.Type;
@Type
public interface Configuration {
ConfigurationType type();
/**
* The document describing the virtual machine.
*
* Example of the OVF document:
*
* [source,xml]
* ----
*
*
*
*
* List of networks
*
*
*
* List of Virtual Disks
*
*
* 2014/12/03 04:25:45
* 2015/02/09 14:12:24
* false
* guest_agent
* false
* Etc/GMT
* 0
* 1
* 1
* 1024
* false
* false
* false
* 1
* fdfc627c-d875-11e0-90f0-83df133b58cc
* false
* true
* true
* VM_export
* 00000000-0000-0000-0000-000000000000
* Blank
* false
* 3
* 1
* false
* 00000000-0000-0000-0000-000000000000
* Blank
* false
*
* Guest Operating System
* other
*
*
* 1 CPU, 1024 Memory
*
* ENGINE 3.5.0.0
*
* -
*
1 virtual cpu
* Number of virtual CPU
* 1
* 3
* 1
* 1
*
* -
*
1024 MB of memory
* Memory Size
* 2
* 4
* MegaBytes
* 1024
*
* -
*
USB Controller
* 3
* 23
* DISABLED
*
*
*
*
* ----
*
* @author Shmuel Melamud
* @author Byron Gravenorst
* @date 4 Nov 2016
* @status updated_by_docs
*/
String data();
}