2013-06-24 13:41:48 +02:00
/ *
* Copyright ( c ) Citrix Systems , Inc .
* All rights reserved .
2017-09-13 18:14:07 +02:00
*
2013-06-24 13:41:48 +02:00
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions
* are met :
2017-09-13 18:14:07 +02:00
*
2013-06-24 13:41:48 +02:00
* 1 ) Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
2017-09-13 18:14:07 +02:00
*
2013-06-24 13:41:48 +02:00
* 2 ) Redistributions in binary form must reproduce the above
* copyright notice , this list of conditions and the following
* disclaimer in the documentation and / or other materials
* provided with the distribution .
2017-09-13 18:14:07 +02:00
*
2013-06-24 13:41:48 +02:00
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT
* LIMITED TO , THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED . IN NO EVENT SHALL THE
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT ,
* INDIRECT , INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES
* ( INCLUDING , BUT NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES ; LOSS OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION )
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT ,
* STRICT LIABILITY , OR TORT ( INCLUDING NEGLIGENCE OR OTHERWISE )
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE , EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE .
* /
2013-07-03 12:22:08 +02:00
2013-06-24 13:41:48 +02:00
using System ;
using System.Collections ;
using System.Collections.Generic ;
2017-09-13 18:14:07 +02:00
using System.ComponentModel ;
using System.Globalization ;
2021-04-13 11:05:38 +02:00
using System.Linq ;
2017-09-13 18:14:07 +02:00
using Newtonsoft.Json ;
2013-06-24 13:41:48 +02:00
namespace XenAPI
{
2014-05-16 17:58:13 +02:00
/// <summary>
/// The metrics associated with a VM
/// First published in XenServer 4.0.
/// </summary>
2013-06-24 13:41:48 +02:00
public partial class VM_metrics : XenObject < VM_metrics >
{
2019-06-19 10:11:30 +02:00
#region Constructors
2013-06-24 13:41:48 +02:00
public VM_metrics ( )
{
}
public VM_metrics ( string uuid ,
long memory_actual ,
long VCPUs_number ,
Dictionary < long , double > VCPUs_utilisation ,
Dictionary < long , long > VCPUs_CPU ,
Dictionary < string , string > VCPUs_params ,
Dictionary < long , string [ ] > VCPUs_flags ,
string [ ] state ,
DateTime start_time ,
DateTime install_time ,
DateTime last_updated ,
2016-10-20 18:18:52 +02:00
Dictionary < string , string > other_config ,
bool hvm ,
bool nested_virt ,
2018-03-22 13:30:43 +01:00
bool nomigrate ,
domain_type current_domain_type )
2013-06-24 13:41:48 +02:00
{
this . uuid = uuid ;
this . memory_actual = memory_actual ;
this . VCPUs_number = VCPUs_number ;
this . VCPUs_utilisation = VCPUs_utilisation ;
this . VCPUs_CPU = VCPUs_CPU ;
this . VCPUs_params = VCPUs_params ;
this . VCPUs_flags = VCPUs_flags ;
this . state = state ;
this . start_time = start_time ;
this . install_time = install_time ;
this . last_updated = last_updated ;
this . other_config = other_config ;
2016-10-20 18:18:52 +02:00
this . hvm = hvm ;
this . nested_virt = nested_virt ;
this . nomigrate = nomigrate ;
2018-03-22 13:30:43 +01:00
this . current_domain_type = current_domain_type ;
2013-06-24 13:41:48 +02:00
}
2019-06-19 10:11:30 +02:00
/// <summary>
/// Creates a new VM_metrics from a Hashtable.
/// Note that the fields not contained in the Hashtable
/// will be created with their default values.
/// </summary>
/// <param name="table"></param>
public VM_metrics ( Hashtable table )
: this ( )
{
UpdateFrom ( table ) ;
}
2013-06-24 13:41:48 +02:00
/// <summary>
/// Creates a new VM_metrics from a Proxy_VM_metrics.
/// </summary>
/// <param name="proxy"></param>
public VM_metrics ( Proxy_VM_metrics proxy )
{
2019-06-19 10:11:30 +02:00
UpdateFrom ( proxy ) ;
2013-06-24 13:41:48 +02:00
}
2019-06-19 10:11:30 +02:00
#endregion
2018-02-16 17:27:30 +01:00
/// <summary>
/// Updates each field of this instance with the value of
/// the corresponding field of a given VM_metrics.
/// </summary>
2021-04-13 11:05:38 +02:00
public override void UpdateFrom ( VM_metrics record )
2013-06-24 13:41:48 +02:00
{
2021-04-13 11:05:38 +02:00
uuid = record . uuid ;
memory_actual = record . memory_actual ;
VCPUs_number = record . VCPUs_number ;
VCPUs_utilisation = record . VCPUs_utilisation ;
VCPUs_CPU = record . VCPUs_CPU ;
VCPUs_params = record . VCPUs_params ;
VCPUs_flags = record . VCPUs_flags ;
state = record . state ;
start_time = record . start_time ;
install_time = record . install_time ;
last_updated = record . last_updated ;
other_config = record . other_config ;
hvm = record . hvm ;
nested_virt = record . nested_virt ;
nomigrate = record . nomigrate ;
current_domain_type = record . current_domain_type ;
2013-06-24 13:41:48 +02:00
}
2019-06-19 10:11:30 +02:00
internal void UpdateFrom ( Proxy_VM_metrics proxy )
2013-06-24 13:41:48 +02:00
{
2018-03-22 13:30:43 +01:00
uuid = proxy . uuid = = null ? null : proxy . uuid ;
memory_actual = proxy . memory_actual = = null ? 0 : long . Parse ( proxy . memory_actual ) ;
VCPUs_number = proxy . VCPUs_number = = null ? 0 : long . Parse ( proxy . VCPUs_number ) ;
2013-06-24 13:41:48 +02:00
VCPUs_utilisation = proxy . VCPUs_utilisation = = null ? null : Maps . convert_from_proxy_long_double ( proxy . VCPUs_utilisation ) ;
VCPUs_CPU = proxy . VCPUs_CPU = = null ? null : Maps . convert_from_proxy_long_long ( proxy . VCPUs_CPU ) ;
VCPUs_params = proxy . VCPUs_params = = null ? null : Maps . convert_from_proxy_string_string ( proxy . VCPUs_params ) ;
VCPUs_flags = proxy . VCPUs_flags = = null ? null : Maps . convert_from_proxy_long_string_array ( proxy . VCPUs_flags ) ;
state = proxy . state = = null ? new string [ ] { } : ( string [ ] ) proxy . state ;
start_time = proxy . start_time ;
install_time = proxy . install_time ;
last_updated = proxy . last_updated ;
other_config = proxy . other_config = = null ? null : Maps . convert_from_proxy_string_string ( proxy . other_config ) ;
2016-10-20 18:18:52 +02:00
hvm = ( bool ) proxy . hvm ;
nested_virt = ( bool ) proxy . nested_virt ;
nomigrate = ( bool ) proxy . nomigrate ;
2018-03-22 13:30:43 +01:00
current_domain_type = proxy . current_domain_type = = null ? ( domain_type ) 0 : ( domain_type ) Helper . EnumParseDefault ( typeof ( domain_type ) , ( string ) proxy . current_domain_type ) ;
2013-06-24 13:41:48 +02:00
}
2018-02-16 17:27:30 +01:00
/// <summary>
/// Given a Hashtable with field-value pairs, it updates the fields of this VM_metrics
/// with the values listed in the Hashtable. Note that only the fields contained
/// in the Hashtable will be updated and the rest will remain the same.
2013-06-24 13:41:48 +02:00
/// </summary>
/// <param name="table"></param>
2018-02-16 17:27:30 +01:00
public void UpdateFrom ( Hashtable table )
2013-06-24 13:41:48 +02:00
{
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "uuid" ) )
2018-02-23 17:06:32 +01:00
uuid = Marshalling . ParseString ( table , "uuid" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "memory_actual" ) )
2018-02-23 17:06:32 +01:00
memory_actual = Marshalling . ParseLong ( table , "memory_actual" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "VCPUs_number" ) )
2018-02-23 17:06:32 +01:00
VCPUs_number = Marshalling . ParseLong ( table , "VCPUs_number" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "VCPUs_utilisation" ) )
2018-02-23 17:06:32 +01:00
VCPUs_utilisation = Maps . convert_from_proxy_long_double ( Marshalling . ParseHashTable ( table , "VCPUs_utilisation" ) ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "VCPUs_CPU" ) )
2018-02-23 17:06:32 +01:00
VCPUs_CPU = Maps . convert_from_proxy_long_long ( Marshalling . ParseHashTable ( table , "VCPUs_CPU" ) ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "VCPUs_params" ) )
2018-02-23 17:06:32 +01:00
VCPUs_params = Maps . convert_from_proxy_string_string ( Marshalling . ParseHashTable ( table , "VCPUs_params" ) ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "VCPUs_flags" ) )
2018-02-23 17:06:32 +01:00
VCPUs_flags = Maps . convert_from_proxy_long_string_array ( Marshalling . ParseHashTable ( table , "VCPUs_flags" ) ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "state" ) )
2018-02-23 17:06:32 +01:00
state = Marshalling . ParseStringArray ( table , "state" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "start_time" ) )
2018-02-23 17:06:32 +01:00
start_time = Marshalling . ParseDateTime ( table , "start_time" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "install_time" ) )
2018-02-23 17:06:32 +01:00
install_time = Marshalling . ParseDateTime ( table , "install_time" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "last_updated" ) )
2018-02-23 17:06:32 +01:00
last_updated = Marshalling . ParseDateTime ( table , "last_updated" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "other_config" ) )
2018-02-23 17:06:32 +01:00
other_config = Maps . convert_from_proxy_string_string ( Marshalling . ParseHashTable ( table , "other_config" ) ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "hvm" ) )
2018-02-23 17:06:32 +01:00
hvm = Marshalling . ParseBool ( table , "hvm" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "nested_virt" ) )
2018-02-23 17:06:32 +01:00
nested_virt = Marshalling . ParseBool ( table , "nested_virt" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "nomigrate" ) )
2018-02-23 17:06:32 +01:00
nomigrate = Marshalling . ParseBool ( table , "nomigrate" ) ;
2018-03-22 13:30:43 +01:00
if ( table . ContainsKey ( "current_domain_type" ) )
current_domain_type = ( domain_type ) Helper . EnumParseDefault ( typeof ( domain_type ) , Marshalling . ParseString ( table , "current_domain_type" ) ) ;
2013-06-24 13:41:48 +02:00
}
2021-04-13 11:05:38 +02:00
public Proxy_VM_metrics ToProxy ( )
{
Proxy_VM_metrics result_ = new Proxy_VM_metrics ( ) ;
result_ . uuid = uuid ? ? "" ;
result_ . memory_actual = memory_actual . ToString ( ) ;
result_ . VCPUs_number = VCPUs_number . ToString ( ) ;
result_ . VCPUs_utilisation = Maps . convert_to_proxy_long_double ( VCPUs_utilisation ) ;
result_ . VCPUs_CPU = Maps . convert_to_proxy_long_long ( VCPUs_CPU ) ;
result_ . VCPUs_params = Maps . convert_to_proxy_string_string ( VCPUs_params ) ;
result_ . VCPUs_flags = Maps . convert_to_proxy_long_string_array ( VCPUs_flags ) ;
result_ . state = state ;
result_ . start_time = start_time ;
result_ . install_time = install_time ;
result_ . last_updated = last_updated ;
result_ . other_config = Maps . convert_to_proxy_string_string ( other_config ) ;
result_ . hvm = hvm ;
result_ . nested_virt = nested_virt ;
result_ . nomigrate = nomigrate ;
result_ . current_domain_type = domain_type_helper . ToString ( current_domain_type ) ;
return result_ ;
}
2013-06-24 13:41:48 +02:00
public bool DeepEquals ( VM_metrics other )
{
if ( ReferenceEquals ( null , other ) )
return false ;
if ( ReferenceEquals ( this , other ) )
return true ;
return Helper . AreEqual2 ( this . _uuid , other . _uuid ) & &
Helper . AreEqual2 ( this . _memory_actual , other . _memory_actual ) & &
Helper . AreEqual2 ( this . _VCPUs_number , other . _VCPUs_number ) & &
Helper . AreEqual2 ( this . _VCPUs_utilisation , other . _VCPUs_utilisation ) & &
Helper . AreEqual2 ( this . _VCPUs_CPU , other . _VCPUs_CPU ) & &
Helper . AreEqual2 ( this . _VCPUs_params , other . _VCPUs_params ) & &
Helper . AreEqual2 ( this . _VCPUs_flags , other . _VCPUs_flags ) & &
Helper . AreEqual2 ( this . _state , other . _state ) & &
Helper . AreEqual2 ( this . _start_time , other . _start_time ) & &
Helper . AreEqual2 ( this . _install_time , other . _install_time ) & &
Helper . AreEqual2 ( this . _last_updated , other . _last_updated ) & &
2016-10-20 18:18:52 +02:00
Helper . AreEqual2 ( this . _other_config , other . _other_config ) & &
Helper . AreEqual2 ( this . _hvm , other . _hvm ) & &
Helper . AreEqual2 ( this . _nested_virt , other . _nested_virt ) & &
2018-03-22 13:30:43 +01:00
Helper . AreEqual2 ( this . _nomigrate , other . _nomigrate ) & &
Helper . AreEqual2 ( this . _current_domain_type , other . _current_domain_type ) ;
2013-06-24 13:41:48 +02:00
}
public override string SaveChanges ( Session session , string opaqueRef , VM_metrics server )
{
if ( opaqueRef = = null )
2018-02-14 12:03:48 +01:00
{
System . Diagnostics . Debug . Assert ( false , "Cannot create instances of this type on the server" ) ;
2013-06-24 13:41:48 +02:00
return "" ;
}
else
{
if ( ! Helper . AreEqual2 ( _other_config , server . _other_config ) )
{
VM_metrics . set_other_config ( session , opaqueRef , _other_config ) ;
}
return null ;
}
}
2021-04-13 11:05:38 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get a record containing the current state of the given VM_metrics.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static VM_metrics get_record ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_record ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return new VM_metrics ( session . XmlRpcProxy . vm_metrics_get_record ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get a reference to the VM_metrics instance with the specified UUID.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_uuid">UUID of object to return</param>
2013-06-24 13:41:48 +02:00
public static XenRef < VM_metrics > get_by_uuid ( Session session , string _uuid )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_by_uuid ( session . opaque_ref , _uuid ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < VM_metrics > . Create ( session . XmlRpcProxy . vm_metrics_get_by_uuid ( session . opaque_ref , _uuid ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the uuid field of the given VM_metrics.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static string get_uuid ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_uuid ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return session . XmlRpcProxy . vm_metrics_get_uuid ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the memory/actual field of the given VM_metrics.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static long get_memory_actual ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_memory_actual ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return long . Parse ( session . XmlRpcProxy . vm_metrics_get_memory_actual ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the VCPUs/number field of the given VM_metrics.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static long get_VCPUs_number ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_vcpus_number ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return long . Parse ( session . XmlRpcProxy . vm_metrics_get_vcpus_number ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the VCPUs/utilisation field of the given VM_metrics.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static Dictionary < long , double > get_VCPUs_utilisation ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_vcpus_utilisation ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return Maps . convert_from_proxy_long_double ( session . XmlRpcProxy . vm_metrics_get_vcpus_utilisation ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the VCPUs/CPU field of the given VM_metrics.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static Dictionary < long , long > get_VCPUs_CPU ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_vcpus_cpu ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return Maps . convert_from_proxy_long_long ( session . XmlRpcProxy . vm_metrics_get_vcpus_cpu ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the VCPUs/params field of the given VM_metrics.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static Dictionary < string , string > get_VCPUs_params ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_vcpus_params ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return Maps . convert_from_proxy_string_string ( session . XmlRpcProxy . vm_metrics_get_vcpus_params ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the VCPUs/flags field of the given VM_metrics.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static Dictionary < long , string [ ] > get_VCPUs_flags ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_vcpus_flags ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return Maps . convert_from_proxy_long_string_array ( session . XmlRpcProxy . vm_metrics_get_vcpus_flags ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the state field of the given VM_metrics.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static string [ ] get_state ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_state ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( string [ ] ) session . XmlRpcProxy . vm_metrics_get_state ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the start_time field of the given VM_metrics.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static DateTime get_start_time ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_start_time ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return session . XmlRpcProxy . vm_metrics_get_start_time ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the install_time field of the given VM_metrics.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static DateTime get_install_time ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_install_time ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return session . XmlRpcProxy . vm_metrics_get_install_time ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the last_updated field of the given VM_metrics.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static DateTime get_last_updated ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_last_updated ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return session . XmlRpcProxy . vm_metrics_get_last_updated ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the other_config field of the given VM_metrics.
/// First published in XenServer 5.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
2013-06-24 13:41:48 +02:00
public static Dictionary < string , string > get_other_config ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_other_config ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return Maps . convert_from_proxy_string_string ( session . XmlRpcProxy . vm_metrics_get_other_config ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2016-10-20 18:18:52 +02:00
/// <summary>
/// Get the hvm field of the given VM_metrics.
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.1.
2016-10-20 18:18:52 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
public static bool get_hvm ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_hvm ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( bool ) session . XmlRpcProxy . vm_metrics_get_hvm ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ;
2016-10-20 18:18:52 +02:00
}
/// <summary>
/// Get the nested_virt field of the given VM_metrics.
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.1.
2016-10-20 18:18:52 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
public static bool get_nested_virt ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_nested_virt ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( bool ) session . XmlRpcProxy . vm_metrics_get_nested_virt ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ;
2016-10-20 18:18:52 +02:00
}
/// <summary>
/// Get the nomigrate field of the given VM_metrics.
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.1.
2016-10-20 18:18:52 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
public static bool get_nomigrate ( Session session , string _vm_metrics )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_nomigrate ( session . opaque_ref , _vm_metrics ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( bool ) session . XmlRpcProxy . vm_metrics_get_nomigrate ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ;
2016-10-20 18:18:52 +02:00
}
2018-03-22 13:30:43 +01:00
/// <summary>
/// Get the current_domain_type field of the given VM_metrics.
2018-07-03 11:40:50 +02:00
/// First published in XenServer 7.5.
2018-03-22 13:30:43 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
public static domain_type get_current_domain_type ( Session session , string _vm_metrics )
{
if ( session . JsonRpcClient ! = null )
return session . JsonRpcClient . vm_metrics_get_current_domain_type ( session . opaque_ref , _vm_metrics ) ;
else
2020-01-30 01:02:24 +01:00
return ( domain_type ) Helper . EnumParseDefault ( typeof ( domain_type ) , ( string ) session . XmlRpcProxy . vm_metrics_get_current_domain_type ( session . opaque_ref , _vm_metrics ? ? "" ) . parse ( ) ) ;
2018-03-22 13:30:43 +01:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Set the other_config field of the given VM_metrics.
/// First published in XenServer 5.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
/// <param name="_other_config">New value to set</param>
2013-06-24 13:41:48 +02:00
public static void set_other_config ( Session session , string _vm_metrics , Dictionary < string , string > _other_config )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vm_metrics_set_other_config ( session . opaque_ref , _vm_metrics , _other_config ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vm_metrics_set_other_config ( session . opaque_ref , _vm_metrics ? ? "" , Maps . convert_to_proxy_string_string ( _other_config ) ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Add the given key-value pair to the other_config field of the given VM_metrics.
/// First published in XenServer 5.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
/// <param name="_key">Key to add</param>
/// <param name="_value">Value to add</param>
2013-06-24 13:41:48 +02:00
public static void add_to_other_config ( Session session , string _vm_metrics , string _key , string _value )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vm_metrics_add_to_other_config ( session . opaque_ref , _vm_metrics , _key , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vm_metrics_add_to_other_config ( session . opaque_ref , _vm_metrics ? ? "" , _key ? ? "" , _value ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Remove the given key and its corresponding value from the other_config field of the given VM_metrics. If the key is not in that Map, then do nothing.
/// First published in XenServer 5.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vm_metrics">The opaque_ref of the given vm_metrics</param>
/// <param name="_key">Key to remove</param>
2013-06-24 13:41:48 +02:00
public static void remove_from_other_config ( Session session , string _vm_metrics , string _key )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vm_metrics_remove_from_other_config ( session . opaque_ref , _vm_metrics , _key ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vm_metrics_remove_from_other_config ( session . opaque_ref , _vm_metrics ? ? "" , _key ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Return a list of all the VM_metrics instances known to the system.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
2013-06-24 13:41:48 +02:00
public static List < XenRef < VM_metrics > > get_all ( Session session )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_all ( session . opaque_ref ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < VM_metrics > . Create ( session . XmlRpcProxy . vm_metrics_get_all ( session . opaque_ref ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get all the VM_metrics Records at once, in a single XML RPC call
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
2013-06-24 13:41:48 +02:00
public static Dictionary < XenRef < VM_metrics > , VM_metrics > get_all_records ( Session session )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vm_metrics_get_all_records ( session . opaque_ref ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < VM_metrics > . Create < Proxy_VM_metrics > ( session . XmlRpcProxy . vm_metrics_get_all_records ( session . opaque_ref ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Unique identifier/object reference
/// </summary>
public virtual string uuid
{
get { return _uuid ; }
set
{
if ( ! Helper . AreEqual ( value , _uuid ) )
{
_uuid = value ;
NotifyPropertyChanged ( "uuid" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string _uuid = "" ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// Guest's actual memory (bytes)
/// </summary>
public virtual long memory_actual
{
get { return _memory_actual ; }
set
{
if ( ! Helper . AreEqual ( value , _memory_actual ) )
{
_memory_actual = value ;
NotifyPropertyChanged ( "memory_actual" ) ;
}
}
}
2013-06-24 13:41:48 +02:00
private long _memory_actual ;
2014-05-16 17:58:13 +02:00
/// <summary>
/// Current number of VCPUs
/// </summary>
public virtual long VCPUs_number
{
get { return _VCPUs_number ; }
set
{
if ( ! Helper . AreEqual ( value , _VCPUs_number ) )
{
_VCPUs_number = value ;
NotifyPropertyChanged ( "VCPUs_number" ) ;
}
}
}
2013-06-24 13:41:48 +02:00
private long _VCPUs_number ;
2014-05-16 17:58:13 +02:00
/// <summary>
/// Utilisation for all of guest's current VCPUs
/// </summary>
public virtual Dictionary < long , double > VCPUs_utilisation
{
get { return _VCPUs_utilisation ; }
set
{
if ( ! Helper . AreEqual ( value , _VCPUs_utilisation ) )
{
_VCPUs_utilisation = value ;
NotifyPropertyChanged ( "VCPUs_utilisation" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private Dictionary < long , double > _VCPUs_utilisation = new Dictionary < long , double > ( ) { } ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// VCPU to PCPU map
/// </summary>
public virtual Dictionary < long , long > VCPUs_CPU
{
get { return _VCPUs_CPU ; }
set
{
if ( ! Helper . AreEqual ( value , _VCPUs_CPU ) )
{
_VCPUs_CPU = value ;
NotifyPropertyChanged ( "VCPUs_CPU" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private Dictionary < long , long > _VCPUs_CPU = new Dictionary < long , long > ( ) { } ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// The live equivalent to VM.VCPUs_params
/// </summary>
2018-02-27 15:52:46 +01:00
[JsonConverter(typeof(StringStringMapConverter))]
2014-05-16 17:58:13 +02:00
public virtual Dictionary < string , string > VCPUs_params
{
get { return _VCPUs_params ; }
set
{
if ( ! Helper . AreEqual ( value , _VCPUs_params ) )
{
_VCPUs_params = value ;
NotifyPropertyChanged ( "VCPUs_params" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private Dictionary < string , string > _VCPUs_params = new Dictionary < string , string > ( ) { } ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// CPU flags (blocked,online,running)
/// </summary>
public virtual Dictionary < long , string [ ] > VCPUs_flags
{
get { return _VCPUs_flags ; }
set
{
if ( ! Helper . AreEqual ( value , _VCPUs_flags ) )
{
_VCPUs_flags = value ;
NotifyPropertyChanged ( "VCPUs_flags" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private Dictionary < long , string [ ] > _VCPUs_flags = new Dictionary < long , string [ ] > ( ) { } ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// The state of the guest, eg blocked, dying etc
/// </summary>
public virtual string [ ] state
{
get { return _state ; }
set
{
if ( ! Helper . AreEqual ( value , _state ) )
{
_state = value ;
NotifyPropertyChanged ( "state" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string [ ] _state = { } ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// Time at which this VM was last booted
/// </summary>
2017-09-13 18:14:07 +02:00
[JsonConverter(typeof(XenDateTimeConverter))]
2014-05-16 17:58:13 +02:00
public virtual DateTime start_time
{
get { return _start_time ; }
set
{
if ( ! Helper . AreEqual ( value , _start_time ) )
{
_start_time = value ;
NotifyPropertyChanged ( "start_time" ) ;
}
}
}
2013-06-24 13:41:48 +02:00
private DateTime _start_time ;
2014-05-16 17:58:13 +02:00
/// <summary>
/// Time at which the VM was installed
/// </summary>
2017-09-13 18:14:07 +02:00
[JsonConverter(typeof(XenDateTimeConverter))]
2014-05-16 17:58:13 +02:00
public virtual DateTime install_time
{
get { return _install_time ; }
set
{
if ( ! Helper . AreEqual ( value , _install_time ) )
{
_install_time = value ;
NotifyPropertyChanged ( "install_time" ) ;
}
}
}
2013-06-24 13:41:48 +02:00
private DateTime _install_time ;
2014-05-16 17:58:13 +02:00
/// <summary>
/// Time at which this information was last updated
/// </summary>
2017-09-13 18:14:07 +02:00
[JsonConverter(typeof(XenDateTimeConverter))]
2014-05-16 17:58:13 +02:00
public virtual DateTime last_updated
{
get { return _last_updated ; }
set
{
if ( ! Helper . AreEqual ( value , _last_updated ) )
{
_last_updated = value ;
NotifyPropertyChanged ( "last_updated" ) ;
}
}
}
2013-06-24 13:41:48 +02:00
private DateTime _last_updated ;
2014-05-16 17:58:13 +02:00
/// <summary>
/// additional configuration
/// First published in XenServer 5.0.
/// </summary>
2018-02-27 15:52:46 +01:00
[JsonConverter(typeof(StringStringMapConverter))]
2014-05-16 17:58:13 +02:00
public virtual Dictionary < string , string > other_config
{
get { return _other_config ; }
set
{
if ( ! Helper . AreEqual ( value , _other_config ) )
{
_other_config = value ;
NotifyPropertyChanged ( "other_config" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private Dictionary < string , string > _other_config = new Dictionary < string , string > ( ) { } ;
2016-10-20 18:18:52 +02:00
/// <summary>
/// hardware virtual machine
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.1.
2016-10-20 18:18:52 +02:00
/// </summary>
public virtual bool hvm
{
get { return _hvm ; }
set
{
if ( ! Helper . AreEqual ( value , _hvm ) )
{
_hvm = value ;
NotifyPropertyChanged ( "hvm" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private bool _hvm = false ;
2016-10-20 18:18:52 +02:00
/// <summary>
/// VM supports nested virtualisation
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.1.
2016-10-20 18:18:52 +02:00
/// </summary>
public virtual bool nested_virt
{
get { return _nested_virt ; }
set
{
if ( ! Helper . AreEqual ( value , _nested_virt ) )
{
_nested_virt = value ;
NotifyPropertyChanged ( "nested_virt" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private bool _nested_virt = false ;
2016-10-20 18:18:52 +02:00
/// <summary>
/// VM is immobile and can't migrate between hosts
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.1.
2016-10-20 18:18:52 +02:00
/// </summary>
public virtual bool nomigrate
{
get { return _nomigrate ; }
set
{
if ( ! Helper . AreEqual ( value , _nomigrate ) )
{
_nomigrate = value ;
NotifyPropertyChanged ( "nomigrate" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private bool _nomigrate = false ;
2018-03-22 13:30:43 +01:00
/// <summary>
/// The current domain type of the VM (for running,suspended, or paused VMs). The last-known domain type for halted VMs.
2018-07-03 11:40:50 +02:00
/// First published in XenServer 7.5.
2018-03-22 13:30:43 +01:00
/// </summary>
[JsonConverter(typeof(domain_typeConverter))]
public virtual domain_type current_domain_type
{
get { return _current_domain_type ; }
set
{
if ( ! Helper . AreEqual ( value , _current_domain_type ) )
{
_current_domain_type = value ;
NotifyPropertyChanged ( "current_domain_type" ) ;
}
}
}
private domain_type _current_domain_type = domain_type . unspecified ;
2013-06-24 13:41:48 +02:00
}
}