XenAPI Reference

XenAPI Classes

Click on a class to view the associated fields and messages.

Xen-api class diagram

Classes, Fields and Messages

Classes have both fields and messages. Messages are either implicit or explicit where an implicit message is one of:

  • a constructor (usually called "create");
  • a destructor (usually called "destroy");
  • "get_by_name_label";
  • "get_by_uuid";
  • "get_record";
  • "get_all"; and
  • "get_all_records".

Explicit messages include all the rest, more class-specific messages (e.g. "VM.start", "VM.clone")

Every field has at least one accessor depending both on its type and whether it is read-only or read-write. Accessors for a field named "X" would be a proper subset of:

  • set_X: change the value of field X (only if it is read-write);
  • get_X: retrieve the value of field X;
  • add_X: add a key/value pair (for fields of type set);
  • remove_X: remove a key (for fields of type set);
  • add_to_X: add a key/value pair (for fields of type map); and
  • remove_from_X: remove a key (for fields of type map).

Subsections of XenAPI Reference

auth

Class: auth

Management of remote authentication services

Fields

Messages

string set get_group_membership (session ref, string)
string get_subject_identifier (session ref, string)
(string → string) map get_subject_information_from_identifier (session ref, string)

blob

Class: blob

A placeholder for a binary blob

Fields

datetime last_updated [RO/constructor]
string mime_type [RO/constructor]
string name_description [RW]
string name_label [RW]
bool public [RW]
int size [RO/runtime]
string uuid [RO/runtime]

Messages

blob ref create (session ref, string, bool)
void destroy (session ref, blob ref)
blob ref set get_all (session ref)
(blob ref → blob record) map get_all_records (session ref)
blob ref set get_by_name_label (session ref, string)
blob ref get_by_uuid (session ref, string)
datetime get_last_updated (session ref, blob ref)
string get_mime_type (session ref, blob ref)
string get_name_description (session ref, blob ref)
string get_name_label (session ref, blob ref)
bool get_public (session ref, blob ref)
blob record get_record (session ref, blob ref)
int get_size (session ref, blob ref)
string get_uuid (session ref, blob ref)
void set_name_description (session ref, blob ref, string)
void set_name_label (session ref, blob ref, string)
void set_public (session ref, blob ref, bool)

Bond

Class: Bond

A Network bond that combines physical network interfaces, also known as link aggregation

Enums

bond_mode

Fields

bool auto_update_mac [RO/runtime]
int links_up [RO/runtime]
PIF ref master [RO/constructor]
enum bond_mode mode [RO/runtime]
(string → string) map other_config [RW]
PIF ref primary_slave [RO/runtime]
(string → string) map properties [RO/runtime]
PIF ref set slaves [RO/runtime]
string uuid [RO/runtime]

Messages

void add_to_other_config (session ref, Bond ref, string, string)
Bond ref create (session ref, network ref, PIF ref set, string, enum bond_mode, (string → string) map)
void destroy (session ref, Bond ref)
Bond ref set get_all (session ref)
(Bond ref → Bond record) map get_all_records (session ref)
bool get_auto_update_mac (session ref, Bond ref)
Bond ref get_by_uuid (session ref, string)
int get_links_up (session ref, Bond ref)
PIF ref get_master (session ref, Bond ref)
enum bond_mode get_mode (session ref, Bond ref)
(string → string) map get_other_config (session ref, Bond ref)
PIF ref get_primary_slave (session ref, Bond ref)
(string → string) map get_properties (session ref, Bond ref)
Bond record get_record (session ref, Bond ref)
PIF ref set get_slaves (session ref, Bond ref)
string get_uuid (session ref, Bond ref)
void remove_from_other_config (session ref, Bond ref, string)
void set_mode (session ref, Bond ref, enum bond_mode)
void set_other_config (session ref, Bond ref, (string → string) map)
void set_property (session ref, Bond ref, string, string)

Certificate

Class: Certificate

An X509 certificate used for TLS connections

Enums

certificate_type

Fields

string fingerprint [RO/constructor]
host ref host [RO/constructor]
string name [RO/runtime]
datetime not_after [RO/constructor]
datetime not_before [RO/constructor]
enum certificate_type type [RO/runtime]
string uuid [RO/runtime]

Messages

Certificate ref set get_all (session ref)
(Certificate ref → Certificate record) map get_all_records (session ref)
Certificate ref get_by_uuid (session ref, string)
string get_fingerprint (session ref, Certificate ref)
host ref get_host (session ref, Certificate ref)
string get_name (session ref, Certificate ref)
datetime get_not_after (session ref, Certificate ref)
datetime get_not_before (session ref, Certificate ref)
Certificate record get_record (session ref, Certificate ref)
enum certificate_type get_type (session ref, Certificate ref)
string get_uuid (session ref, Certificate ref)

Cluster

Class: Cluster

Cluster-wide Cluster metadata

Enums

cluster_operation

Fields

enum cluster_operation set allowed_operations [RO/runtime]
(string → string) map cluster_config [RO/constructor]
Cluster_host ref set cluster_hosts [RO/runtime]
string cluster_stack [RO/constructor]
string cluster_token [RO/constructor]
(string → enum cluster_operation) map current_operations [RO/runtime]
Prototype
bool is_quorate [RO/runtime]
Prototype
int live_hosts [RO/runtime]
(string → string) map other_config [RW]
string set pending_forget [RO/runtime]
bool pool_auto_join [RO/constructor]
Prototype
int quorum [RO/runtime]
float token_timeout [RO/constructor]
float token_timeout_coefficient [RO/constructor]
string uuid [RO/runtime]

Messages

void add_to_other_config (session ref, Cluster ref, string, string)
Cluster ref create (session ref, PIF ref, string, bool, float, float)
void destroy (session ref, Cluster ref)
Cluster ref set get_all (session ref)
(Cluster ref → Cluster record) map get_all_records (session ref)
enum cluster_operation set get_allowed_operations (session ref, Cluster ref)
Cluster ref get_by_uuid (session ref, string)
(string → string) map get_cluster_config (session ref, Cluster ref)
Cluster_host ref set get_cluster_hosts (session ref, Cluster ref)
string get_cluster_stack (session ref, Cluster ref)
string get_cluster_token (session ref, Cluster ref)
(string → enum cluster_operation) map get_current_operations (session ref, Cluster ref)
Prototype
bool get_is_quorate (session ref, Cluster ref)
Prototype
int get_live_hosts (session ref, Cluster ref)
network ref get_network (session ref, Cluster ref)
(string → string) map get_other_config (session ref, Cluster ref)
string set get_pending_forget (session ref, Cluster ref)
bool get_pool_auto_join (session ref, Cluster ref)
Prototype
int get_quorum (session ref, Cluster ref)
Cluster record get_record (session ref, Cluster ref)
float get_token_timeout (session ref, Cluster ref)
float get_token_timeout_coefficient (session ref, Cluster ref)
string get_uuid (session ref, Cluster ref)
Cluster ref pool_create (session ref, network ref, string, float, float)
void pool_destroy (session ref, Cluster ref)
void pool_force_destroy (session ref, Cluster ref)
void pool_resync (session ref, Cluster ref)
void remove_from_other_config (session ref, Cluster ref, string)
void set_other_config (session ref, Cluster ref, (string → string) map)

Cluster_host

Class: Cluster_host

Cluster member metadata

Enums

cluster_host_operation

Fields

enum cluster_host_operation set allowed_operations [RO/runtime]
Cluster ref cluster [RO/constructor]
(string → enum cluster_host_operation) map current_operations [RO/runtime]
bool enabled [RO/runtime]
host ref host [RO/constructor]
bool joined [RO/runtime]
Prototype
datetime last_update_live [RO/runtime]
Prototype
bool live [RO/runtime]
(string → string) map other_config [RO/constructor]
PIF ref PIF [RO/constructor]
string uuid [RO/runtime]

Messages

Cluster_host ref create (session ref, Cluster ref, host ref, PIF ref)
void destroy (session ref, Cluster_host ref)
void disable (session ref, Cluster_host ref)
void enable (session ref, Cluster_host ref)
void force_destroy (session ref, Cluster_host ref)
Cluster_host ref set get_all (session ref)
(Cluster_host ref → Cluster_host record) map get_all_records (session ref)
enum cluster_host_operation set get_allowed_operations (session ref, Cluster_host ref)
Cluster_host ref get_by_uuid (session ref, string)
Cluster ref get_cluster (session ref, Cluster_host ref)
(string → enum cluster_host_operation) map get_current_operations (session ref, Cluster_host ref)
bool get_enabled (session ref, Cluster_host ref)
host ref get_host (session ref, Cluster_host ref)
bool get_joined (session ref, Cluster_host ref)
Prototype
datetime get_last_update_live (session ref, Cluster_host ref)
Prototype
bool get_live (session ref, Cluster_host ref)
(string → string) map get_other_config (session ref, Cluster_host ref)
PIF ref get_PIF (session ref, Cluster_host ref)
Cluster_host record get_record (session ref, Cluster_host ref)
string get_uuid (session ref, Cluster_host ref)

console

Class: console

A console

Enums

console_protocol

Fields

string location [RO/runtime]
(string → string) map other_config [RW]
enum console_protocol protocol [RO/runtime]
string uuid [RO/runtime]
VM ref VM [RO/runtime]

Messages

void add_to_other_config (session ref, console ref, string, string)
console ref create (session ref, console record)
void destroy (session ref, console ref)
console ref set get_all (session ref)
(console ref → console record) map get_all_records (session ref)
console ref get_by_uuid (session ref, string)
string get_location (session ref, console ref)
(string → string) map get_other_config (session ref, console ref)
enum console_protocol get_protocol (session ref, console ref)
console record get_record (session ref, console ref)
string get_uuid (session ref, console ref)
VM ref get_VM (session ref, console ref)
void remove_from_other_config (session ref, console ref, string)
void set_other_config (session ref, console ref, (string → string) map)

crashdump

Deprecated

Class: crashdump

A VM crashdump

Fields

(string → string) map other_config [RW]
string uuid [RO/runtime]
VDI ref VDI [RO/constructor]
VM ref VM [RO/constructor]

Messages

void add_to_other_config (session ref, crashdump ref, string, string)
void destroy (session ref, crashdump ref)
Deprecated
crashdump ref set get_all (session ref)
Deprecated
(crashdump ref → crashdump record) map get_all_records (session ref)
Deprecated
crashdump ref get_by_uuid (session ref, string)
(string → string) map get_other_config (session ref, crashdump ref)
Deprecated
crashdump record get_record (session ref, crashdump ref)
string get_uuid (session ref, crashdump ref)
VDI ref get_VDI (session ref, crashdump ref)
VM ref get_VM (session ref, crashdump ref)
void remove_from_other_config (session ref, crashdump ref, string)
void set_other_config (session ref, crashdump ref, (string → string) map)

data_source

Class: data_source

Data sources for logging in RRDs

Fields

bool enabled [RO/runtime]
float max [RO/runtime]
float min [RO/runtime]
string name_description [RO/runtime]
string name_label [RO/runtime]
bool standard [RO/runtime]
string units [RO/runtime]
float value [RO/runtime]

Messages

DR_task

Class: DR_task

DR task

Fields

SR ref set introduced_SRs [RO/runtime]
string uuid [RO/runtime]

Messages

DR_task ref create (session ref, string, (string → string) map, string set)
void destroy (session ref, DR_task ref)
DR_task ref set get_all (session ref)
(DR_task ref → DR_task record) map get_all_records (session ref)
DR_task ref get_by_uuid (session ref, string)
SR ref set get_introduced_SRs (session ref, DR_task ref)
DR_task record get_record (session ref, DR_task ref)
string get_uuid (session ref, DR_task ref)

event

Class: event

Asynchronous event registration and handling

Enums

event_operation

Fields

string class [RO/constructor]
int id [RO/constructor]
Deprecated
string obj_uuid [RO/constructor]
enum event_operation operation [RO/constructor]
string ref [RO/constructor]
<class> record snapshot [RO/runtime]
Deprecated
datetime timestamp [RO/constructor]

Messages

an event batch from (session ref, string set, string, float)
int get_current_id (session ref)
string inject (session ref, string, string)
Deprecated
event record set next (session ref)
Deprecated
void register (session ref, string set)
Deprecated
void unregister (session ref, string set)

Feature

Class: Feature

A new piece of functionality

Fields

bool enabled [RO/runtime]
bool experimental [RO/constructor]
host ref host [RO/runtime]
string name_description [RO/constructor]
string name_label [RO/constructor]
string uuid [RO/runtime]
string version [RO/constructor]

Messages

Feature ref set get_all (session ref)
(Feature ref → Feature record) map get_all_records (session ref)
Feature ref set get_by_name_label (session ref, string)
Feature ref get_by_uuid (session ref, string)
bool get_enabled (session ref, Feature ref)
bool get_experimental (session ref, Feature ref)
host ref get_host (session ref, Feature ref)
string get_name_description (session ref, Feature ref)
string get_name_label (session ref, Feature ref)
Feature record get_record (session ref, Feature ref)
string get_uuid (session ref, Feature ref)
string get_version (session ref, Feature ref)

GPU_group

Class: GPU_group

A group of compatible GPUs across the resource pool

Enums

allocation_algorithm

Fields

enum allocation_algorithm allocation_algorithm [RW]
VGPU_type ref set enabled_VGPU_types [RO/runtime]
string set GPU_types [RO/runtime]
string name_description [RW]
string name_label [RW]
(string → string) map other_config [RW]
PGPU ref set PGPUs [RO/runtime]
VGPU_type ref set supported_VGPU_types [RO/runtime]
string uuid [RO/runtime]
VGPU ref set VGPUs [RO/runtime]

Messages

void add_to_other_config (session ref, GPU_group ref, string, string)
GPU_group ref create (session ref, string, string, (string → string) map)
void destroy (session ref, GPU_group ref)
GPU_group ref set get_all (session ref)
(GPU_group ref → GPU_group record) map get_all_records (session ref)
enum allocation_algorithm get_allocation_algorithm (session ref, GPU_group ref)
GPU_group ref set get_by_name_label (session ref, string)
GPU_group ref get_by_uuid (session ref, string)
VGPU_type ref set get_enabled_VGPU_types (session ref, GPU_group ref)
string set get_GPU_types (session ref, GPU_group ref)
string get_name_description (session ref, GPU_group ref)
string get_name_label (session ref, GPU_group ref)
(string → string) map get_other_config (session ref, GPU_group ref)
PGPU ref set get_PGPUs (session ref, GPU_group ref)
GPU_group record get_record (session ref, GPU_group ref)
int get_remaining_capacity (session ref, GPU_group ref, VGPU_type ref)
VGPU_type ref set get_supported_VGPU_types (session ref, GPU_group ref)
string get_uuid (session ref, GPU_group ref)
VGPU ref set get_VGPUs (session ref, GPU_group ref)
void remove_from_other_config (session ref, GPU_group ref, string)
void set_allocation_algorithm (session ref, GPU_group ref, enum allocation_algorithm)
void set_name_description (session ref, GPU_group ref, string)
void set_name_label (session ref, GPU_group ref, string)
void set_other_config (session ref, GPU_group ref, (string → string) map)

host

Class: host

A physical host

Enums

host_allowed_operations
latest_synced_updates_applied_state
update_guidances
host_display
host_sched_gran
host_numa_affinity_policy

Fields

string address [RW]
enum host_allowed_operations set allowed_operations [RO/runtime]
int API_version_major [RO/runtime]
int API_version_minor [RO/runtime]
string API_version_vendor [RO/runtime]
(string → string) map API_version_vendor_implementation [RO/runtime]
(string → string) map bios_strings [RO/runtime]
(string → blob ref) map blobs [RO/runtime]
string set capabilities [RO/constructor]
Certificate ref set certificates [RO/runtime]
(string → string) map chipset_info [RO/runtime]
VM ref control_domain [RO/runtime]
(string → string) map cpu_configuration [RO/runtime]
(string → string) map cpu_info [RO/runtime]
SR ref crash_dump_sr [RW]
host_crashdump ref set crashdumps [RO/runtime]
(string → enum host_allowed_operations) map current_operations [RO/runtime]
enum host_display display [RW]
string edition [RO/runtime]
string set editions [RO/runtime]
bool enabled [RO/runtime]
(string → string) map external_auth_configuration [RO/runtime]
string external_auth_service_name [RO/runtime]
string external_auth_type [RO/runtime]
Feature ref set features [RO/runtime]
(string → string) map guest_VCPUs_params [RW]
string set ha_network_peers [RO/runtime]
string set ha_statefiles [RO/runtime]
host_cpu ref set host_CPUs [RO/runtime]
string hostname [RW]
Prototype
bool https_only [RO/runtime]
string iscsi_iqn [RO/constructor]
Prototype
datetime last_software_update [RO/runtime]
Prototype
string last_update_hash [RO/runtime]
Prototype
enum latest_synced_updates_applied_state latest_synced_updates_applied [RO/runtime]
(string → string) map license_params [RO/runtime]
(string → string) map license_server [RW]
SR ref local_cache_sr [RO/constructor]
(string → string) map logging [RW]
int memory_overhead [RO/runtime]
host_metrics ref metrics [RO/runtime]
bool multipathing [RO/constructor]
string name_description [RW]
string name_label [RW]
Prototype
enum host_numa_affinity_policy numa_affinity_policy [RO/runtime]
(string → string) map other_config [RW]
Deprecated
host_patch ref set patches [RO/runtime]
PBD ref set PBDs [RO/runtime]
PCI ref set PCIs [RO/runtime]
enum update_guidances set pending_guidances [RO/runtime]
Prototype
enum update_guidances set pending_guidances_full [RO/runtime]
Prototype
enum update_guidances set pending_guidances_recommended [RO/runtime]
PGPU ref set PGPUs [RO/runtime]
PIF ref set PIFs [RO/runtime]
(string → string) map power_on_config [RO/runtime]
string power_on_mode [RO/runtime]
PUSB ref set PUSBs [RO/runtime]
VM ref set resident_VMs [RO/runtime]
string sched_policy [RO/runtime]
(string → string) map software_version [RO/constructor]
Deprecated
bool ssl_legacy [RO/constructor]
string set supported_bootloaders [RO/runtime]
SR ref suspend_image_sr [RW]
string set tags [RW]
bool tls_verification_enabled [RO/runtime]
Deprecated
string uefi_certificates [RO/constructor]
pool_update ref set updates [RO/runtime]
pool_update ref set updates_requiring_reboot [RO/runtime]
string uuid [RO/runtime]
int set virtual_hardware_platform_versions [RO/runtime]

Messages

void add_tags (session ref, host ref, string)
void add_to_guest_VCPUs_params (session ref, host ref, string, string)
void add_to_license_server (session ref, host ref, string, string)
void add_to_logging (session ref, host ref, string, string)
void add_to_other_config (session ref, host ref, string, string)
void apply_edition (session ref, host ref, string, bool)
Removed
void apply_recommended_guidances (session ref, host ref)
string set set apply_updates (session ref, host ref, string)
void assert_can_evacuate (session ref, host ref)
void backup_rrds (session ref, host ref, float)
void bugreport_upload (session ref, host ref, string, (string → string) map)
string call_extension (session ref, host ref, string)
string call_plugin (session ref, host ref, string, string, (string → string) map)
int compute_free_memory (session ref, host ref)
int compute_memory_overhead (session ref, host ref)
blob ref create_new_blob (session ref, host ref, string, string, bool)
void declare_dead (session ref, host ref)
void destroy (session ref, host ref)
void disable (session ref, host ref)
enum host_display disable_display (session ref, host ref)
void disable_external_auth (session ref, host ref, (string → string) map)
void disable_local_storage_caching (session ref, host ref)
string dmesg (session ref, host ref)
string dmesg_clear (session ref, host ref)
Prototype
void emergency_clear_mandatory_guidance (session ref)
void emergency_disable_tls_verification (session ref)
void emergency_ha_disable (session ref, bool)
void emergency_reenable_tls_verification (session ref)
void emergency_reset_server_certificate (session ref)
void enable (session ref, host ref)
enum host_display enable_display (session ref, host ref)
void enable_external_auth (session ref, host ref, (string → string) map, string, string)
void enable_local_storage_caching (session ref, host ref, SR ref)
void evacuate (session ref, host ref, network ref, int)
void forget_data_source_archives (session ref, host ref, string)
string get_address (session ref, host ref)
host ref set get_all (session ref)
(host ref → host record) map get_all_records (session ref)
enum host_allowed_operations set get_allowed_operations (session ref, host ref)
int get_API_version_major (session ref, host ref)
int get_API_version_minor (session ref, host ref)
string get_API_version_vendor (session ref, host ref)
(string → string) map get_API_version_vendor_implementation (session ref, host ref)
(string → string) map get_bios_strings (session ref, host ref)
(string → blob ref) map get_blobs (session ref, host ref)
host ref set get_by_name_label (session ref, string)
host ref get_by_uuid (session ref, string)
string set get_capabilities (session ref, host ref)
Certificate ref set get_certificates (session ref, host ref)
(string → string) map get_chipset_info (session ref, host ref)
VM ref get_control_domain (session ref, host ref)
(string → string) map get_cpu_configuration (session ref, host ref)
(string → string) map get_cpu_info (session ref, host ref)
SR ref get_crash_dump_sr (session ref, host ref)
host_crashdump ref set get_crashdumps (session ref, host ref)
(string → enum host_allowed_operations) map get_current_operations (session ref, host ref)
data_source record set get_data_sources (session ref, host ref)
enum host_display get_display (session ref, host ref)
string get_edition (session ref, host ref)
string set get_editions (session ref, host ref)
bool get_enabled (session ref, host ref)
(string → string) map get_external_auth_configuration (session ref, host ref)
string get_external_auth_service_name (session ref, host ref)
string get_external_auth_type (session ref, host ref)
Feature ref set get_features (session ref, host ref)
(string → string) map get_guest_VCPUs_params (session ref, host ref)
string set get_ha_network_peers (session ref, host ref)
string set get_ha_statefiles (session ref, host ref)
host_cpu ref set get_host_CPUs (session ref, host ref)
string get_hostname (session ref, host ref)
Prototype
bool get_https_only (session ref, host ref)
string get_iscsi_iqn (session ref, host ref)
Prototype
datetime get_last_software_update (session ref, host ref)
Prototype
string get_last_update_hash (session ref, host ref)
Prototype
enum latest_synced_updates_applied_state get_latest_synced_updates_applied (session ref, host ref)
(string → string) map get_license_params (session ref, host ref)
(string → string) map get_license_server (session ref, host ref)
SR ref get_local_cache_sr (session ref, host ref)
string get_log (session ref, host ref)
(string → string) map get_logging (session ref, host ref)
PIF ref get_management_interface (session ref, host ref)
int get_memory_overhead (session ref, host ref)
host_metrics ref get_metrics (session ref, host ref)
bool get_multipathing (session ref, host ref)
string get_name_description (session ref, host ref)
string get_name_label (session ref, host ref)
Prototype
enum host_numa_affinity_policy get_numa_affinity_policy (session ref, host ref)
(string → string) map get_other_config (session ref, host ref)
Deprecated
host_patch ref set get_patches (session ref, host ref)
PBD ref set get_PBDs (session ref, host ref)
PCI ref set get_PCIs (session ref, host ref)
enum update_guidances set get_pending_guidances (session ref, host ref)
Prototype
enum update_guidances set get_pending_guidances_full (session ref, host ref)
Prototype
enum update_guidances set get_pending_guidances_recommended (session ref, host ref)
PGPU ref set get_PGPUs (session ref, host ref)
PIF ref set get_PIFs (session ref, host ref)
(string → string) map get_power_on_config (session ref, host ref)
string get_power_on_mode (session ref, host ref)
PUSB ref set get_PUSBs (session ref, host ref)
host record get_record (session ref, host ref)
VM ref set get_resident_VMs (session ref, host ref)
enum host_sched_gran get_sched_gran (session ref, host ref)
string get_sched_policy (session ref, host ref)
string get_server_certificate (session ref, host ref)
datetime get_server_localtime (session ref, host ref)
datetime get_servertime (session ref, host ref)
(string → string) map get_software_version (session ref, host ref)
Deprecated
bool get_ssl_legacy (session ref, host ref)
string set get_supported_bootloaders (session ref, host ref)
SR ref get_suspend_image_sr (session ref, host ref)
string get_system_status_capabilities (session ref, host ref)
string set get_tags (session ref, host ref)
bool get_tls_verification_enabled (session ref, host ref)
Deprecated
string get_uefi_certificates (session ref, host ref)
Deprecated
VM ref set get_uncooperative_resident_VMs (session ref, host ref)
pool_update ref set get_updates (session ref, host ref)
pool_update ref set get_updates_requiring_reboot (session ref, host ref)
string get_uuid (session ref, host ref)
int set get_virtual_hardware_platform_versions (session ref, host ref)
(VM ref → string set) map get_vms_which_prevent_evacuation (session ref, host ref)
bool has_extension (session ref, host ref, string)
void install_server_certificate (session ref, host ref, string, string, string)
void license_add (session ref, host ref, string)
Removed
void license_apply (session ref, host ref, string)
void license_remove (session ref, host ref)
string set list_methods (session ref)
void local_management_reconfigure (session ref, string)
void management_disable (session ref)
void management_reconfigure (session ref, PIF ref)
(string → string) map migrate_receive (session ref, host ref, network ref, (string → string) map)
void power_on (session ref, host ref)
float query_data_source (session ref, host ref, string)
void reboot (session ref, host ref)
void record_data_source (session ref, host ref, string)
Deprecated
void refresh_pack_info (session ref, host ref)
void refresh_server_certificate (session ref, host ref)
void remove_from_guest_VCPUs_params (session ref, host ref, string)
void remove_from_license_server (session ref, host ref, string)
void remove_from_logging (session ref, host ref, string)
void remove_from_other_config (session ref, host ref, string)
void remove_tags (session ref, host ref, string)
Removed
void reset_cpu_features (session ref, host ref)
void reset_server_certificate (session ref, host ref)
void restart_agent (session ref, host ref)
(VM ref → string set) map retrieve_wlb_evacuate_recommendations (session ref, host ref)
void send_debug_keys (session ref, host ref, string)
void set_address (session ref, host ref, string)
Removed
void set_cpu_features (session ref, host ref, string)
void set_crash_dump_sr (session ref, host ref, SR ref)
void set_display (session ref, host ref, enum host_display)
void set_guest_VCPUs_params (session ref, host ref, (string → string) map)
void set_hostname (session ref, host ref, string)
void set_hostname_live (session ref, host ref, string)
Prototype
void set_https_only (session ref, host ref, bool)
void set_iscsi_iqn (session ref, host ref, string)
void set_license_server (session ref, host ref, (string → string) map)
void set_logging (session ref, host ref, (string → string) map)
void set_multipathing (session ref, host ref, bool)
void set_name_description (session ref, host ref, string)
void set_name_label (session ref, host ref, string)
Prototype
void set_numa_affinity_policy (session ref, host ref, enum host_numa_affinity_policy)
void set_other_config (session ref, host ref, (string → string) map)
void set_power_on_mode (session ref, host ref, string, (string → string) map)
void set_sched_gran (session ref, host ref, enum host_sched_gran)
void set_ssl_legacy (session ref, host ref, bool)
void set_suspend_image_sr (session ref, host ref, SR ref)
void set_tags (session ref, host ref, string set)
Deprecated
void set_uefi_certificates (session ref, host ref, string)
void shutdown (session ref, host ref)
void shutdown_agent (session ref)
void sync_data (session ref, host ref)
void syslog_reconfigure (session ref, host ref)

host_cpu

Deprecated

Class: host_cpu

A physical CPU

Fields

int family [RO/runtime]
string features [RO/runtime]
string flags [RO/runtime]
host ref host [RO/runtime]
int model [RO/runtime]
string modelname [RO/runtime]
int number [RO/runtime]
(string → string) map other_config [RW]
int speed [RO/runtime]
string stepping [RO/runtime]
float utilisation [RO/runtime]
string uuid [RO/runtime]
string vendor [RO/runtime]

Messages

void add_to_other_config (session ref, host_cpu ref, string, string)
Deprecated
host_cpu ref set get_all (session ref)
Deprecated
(host_cpu ref → host_cpu record) map get_all_records (session ref)
Deprecated
host_cpu ref get_by_uuid (session ref, string)
int get_family (session ref, host_cpu ref)
string get_features (session ref, host_cpu ref)
string get_flags (session ref, host_cpu ref)
host ref get_host (session ref, host_cpu ref)
int get_model (session ref, host_cpu ref)
string get_modelname (session ref, host_cpu ref)
int get_number (session ref, host_cpu ref)
(string → string) map get_other_config (session ref, host_cpu ref)
Deprecated
host_cpu record get_record (session ref, host_cpu ref)
int get_speed (session ref, host_cpu ref)
string get_stepping (session ref, host_cpu ref)
float get_utilisation (session ref, host_cpu ref)
string get_uuid (session ref, host_cpu ref)
string get_vendor (session ref, host_cpu ref)
void remove_from_other_config (session ref, host_cpu ref, string)
void set_other_config (session ref, host_cpu ref, (string → string) map)

host_crashdump

Class: host_crashdump

Represents a host crash dump

Fields

host ref host [RO/constructor]
(string → string) map other_config [RW]
int size [RO/runtime]
datetime timestamp [RO/runtime]
string uuid [RO/runtime]

Messages

void add_to_other_config (session ref, host_crashdump ref, string, string)
void destroy (session ref, host_crashdump ref)
host_crashdump ref set get_all (session ref)
(host_crashdump ref → host_crashdump record) map get_all_records (session ref)
host_crashdump ref get_by_uuid (session ref, string)
host ref get_host (session ref, host_crashdump ref)
(string → string) map get_other_config (session ref, host_crashdump ref)
host_crashdump record get_record (session ref, host_crashdump ref)
int get_size (session ref, host_crashdump ref)
datetime get_timestamp (session ref, host_crashdump ref)
string get_uuid (session ref, host_crashdump ref)
void remove_from_other_config (session ref, host_crashdump ref, string)
void set_other_config (session ref, host_crashdump ref, (string → string) map)
void upload (session ref, host_crashdump ref, string, (string → string) map)

host_metrics

Class: host_metrics

The metrics associated with a host

Fields

datetime last_updated [RO/runtime]
bool live [RO/runtime]
Removed
int memory_free [RO/runtime]
int memory_total [RO/runtime]
(string → string) map other_config [RW]
string uuid [RO/runtime]

Messages

void add_to_other_config (session ref, host_metrics ref, string, string)
host_metrics ref set get_all (session ref)
(host_metrics ref → host_metrics record) map get_all_records (session ref)
host_metrics ref get_by_uuid (session ref, string)
datetime get_last_updated (session ref, host_metrics ref)
bool get_live (session ref, host_metrics ref)
Removed
int get_memory_free (session ref, host_metrics ref)
int get_memory_total (session ref, host_metrics ref)
(string → string) map get_other_config (session ref, host_metrics ref)
host_metrics record get_record (session ref, host_metrics ref)
string get_uuid (session ref, host_metrics ref)
void remove_from_other_config (session ref, host_metrics ref, string)
void set_other_config (session ref, host_metrics ref, (string → string) map)

host_patch

Deprecated

Class: host_patch

Represents a patch stored on a server

Fields

bool applied [RO/runtime]
host ref host [RO/constructor]
string name_description [RO/constructor]
string name_label [RO/constructor]
(string → string) map other_config [RW]
pool_patch ref pool_patch [RO/constructor]
int size [RO/runtime]
datetime timestamp_applied [RO/runtime]
string uuid [RO/runtime]
string version [RO/constructor]

Messages

void add_to_other_config (session ref, host_patch ref, string, string)
Deprecated
string apply (session ref, host_patch ref)
Deprecated
void destroy (session ref, host_patch ref)
Deprecated
host_patch ref set get_all (session ref)
Deprecated
(host_patch ref → host_patch record) map get_all_records (session ref)
bool get_applied (session ref, host_patch ref)
Deprecated
host_patch ref set get_by_name_label (session ref, string)
Deprecated
host_patch ref get_by_uuid (session ref, string)
host ref get_host (session ref, host_patch ref)
string get_name_description (session ref, host_patch ref)
string get_name_label (session ref, host_patch ref)
(string → string) map get_other_config (session ref, host_patch ref)
pool_patch ref get_pool_patch (session ref, host_patch ref)
Deprecated
host_patch record get_record (session ref, host_patch ref)
int get_size (session ref, host_patch ref)
datetime get_timestamp_applied (session ref, host_patch ref)
string get_uuid (session ref, host_patch ref)
string get_version (session ref, host_patch ref)
void remove_from_other_config (session ref, host_patch ref, string)
void set_other_config (session ref, host_patch ref, (string → string) map)

LVHD

Class: LVHD

LVHD SR specific operations

Fields

string uuid [RO/runtime]

Messages

string enable_thin_provisioning (session ref, host ref, SR ref, int, int)
LVHD ref get_by_uuid (session ref, string)
LVHD record get_record (session ref, LVHD ref)
string get_uuid (session ref, LVHD ref)

message

Class: message

An message for the attention of the administrator

Enums

cls

Fields

string body [RO/runtime]
enum cls cls [RO/runtime]
string name [RO/runtime]
string obj_uuid [RO/runtime]
int priority [RO/runtime]
datetime timestamp [RO/runtime]
string uuid [RO/runtime]

Messages

message ref create (session ref, string, int, enum cls, string, string)
void destroy (session ref, message ref)
Prototype
void destroy_many (session ref, message ref set)
(message ref → message record) map get (session ref, enum cls, string, datetime)
message ref set get_all (session ref)
(message ref → message record) map get_all_records (session ref)
(message ref → message record) map get_all_records_where (session ref, string)
message ref get_by_uuid (session ref, string)
message record get_record (session ref, message ref)
(message ref → message record) map get_since (session ref, datetime)

network

Class: network

A virtual network

Enums

network_operations
network_default_locking_mode
network_purpose

Fields

enum network_operations set allowed_operations [RO/runtime]
(VIF ref → string) map assigned_ips [RO/runtime]
(string → blob ref) map blobs [RO/runtime]
string bridge [RO/constructor]
(string → enum network_operations) map current_operations [RO/runtime]
enum network_default_locking_mode default_locking_mode [RO/runtime]
bool managed [RO/constructor]
int MTU [RW]
string name_description [RW]
string name_label [RW]
(string → string) map other_config [RW]
PIF ref set PIFs [RO/runtime]
enum network_purpose set purpose [RO/runtime]
string set tags [RW]
string uuid [RO/runtime]
VIF ref set VIFs [RO/runtime]

Messages

void add_purpose (session ref, network ref, enum network_purpose)
void add_tags (session ref, network ref, string)
void add_to_other_config (session ref, network ref, string, string)
network ref create (session ref, network record)
blob ref create_new_blob (session ref, network ref, string, string, bool)
void destroy (session ref, network ref)
network ref set get_all (session ref)
(network ref → network record) map get_all_records (session ref)
enum network_operations set get_allowed_operations (session ref, network ref)
(VIF ref → string) map get_assigned_ips (session ref, network ref)
(string → blob ref) map get_blobs (session ref, network ref)
string get_bridge (session ref, network ref)
network ref set get_by_name_label (session ref, string)
network ref get_by_uuid (session ref, string)
(string → enum network_operations) map get_current_operations (session ref, network ref)
enum network_default_locking_mode get_default_locking_mode (session ref, network ref)
bool get_managed (session ref, network ref)
int get_MTU (session ref, network ref)
string get_name_description (session ref, network ref)
string get_name_label (session ref, network ref)
(string → string) map get_other_config (session ref, network ref)
PIF ref set get_PIFs (session ref, network ref)
enum network_purpose set get_purpose (session ref, network ref)
network record get_record (session ref, network ref)
string set get_tags (session ref, network ref)
string get_uuid (session ref, network ref)
VIF ref set get_VIFs (session ref, network ref)
void remove_from_other_config (session ref, network ref, string)
void remove_purpose (session ref, network ref, enum network_purpose)
void remove_tags (session ref, network ref, string)
void set_default_locking_mode (session ref, network ref, enum network_default_locking_mode)
void set_MTU (session ref, network ref, int)
void set_name_description (session ref, network ref, string)
void set_name_label (session ref, network ref, string)
void set_other_config (session ref, network ref, (string → string) map)
void set_tags (session ref, network ref, string set)

network_sriov

Class: network_sriov

network-sriov which connects logical pif and physical pif

Enums

sriov_configuration_mode

Fields

enum sriov_configuration_mode configuration_mode [RO/runtime]
PIF ref logical_PIF [RO/constructor]
PIF ref physical_PIF [RO/constructor]
bool requires_reboot [RO/runtime]
string uuid [RO/runtime]

Messages

network_sriov ref create (session ref, PIF ref, network ref)
void destroy (session ref, network_sriov ref)
network_sriov ref set get_all (session ref)
(network_sriov ref → network_sriov record) map get_all_records (session ref)
network_sriov ref get_by_uuid (session ref, string)
enum sriov_configuration_mode get_configuration_mode (session ref, network_sriov ref)
PIF ref get_logical_PIF (session ref, network_sriov ref)
PIF ref get_physical_PIF (session ref, network_sriov ref)
network_sriov record get_record (session ref, network_sriov ref)
int get_remaining_capacity (session ref, network_sriov ref)
bool get_requires_reboot (session ref, network_sriov ref)
string get_uuid (session ref, network_sriov ref)

Observer

Prototype

Class: Observer

Describes a observer which will control observability activity in the Toolstack

Fields

Prototype
(string → string) map attributes [RO/constructor]
Prototype
string set components [RO/constructor]
Prototype
bool enabled [RO/constructor]
Prototype
string set endpoints [RO/constructor]
Prototype
host ref set hosts [RO/constructor]
string name_description [RW]
string name_label [RW]
Prototype
string uuid [RO/runtime]

Messages

Prototype
Observer ref create (session ref, Observer record)
Prototype
void destroy (session ref, Observer ref)
Prototype
Observer ref set get_all (session ref)
Prototype
(Observer ref → Observer record) map get_all_records (session ref)
Prototype
(string → string) map get_attributes (session ref, Observer ref)
Prototype
Observer ref set get_by_name_label (session ref, string)
Prototype
Observer ref get_by_uuid (session ref, string)
Prototype
string set get_components (session ref, Observer ref)
Prototype
bool get_enabled (session ref, Observer ref)
Prototype
string set get_endpoints (session ref, Observer ref)
Prototype
host ref set get_hosts (session ref, Observer ref)
string get_name_description (session ref, Observer ref)
string get_name_label (session ref, Observer ref)
Prototype
Observer record get_record (session ref, Observer ref)
Prototype
string get_uuid (session ref, Observer ref)
Prototype
void set_attributes (session ref, Observer ref, (string → string) map)
Prototype
void set_components (session ref, Observer ref, string set)
Prototype
void set_enabled (session ref, Observer ref, bool)
Prototype
void set_endpoints (session ref, Observer ref, string set)
Prototype
void set_hosts (session ref, Observer ref, host ref set)
void set_name_description (session ref, Observer ref, string)
void set_name_label (session ref, Observer ref, string)

PBD

Class: PBD

The physical block devices through which hosts access SRs

Fields

bool currently_attached [RO/runtime]
(string → string) map device_config [RO/constructor]
host ref host [RO/constructor]
(string → string) map other_config [RW]
SR ref SR [RO/constructor]
string uuid [RO/runtime]

Messages

void add_to_other_config (session ref, PBD ref, string, string)
PBD ref create (session ref, PBD record)
void destroy (session ref, PBD ref)
PBD ref set get_all (session ref)
(PBD ref → PBD record) map get_all_records (session ref)
PBD ref get_by_uuid (session ref, string)
bool get_currently_attached (session ref, PBD ref)
(string → string) map get_device_config (session ref, PBD ref)
host ref get_host (session ref, PBD ref)
(string → string) map get_other_config (session ref, PBD ref)
PBD record get_record (session ref, PBD ref)
SR ref get_SR (session ref, PBD ref)
string get_uuid (session ref, PBD ref)
void plug (session ref, PBD ref)
void remove_from_other_config (session ref, PBD ref, string)
void set_device_config (session ref, PBD ref, (string → string) map)
void set_other_config (session ref, PBD ref, (string → string) map)
void unplug (session ref, PBD ref)

PCI

Class: PCI

A PCI device

Fields

string class_name [RO/constructor]
PCI ref set dependencies [RO/runtime]
string device_name [RO/constructor]
string driver_name [RO/constructor]
host ref host [RO/constructor]
(string → string) map other_config [RW]
string pci_id [RO/constructor]
string subsystem_device_name [RO/constructor]
string subsystem_vendor_name [RO/constructor]
string uuid [RO/runtime]
string vendor_name [RO/constructor]

Messages

void add_to_other_config (session ref, PCI ref, string, string)
PCI ref set get_all (session ref)
(PCI ref → PCI record) map get_all_records (session ref)
PCI ref get_by_uuid (session ref, string)
string get_class_name (session ref, PCI ref)
PCI ref set get_dependencies (session ref, PCI ref)
string get_device_name (session ref, PCI ref)
string get_driver_name (session ref, PCI ref)
host ref get_host (session ref, PCI ref)
(string → string) map get_other_config (session ref, PCI ref)
string get_pci_id (session ref, PCI ref)
PCI record get_record (session ref, PCI ref)
string get_subsystem_device_name (session ref, PCI ref)
string get_subsystem_vendor_name (session ref, PCI ref)
string get_uuid (session ref, PCI ref)
string get_vendor_name (session ref, PCI ref)
void remove_from_other_config (session ref, PCI ref, string)
void set_other_config (session ref, PCI ref, (string → string) map)

PGPU

Class: PGPU

A physical GPU (pGPU)

Enums

pgpu_dom0_access

Fields

(string → string) map compatibility_metadata [RO/runtime]
enum pgpu_dom0_access dom0_access [RO/runtime]
VGPU_type ref set enabled_VGPU_types [RO/runtime]
GPU_group ref GPU_group [RO/constructor]
host ref host [RO/runtime]
bool is_system_display_device [RO/runtime]
(string → string) map other_config [RW]
PCI ref PCI [RO/constructor]
VGPU ref set resident_VGPUs [RO/runtime]
(VGPU_type ref → int) map supported_VGPU_max_capacities [RO/runtime]
VGPU_type ref set supported_VGPU_types [RO/runtime]
string uuid [RO/runtime]

Messages

void add_enabled_VGPU_types (session ref, PGPU ref, VGPU_type ref)
void add_to_other_config (session ref, PGPU ref, string, string)
enum pgpu_dom0_access disable_dom0_access (session ref, PGPU ref)
enum pgpu_dom0_access enable_dom0_access (session ref, PGPU ref)
PGPU ref set get_all (session ref)
(PGPU ref → PGPU record) map get_all_records (session ref)
PGPU ref get_by_uuid (session ref, string)
(string → string) map get_compatibility_metadata (session ref, PGPU ref)
enum pgpu_dom0_access get_dom0_access (session ref, PGPU ref)
VGPU_type ref set get_enabled_VGPU_types (session ref, PGPU ref)
GPU_group ref get_GPU_group (session ref, PGPU ref)
host ref get_host (session ref, PGPU ref)
bool get_is_system_display_device (session ref, PGPU ref)
(string → string) map get_other_config (session ref, PGPU ref)
PCI ref get_PCI (session ref, PGPU ref)
PGPU record get_record (session ref, PGPU ref)
int get_remaining_capacity (session ref, PGPU ref, VGPU_type ref)
VGPU ref set get_resident_VGPUs (session ref, PGPU ref)
(VGPU_type ref → int) map get_supported_VGPU_max_capacities (session ref, PGPU ref)
VGPU_type ref set get_supported_VGPU_types (session ref, PGPU ref)
string get_uuid (session ref, PGPU ref)
void remove_enabled_VGPU_types (session ref, PGPU ref, VGPU_type ref)
void remove_from_other_config (session ref, PGPU ref, string)
void set_enabled_VGPU_types (session ref, PGPU ref, VGPU_type ref set)
void set_GPU_group (session ref, PGPU ref, GPU_group ref)
void set_other_config (session ref, PGPU ref, (string → string) map)

PIF

Class: PIF

A physical network interface (note separate VLANs are represented as several PIFs)

Enums

pif_igmp_status
ip_configuration_mode
ipv6_configuration_mode
primary_address_type

Fields

Bond ref set bond_master_of [RO/runtime]
Bond ref bond_slave_of [RO/runtime]
string set capabilities [RO/runtime]
bool currently_attached [RO/runtime]
string device [RO/constructor]
bool disallow_unplug [RO/runtime]
string DNS [RO/runtime]
string gateway [RO/runtime]
host ref host [RO/constructor]
enum pif_igmp_status igmp_snooping_status [RO/runtime]
string IP [RO/runtime]
enum ip_configuration_mode ip_configuration_mode [RO/runtime]
string set IPv6 [RO/runtime]
enum ipv6_configuration_mode ipv6_configuration_mode [RO/runtime]
string ipv6_gateway [RO/runtime]
string MAC [RO/constructor]
bool managed [RO/constructor]
bool management [RO/runtime]
PIF_metrics ref metrics [RO/runtime]
int MTU [RO/constructor]
string netmask [RO/runtime]
network ref network [RO/constructor]
(string → string) map other_config [RW]
PCI ref PCI [RO/runtime]
bool physical [RO/runtime]
enum primary_address_type primary_address_type [RO/runtime]
(string → string) map properties [RO/runtime]
network_sriov ref set sriov_logical_PIF_of [RO/runtime]
network_sriov ref set sriov_physical_PIF_of [RO/runtime]
tunnel ref set tunnel_access_PIF_of [RO/runtime]
tunnel ref set tunnel_transport_PIF_of [RO/runtime]
string uuid [RO/runtime]
int VLAN [RO/constructor]
VLAN ref VLAN_master_of [RO/runtime]
VLAN ref set VLAN_slave_of [RO/runtime]

Messages

void add_to_other_config (session ref, PIF ref, string, string)
Deprecated
PIF ref create_VLAN (session ref, string, network ref, host ref, int)
void db_forget (session ref, PIF ref)
PIF ref db_introduce (session ref, string, network ref, host ref, string, int, int, bool, enum ip_configuration_mode, string, string, string, string, Bond ref, VLAN ref, bool, (string → string) map, bool, enum ipv6_configuration_mode, string set, string, enum primary_address_type, bool, (string → string) map)
Deprecated
void destroy (session ref, PIF ref)
void forget (session ref, PIF ref)
PIF ref set get_all (session ref)
(PIF ref → PIF record) map get_all_records (session ref)
Bond ref set get_bond_master_of (session ref, PIF ref)
Bond ref get_bond_slave_of (session ref, PIF ref)
PIF ref get_by_uuid (session ref, string)
string set get_capabilities (session ref, PIF ref)
bool get_currently_attached (session ref, PIF ref)
string get_device (session ref, PIF ref)
bool get_disallow_unplug (session ref, PIF ref)
string get_DNS (session ref, PIF ref)
string get_gateway (session ref, PIF ref)
host ref get_host (session ref, PIF ref)
enum pif_igmp_status get_igmp_snooping_status (session ref, PIF ref)
string get_IP (session ref, PIF ref)
enum ip_configuration_mode get_ip_configuration_mode (session ref, PIF ref)
string set get_IPv6 (session ref, PIF ref)
enum ipv6_configuration_mode get_ipv6_configuration_mode (session ref, PIF ref)
string get_ipv6_gateway (session ref, PIF ref)
string get_MAC (session ref, PIF ref)
bool get_managed (session ref, PIF ref)
bool get_management (session ref, PIF ref)
PIF_metrics ref get_metrics (session ref, PIF ref)
int get_MTU (session ref, PIF ref)
string get_netmask (session ref, PIF ref)
network ref get_network (session ref, PIF ref)
(string → string) map get_other_config (session ref, PIF ref)
PCI ref get_PCI (session ref, PIF ref)
bool get_physical (session ref, PIF ref)
enum primary_address_type get_primary_address_type (session ref, PIF ref)
(string → string) map get_properties (session ref, PIF ref)
PIF record get_record (session ref, PIF ref)
network_sriov ref set get_sriov_logical_PIF_of (session ref, PIF ref)
network_sriov ref set get_sriov_physical_PIF_of (session ref, PIF ref)
tunnel ref set get_tunnel_access_PIF_of (session ref, PIF ref)
tunnel ref set get_tunnel_transport_PIF_of (session ref, PIF ref)
string get_uuid (session ref, PIF ref)
int get_VLAN (session ref, PIF ref)
VLAN ref get_VLAN_master_of (session ref, PIF ref)
VLAN ref set get_VLAN_slave_of (session ref, PIF ref)
PIF ref introduce (session ref, host ref, string, string, bool)
void plug (session ref, PIF ref)
void reconfigure_ip (session ref, PIF ref, enum ip_configuration_mode, string, string, string, string)
void reconfigure_ipv6 (session ref, PIF ref, enum ipv6_configuration_mode, string, string, string)
void remove_from_other_config (session ref, PIF ref, string)
void scan (session ref, host ref)
void set_disallow_unplug (session ref, PIF ref, bool)
void set_other_config (session ref, PIF ref, (string → string) map)
void set_primary_address_type (session ref, PIF ref, enum primary_address_type)
void set_property (session ref, PIF ref, string, string)
void unplug (session ref, PIF ref)

PIF_metrics

Class: PIF_metrics

The metrics associated with a physical network interface

Fields

bool carrier [RO/runtime]
string device_id [RO/runtime]
string device_name [RO/runtime]
bool duplex [RO/runtime]
Removed
float io_read_kbs [RO/runtime]
Removed
float io_write_kbs [RO/runtime]
datetime last_updated [RO/runtime]
(string → string) map other_config [RW]
string pci_bus_path [RO/runtime]
int speed [RO/runtime]
string uuid [RO/runtime]
string vendor_id [RO/runtime]
string vendor_name [RO/runtime]

Messages

void add_to_other_config (session ref, PIF_metrics ref, string, string)
PIF_metrics ref set get_all (session ref)
(PIF_metrics ref → PIF_metrics record) map get_all_records (session ref)
PIF_metrics ref get_by_uuid (session ref, string)
bool get_carrier (session ref, PIF_metrics ref)
string get_device_id (session ref, PIF_metrics ref)
string get_device_name (session ref, PIF_metrics ref)
bool get_duplex (session ref, PIF_metrics ref)
Removed
float get_io_read_kbs (session ref, PIF_metrics ref)
Removed
float get_io_write_kbs (session ref, PIF_metrics ref)
datetime get_last_updated (session ref, PIF_metrics ref)
(string → string) map get_other_config (session ref, PIF_metrics ref)
string get_pci_bus_path (session ref, PIF_metrics ref)
PIF_metrics record get_record (session ref, PIF_metrics ref)
int get_speed (session ref, PIF_metrics ref)
string get_uuid (session ref, PIF_metrics ref)
string get_vendor_id (session ref, PIF_metrics ref)
string get_vendor_name (session ref, PIF_metrics ref)
void remove_from_other_config (session ref, PIF_metrics ref, string)
void set_other_config (session ref, PIF_metrics ref, (string → string) map)

pool

Class: pool

Pool-wide information

Enums

pool_allowed_operations
telemetry_frequency
update_sync_frequency

Fields

enum pool_allowed_operations set allowed_operations [RO/runtime]
(string → blob ref) map blobs [RO/runtime]
bool client_certificate_auth_enabled [RO/runtime]
string client_certificate_auth_name [RO/runtime]
bool coordinator_bias [RW]
(string → string) map cpu_info [RO/runtime]
SR ref crash_dump_SR [RW]
(string → enum pool_allowed_operations) map current_operations [RO/runtime]
Prototype
string custom_uefi_certificates [RO/constructor]
SR ref default_SR [RW]
Prototype
int ext_auth_max_threads [RO/constructor]
(string → string) map guest_agent_config [RO/runtime]
(string → string) map gui_config [RW]
bool ha_allow_overcommit [RW]
string ha_cluster_stack [RO/runtime]
(string → string) map ha_configuration [RO/runtime]
bool ha_enabled [RO/runtime]
int ha_host_failures_to_tolerate [RO/runtime]
bool ha_overcommitted [RO/runtime]
int ha_plan_exists_for [RO/runtime]
string set ha_statefiles [RO/runtime]
(string → string) map health_check_config [RW]
bool igmp_snooping_enabled [RO/runtime]
bool is_psr_pending [RW]
Prototype
datetime last_update_sync [RO/runtime]
bool live_patching_disabled [RW]
Prototype
int local_auth_max_threads [RO/constructor]
host ref master [RO/runtime]
VDI ref set metadata_VDIs [RO/runtime]
Prototype
bool migration_compression [RW]
string name_description [RW]
string name_label [RW]
(string → string) map other_config [RW]
bool policy_no_vendor_device [RW]
bool redo_log_enabled [RO/runtime]
VDI ref redo_log_vdi [RO/runtime]
Repository ref set repositories [RO/runtime]
secret ref repository_proxy_password [RO/runtime]
string repository_proxy_url [RO/runtime]
string repository_proxy_username [RO/runtime]
(string → string) map restrictions [RO/runtime]
SR ref suspend_image_SR [RW]
string set tags [RW]
Prototype
enum telemetry_frequency telemetry_frequency [RO/runtime]
Prototype
datetime telemetry_next_collection [RO/runtime]
Prototype
secret ref telemetry_uuid [RO/runtime]
bool tls_verification_enabled [RO/runtime]
string uefi_certificates [RO/constructor]
Prototype
int update_sync_day [RO/runtime]
Prototype
bool update_sync_enabled [RO/runtime]
Prototype
enum update_sync_frequency update_sync_frequency [RO/runtime]
string uuid [RO/runtime]
Deprecated
string vswitch_controller [RO/runtime]
bool wlb_enabled [RW]
string wlb_url [RO/runtime]
string wlb_username [RO/runtime]
Deprecated
bool wlb_verify_cert [RW]

Messages

void add_repository (session ref, pool ref, Repository ref)
void add_tags (session ref, pool ref, string)
void add_to_guest_agent_config (session ref, pool ref, string, string)
void add_to_gui_config (session ref, pool ref, string, string)
void add_to_health_check_config (session ref, pool ref, string, string)
void add_to_other_config (session ref, pool ref, string, string)
void apply_edition (session ref, pool ref, string)
Deprecated
void certificate_install (session ref, string, string)
Deprecated
string set certificate_list (session ref)
void certificate_sync (session ref)
Deprecated
void certificate_uninstall (session ref, string)
string set set check_update_readiness (session ref, pool ref, bool)
void configure_repository_proxy (session ref, pool ref, string, string, string)
Prototype
void configure_update_sync (session ref, pool ref, enum update_sync_frequency, int)
blob ref create_new_blob (session ref, pool ref, string, string, bool)
PIF ref set create_VLAN (session ref, string, network ref, int)
PIF ref set create_VLAN_from_PIF (session ref, PIF ref, network ref, int)
void crl_install (session ref, string, string)
string set crl_list (session ref)
void crl_uninstall (session ref, string)
void deconfigure_wlb (session ref)
void designate_new_master (session ref, host ref)
void detect_nonhomogeneous_external_auth (session ref, pool ref)
void disable_client_certificate_auth (session ref, pool ref)
void disable_external_auth (session ref, pool ref, (string → string) map)
void disable_ha (session ref)
void disable_local_storage_caching (session ref, pool ref)
void disable_redo_log (session ref)
void disable_repository_proxy (session ref, pool ref)
Deprecated
void disable_ssl_legacy (session ref, pool ref)
void eject (session ref, host ref)
void emergency_reset_master (session ref, string)
void emergency_transition_to_master (session ref)
void enable_client_certificate_auth (session ref, pool ref, string)
void enable_external_auth (session ref, pool ref, (string → string) map, string, string)
void enable_ha (session ref, SR ref set, (string → string) map)
void enable_local_storage_caching (session ref, pool ref)
void enable_redo_log (session ref, SR ref)
Removed
void enable_ssl_legacy (session ref, pool ref)
void enable_tls_verification (session ref)
pool ref set get_all (session ref)
(pool ref → pool record) map get_all_records (session ref)
enum pool_allowed_operations set get_allowed_operations (session ref, pool ref)
(string → blob ref) map get_blobs (session ref, pool ref)
pool ref get_by_uuid (session ref, string)
bool get_client_certificate_auth_enabled (session ref, pool ref)
string get_client_certificate_auth_name (session ref, pool ref)
bool get_coordinator_bias (session ref, pool ref)
(string → string) map get_cpu_info (session ref, pool ref)
SR ref get_crash_dump_SR (session ref, pool ref)
(string → enum pool_allowed_operations) map get_current_operations (session ref, pool ref)
Prototype
string get_custom_uefi_certificates (session ref, pool ref)
SR ref get_default_SR (session ref, pool ref)
Prototype
int get_ext_auth_max_threads (session ref, pool ref)
(string → string) map get_guest_agent_config (session ref, pool ref)
(string → string) map get_gui_config (session ref, pool ref)
bool get_ha_allow_overcommit (session ref, pool ref)
string get_ha_cluster_stack (session ref, pool ref)
(string → string) map get_ha_configuration (session ref, pool ref)
bool get_ha_enabled (session ref, pool ref)
int get_ha_host_failures_to_tolerate (session ref, pool ref)
bool get_ha_overcommitted (session ref, pool ref)
int get_ha_plan_exists_for (session ref, pool ref)
string set get_ha_statefiles (session ref, pool ref)
(string → string) map get_health_check_config (session ref, pool ref)
bool get_igmp_snooping_enabled (session ref, pool ref)
bool get_is_psr_pending (session ref, pool ref)
Prototype
datetime get_last_update_sync (session ref, pool ref)
(string → string) map get_license_state (session ref, pool ref)
bool get_live_patching_disabled (session ref, pool ref)
Prototype
int get_local_auth_max_threads (session ref, pool ref)
host ref get_master (session ref, pool ref)
VDI ref set get_metadata_VDIs (session ref, pool ref)
Prototype
bool get_migration_compression (session ref, pool ref)
string get_name_description (session ref, pool ref)
string get_name_label (session ref, pool ref)
(string → string) map get_other_config (session ref, pool ref)
bool get_policy_no_vendor_device (session ref, pool ref)
pool record get_record (session ref, pool ref)
bool get_redo_log_enabled (session ref, pool ref)
VDI ref get_redo_log_vdi (session ref, pool ref)
Repository ref set get_repositories (session ref, pool ref)
secret ref get_repository_proxy_password (session ref, pool ref)
string get_repository_proxy_url (session ref, pool ref)
string get_repository_proxy_username (session ref, pool ref)
(string → string) map get_restrictions (session ref, pool ref)
SR ref get_suspend_image_SR (session ref, pool ref)
string set get_tags (session ref, pool ref)
Prototype
enum telemetry_frequency get_telemetry_frequency (session ref, pool ref)
Prototype
datetime get_telemetry_next_collection (session ref, pool ref)
Prototype
secret ref get_telemetry_uuid (session ref, pool ref)
bool get_tls_verification_enabled (session ref, pool ref)
string get_uefi_certificates (session ref, pool ref)
Prototype
int get_update_sync_day (session ref, pool ref)
Prototype
bool get_update_sync_enabled (session ref, pool ref)
Prototype
enum update_sync_frequency get_update_sync_frequency (session ref, pool ref)
string get_uuid (session ref, pool ref)
Deprecated
string get_vswitch_controller (session ref, pool ref)
bool get_wlb_enabled (session ref, pool ref)
string get_wlb_url (session ref, pool ref)
string get_wlb_username (session ref, pool ref)
Deprecated
bool get_wlb_verify_cert (session ref, pool ref)
int ha_compute_hypothetical_max_host_failures_to_tolerate (session ref, (VM ref → string) map)
int ha_compute_max_host_failures_to_tolerate (session ref)
(VM ref → (string → string) map) map ha_compute_vm_failover_plan (session ref, host ref set, VM ref set)
bool ha_failover_plan_exists (session ref, int)
void ha_prevent_restarts_for (session ref, int)
bool has_extension (session ref, pool ref, string)
void initialize_wlb (session ref, string, string, string, string, string)
void install_ca_certificate (session ref, string, string)
void join (session ref, string, string, string)
void join_force (session ref, string, string, string)
void management_reconfigure (session ref, network ref)
host ref set recover_slaves (session ref)
void remove_from_guest_agent_config (session ref, pool ref, string)
void remove_from_gui_config (session ref, pool ref, string)
void remove_from_health_check_config (session ref, pool ref, string)
void remove_from_other_config (session ref, pool ref, string)
void remove_repository (session ref, pool ref, Repository ref)
void remove_tags (session ref, pool ref, string)
Prototype
void reset_telemetry_uuid (session ref, pool ref)
(string → string) map retrieve_wlb_configuration (session ref)
(VM ref → string set) map retrieve_wlb_recommendations (session ref)
void rotate_secret (session ref)
string send_test_post (session ref, string, int, string)
void send_wlb_configuration (session ref, (string → string) map)
void set_coordinator_bias (session ref, pool ref, bool)
void set_crash_dump_SR (session ref, pool ref, SR ref)
Prototype
void set_custom_uefi_certificates (session ref, pool ref, string)
void set_default_SR (session ref, pool ref, SR ref)
Prototype
void set_ext_auth_max_threads (session ref, pool ref, int)
void set_gui_config (session ref, pool ref, (string → string) map)
void set_ha_allow_overcommit (session ref, pool ref, bool)
void set_ha_host_failures_to_tolerate (session ref, pool ref, int)
void set_health_check_config (session ref, pool ref, (string → string) map)
Prototype
void set_https_only (session ref, pool ref, bool)
void set_igmp_snooping_enabled (session ref, pool ref, bool)
void set_is_psr_pending (session ref, pool ref, bool)
void set_live_patching_disabled (session ref, pool ref, bool)
Prototype
void set_local_auth_max_threads (session ref, pool ref, int)
Prototype
void set_migration_compression (session ref, pool ref, bool)
void set_name_description (session ref, pool ref, string)
void set_name_label (session ref, pool ref, string)
void set_other_config (session ref, pool ref, (string → string) map)
void set_policy_no_vendor_device (session ref, pool ref, bool)
void set_repositories (session ref, pool ref, Repository ref set)
void set_suspend_image_SR (session ref, pool ref, SR ref)
void set_tags (session ref, pool ref, string set)
Prototype
void set_telemetry_next_collection (session ref, pool ref, datetime)
Deprecated
void set_uefi_certificates (session ref, pool ref, string)
Prototype
void set_update_sync_enabled (session ref, pool ref, bool)
Deprecated
void set_vswitch_controller (session ref, string)
void set_wlb_enabled (session ref, pool ref, bool)
Deprecated
void set_wlb_verify_cert (session ref, pool ref, bool)
void sync_database (session ref)
string sync_updates (session ref, pool ref, bool, string, string)
string test_archive_target (session ref, pool ref, (string → string) map)
void uninstall_ca_certificate (session ref, string)

pool_patch

Deprecated

Class: pool_patch

Pool-wide patches

Enums

after_apply_guidance

Fields

enum after_apply_guidance set after_apply_guidance [RO/runtime]
host_patch ref set host_patches [RO/runtime]
string name_description [RO/constructor]
string name_label [RO/constructor]
(string → string) map other_config [RW]
bool pool_applied [RO/runtime]
pool_update ref pool_update [RO/constructor]
int size [RO/runtime]
string uuid [RO/runtime]
string version [RO/constructor]

Messages

void add_to_other_config (session ref, pool_patch ref, string, string)
Deprecated
string apply (session ref, pool_patch ref, host ref)
Deprecated
void clean (session ref, pool_patch ref)
Deprecated
void clean_on_host (session ref, pool_patch ref, host ref)
Deprecated
void destroy (session ref, pool_patch ref)
enum after_apply_guidance set get_after_apply_guidance (session ref, pool_patch ref)
Deprecated
pool_patch ref set get_all (session ref)
Deprecated
(pool_patch ref → pool_patch record) map get_all_records (session ref)
Deprecated
pool_patch ref set get_by_name_label (session ref, string)
Deprecated
pool_patch ref get_by_uuid (session ref, string)
host_patch ref set get_host_patches (session ref, pool_patch ref)
string get_name_description (session ref, pool_patch ref)
string get_name_label (session ref, pool_patch ref)
(string → string) map get_other_config (session ref, pool_patch ref)
bool get_pool_applied (session ref, pool_patch ref)
pool_update ref get_pool_update (session ref, pool_patch ref)
Deprecated
pool_patch record get_record (session ref, pool_patch ref)
int get_size (session ref, pool_patch ref)
string get_uuid (session ref, pool_patch ref)
string get_version (session ref, pool_patch ref)
Deprecated
void pool_apply (session ref, pool_patch ref)
Deprecated
void pool_clean (session ref, pool_patch ref)
Deprecated
string precheck (session ref, pool_patch ref, host ref)
void remove_from_other_config (session ref, pool_patch ref, string)
void set_other_config (session ref, pool_patch ref, (string → string) map)

pool_update

Class: pool_update

Pool-wide updates to the host software

Enums

update_after_apply_guidance
livepatch_status

Fields

enum update_after_apply_guidance set after_apply_guidance [RO/constructor]
bool enforce_homogeneity [RO/constructor]
host ref set hosts [RO/runtime]
int installation_size [RO/constructor]
string key [RO/constructor]
string name_description [RO/constructor]
string name_label [RO/constructor]
(string → string) map other_config [RW]
string uuid [RO/runtime]
VDI ref vdi [RO/constructor]
string version [RO/constructor]

Messages

void add_to_other_config (session ref, pool_update ref, string, string)
void apply (session ref, pool_update ref, host ref)
void destroy (session ref, pool_update ref)
enum update_after_apply_guidance set get_after_apply_guidance (session ref, pool_update ref)
pool_update ref set get_all (session ref)
(pool_update ref → pool_update record) map get_all_records (session ref)
pool_update ref set get_by_name_label (session ref, string)
pool_update ref get_by_uuid (session ref, string)
bool get_enforce_homogeneity (session ref, pool_update ref)
host ref set get_hosts (session ref, pool_update ref)
int get_installation_size (session ref, pool_update ref)
string get_key (session ref, pool_update ref)
string get_name_description (session ref, pool_update ref)
string get_name_label (session ref, pool_update ref)
(string → string) map get_other_config (session ref, pool_update ref)
pool_update record get_record (session ref, pool_update ref)
string get_uuid (session ref, pool_update ref)
VDI ref get_vdi (session ref, pool_update ref)
string get_version (session ref, pool_update ref)
pool_update ref introduce (session ref, VDI ref)
void pool_apply (session ref, pool_update ref)
void pool_clean (session ref, pool_update ref)
enum livepatch_status precheck (session ref, pool_update ref, host ref)
void remove_from_other_config (session ref, pool_update ref, string)
void set_other_config (session ref, pool_update ref, (string → string) map)

probe_result

Class: probe_result

A set of properties that describe one result element of SR.probe. Result elements and properties can change dynamically based on changes to the the SR.probe input-parameters or the target.

Fields

bool complete [RO/runtime]
(string → string) map configuration [RO/runtime]
(string → string) map extra_info [RO/runtime]
sr_stat record option sr [RO/runtime]

Messages

PUSB

Class: PUSB

A physical USB device

Fields

string description [RO/constructor]
host ref host [RO/constructor]
(string → string) map other_config [RW]
bool passthrough_enabled [RO/runtime]
string path [RO/constructor]
string product_desc [RO/constructor]
string product_id [RO/constructor]
string serial [RO/constructor]
float speed [RO/constructor]
USB_group ref USB_group [RO/constructor]
string uuid [RO/runtime]
string vendor_desc [RO/constructor]
string vendor_id [RO/constructor]
string version [RO/constructor]

Messages

void add_to_other_config (session ref, PUSB ref, string, string)
PUSB ref set get_all (session ref)
(PUSB ref → PUSB record) map get_all_records (session ref)
PUSB ref get_by_uuid (session ref, string)
string get_description (session ref, PUSB ref)
host ref get_host (session ref, PUSB ref)
(string → string) map get_other_config (session ref, PUSB ref)
bool get_passthrough_enabled (session ref, PUSB ref)
string get_path (session ref, PUSB ref)
string get_product_desc (session ref, PUSB ref)
string get_product_id (session ref, PUSB ref)
PUSB record get_record (session ref, PUSB ref)
string get_serial (session ref, PUSB ref)
float get_speed (session ref, PUSB ref)
USB_group ref get_USB_group (session ref, PUSB ref)
string get_uuid (session ref, PUSB ref)
string get_vendor_desc (session ref, PUSB ref)
string get_vendor_id (session ref, PUSB ref)
string get_version (session ref, PUSB ref)
void remove_from_other_config (session ref, PUSB ref, string)
void scan (session ref, host ref)
void set_other_config (session ref, PUSB ref, (string → string) map)
void set_passthrough_enabled (session ref, PUSB ref, bool)

PVS_cache_storage

Class: PVS_cache_storage

Describes the storage that is available to a PVS site for caching purposes

Fields

host ref host [RO/constructor]
PVS_site ref site [RO/constructor]
int size [RO/constructor]
SR ref SR [RO/constructor]
string uuid [RO/runtime]
VDI ref VDI [RO/runtime]

Messages

PVS_cache_storage ref create (session ref, PVS_cache_storage record)
void destroy (session ref, PVS_cache_storage ref)
PVS_cache_storage ref set get_all (session ref)
(PVS_cache_storage ref → PVS_cache_storage record) map get_all_records (session ref)
PVS_cache_storage ref get_by_uuid (session ref, string)
host ref get_host (session ref, PVS_cache_storage ref)
PVS_cache_storage record get_record (session ref, PVS_cache_storage ref)
PVS_site ref get_site (session ref, PVS_cache_storage ref)
int get_size (session ref, PVS_cache_storage ref)
SR ref get_SR (session ref, PVS_cache_storage ref)
string get_uuid (session ref, PVS_cache_storage ref)
VDI ref get_VDI (session ref, PVS_cache_storage ref)

PVS_proxy

Class: PVS_proxy

a proxy connects a VM/VIF with a PVS site

Enums

pvs_proxy_status

Fields

bool currently_attached [RO/runtime]
PVS_site ref site [RO/constructor]
enum pvs_proxy_status status [RO/runtime]
string uuid [RO/runtime]
VIF ref VIF [RO/constructor]

Messages

PVS_proxy ref create (session ref, PVS_site ref, VIF ref)
void destroy (session ref, PVS_proxy ref)
PVS_proxy ref set get_all (session ref)
(PVS_proxy ref → PVS_proxy record) map get_all_records (session ref)
PVS_proxy ref get_by_uuid (session ref, string)
bool get_currently_attached (session ref, PVS_proxy ref)
PVS_proxy record get_record (session ref, PVS_proxy ref)
PVS_site ref get_site (session ref, PVS_proxy ref)
enum pvs_proxy_status get_status (session ref, PVS_proxy ref)
string get_uuid (session ref, PVS_proxy ref)
VIF ref get_VIF (session ref, PVS_proxy ref)

PVS_server

Class: PVS_server

individual machine serving provisioning (block) data

Fields

string set addresses [RO/constructor]
int first_port [RO/constructor]
int last_port [RO/constructor]
PVS_site ref site [RO/constructor]
string uuid [RO/runtime]

Messages

void forget (session ref, PVS_server ref)
string set get_addresses (session ref, PVS_server ref)
PVS_server ref set get_all (session ref)
(PVS_server ref → PVS_server record) map get_all_records (session ref)
PVS_server ref get_by_uuid (session ref, string)
int get_first_port (session ref, PVS_server ref)
int get_last_port (session ref, PVS_server ref)
PVS_server record get_record (session ref, PVS_server ref)
PVS_site ref get_site (session ref, PVS_server ref)
string get_uuid (session ref, PVS_server ref)
PVS_server ref introduce (session ref, string set, int, int, PVS_site ref)

PVS_site

Class: PVS_site

machines serving blocks of data for provisioning VMs

Fields

PVS_cache_storage ref set cache_storage [RO/runtime]
string name_description [RW]
string name_label [RW]
PVS_proxy ref set proxies [RO/runtime]
string PVS_uuid [RO/constructor]
PVS_server ref set servers [RO/runtime]
string uuid [RO/runtime]

Messages

void forget (session ref, PVS_site ref)
PVS_site ref set get_all (session ref)
(PVS_site ref → PVS_site record) map get_all_records (session ref)
PVS_site ref set get_by_name_label (session ref, string)
PVS_site ref get_by_uuid (session ref, string)
PVS_cache_storage ref set get_cache_storage (session ref, PVS_site ref)
string get_name_description (session ref, PVS_site ref)
string get_name_label (session ref, PVS_site ref)
PVS_proxy ref set get_proxies (session ref, PVS_site ref)
string get_PVS_uuid (session ref, PVS_site ref)
PVS_site record get_record (session ref, PVS_site ref)
PVS_server ref set get_servers (session ref, PVS_site ref)
string get_uuid (session ref, PVS_site ref)
PVS_site ref introduce (session ref, string, string, string)
void set_name_description (session ref, PVS_site ref, string)
void set_name_label (session ref, PVS_site ref, string)
void set_PVS_uuid (session ref, PVS_site ref, string)

Repository

Class: Repository

Repository for updates

Fields

string binary_url [RO/constructor]
Prototype
string gpgkey_path [RO/constructor]
string hash [RO/runtime]
string name_description [RW]
string name_label [RW]
string source_url [RO/constructor]
Removed
bool up_to_date [RO/runtime]
bool update [RO/constructor]
string uuid [RO/runtime]

Messages

void forget (session ref, Repository ref)
Repository ref set get_all (session ref)
(Repository ref → Repository record) map get_all_records (session ref)
string get_binary_url (session ref, Repository ref)
Repository ref set get_by_name_label (session ref, string)
Repository ref get_by_uuid (session ref, string)
Prototype
string get_gpgkey_path (session ref, Repository ref)
string get_hash (session ref, Repository ref)
string get_name_description (session ref, Repository ref)
string get_name_label (session ref, Repository ref)
Repository record get_record (session ref, Repository ref)
string get_source_url (session ref, Repository ref)
Removed
bool get_up_to_date (session ref, Repository ref)
bool get_update (session ref, Repository ref)
string get_uuid (session ref, Repository ref)
Repository ref introduce (session ref, string, string, string, string, bool, string)
Prototype
void set_gpgkey_path (session ref, Repository ref, string)
void set_name_description (session ref, Repository ref, string)
void set_name_label (session ref, Repository ref, string)

role

Class: role

A set of permissions associated with a subject

Fields

bool is_internal [RO/runtime]
string name_description [RO/constructor]
string name_label [RO/constructor]
role ref set subroles [RO/constructor]
string uuid [RO/runtime]

Messages

role ref set get_all (session ref)
(role ref → role record) map get_all_records (session ref)
role ref set get_by_name_label (session ref, string)
role ref set get_by_permission (session ref, role ref)
role ref set get_by_permission_name_label (session ref, string)
role ref get_by_uuid (session ref, string)
bool get_is_internal (session ref, role ref)
string get_name_description (session ref, role ref)
string get_name_label (session ref, role ref)
role ref set get_permissions (session ref, role ref)
string set get_permissions_name_label (session ref, role ref)
role record get_record (session ref, role ref)
role ref set get_subroles (session ref, role ref)
string get_uuid (session ref, role ref)

SDN_controller

Class: SDN_controller

Describes the SDN controller that is to connect with the pool

Enums

sdn_controller_protocol

Fields

string address [RO/constructor]
int port [RO/constructor]
enum sdn_controller_protocol protocol [RO/constructor]
string uuid [RO/runtime]

Messages

void forget (session ref, SDN_controller ref)
string get_address (session ref, SDN_controller ref)
SDN_controller ref set get_all (session ref)
(SDN_controller ref → SDN_controller record) map get_all_records (session ref)
SDN_controller ref get_by_uuid (session ref, string)
int get_port (session ref, SDN_controller ref)
enum sdn_controller_protocol get_protocol (session ref, SDN_controller ref)
SDN_controller record get_record (session ref, SDN_controller ref)
string get_uuid (session ref, SDN_controller ref)
SDN_controller ref introduce (session ref, enum sdn_controller_protocol, string, int)

secret

Class: secret

A secret

Fields

(string → string) map other_config [RW]
string uuid [RO/runtime]
string value [RW]

Messages

void add_to_other_config (session ref, secret ref, string, string)
secret ref create (session ref, secret record)
void destroy (session ref, secret ref)
secret ref set get_all (session ref)
(secret ref → secret record) map get_all_records (session ref)
secret ref get_by_uuid (session ref, string)
(string → string) map get_other_config (session ref, secret ref)
secret record get_record (session ref, secret ref)
string get_uuid (session ref, secret ref)
string get_value (session ref, secret ref)
void remove_from_other_config (session ref, secret ref, string)
void set_other_config (session ref, secret ref, (string → string) map)
void set_value (session ref, secret ref, string)

session

Class: session

A session

Fields

string auth_user_name [RO/runtime]
string auth_user_sid [RO/runtime]
bool client_certificate [RO/runtime]
bool is_local_superuser [RO/runtime]
datetime last_active [RO/runtime]
string originator [RO/runtime]
(string → string) map other_config [RW]
session ref parent [RO/constructor]
bool pool [RO/runtime]
string set rbac_permissions [RO/constructor]
subject ref subject [RO/runtime]
task ref set tasks [RO/runtime]
host ref this_host [RO/runtime]
user ref this_user [RO/runtime]
string uuid [RO/runtime]
datetime validation_time [RO/runtime]

Messages

void add_to_other_config (session ref, session ref, string, string)
void change_password (session ref, string, string)
session ref create_from_db_file (session ref, string)
string set get_all_subject_identifiers (session ref)
string get_auth_user_name (session ref, session ref)
string get_auth_user_sid (session ref, session ref)
session ref get_by_uuid (session ref, string)
bool get_client_certificate (session ref, session ref)
bool get_is_local_superuser (session ref, session ref)
datetime get_last_active (session ref, session ref)
string get_originator (session ref, session ref)
(string → string) map get_other_config (session ref, session ref)
session ref get_parent (session ref, session ref)
bool get_pool (session ref, session ref)
string set get_rbac_permissions (session ref, session ref)
session record get_record (session ref, session ref)
subject ref get_subject (session ref, session ref)
task ref set get_tasks (session ref, session ref)
host ref get_this_host (session ref, session ref)
user ref get_this_user (session ref, session ref)
string get_uuid (session ref, session ref)
datetime get_validation_time (session ref, session ref)
void local_logout (session ref)
session ref login_with_password (string, string, string, string)
void logout (session ref)
void logout_subject_identifier (session ref, string)
void remove_from_other_config (session ref, session ref, string)
void set_other_config (session ref, session ref, (string → string) map)
session ref slave_local_login_with_password (string, string)

SM

Class: SM

A storage manager plugin

Fields

Deprecated
string set capabilities [RO/runtime]
(string → string) map configuration [RO/runtime]
string copyright [RO/runtime]
string driver_filename [RO/runtime]
(string → int) map features [RO/runtime]
string name_description [RO/runtime]
string name_label [RO/runtime]
(string → string) map other_config [RW]
string required_api_version [RO/runtime]
string set required_cluster_stack [RO/runtime]
string type [RO/runtime]
string uuid [RO/runtime]
string vendor [RO/runtime]
string version [RO/runtime]

Messages

void add_to_other_config (session ref, SM ref, string, string)
SM ref set get_all (session ref)
(SM ref → SM record) map get_all_records (session ref)
SM ref set get_by_name_label (session ref, string)
SM ref get_by_uuid (session ref, string)
Deprecated
string set get_capabilities (session ref, SM ref)
(string → string) map get_configuration (session ref, SM ref)
string get_copyright (session ref, SM ref)
string get_driver_filename (session ref, SM ref)
(string → int) map get_features (session ref, SM ref)
string get_name_description (session ref, SM ref)
string get_name_label (session ref, SM ref)
(string → string) map get_other_config (session ref, SM ref)
SM record get_record (session ref, SM ref)
string get_required_api_version (session ref, SM ref)
string set get_required_cluster_stack (session ref, SM ref)
string get_type (session ref, SM ref)
string get_uuid (session ref, SM ref)
string get_vendor (session ref, SM ref)
string get_version (session ref, SM ref)
void remove_from_other_config (session ref, SM ref, string)
void set_other_config (session ref, SM ref, (string → string) map)

SR

Class: SR

A storage repository

Enums

storage_operations

Fields

enum storage_operations set allowed_operations [RO/runtime]
(string → blob ref) map blobs [RO/runtime]
bool clustered [RO/runtime]
string content_type [RO/constructor]
(string → enum storage_operations) map current_operations [RO/runtime]
DR_task ref introduced_by [RO/runtime]
bool is_tools_sr [RO/runtime]
bool local_cache_enabled [RO/runtime]
string name_description [RO/constructor]
string name_label [RO/constructor]
(string → string) map other_config [RW]
PBD ref set PBDs [RO/runtime]
int physical_size [RO/constructor]
int physical_utilisation [RO/runtime]
bool shared [RO/runtime]
(string → string) map sm_config [RW]
string set tags [RW]
string type [RO/constructor]
string uuid [RO/runtime]
VDI ref set VDIs [RO/runtime]
int virtual_allocation [RO/runtime]

Messages

void add_tags (session ref, SR ref, string)
void add_to_other_config (session ref, SR ref, string, string)
void add_to_sm_config (session ref, SR ref, string, string)
void assert_can_host_ha_statefile (session ref, SR ref)
void assert_supports_database_replication (session ref, SR ref)
SR ref create (session ref, host ref, (string → string) map, int, string, string, string, string, bool, (string → string) map)
blob ref create_new_blob (session ref, SR ref, string, string, bool)
void destroy (session ref, SR ref)
void disable_database_replication (session ref, SR ref)
void enable_database_replication (session ref, SR ref)
void forget (session ref, SR ref)
void forget_data_source_archives (session ref, SR ref, string)
SR ref set get_all (session ref)
(SR ref → SR record) map get_all_records (session ref)
enum storage_operations set get_allowed_operations (session ref, SR ref)
(string → blob ref) map get_blobs (session ref, SR ref)
SR ref set get_by_name_label (session ref, string)
SR ref get_by_uuid (session ref, string)
bool get_clustered (session ref, SR ref)
string get_content_type (session ref, SR ref)
(string → enum storage_operations) map get_current_operations (session ref, SR ref)
data_source record set get_data_sources (session ref, SR ref)
DR_task ref get_introduced_by (session ref, SR ref)
bool get_is_tools_sr (session ref, SR ref)
bool get_local_cache_enabled (session ref, SR ref)
string get_name_description (session ref, SR ref)
string get_name_label (session ref, SR ref)
(string → string) map get_other_config (session ref, SR ref)
PBD ref set get_PBDs (session ref, SR ref)
int get_physical_size (session ref, SR ref)
int get_physical_utilisation (session ref, SR ref)
SR record get_record (session ref, SR ref)
bool get_shared (session ref, SR ref)
(string → string) map get_sm_config (session ref, SR ref)
string set get_supported_types (session ref)
string set get_tags (session ref, SR ref)
string get_type (session ref, SR ref)
string get_uuid (session ref, SR ref)
VDI ref set get_VDIs (session ref, SR ref)
int get_virtual_allocation (session ref, SR ref)
SR ref introduce (session ref, string, string, string, string, string, bool, (string → string) map)
Deprecated
string make (session ref, host ref, (string → string) map, int, string, string, string, string, (string → string) map)
string probe (session ref, host ref, (string → string) map, string, (string → string) map)
probe_result record set probe_ext (session ref, host ref, (string → string) map, string, (string → string) map)
float query_data_source (session ref, SR ref, string)
void record_data_source (session ref, SR ref, string)
void remove_from_other_config (session ref, SR ref, string)
void remove_from_sm_config (session ref, SR ref, string)
void remove_tags (session ref, SR ref, string)
void scan (session ref, SR ref)
void set_name_description (session ref, SR ref, string)
void set_name_label (session ref, SR ref, string)
void set_other_config (session ref, SR ref, (string → string) map)
void set_physical_size (session ref, SR ref, int)
void set_shared (session ref, SR ref, bool)
void set_sm_config (session ref, SR ref, (string → string) map)
void set_tags (session ref, SR ref, string set)
void update (session ref, SR ref)

sr_stat

Class: sr_stat

A set of high-level properties associated with an SR.

Enums

sr_health

Fields

bool clustered [RO/runtime]
int free_space [RO/runtime]
enum sr_health health [RO/runtime]
string name_description [RO/runtime]
string name_label [RO/runtime]
int total_space [RO/runtime]
string option uuid [RO/runtime]

Messages

subject

Class: subject

A user or group that can log in xapi

Fields

(string → string) map other_config [RO/constructor]
role ref set roles [RO/runtime]
string subject_identifier [RO/constructor]
string uuid [RO/runtime]

Messages

void add_to_roles (session ref, subject ref, role ref)
subject ref create (session ref, subject record)
void destroy (session ref, subject ref)
subject ref set get_all (session ref)
(subject ref → subject record) map get_all_records (session ref)
subject ref get_by_uuid (session ref, string)
(string → string) map get_other_config (session ref, subject ref)
string set get_permissions_name_label (session ref, subject ref)
subject record get_record (session ref, subject ref)
role ref set get_roles (session ref, subject ref)
string get_subject_identifier (session ref, subject ref)
string get_uuid (session ref, subject ref)
void remove_from_roles (session ref, subject ref, role ref)

task

Class: task

A long-running asynchronous task

Enums

task_allowed_operations
task_status_type

Fields

enum task_allowed_operations set allowed_operations [RO/runtime]
string backtrace [RO/runtime]
datetime created [RO/runtime]
(string → enum task_allowed_operations) map current_operations [RO/runtime]
string set error_info [RO/runtime]
datetime finished [RO/runtime]
string name_description [RO/runtime]
string name_label [RO/runtime]
(string → string) map other_config [RW]
float progress [RO/runtime]
host ref resident_on [RO/runtime]
string result [RO/runtime]
enum task_status_type status [RO/runtime]
task ref subtask_of [RO/runtime]
task ref set subtasks [RO/runtime]
string type [RO/runtime]
string uuid [RO/runtime]

Messages

void add_to_other_config (session ref, task ref, string, string)
void cancel (session ref, task ref)
task ref create (session ref, string, string)
void destroy (session ref, task ref)
task ref set get_all (session ref)
(task ref → task record) map get_all_records (session ref)
enum task_allowed_operations set get_allowed_operations (session ref, task ref)
string get_backtrace (session ref, task ref)
task ref set get_by_name_label (session ref, string)
task ref get_by_uuid (session ref, string)
datetime get_created (session ref, task ref)
(string → enum task_allowed_operations) map get_current_operations (session ref, task ref)
string set get_error_info (session ref, task ref)
datetime get_finished (session ref, task ref)
string get_name_description (session ref, task ref)
string get_name_label (session ref, task ref)
(string → string) map get_other_config (session ref, task ref)
float get_progress (session ref, task ref)
task record get_record (session ref, task ref)
host ref get_resident_on (session ref, task ref)
string get_result (session ref, task ref)
enum task_status_type get_status (session ref, task ref)
task ref get_subtask_of (session ref, task ref)
task ref set get_subtasks (session ref, task ref)
string get_type (session ref, task ref)
string get_uuid (session ref, task ref)
void remove_from_other_config (session ref, task ref, string)
void set_error_info (session ref, task ref, string set)
void set_other_config (session ref, task ref, (string → string) map)
void set_progress (session ref, task ref, float)
void set_result (session ref, task ref, string)
void set_status (session ref, task ref, enum task_status_type)

tunnel

Class: tunnel

A tunnel for network traffic

Enums

tunnel_protocol

Fields

PIF ref access_PIF [RO/constructor]
(string → string) map other_config [RW]
enum tunnel_protocol protocol [RW]
(string → string) map status [RW]
PIF ref transport_PIF [RO/constructor]
string uuid [RO/runtime]

Messages

void add_to_other_config (session ref, tunnel ref, string, string)
void add_to_status (session ref, tunnel ref, string, string)
tunnel ref create (session ref, PIF ref, network ref, enum tunnel_protocol)
void destroy (session ref, tunnel ref)
PIF ref get_access_PIF (session ref, tunnel ref)
tunnel ref set get_all (session ref)
(tunnel ref → tunnel record) map get_all_records (session ref)
tunnel ref get_by_uuid (session ref, string)
(string → string) map get_other_config (session ref, tunnel ref)
enum tunnel_protocol get_protocol (session ref, tunnel ref)
tunnel record get_record (session ref, tunnel ref)
(string → string) map get_status (session ref, tunnel ref)
PIF ref get_transport_PIF (session ref, tunnel ref)
string get_uuid (session ref, tunnel ref)
void remove_from_other_config (session ref, tunnel ref, string)
void remove_from_status (session ref, tunnel ref, string)
void set_other_config (session ref, tunnel ref, (string → string) map)
void set_protocol (session ref, tunnel ref, enum tunnel_protocol)
void set_status (session ref, tunnel ref, (string → string) map)

USB_group

Class: USB_group

A group of compatible USBs across the resource pool

Fields

string name_description [RW]
string name_label [RW]
(string → string) map other_config [RW]
PUSB ref set PUSBs [RO/runtime]
string uuid [RO/runtime]
VUSB ref set VUSBs [RO/runtime]

Messages

void add_to_other_config (session ref, USB_group ref, string, string)
USB_group ref create (session ref, string, string, (string → string) map)
void destroy (session ref, USB_group ref)
USB_group ref set get_all (session ref)
(USB_group ref → USB_group record) map get_all_records (session ref)
USB_group ref set get_by_name_label (session ref, string)
USB_group ref get_by_uuid (session ref, string)
string get_name_description (session ref, USB_group ref)
string get_name_label (session ref, USB_group ref)
(string → string) map get_other_config (session ref, USB_group ref)
PUSB ref set get_PUSBs (session ref, USB_group ref)
USB_group record get_record (session ref, USB_group ref)
string get_uuid (session ref, USB_group ref)
VUSB ref set get_VUSBs (session ref, USB_group ref)
void remove_from_other_config (session ref, USB_group ref, string)
void set_name_description (session ref, USB_group ref, string)
void set_name_label (session ref, USB_group ref, string)
void set_other_config (session ref, USB_group ref, (string → string) map)

user

Deprecated

Class: user

A user of the system

Fields

string fullname [RW]
(string → string) map other_config [RW]
string short_name [RO/constructor]
string uuid [RO/runtime]

Messages

void add_to_other_config (session ref, user ref, string, string)
Deprecated
user ref create (session ref, user record)
Deprecated
void destroy (session ref, user ref)
Deprecated
user ref get_by_uuid (session ref, string)
string get_fullname (session ref, user ref)
(string → string) map get_other_config (session ref, user ref)
Deprecated
user record get_record (session ref, user ref)
string get_short_name (session ref, user ref)
string get_uuid (session ref, user ref)
void remove_from_other_config (session ref, user ref, string)
void set_fullname (session ref, user ref, string)
void set_other_config (session ref, user ref, (string → string) map)

VBD

Class: VBD

A virtual block device

Enums

vbd_operations
vbd_type
vbd_mode

Fields

enum vbd_operations set allowed_operations [RO/runtime]
bool bootable [RW]
(string → enum vbd_operations) map current_operations [RO/runtime]
bool currently_attached [RO/constructor]
string device [RO/constructor]
bool empty [RO/constructor]
Removed
VBD_metrics ref metrics [RO/runtime]
enum vbd_mode mode [RO/constructor]
(string → string) map other_config [RW]
(string → string) map qos_algorithm_params [RW]
string qos_algorithm_type [RW]
string set qos_supported_algorithms [RO/runtime]
(string → string) map runtime_properties [RO/runtime]
int status_code [RO/runtime]
string status_detail [RO/runtime]
bool storage_lock [RO/runtime]
enum vbd_type type [RW]
bool unpluggable [RW]
string userdevice [RW]
string uuid [RO/runtime]
VDI ref VDI [RO/constructor]
VM ref VM [RO/constructor]

Messages

void add_to_other_config (session ref, VBD ref, string, string)
void add_to_qos_algorithm_params (session ref, VBD ref, string, string)
void assert_attachable (session ref, VBD ref)
VBD ref create (session ref, VBD record)
void destroy (session ref, VBD ref)
void eject (session ref, VBD ref)
VBD ref set get_all (session ref)
(VBD ref → VBD record) map get_all_records (session ref)
enum vbd_operations set get_allowed_operations (session ref, VBD ref)
bool get_bootable (session ref, VBD ref)
VBD ref get_by_uuid (session ref, string)
(string → enum vbd_operations) map get_current_operations (session ref, VBD ref)
bool get_currently_attached (session ref, VBD ref)
string get_device (session ref, VBD ref)
bool get_empty (session ref, VBD ref)
Removed
VBD_metrics ref get_metrics (session ref, VBD ref)
enum vbd_mode get_mode (session ref, VBD ref)
(string → string) map get_other_config (session ref, VBD ref)
(string → string) map get_qos_algorithm_params (session ref, VBD ref)
string get_qos_algorithm_type (session ref, VBD ref)
string set get_qos_supported_algorithms (session ref, VBD ref)
VBD record get_record (session ref, VBD ref)
(string → string) map get_runtime_properties (session ref, VBD ref)
int get_status_code (session ref, VBD ref)
string get_status_detail (session ref, VBD ref)
bool get_storage_lock (session ref, VBD ref)
enum vbd_type get_type (session ref, VBD ref)
bool get_unpluggable (session ref, VBD ref)
string get_userdevice (session ref, VBD ref)
string get_uuid (session ref, VBD ref)
VDI ref get_VDI (session ref, VBD ref)
VM ref get_VM (session ref, VBD ref)
void insert (session ref, VBD ref, VDI ref)
void plug (session ref, VBD ref)
void remove_from_other_config (session ref, VBD ref, string)
void remove_from_qos_algorithm_params (session ref, VBD ref, string)
void set_bootable (session ref, VBD ref, bool)
void set_mode (session ref, VBD ref, enum vbd_mode)
void set_other_config (session ref, VBD ref, (string → string) map)
void set_qos_algorithm_params (session ref, VBD ref, (string → string) map)
void set_qos_algorithm_type (session ref, VBD ref, string)
void set_type (session ref, VBD ref, enum vbd_type)
void set_unpluggable (session ref, VBD ref, bool)
void set_userdevice (session ref, VBD ref, string)
void unplug (session ref, VBD ref)
void unplug_force (session ref, VBD ref)

VBD_metrics

Removed

Class: VBD_metrics

The metrics associated with a virtual block device

Fields

Removed
float io_read_kbs [RO/runtime]
Removed
float io_write_kbs [RO/runtime]
Removed
datetime last_updated [RO/runtime]
Removed
(string → string) map other_config [RW]
string uuid [RO/runtime]

Messages

Removed
void add_to_other_config (session ref, VBD_metrics ref, string, string)
Removed
VBD_metrics ref set get_all (session ref)
Removed
(VBD_metrics ref → VBD_metrics record) map get_all_records (session ref)
Removed
VBD_metrics ref get_by_uuid (session ref, string)
Removed
float get_io_read_kbs (session ref, VBD_metrics ref)
Removed
float get_io_write_kbs (session ref, VBD_metrics ref)
Removed
datetime get_last_updated (session ref, VBD_metrics ref)
Removed
(string → string) map get_other_config (session ref, VBD_metrics ref)
Removed
VBD_metrics record get_record (session ref, VBD_metrics ref)
string get_uuid (session ref, VBD_metrics ref)
Removed
void remove_from_other_config (session ref, VBD_metrics ref, string)
Removed
void set_other_config (session ref, VBD_metrics ref, (string → string) map)

VDI

Class: VDI

A virtual disk image

Enums

vdi_operations
vdi_type
on_boot

Fields

bool allow_caching [RO/runtime]
enum vdi_operations set allowed_operations [RO/runtime]
bool cbt_enabled [RO/runtime]
crashdump ref set crash_dumps [RO/runtime]
(string → enum vdi_operations) map current_operations [RO/runtime]
bool is_a_snapshot [RO/runtime]
bool is_tools_iso [RO/runtime]
string location [RO/runtime]
bool managed [RO/runtime]
bool metadata_latest [RO/runtime]
pool ref metadata_of_pool [RO/runtime]
bool missing [RO/runtime]
string name_description [RO/constructor]
string name_label [RO/constructor]
enum on_boot on_boot [RO/runtime]
(string → string) map other_config [RW]
Deprecated
VDI ref parent [RO/runtime]
int physical_utilisation [RO/runtime]
bool read_only [RO/constructor]
bool sharable [RO/constructor]
(string → string) map sm_config [RW]
VDI ref snapshot_of [RO/runtime]
datetime snapshot_time [RO/runtime]
VDI ref set snapshots [RO/runtime]
SR ref SR [RO/constructor]
bool storage_lock [RO/runtime]
string set tags [RW]
enum vdi_type type [RO/constructor]
string uuid [RO/runtime]
VBD ref set VBDs [RO/runtime]
int virtual_size [RO/constructor]
(string → string) map xenstore_data [RW]

Messages

void add_tags (session ref, VDI ref, string)
void add_to_other_config (session ref, VDI ref, string, string)
void add_to_sm_config (session ref, VDI ref, string, string)
void add_to_xenstore_data (session ref, VDI ref, string, string)
VDI ref clone (session ref, VDI ref, (string → string) map)
VDI ref copy (session ref, VDI ref, SR ref, VDI ref, VDI ref)
VDI ref create (session ref, VDI record)
void data_destroy (session ref, VDI ref)
void destroy (session ref, VDI ref)
void disable_cbt (session ref, VDI ref)
void enable_cbt (session ref, VDI ref)
void forget (session ref, VDI ref)
VDI ref set get_all (session ref)
(VDI ref → VDI record) map get_all_records (session ref)
bool get_allow_caching (session ref, VDI ref)
enum vdi_operations set get_allowed_operations (session ref, VDI ref)
VDI ref set get_by_name_label (session ref, string)
VDI ref get_by_uuid (session ref, string)
bool get_cbt_enabled (session ref, VDI ref)
crashdump ref set get_crash_dumps (session ref, VDI ref)
(string → enum vdi_operations) map get_current_operations (session ref, VDI ref)
bool get_is_a_snapshot (session ref, VDI ref)
bool get_is_tools_iso (session ref, VDI ref)
string get_location (session ref, VDI ref)
bool get_managed (session ref, VDI ref)
bool get_metadata_latest (session ref, VDI ref)
pool ref get_metadata_of_pool (session ref, VDI ref)
bool get_missing (session ref, VDI ref)
string get_name_description (session ref, VDI ref)
string get_name_label (session ref, VDI ref)
vdi_nbd_server_info record set get_nbd_info (session ref, VDI ref)
enum on_boot get_on_boot (session ref, VDI ref)
(string → string) map get_other_config (session ref, VDI ref)
Deprecated
VDI ref get_parent (session ref, VDI ref)
int get_physical_utilisation (session ref, VDI ref)
bool get_read_only (session ref, VDI ref)
VDI record get_record (session ref, VDI ref)
bool get_sharable (session ref, VDI ref)
(string → string) map get_sm_config (session ref, VDI ref)
VDI ref get_snapshot_of (session ref, VDI ref)
datetime get_snapshot_time (session ref, VDI ref)
VDI ref set get_snapshots (session ref, VDI ref)
SR ref get_SR (session ref, VDI ref)
bool get_storage_lock (session ref, VDI ref)
string set get_tags (session ref, VDI ref)
enum vdi_type get_type (session ref, VDI ref)
string get_uuid (session ref, VDI ref)
VBD ref set get_VBDs (session ref, VDI ref)
int get_virtual_size (session ref, VDI ref)
(string → string) map get_xenstore_data (session ref, VDI ref)
VDI ref introduce (session ref, string, string, string, SR ref, enum vdi_type, bool, bool, (string → string) map, string, (string → string) map, (string → string) map, bool, int, int, pool ref, bool, datetime, VDI ref)
string list_changed_blocks (session ref, VDI ref, VDI ref)
session ref open_database (session ref, VDI ref)
VDI ref pool_migrate (session ref, VDI ref, SR ref, (string → string) map)
string read_database_pool_uuid (session ref, VDI ref)
void remove_from_other_config (session ref, VDI ref, string)
void remove_from_sm_config (session ref, VDI ref, string)
void remove_from_xenstore_data (session ref, VDI ref, string)
void remove_tags (session ref, VDI ref, string)
void resize (session ref, VDI ref, int)
Removed
void resize_online (session ref, VDI ref, int)
void set_allow_caching (session ref, VDI ref, bool)
void set_name_description (session ref, VDI ref, string)
void set_name_label (session ref, VDI ref, string)
void set_on_boot (session ref, VDI ref, enum on_boot)
void set_other_config (session ref, VDI ref, (string → string) map)
void set_read_only (session ref, VDI ref, bool)
void set_sharable (session ref, VDI ref, bool)
void set_sm_config (session ref, VDI ref, (string → string) map)
void set_tags (session ref, VDI ref, string set)
void set_xenstore_data (session ref, VDI ref, (string → string) map)
VDI ref snapshot (session ref, VDI ref, (string → string) map)
void update (session ref, VDI ref)

vdi_nbd_server_info

Class: vdi_nbd_server_info

Details for connecting to a VDI using the Network Block Device protocol

Fields

string address [RO/runtime]
string cert [RO/runtime]
string exportname [RO/runtime]
int port [RO/runtime]
string subject [RO/runtime]

Messages

VGPU

Class: VGPU

A virtual GPU (vGPU)

Fields

(string → string) map compatibility_metadata [RO/runtime]
bool currently_attached [RO/runtime]
string device [RO/runtime]
string extra_args [RW]
GPU_group ref GPU_group [RO/runtime]
(string → string) map other_config [RW]
PCI ref PCI [RO/runtime]
PGPU ref resident_on [RO/runtime]
PGPU ref scheduled_to_be_resident_on [RO/runtime]
VGPU_type ref type [RO/runtime]
string uuid [RO/runtime]
VM ref VM [RO/runtime]

Messages

void add_to_other_config (session ref, VGPU ref, string, string)
VGPU ref create (session ref, VM ref, GPU_group ref, string, (string → string) map, VGPU_type ref)
void destroy (session ref, VGPU ref)
VGPU ref set get_all (session ref)
(VGPU ref → VGPU record) map get_all_records (session ref)
VGPU ref get_by_uuid (session ref, string)
(string → string) map get_compatibility_metadata (session ref, VGPU ref)
bool get_currently_attached (session ref, VGPU ref)
string get_device (session ref, VGPU ref)
string get_extra_args (session ref, VGPU ref)
GPU_group ref get_GPU_group (session ref, VGPU ref)
(string → string) map get_other_config (session ref, VGPU ref)
PCI ref get_PCI (session ref, VGPU ref)
VGPU record get_record (session ref, VGPU ref)
PGPU ref get_resident_on (session ref, VGPU ref)
PGPU ref get_scheduled_to_be_resident_on (session ref, VGPU ref)
VGPU_type ref get_type (session ref, VGPU ref)
string get_uuid (session ref, VGPU ref)
VM ref get_VM (session ref, VGPU ref)
void remove_from_other_config (session ref, VGPU ref, string)
void set_extra_args (session ref, VGPU ref, string)
void set_other_config (session ref, VGPU ref, (string → string) map)

VGPU_type

Class: VGPU_type

A type of virtual GPU

Enums

vgpu_type_implementation

Fields

VGPU_type ref set compatible_types_in_vm [RO/runtime]
GPU_group ref set enabled_on_GPU_groups [RO/runtime]
PGPU ref set enabled_on_PGPUs [RO/runtime]
bool experimental [RO/constructor]
int framebuffer_size [RO/constructor]
string identifier [RO/constructor]
enum vgpu_type_implementation implementation [RO/constructor]
int max_heads [RO/constructor]
int max_resolution_x [RO/constructor]
int max_resolution_y [RO/constructor]
string model_name [RO/constructor]
GPU_group ref set supported_on_GPU_groups [RO/runtime]
PGPU ref set supported_on_PGPUs [RO/runtime]
string uuid [RO/runtime]
string vendor_name [RO/constructor]
VGPU ref set VGPUs [RO/runtime]

Messages

VGPU_type ref set get_all (session ref)
(VGPU_type ref → VGPU_type record) map get_all_records (session ref)
VGPU_type ref get_by_uuid (session ref, string)
VGPU_type ref set get_compatible_types_in_vm (session ref, VGPU_type ref)
GPU_group ref set get_enabled_on_GPU_groups (session ref, VGPU_type ref)
PGPU ref set get_enabled_on_PGPUs (session ref, VGPU_type ref)
bool get_experimental (session ref, VGPU_type ref)
int get_framebuffer_size (session ref, VGPU_type ref)
string get_identifier (session ref, VGPU_type ref)
enum vgpu_type_implementation get_implementation (session ref, VGPU_type ref)
int get_max_heads (session ref, VGPU_type ref)
int get_max_resolution_x (session ref, VGPU_type ref)
int get_max_resolution_y (session ref, VGPU_type ref)
string get_model_name (session ref, VGPU_type ref)
VGPU_type record get_record (session ref, VGPU_type ref)
GPU_group ref set get_supported_on_GPU_groups (session ref, VGPU_type ref)
PGPU ref set get_supported_on_PGPUs (session ref, VGPU_type ref)
string get_uuid (session ref, VGPU_type ref)
string get_vendor_name (session ref, VGPU_type ref)
VGPU ref set get_VGPUs (session ref, VGPU_type ref)

VIF

Class: VIF

A virtual network interface

Enums

vif_operations
vif_locking_mode
vif_ipv4_configuration_mode
vif_ipv6_configuration_mode

Fields

enum vif_operations set allowed_operations [RO/runtime]
(string → enum vif_operations) map current_operations [RO/runtime]
bool currently_attached [RO/constructor]
string device [RO/constructor]
string set ipv4_addresses [RO/runtime]
string set ipv4_allowed [RO/constructor]
enum vif_ipv4_configuration_mode ipv4_configuration_mode [RO/runtime]
string ipv4_gateway [RO/runtime]
string set ipv6_addresses [RO/runtime]
string set ipv6_allowed [RO/constructor]
enum vif_ipv6_configuration_mode ipv6_configuration_mode [RO/runtime]
string ipv6_gateway [RO/runtime]
enum vif_locking_mode locking_mode [RO/constructor]
string MAC [RO/constructor]
bool MAC_autogenerated [RO/runtime]
Removed
VIF_metrics ref metrics [RO/runtime]
int MTU [RO/constructor]
network ref network [RO/constructor]
(string → string) map other_config [RW]
(string → string) map qos_algorithm_params [RW]
string qos_algorithm_type [RW]
string set qos_supported_algorithms [RO/runtime]
(string → string) map runtime_properties [RO/runtime]
int status_code [RO/runtime]
string status_detail [RO/runtime]
string uuid [RO/runtime]
VM ref VM [RO/constructor]

Messages

void add_ipv4_allowed (session ref, VIF ref, string)
void add_ipv6_allowed (session ref, VIF ref, string)
void add_to_other_config (session ref, VIF ref, string, string)
void add_to_qos_algorithm_params (session ref, VIF ref, string, string)
void configure_ipv4 (session ref, VIF ref, enum vif_ipv4_configuration_mode, string, string)
void configure_ipv6 (session ref, VIF ref, enum vif_ipv6_configuration_mode, string, string)
VIF ref create (session ref, VIF record)
void destroy (session ref, VIF ref)
VIF ref set get_all (session ref)
(VIF ref → VIF record) map get_all_records (session ref)
enum vif_operations set get_allowed_operations (session ref, VIF ref)
VIF ref get_by_uuid (session ref, string)
(string → enum vif_operations) map get_current_operations (session ref, VIF ref)
bool get_currently_attached (session ref, VIF ref)
string get_device (session ref, VIF ref)
string set get_ipv4_addresses (session ref, VIF ref)
string set get_ipv4_allowed (session ref, VIF ref)
enum vif_ipv4_configuration_mode get_ipv4_configuration_mode (session ref, VIF ref)
string get_ipv4_gateway (session ref, VIF ref)
string set get_ipv6_addresses (session ref, VIF ref)
string set get_ipv6_allowed (session ref, VIF ref)
enum vif_ipv6_configuration_mode get_ipv6_configuration_mode (session ref, VIF ref)
string get_ipv6_gateway (session ref, VIF ref)
enum vif_locking_mode get_locking_mode (session ref, VIF ref)
string get_MAC (session ref, VIF ref)
bool get_MAC_autogenerated (session ref, VIF ref)
Removed
VIF_metrics ref get_metrics (session ref, VIF ref)
int get_MTU (session ref, VIF ref)
network ref get_network (session ref, VIF ref)
(string → string) map get_other_config (session ref, VIF ref)
(string → string) map get_qos_algorithm_params (session ref, VIF ref)
string get_qos_algorithm_type (session ref, VIF ref)
string set get_qos_supported_algorithms (session ref, VIF ref)
VIF record get_record (session ref, VIF ref)
(string → string) map get_runtime_properties (session ref, VIF ref)
int get_status_code (session ref, VIF ref)
string get_status_detail (session ref, VIF ref)
string get_uuid (session ref, VIF ref)
VM ref get_VM (session ref, VIF ref)
void move (session ref, VIF ref, network ref)
void plug (session ref, VIF ref)
void remove_from_other_config (session ref, VIF ref, string)
void remove_from_qos_algorithm_params (session ref, VIF ref, string)
void remove_ipv4_allowed (session ref, VIF ref, string)
void remove_ipv6_allowed (session ref, VIF ref, string)
void set_ipv4_allowed (session ref, VIF ref, string set)
void set_ipv6_allowed (session ref, VIF ref, string set)
void set_locking_mode (session ref, VIF ref, enum vif_locking_mode)
void set_other_config (session ref, VIF ref, (string → string) map)
void set_qos_algorithm_params (session ref, VIF ref, (string → string) map)
void set_qos_algorithm_type (session ref, VIF ref, string)
void unplug (session ref, VIF ref)
void unplug_force (session ref, VIF ref)

VIF_metrics

Removed

Class: VIF_metrics

The metrics associated with a virtual network device

Fields

Removed
float io_read_kbs [RO/runtime]
Removed
float io_write_kbs [RO/runtime]
datetime last_updated [RO/runtime]
(string → string) map other_config [RW]
string uuid [RO/runtime]

Messages

void add_to_other_config (session ref, VIF_metrics ref, string, string)
Removed
VIF_metrics ref set get_all (session ref)
Removed
(VIF_metrics ref → VIF_metrics record) map get_all_records (session ref)
Removed
VIF_metrics ref get_by_uuid (session ref, string)
Removed
float get_io_read_kbs (session ref, VIF_metrics ref)
Removed
float get_io_write_kbs (session ref, VIF_metrics ref)
datetime get_last_updated (session ref, VIF_metrics ref)
(string → string) map get_other_config (session ref, VIF_metrics ref)
Removed
VIF_metrics record get_record (session ref, VIF_metrics ref)
string get_uuid (session ref, VIF_metrics ref)
void remove_from_other_config (session ref, VIF_metrics ref, string)
void set_other_config (session ref, VIF_metrics ref, (string → string) map)

VLAN

Class: VLAN

A VLAN mux/demux

Fields

(string → string) map other_config [RW]
int tag [RO/constructor]
PIF ref tagged_PIF [RO/constructor]
PIF ref untagged_PIF [RO/runtime]
string uuid [RO/runtime]

Messages

void add_to_other_config (session ref, VLAN ref, string, string)
VLAN ref create (session ref, PIF ref, int, network ref)
void destroy (session ref, VLAN ref)
VLAN ref set get_all (session ref)
(VLAN ref → VLAN record) map get_all_records (session ref)
VLAN ref get_by_uuid (session ref, string)
(string → string) map get_other_config (session ref, VLAN ref)
VLAN record get_record (session ref, VLAN ref)
int get_tag (session ref, VLAN ref)
PIF ref get_tagged_PIF (session ref, VLAN ref)
PIF ref get_untagged_PIF (session ref, VLAN ref)
string get_uuid (session ref, VLAN ref)
void remove_from_other_config (session ref, VLAN ref, string)
void set_other_config (session ref, VLAN ref, (string → string) map)

VM

Class: VM

A virtual machine (or &#39;guest&#39;).

Enums

vm_power_state
update_guidances
on_softreboot_behavior
on_normal_exit
vm_operations
on_crash_behaviour
domain_type

Fields

enum on_crash_behaviour actions_after_crash [RO/constructor]
enum on_normal_exit actions_after_reboot [RW]
enum on_normal_exit actions_after_shutdown [RW]
Prototype
enum on_softreboot_behavior actions_after_softreboot [RW]
host ref affinity [RW]
enum vm_operations set allowed_operations [RO/runtime]
VM_appliance ref appliance [RO/constructor]
PCI ref set attached_PCIs [RO/runtime]
(string → string) map bios_strings [RO/runtime]
(string → blob ref) map blobs [RO/runtime]
(enum vm_operations → string) map blocked_operations [RW]
VM ref set children [RO/runtime]
console ref set consoles [RO/runtime]
crashdump ref set crash_dumps [RO/runtime]
(string → enum vm_operations) map current_operations [RO/runtime]
enum domain_type domain_type [RO/constructor]
string domarch [RO/runtime]
int domid [RO/runtime]
string generation_id [RO/constructor]
VM_guest_metrics ref guest_metrics [RO/runtime]
Deprecated
bool ha_always_run [RO/constructor]
string ha_restart_priority [RO/constructor]
int hardware_platform_version [RW]
bool has_vendor_device [RO/constructor]
(string → string) map HVM_boot_params [RW]
Deprecated
string HVM_boot_policy [RO/constructor]
float HVM_shadow_multiplier [RO/constructor]
bool is_a_snapshot [RO/runtime]
bool is_a_template [RW]
bool is_control_domain [RO/runtime]
bool is_default_template [RO/runtime]
Removed
bool is_snapshot_from_vmpp [RO/constructor]
bool is_vmss_snapshot [RO/constructor]
(string → string) map last_boot_CPU_flags [RO/constructor]
string last_booted_record [RO/constructor]
int memory_dynamic_max [RO/constructor]
int memory_dynamic_min [RO/constructor]
int memory_overhead [RO/runtime]
int memory_static_max [RO/constructor]
int memory_static_min [RO/constructor]
Deprecated
int memory_target [RO/constructor]
VM_metrics ref metrics [RO/runtime]
string name_description [RW]
string name_label [RW]
(string → string) map NVRAM [RO/constructor]
int order [RO/constructor]
(string → string) map other_config [RW]
VM ref parent [RO/runtime]
Deprecated
string PCI_bus [RW]
enum update_guidances set pending_guidances [RO/runtime]
Prototype
enum update_guidances set pending_guidances_full [RO/runtime]
Prototype
enum update_guidances set pending_guidances_recommended [RO/runtime]
(string → string) map platform [RW]
enum vm_power_state power_state [RO/constructor]
Deprecated
VMPP ref protection_policy [RO/constructor]
string PV_args [RW]
string PV_bootloader [RW]
string PV_bootloader_args [RW]
string PV_kernel [RW]
string PV_legacy_args [RW]
string PV_ramdisk [RW]
string recommendations [RW]
string reference_label [RO/constructor]
bool requires_reboot [RO/runtime]
host ref resident_on [RO/runtime]
host ref scheduled_to_be_resident_on [RO/runtime]
int shutdown_delay [RO/constructor]
(string → string) map snapshot_info [RO/runtime]
string snapshot_metadata [RO/runtime]
VM ref snapshot_of [RO/runtime]
VMSS ref snapshot_schedule [RO/constructor]
datetime snapshot_time [RO/runtime]
VM ref set snapshots [RO/runtime]
int start_delay [RO/constructor]
SR ref suspend_SR [RW]
VDI ref suspend_VDI [RO/constructor]
string set tags [RW]
string transportable_snapshot_id [RO/runtime]
int user_version [RW]
string uuid [RO/runtime]
VBD ref set VBDs [RO/runtime]
int VCPUs_at_startup [RO/constructor]
int VCPUs_max [RO/constructor]
(string → string) map VCPUs_params [RW]
int version [RO/constructor]
VGPU ref set VGPUs [RO/runtime]
VIF ref set VIFs [RO/runtime]
VTPM ref set VTPMs [RO/runtime]
VUSB ref set VUSBs [RO/runtime]
(string → string) map xenstore_data [RW]

Messages

void add_tags (session ref, VM ref, string)
void add_to_blocked_operations (session ref, VM ref, enum vm_operations, string)
void add_to_HVM_boot_params (session ref, VM ref, string, string)
void add_to_NVRAM (session ref, VM ref, string, string)
void add_to_other_config (session ref, VM ref, string, string)
void add_to_platform (session ref, VM ref, string, string)
void add_to_VCPUs_params (session ref, VM ref, string, string)
void add_to_VCPUs_params_live (session ref, VM ref, string, string)
void add_to_xenstore_data (session ref, VM ref, string, string)
void assert_agile (session ref, VM ref)
void assert_can_be_recovered (session ref, VM ref, session ref)
void assert_can_boot_here (session ref, VM ref, host ref)
void assert_can_migrate (session ref, VM ref, (string → string) map, bool, (VDI ref → SR ref) map, (VIF ref → network ref) map, (string → string) map, (VGPU ref → GPU_group ref) map)
void assert_operation_valid (session ref, VM ref, enum vm_operations)
string call_plugin (session ref, VM ref, string, string, (string → string) map)
VM ref checkpoint (session ref, VM ref, string)
void clean_reboot (session ref, VM ref)
void clean_shutdown (session ref, VM ref)
VM ref clone (session ref, VM ref, string)
int compute_memory_overhead (session ref, VM ref)
VM ref copy (session ref, VM ref, string, SR ref)
void copy_bios_strings (session ref, VM ref, host ref)
VM ref create (session ref, VM record)
blob ref create_new_blob (session ref, VM ref, string, string, bool)
void destroy (session ref, VM ref)
void forget_data_source_archives (session ref, VM ref, string)
enum on_crash_behaviour get_actions_after_crash (session ref, VM ref)
enum on_normal_exit get_actions_after_reboot (session ref, VM ref)
enum on_normal_exit get_actions_after_shutdown (session ref, VM ref)
Prototype
enum on_softreboot_behavior get_actions_after_softreboot (session ref, VM ref)
host ref get_affinity (session ref, VM ref)
VM ref set get_all (session ref)
(VM ref → VM record) map get_all_records (session ref)
enum vm_operations set get_allowed_operations (session ref, VM ref)
string set get_allowed_VBD_devices (session ref, VM ref)
string set get_allowed_VIF_devices (session ref, VM ref)
VM_appliance ref get_appliance (session ref, VM ref)
PCI ref set get_attached_PCIs (session ref, VM ref)
(string → string) map get_bios_strings (session ref, VM ref)
(string → blob ref) map get_blobs (session ref, VM ref)
(enum vm_operations → string) map get_blocked_operations (session ref, VM ref)
Deprecated
VM record get_boot_record (session ref, VM ref)
VM ref set get_by_name_label (session ref, string)
VM ref get_by_uuid (session ref, string)
VM ref set get_children (session ref, VM ref)
console ref set get_consoles (session ref, VM ref)
Deprecated
bool get_cooperative (session ref, VM ref)
crashdump ref set get_crash_dumps (session ref, VM ref)
(string → enum vm_operations) map get_current_operations (session ref, VM ref)
data_source record set get_data_sources (session ref, VM ref)
enum domain_type get_domain_type (session ref, VM ref)
string get_domarch (session ref, VM ref)
int get_domid (session ref, VM ref)
string get_generation_id (session ref, VM ref)
VM_guest_metrics ref get_guest_metrics (session ref, VM ref)
Deprecated
bool get_ha_always_run (session ref, VM ref)
string get_ha_restart_priority (session ref, VM ref)
int get_hardware_platform_version (session ref, VM ref)
bool get_has_vendor_device (session ref, VM ref)
(string → string) map get_HVM_boot_params (session ref, VM ref)
Deprecated
string get_HVM_boot_policy (session ref, VM ref)
float get_HVM_shadow_multiplier (session ref, VM ref)
bool get_is_a_snapshot (session ref, VM ref)
bool get_is_a_template (session ref, VM ref)
bool get_is_control_domain (session ref, VM ref)
bool get_is_default_template (session ref, VM ref)
Removed
bool get_is_snapshot_from_vmpp (session ref, VM ref)
bool get_is_vmss_snapshot (session ref, VM ref)
(string → string) map get_last_boot_CPU_flags (session ref, VM ref)
string get_last_booted_record (session ref, VM ref)
int get_memory_dynamic_max (session ref, VM ref)
int get_memory_dynamic_min (session ref, VM ref)
int get_memory_overhead (session ref, VM ref)
int get_memory_static_max (session ref, VM ref)
int get_memory_static_min (session ref, VM ref)
Deprecated
int get_memory_target (session ref, VM ref)
VM_metrics ref get_metrics (session ref, VM ref)
string get_name_description (session ref, VM ref)
string get_name_label (session ref, VM ref)
(string → string) map get_NVRAM (session ref, VM ref)
int get_order (session ref, VM ref)
(string → string) map get_other_config (session ref, VM ref)
VM ref get_parent (session ref, VM ref)
Deprecated
string get_PCI_bus (session ref, VM ref)
enum update_guidances set get_pending_guidances (session ref, VM ref)
Prototype
enum update_guidances set get_pending_guidances_full (session ref, VM ref)
Prototype
enum update_guidances set get_pending_guidances_recommended (session ref, VM ref)
(string → string) map get_platform (session ref, VM ref)
host ref set get_possible_hosts (session ref, VM ref)
enum vm_power_state get_power_state (session ref, VM ref)
Deprecated
VMPP ref get_protection_policy (session ref, VM ref)
string get_PV_args (session ref, VM ref)
string get_PV_bootloader (session ref, VM ref)
string get_PV_bootloader_args (session ref, VM ref)
string get_PV_kernel (session ref, VM ref)
string get_PV_legacy_args (session ref, VM ref)
string get_PV_ramdisk (session ref, VM ref)
string get_recommendations (session ref, VM ref)
VM record get_record (session ref, VM ref)
string get_reference_label (session ref, VM ref)
bool get_requires_reboot (session ref, VM ref)
host ref get_resident_on (session ref, VM ref)
host ref get_scheduled_to_be_resident_on (session ref, VM ref)
int get_shutdown_delay (session ref, VM ref)
(string → string) map get_snapshot_info (session ref, VM ref)
string get_snapshot_metadata (session ref, VM ref)
VM ref get_snapshot_of (session ref, VM ref)
VMSS ref get_snapshot_schedule (session ref, VM ref)
datetime get_snapshot_time (session ref, VM ref)
VM ref set get_snapshots (session ref, VM ref)
SR ref set get_SRs_required_for_recovery (session ref, VM ref, session ref)
int get_start_delay (session ref, VM ref)
SR ref get_suspend_SR (session ref, VM ref)
VDI ref get_suspend_VDI (session ref, VM ref)
string set get_tags (session ref, VM ref)
string get_transportable_snapshot_id (session ref, VM ref)
int get_user_version (session ref, VM ref)
string get_uuid (session ref, VM ref)
VBD ref set get_VBDs (session ref, VM ref)
int get_VCPUs_at_startup (session ref, VM ref)
int get_VCPUs_max (session ref, VM ref)
(string → string) map get_VCPUs_params (session ref, VM ref)
int get_version (session ref, VM ref)
VGPU ref set get_VGPUs (session ref, VM ref)
VIF ref set get_VIFs (session ref, VM ref)
VTPM ref set get_VTPMs (session ref, VM ref)
VUSB ref set get_VUSBs (session ref, VM ref)
(string → string) map get_xenstore_data (session ref, VM ref)
void hard_reboot (session ref, VM ref)
void hard_shutdown (session ref, VM ref)
VM ref set import (session ref, string, SR ref, bool, bool)
void import_convert (session ref, string, string, string, SR ref, (string → string) map)
int maximise_memory (session ref, VM ref, int, bool)
VM ref migrate_send (session ref, VM ref, (string → string) map, bool, (VDI ref → SR ref) map, (VIF ref → network ref) map, (string → string) map, (VGPU ref → GPU_group ref) map)
void pause (session ref, VM ref)
void pool_migrate (session ref, VM ref, host ref, (string → string) map)
void power_state_reset (session ref, VM ref)
void provision (session ref, VM ref)
float query_data_source (session ref, VM ref, string)
(string → string) map query_services (session ref, VM ref)
void record_data_source (session ref, VM ref, string)
void recover (session ref, VM ref, session ref, bool)
void remove_from_blocked_operations (session ref, VM ref, enum vm_operations)
void remove_from_HVM_boot_params (session ref, VM ref, string)
void remove_from_NVRAM (session ref, VM ref, string)
void remove_from_other_config (session ref, VM ref, string)
void remove_from_platform (session ref, VM ref, string)
void remove_from_VCPUs_params (session ref, VM ref, string)
void remove_from_xenstore_data (session ref, VM ref, string)
void remove_tags (session ref, VM ref, string)
Prototype
void restart_device_models (session ref, VM ref)
void resume (session ref, VM ref, bool, bool)
void resume_on (session ref, VM ref, host ref, bool, bool)
(host ref → string set) map retrieve_wlb_recommendations (session ref, VM ref)
void revert (session ref, VM ref)
void send_sysrq (session ref, VM ref, string)
void send_trigger (session ref, VM ref, string)
void set_actions_after_crash (session ref, VM ref, enum on_crash_behaviour)
void set_actions_after_reboot (session ref, VM ref, enum on_normal_exit)
void set_actions_after_shutdown (session ref, VM ref, enum on_normal_exit)
Prototype
void set_actions_after_softreboot (session ref, VM ref, enum on_softreboot_behavior)
void set_affinity (session ref, VM ref, host ref)
void set_appliance (session ref, VM ref, VM_appliance ref)
void set_bios_strings (session ref, VM ref, (string → string) map)
void set_blocked_operations (session ref, VM ref, (enum vm_operations → string) map)
void set_domain_type (session ref, VM ref, enum domain_type)
Deprecated
void set_ha_always_run (session ref, VM ref, bool)
void set_ha_restart_priority (session ref, VM ref, string)
void set_hardware_platform_version (session ref, VM ref, int)
void set_has_vendor_device (session ref, VM ref, bool)
void set_HVM_boot_params (session ref, VM ref, (string → string) map)
Deprecated
void set_HVM_boot_policy (session ref, VM ref, string)
void set_HVM_shadow_multiplier (session ref, VM ref, float)
void set_is_a_template (session ref, VM ref, bool)
void set_memory (session ref, VM ref, int)
void set_memory_dynamic_max (session ref, VM ref, int)
void set_memory_dynamic_min (session ref, VM ref, int)
void set_memory_dynamic_range (session ref, VM ref, int, int)
void set_memory_limits (session ref, VM ref, int, int, int, int)
void set_memory_static_max (session ref, VM ref, int)
void set_memory_static_min (session ref, VM ref, int)
void set_memory_static_range (session ref, VM ref, int, int)
Deprecated
void set_memory_target_live (session ref, VM ref, int)
void set_name_description (session ref, VM ref, string)
void set_name_label (session ref, VM ref, string)
void set_NVRAM (session ref, VM ref, (string → string) map)
void set_order (session ref, VM ref, int)
void set_other_config (session ref, VM ref, (string → string) map)
Deprecated
void set_PCI_bus (session ref, VM ref, string)
void set_platform (session ref, VM ref, (string → string) map)
Removed
void set_protection_policy (session ref, VM ref, VMPP ref)
void set_PV_args (session ref, VM ref, string)
void set_PV_bootloader (session ref, VM ref, string)
void set_PV_bootloader_args (session ref, VM ref, string)
void set_PV_kernel (session ref, VM ref, string)
void set_PV_legacy_args (session ref, VM ref, string)
void set_PV_ramdisk (session ref, VM ref, string)
void set_recommendations (session ref, VM ref, string)
void set_shadow_multiplier_live (session ref, VM ref, float)
void set_shutdown_delay (session ref, VM ref, int)
void set_snapshot_schedule (session ref, VM ref, VMSS ref)
void set_start_delay (session ref, VM ref, int)
void set_suspend_SR (session ref, VM ref, SR ref)
void set_suspend_VDI (session ref, VM ref, VDI ref)
void set_tags (session ref, VM ref, string set)
void set_user_version (session ref, VM ref, int)
void set_VCPUs_at_startup (session ref, VM ref, int)
void set_VCPUs_max (session ref, VM ref, int)
void set_VCPUs_number_live (session ref, VM ref, int)
void set_VCPUs_params (session ref, VM ref, (string → string) map)
void set_xenstore_data (session ref, VM ref, (string → string) map)
void shutdown (session ref, VM ref)
VM ref snapshot (session ref, VM ref, string, VDI ref set)
Removed
VM ref snapshot_with_quiesce (session ref, VM ref, string)
void start (session ref, VM ref, bool, bool)
void start_on (session ref, VM ref, host ref, bool, bool)
void suspend (session ref, VM ref)
void unpause (session ref, VM ref)
void update_allowed_operations (session ref, VM ref)
Deprecated
void wait_memory_target_live (session ref, VM ref)

VM_appliance

Class: VM_appliance

VM appliance

Enums

vm_appliance_operation

Fields

enum vm_appliance_operation set allowed_operations [RO/runtime]
(string → enum vm_appliance_operation) map current_operations [RO/runtime]
string name_description [RW]
string name_label [RW]
string uuid [RO/runtime]
VM ref set VMs [RO/runtime]

Messages

void assert_can_be_recovered (session ref, VM_appliance ref, session ref)
void clean_shutdown (session ref, VM_appliance ref)
VM_appliance ref create (session ref, VM_appliance record)
void destroy (session ref, VM_appliance ref)
VM_appliance ref set get_all (session ref)
(VM_appliance ref → VM_appliance record) map get_all_records (session ref)
enum vm_appliance_operation set get_allowed_operations (session ref, VM_appliance ref)
VM_appliance ref set get_by_name_label (session ref, string)
VM_appliance ref get_by_uuid (session ref, string)
(string → enum vm_appliance_operation) map get_current_operations (session ref, VM_appliance ref)
string get_name_description (session ref, VM_appliance ref)
string get_name_label (session ref, VM_appliance ref)
VM_appliance record get_record (session ref, VM_appliance ref)
SR ref set get_SRs_required_for_recovery (session ref, VM_appliance ref, session ref)
string get_uuid (session ref, VM_appliance ref)
VM ref set get_VMs (session ref, VM_appliance ref)
void hard_shutdown (session ref, VM_appliance ref)
void recover (session ref, VM_appliance ref, session ref, bool)
void set_name_description (session ref, VM_appliance ref, string)
void set_name_label (session ref, VM_appliance ref, string)
void shutdown (session ref, VM_appliance ref)
void start (session ref, VM_appliance ref, bool)

VM_guest_metrics

Class: VM_guest_metrics

The metrics reported by the guest (as opposed to inferred from outside)

Enums

tristate_type

Fields

enum tristate_type can_use_hotplug_vbd [RO/runtime]
enum tristate_type can_use_hotplug_vif [RO/runtime]
Removed
(string → string) map disks [RO/runtime]
datetime last_updated [RO/runtime]
bool live [RO/runtime]
Removed
(string → string) map memory [RO/runtime]
(string → string) map networks [RO/runtime]
(string → string) map os_version [RO/runtime]
(string → string) map other [RO/runtime]
(string → string) map other_config [RW]
bool PV_drivers_detected [RO/runtime]
Deprecated
bool PV_drivers_up_to_date [RO/runtime]
(string → string) map PV_drivers_version [RO/runtime]
string uuid [RO/runtime]

Messages

void add_to_other_config (session ref, VM_guest_metrics ref, string, string)
VM_guest_metrics ref set get_all (session ref)
(VM_guest_metrics ref → VM_guest_metrics record) map get_all_records (session ref)
VM_guest_metrics ref get_by_uuid (session ref, string)
enum tristate_type get_can_use_hotplug_vbd (session ref, VM_guest_metrics ref)
enum tristate_type get_can_use_hotplug_vif (session ref, VM_guest_metrics ref)
Removed
(string → string) map get_disks (session ref, VM_guest_metrics ref)
datetime get_last_updated (session ref, VM_guest_metrics ref)
bool get_live (session ref, VM_guest_metrics ref)
Removed
(string → string) map get_memory (session ref, VM_guest_metrics ref)
(string → string) map get_networks (session ref, VM_guest_metrics ref)
(string → string) map get_os_version (session ref, VM_guest_metrics ref)
(string → string) map get_other (session ref, VM_guest_metrics ref)
(string → string) map get_other_config (session ref, VM_guest_metrics ref)
bool get_PV_drivers_detected (session ref, VM_guest_metrics ref)
Deprecated
bool get_PV_drivers_up_to_date (session ref, VM_guest_metrics ref)
(string → string) map get_PV_drivers_version (session ref, VM_guest_metrics ref)
VM_guest_metrics record get_record (session ref, VM_guest_metrics ref)
string get_uuid (session ref, VM_guest_metrics ref)
void remove_from_other_config (session ref, VM_guest_metrics ref, string)
void set_other_config (session ref, VM_guest_metrics ref, (string → string) map)

VM_metrics

Class: VM_metrics

The metrics associated with a VM

Enums

domain_type

Fields

enum domain_type current_domain_type [RO/runtime]
bool hvm [RO/runtime]
datetime install_time [RO/runtime]
datetime last_updated [RO/runtime]
int memory_actual [RO/runtime]
bool nested_virt [RO/runtime]
bool nomigrate [RO/runtime]
(string → string) map other_config [RW]
datetime start_time [RO/runtime]
string set state [RO/runtime]
string uuid [RO/runtime]
(int → int) map VCPUs_CPU [RO/runtime]
(int → string set) map VCPUs_flags [RO/runtime]
int VCPUs_number [RO/runtime]
(string → string) map VCPUs_params [RO/runtime]
Removed
(int → float) map VCPUs_utilisation [RO/runtime]

Messages

void add_to_other_config (session ref, VM_metrics ref, string, string)
VM_metrics ref set get_all (session ref)
(VM_metrics ref → VM_metrics record) map get_all_records (session ref)
VM_metrics ref get_by_uuid (session ref, string)
enum domain_type get_current_domain_type (session ref, VM_metrics ref)
bool get_hvm (session ref, VM_metrics ref)
datetime get_install_time (session ref, VM_metrics ref)
datetime get_last_updated (session ref, VM_metrics ref)
int get_memory_actual (session ref, VM_metrics ref)
bool get_nested_virt (session ref, VM_metrics ref)
bool get_nomigrate (session ref, VM_metrics ref)
(string → string) map get_other_config (session ref, VM_metrics ref)
VM_metrics record get_record (session ref, VM_metrics ref)
datetime get_start_time (session ref, VM_metrics ref)
string set get_state (session ref, VM_metrics ref)
string get_uuid (session ref, VM_metrics ref)
(int → int) map get_VCPUs_CPU (session ref, VM_metrics ref)
(int → string set) map get_VCPUs_flags (session ref, VM_metrics ref)
int get_VCPUs_number (session ref, VM_metrics ref)
(string → string) map get_VCPUs_params (session ref, VM_metrics ref)
Removed
(int → float) map get_VCPUs_utilisation (session ref, VM_metrics ref)
void remove_from_other_config (session ref, VM_metrics ref, string)
void set_other_config (session ref, VM_metrics ref, (string → string) map)

VMPP

Removed

Class: VMPP

VM Protection Policy

Enums

vmpp_backup_type
vmpp_backup_frequency
vmpp_archive_frequency
vmpp_archive_target_type

Fields

Removed
(string → string) map alarm_config [RO/constructor]
Removed
enum vmpp_archive_frequency archive_frequency [RO/constructor]
Removed
datetime archive_last_run_time [RO/runtime]
Removed
(string → string) map archive_schedule [RO/constructor]
Removed
(string → string) map archive_target_config [RO/constructor]
Removed
enum vmpp_archive_target_type archive_target_type [RO/constructor]
Removed
enum vmpp_backup_frequency backup_frequency [RO/constructor]
Removed
datetime backup_last_run_time [RO/runtime]
Removed
int backup_retention_value [RO/constructor]
Removed
(string → string) map backup_schedule [RO/constructor]
Removed
enum vmpp_backup_type backup_type [RW]
Removed
bool is_alarm_enabled [RO/constructor]
Removed
bool is_archive_running [RO/runtime]
Removed
bool is_backup_running [RO/runtime]
Removed
bool is_policy_enabled [RW]
string name_description [RW]
string name_label [RW]
Removed
string set recent_alerts [RO/runtime]
Removed
string uuid [RO/runtime]
Removed
VM ref set VMs [RO/runtime]

Messages

Removed
void add_to_alarm_config (session ref, VMPP ref, string, string)
Removed
void add_to_archive_schedule (session ref, VMPP ref, string, string)
Removed
void add_to_archive_target_config (session ref, VMPP ref, string, string)
Removed
void add_to_backup_schedule (session ref, VMPP ref, string, string)
Removed
string archive_now (session ref, VM ref)
Removed
VMPP ref create (session ref, VMPP record)
Removed
void destroy (session ref, VMPP ref)
Removed
(string → string) map get_alarm_config (session ref, VMPP ref)
Removed
string set get_alerts (session ref, VMPP ref, int)
Removed
VMPP ref set get_all (session ref)
Removed
(VMPP ref → VMPP record) map get_all_records (session ref)
Removed
enum vmpp_archive_frequency get_archive_frequency (session ref, VMPP ref)
Removed
datetime get_archive_last_run_time (session ref, VMPP ref)
Removed
(string → string) map get_archive_schedule (session ref, VMPP ref)
Removed
(string → string) map get_archive_target_config (session ref, VMPP ref)
Removed
enum vmpp_archive_target_type get_archive_target_type (session ref, VMPP ref)
Removed
enum vmpp_backup_frequency get_backup_frequency (session ref, VMPP ref)
Removed
datetime get_backup_last_run_time (session ref, VMPP ref)
Removed
int get_backup_retention_value (session ref, VMPP ref)
Removed
(string → string) map get_backup_schedule (session ref, VMPP ref)
Removed
enum vmpp_backup_type get_backup_type (session ref, VMPP ref)
Removed
VMPP ref set get_by_name_label (session ref, string)
Removed
VMPP ref get_by_uuid (session ref, string)
Removed
bool get_is_alarm_enabled (session ref, VMPP ref)
Removed
bool get_is_archive_running (session ref, VMPP ref)
Removed
bool get_is_backup_running (session ref, VMPP ref)
Removed
bool get_is_policy_enabled (session ref, VMPP ref)
string get_name_description (session ref, VMPP ref)
string get_name_label (session ref, VMPP ref)
Removed
string set get_recent_alerts (session ref, VMPP ref)
Removed
VMPP record get_record (session ref, VMPP ref)
Removed
string get_uuid (session ref, VMPP ref)
Removed
VM ref set get_VMs (session ref, VMPP ref)
Removed
string protect_now (session ref, VMPP ref)
Removed
void remove_from_alarm_config (session ref, VMPP ref, string)
Removed
void remove_from_archive_schedule (session ref, VMPP ref, string)
Removed
void remove_from_archive_target_config (session ref, VMPP ref, string)
Removed
void remove_from_backup_schedule (session ref, VMPP ref, string)
Removed
void set_alarm_config (session ref, VMPP ref, (string → string) map)
Removed
void set_archive_frequency (session ref, VMPP ref, enum vmpp_archive_frequency)
Removed
void set_archive_last_run_time (session ref, VMPP ref, datetime)
Removed
void set_archive_schedule (session ref, VMPP ref, (string → string) map)
Removed
void set_archive_target_config (session ref, VMPP ref, (string → string) map)
Removed
void set_archive_target_type (session ref, VMPP ref, enum vmpp_archive_target_type)
Removed
void set_backup_frequency (session ref, VMPP ref, enum vmpp_backup_frequency)
Removed
void set_backup_last_run_time (session ref, VMPP ref, datetime)
Removed
void set_backup_retention_value (session ref, VMPP ref, int)
Removed
void set_backup_schedule (session ref, VMPP ref, (string → string) map)
Removed
void set_backup_type (session ref, VMPP ref, enum vmpp_backup_type)
Removed
void set_is_alarm_enabled (session ref, VMPP ref, bool)
Removed
void set_is_policy_enabled (session ref, VMPP ref, bool)
void set_name_description (session ref, VMPP ref, string)
void set_name_label (session ref, VMPP ref, string)

VMSS

Class: VMSS

VM Snapshot Schedule

Enums

vmss_frequency
vmss_type

Fields

bool enabled [RW]
enum vmss_frequency frequency [RO/constructor]
datetime last_run_time [RO/runtime]
string name_description [RW]
string name_label [RW]
int retained_snapshots [RO/constructor]
(string → string) map schedule [RO/constructor]
enum vmss_type type [RO/constructor]
string uuid [RO/runtime]
VM ref set VMs [RO/runtime]

Messages

void add_to_schedule (session ref, VMSS ref, string, string)
VMSS ref create (session ref, VMSS record)
void destroy (session ref, VMSS ref)
VMSS ref set get_all (session ref)
(VMSS ref → VMSS record) map get_all_records (session ref)
VMSS ref set get_by_name_label (session ref, string)
VMSS ref get_by_uuid (session ref, string)
bool get_enabled (session ref, VMSS ref)
enum vmss_frequency get_frequency (session ref, VMSS ref)
datetime get_last_run_time (session ref, VMSS ref)
string get_name_description (session ref, VMSS ref)
string get_name_label (session ref, VMSS ref)
VMSS record get_record (session ref, VMSS ref)
int get_retained_snapshots (session ref, VMSS ref)
(string → string) map get_schedule (session ref, VMSS ref)
enum vmss_type get_type (session ref, VMSS ref)
string get_uuid (session ref, VMSS ref)
VM ref set get_VMs (session ref, VMSS ref)
void remove_from_schedule (session ref, VMSS ref, string)
void set_enabled (session ref, VMSS ref, bool)
void set_frequency (session ref, VMSS ref, enum vmss_frequency)
void set_last_run_time (session ref, VMSS ref, datetime)
void set_name_description (session ref, VMSS ref, string)
void set_name_label (session ref, VMSS ref, string)
void set_retained_snapshots (session ref, VMSS ref, int)
void set_schedule (session ref, VMSS ref, (string → string) map)
void set_type (session ref, VMSS ref, enum vmss_type)
string snapshot_now (session ref, VMSS ref)

VTPM

Prototype

Class: VTPM

A virtual TPM device

Enums

vtpm_operations
persistence_backend

Fields

enum vtpm_operations set allowed_operations [RO/runtime]
VM ref backend [RO/runtime]
(string → enum vtpm_operations) map current_operations [RO/runtime]
Prototype
bool is_protected [RO/runtime]
Prototype
bool is_unique [RO/constructor]
Prototype
enum persistence_backend persistence_backend [RO/runtime]
string uuid [RO/runtime]
VM ref VM [RO/constructor]

Messages

Prototype
VTPM ref create (session ref, VM ref, bool)
Prototype
void destroy (session ref, VTPM ref)
Prototype
VTPM ref set get_all (session ref)
Prototype
(VTPM ref → VTPM record) map get_all_records (session ref)
enum vtpm_operations set get_allowed_operations (session ref, VTPM ref)
VM ref get_backend (session ref, VTPM ref)
Prototype
VTPM ref get_by_uuid (session ref, string)
(string → enum vtpm_operations) map get_current_operations (session ref, VTPM ref)
Prototype
bool get_is_protected (session ref, VTPM ref)
Prototype
bool get_is_unique (session ref, VTPM ref)
Prototype
enum persistence_backend get_persistence_backend (session ref, VTPM ref)
Prototype
VTPM record get_record (session ref, VTPM ref)
string get_uuid (session ref, VTPM ref)
VM ref get_VM (session ref, VTPM ref)

VUSB

Class: VUSB

Describes the vusb device

Enums

vusb_operations

Fields

enum vusb_operations set allowed_operations [RO/runtime]
(string → enum vusb_operations) map current_operations [RO/runtime]
bool currently_attached [RO/runtime]
(string → string) map other_config [RW]
USB_group ref USB_group [RO/runtime]
string uuid [RO/runtime]
VM ref VM [RO/runtime]

Messages

void add_to_other_config (session ref, VUSB ref, string, string)
VUSB ref create (session ref, VM ref, USB_group ref, (string → string) map)
void destroy (session ref, VUSB ref)
VUSB ref set get_all (session ref)
(VUSB ref → VUSB record) map get_all_records (session ref)
enum vusb_operations set get_allowed_operations (session ref, VUSB ref)
VUSB ref get_by_uuid (session ref, string)
(string → enum vusb_operations) map get_current_operations (session ref, VUSB ref)
bool get_currently_attached (session ref, VUSB ref)
(string → string) map get_other_config (session ref, VUSB ref)
VUSB record get_record (session ref, VUSB ref)
USB_group ref get_USB_group (session ref, VUSB ref)
string get_uuid (session ref, VUSB ref)
VM ref get_VM (session ref, VUSB ref)
void remove_from_other_config (session ref, VUSB ref, string)
void set_other_config (session ref, VUSB ref, (string → string) map)
void unplug (session ref, VUSB ref)