2017-11-23 12:06:37 +01:00
/ *
* Copyright ( c ) Citrix Systems , Inc .
* All rights reserved .
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions
* are met :
*
* 1 ) Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
*
* 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 .
*
* 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 .
* /
using System ;
using System.Collections ;
using System.Collections.Generic ;
2018-02-27 17:42:29 +01:00
using System.ComponentModel ;
using System.Globalization ;
using Newtonsoft.Json ;
2017-11-23 12:06:37 +01:00
namespace XenAPI
{
/// <summary>
/// Cluster member metadata
/// </summary>
public partial class Cluster_host : XenObject < Cluster_host >
{
2019-06-19 10:11:30 +02:00
#region Constructors
2017-11-23 12:06:37 +01:00
public Cluster_host ( )
{
}
public Cluster_host ( string uuid ,
XenRef < Cluster > cluster ,
XenRef < Host > host ,
bool enabled ,
2018-05-18 15:29:50 +02:00
XenRef < PIF > PIF ,
2018-07-03 11:40:50 +02:00
bool joined ,
2017-11-23 12:06:37 +01:00
List < cluster_host_operation > allowed_operations ,
Dictionary < string , cluster_host_operation > current_operations ,
Dictionary < string , string > other_config )
{
this . uuid = uuid ;
this . cluster = cluster ;
this . host = host ;
this . enabled = enabled ;
2018-05-18 15:29:50 +02:00
this . PIF = PIF ;
2018-07-03 11:40:50 +02:00
this . joined = joined ;
2017-11-23 12:06:37 +01:00
this . allowed_operations = allowed_operations ;
this . current_operations = current_operations ;
this . other_config = other_config ;
}
2019-06-19 10:11:30 +02:00
/// <summary>
/// Creates a new Cluster_host 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 Cluster_host ( Hashtable table )
: this ( )
{
UpdateFrom ( table ) ;
}
2017-11-23 12:06:37 +01:00
/// <summary>
/// Creates a new Cluster_host from a Proxy_Cluster_host.
/// </summary>
/// <param name="proxy"></param>
public Cluster_host ( Proxy_Cluster_host proxy )
{
2019-06-19 10:11:30 +02:00
UpdateFrom ( proxy ) ;
2017-11-23 12:06:37 +01:00
}
2019-06-19 10:11:30 +02:00
#endregion
2018-03-22 13:30:43 +01:00
/// <summary>
/// Updates each field of this instance with the value of
/// the corresponding field of a given Cluster_host.
/// </summary>
2017-11-23 12:06:37 +01:00
public override void UpdateFrom ( Cluster_host update )
{
uuid = update . uuid ;
cluster = update . cluster ;
host = update . host ;
enabled = update . enabled ;
2018-05-18 15:29:50 +02:00
PIF = update . PIF ;
2018-07-03 11:40:50 +02:00
joined = update . joined ;
2017-11-23 12:06:37 +01:00
allowed_operations = update . allowed_operations ;
current_operations = update . current_operations ;
other_config = update . other_config ;
}
2019-06-19 10:11:30 +02:00
internal void UpdateFrom ( Proxy_Cluster_host proxy )
2017-11-23 12:06:37 +01:00
{
2018-03-22 13:30:43 +01:00
uuid = proxy . uuid = = null ? null : proxy . uuid ;
2017-11-23 12:06:37 +01:00
cluster = proxy . cluster = = null ? null : XenRef < Cluster > . Create ( proxy . cluster ) ;
host = proxy . host = = null ? null : XenRef < Host > . Create ( proxy . host ) ;
enabled = ( bool ) proxy . enabled ;
2018-05-18 15:29:50 +02:00
PIF = proxy . PIF = = null ? null : XenRef < PIF > . Create ( proxy . PIF ) ;
2018-07-03 11:40:50 +02:00
joined = ( bool ) proxy . joined ;
2017-11-23 12:06:37 +01:00
allowed_operations = proxy . allowed_operations = = null ? null : Helper . StringArrayToEnumList < cluster_host_operation > ( proxy . allowed_operations ) ;
current_operations = proxy . current_operations = = null ? null : Maps . convert_from_proxy_string_cluster_host_operation ( proxy . current_operations ) ;
other_config = proxy . other_config = = null ? null : Maps . convert_from_proxy_string_string ( proxy . other_config ) ;
}
public Proxy_Cluster_host ToProxy ( )
{
Proxy_Cluster_host result_ = new Proxy_Cluster_host ( ) ;
result_ . uuid = uuid ? ? "" ;
result_ . cluster = cluster ? ? "" ;
result_ . host = host ? ? "" ;
result_ . enabled = enabled ;
2018-05-18 15:29:50 +02:00
result_ . PIF = PIF ? ? "" ;
2018-07-03 11:40:50 +02:00
result_ . joined = joined ;
2018-03-22 13:30:43 +01:00
result_ . allowed_operations = allowed_operations = = null ? new string [ ] { } : Helper . ObjectListToStringArray ( allowed_operations ) ;
2017-11-23 12:06:37 +01:00
result_ . current_operations = Maps . convert_to_proxy_string_cluster_host_operation ( current_operations ) ;
result_ . other_config = Maps . convert_to_proxy_string_string ( other_config ) ;
return result_ ;
}
2018-03-22 13:30:43 +01:00
/// <summary>
/// Given a Hashtable with field-value pairs, it updates the fields of this Cluster_host
/// 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.
/// </summary>
/// <param name="table"></param>
public void UpdateFrom ( Hashtable table )
{
if ( table . ContainsKey ( "uuid" ) )
uuid = Marshalling . ParseString ( table , "uuid" ) ;
if ( table . ContainsKey ( "cluster" ) )
cluster = Marshalling . ParseRef < Cluster > ( table , "cluster" ) ;
if ( table . ContainsKey ( "host" ) )
host = Marshalling . ParseRef < Host > ( table , "host" ) ;
if ( table . ContainsKey ( "enabled" ) )
enabled = Marshalling . ParseBool ( table , "enabled" ) ;
2018-05-18 15:29:50 +02:00
if ( table . ContainsKey ( "PIF" ) )
PIF = Marshalling . ParseRef < PIF > ( table , "PIF" ) ;
2018-07-03 11:40:50 +02:00
if ( table . ContainsKey ( "joined" ) )
joined = Marshalling . ParseBool ( table , "joined" ) ;
2018-03-22 13:30:43 +01:00
if ( table . ContainsKey ( "allowed_operations" ) )
allowed_operations = Helper . StringArrayToEnumList < cluster_host_operation > ( Marshalling . ParseStringArray ( table , "allowed_operations" ) ) ;
if ( table . ContainsKey ( "current_operations" ) )
current_operations = Maps . convert_from_proxy_string_cluster_host_operation ( Marshalling . ParseHashTable ( table , "current_operations" ) ) ;
if ( table . ContainsKey ( "other_config" ) )
other_config = Maps . convert_from_proxy_string_string ( Marshalling . ParseHashTable ( table , "other_config" ) ) ;
2017-11-23 12:06:37 +01:00
}
public bool DeepEquals ( Cluster_host other , bool ignoreCurrentOperations )
{
if ( ReferenceEquals ( null , other ) )
return false ;
if ( ReferenceEquals ( this , other ) )
return true ;
if ( ! ignoreCurrentOperations & & ! Helper . AreEqual2 ( this . current_operations , other . current_operations ) )
return false ;
return Helper . AreEqual2 ( this . _uuid , other . _uuid ) & &
Helper . AreEqual2 ( this . _cluster , other . _cluster ) & &
Helper . AreEqual2 ( this . _host , other . _host ) & &
Helper . AreEqual2 ( this . _enabled , other . _enabled ) & &
2018-05-18 15:29:50 +02:00
Helper . AreEqual2 ( this . _PIF , other . _PIF ) & &
2018-07-03 11:40:50 +02:00
Helper . AreEqual2 ( this . _joined , other . _joined ) & &
2017-11-23 12:06:37 +01:00
Helper . AreEqual2 ( this . _allowed_operations , other . _allowed_operations ) & &
Helper . AreEqual2 ( this . _other_config , other . _other_config ) ;
}
2017-12-05 15:05:44 +01:00
internal static List < Cluster_host > ProxyArrayToObjectList ( Proxy_Cluster_host [ ] input )
{
var result = new List < Cluster_host > ( ) ;
foreach ( var item in input )
result . Add ( new Cluster_host ( item ) ) ;
return result ;
}
2017-11-23 12:06:37 +01:00
public override string SaveChanges ( Session session , string opaqueRef , Cluster_host server )
{
if ( opaqueRef = = null )
{
System . Diagnostics . Debug . Assert ( false , "Cannot create instances of this type on the server" ) ;
return "" ;
}
else
{
throw new InvalidOperationException ( "This type has no read/write properties" ) ;
}
}
/// <summary>
/// Get a record containing the current state of the given Cluster_host.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static Cluster_host get_record ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . cluster_host_get_record ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return new Cluster_host ( session . XmlRpcProxy . cluster_host_get_record ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Get a reference to the Cluster_host instance with the specified UUID.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_uuid">UUID of object to return</param>
public static XenRef < Cluster_host > get_by_uuid ( Session session , string _uuid )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . cluster_host_get_by_uuid ( session . opaque_ref , _uuid ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Cluster_host > . Create ( session . XmlRpcProxy . cluster_host_get_by_uuid ( session . opaque_ref , _uuid ? ? "" ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Get the uuid field of the given Cluster_host.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static string get_uuid ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . cluster_host_get_uuid ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return session . XmlRpcProxy . cluster_host_get_uuid ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Get the cluster field of the given Cluster_host.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static XenRef < Cluster > get_cluster ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . cluster_host_get_cluster ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Cluster > . Create ( session . XmlRpcProxy . cluster_host_get_cluster ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Get the host field of the given Cluster_host.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static XenRef < Host > get_host ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . cluster_host_get_host ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Host > . Create ( session . XmlRpcProxy . cluster_host_get_host ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Get the enabled field of the given Cluster_host.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static bool get_enabled ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . cluster_host_get_enabled ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return ( bool ) session . XmlRpcProxy . cluster_host_get_enabled ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ;
2017-11-23 12:06:37 +01:00
}
2018-05-18 15:29:50 +02:00
/// <summary>
/// Get the PIF field of the given Cluster_host.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2018-05-18 15:29:50 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static XenRef < PIF > get_PIF ( Session session , string _cluster_host )
{
if ( session . JsonRpcClient ! = null )
return session . JsonRpcClient . cluster_host_get_pif ( session . opaque_ref , _cluster_host ) ;
else
2020-01-30 01:02:24 +01:00
return XenRef < PIF > . Create ( session . XmlRpcProxy . cluster_host_get_pif ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ) ;
2018-05-18 15:29:50 +02:00
}
2018-07-03 11:40:50 +02:00
/// <summary>
/// Get the joined field of the given Cluster_host.
/// Experimental. First published in XenServer 7.5.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static bool get_joined ( Session session , string _cluster_host )
{
if ( session . JsonRpcClient ! = null )
return session . JsonRpcClient . cluster_host_get_joined ( session . opaque_ref , _cluster_host ) ;
else
2020-01-30 01:02:24 +01:00
return ( bool ) session . XmlRpcProxy . cluster_host_get_joined ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ;
2018-07-03 11:40:50 +02:00
}
2017-11-23 12:06:37 +01:00
/// <summary>
/// Get the allowed_operations field of the given Cluster_host.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static List < cluster_host_operation > get_allowed_operations ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . cluster_host_get_allowed_operations ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return Helper . StringArrayToEnumList < cluster_host_operation > ( session . XmlRpcProxy . cluster_host_get_allowed_operations ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Get the current_operations field of the given Cluster_host.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static Dictionary < string , cluster_host_operation > get_current_operations ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . cluster_host_get_current_operations ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return Maps . convert_from_proxy_string_cluster_host_operation ( session . XmlRpcProxy . cluster_host_get_current_operations ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Get the other_config field of the given Cluster_host.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static Dictionary < string , string > get_other_config ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . cluster_host_get_other_config ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return Maps . convert_from_proxy_string_string ( session . XmlRpcProxy . cluster_host_get_other_config ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Add a new host to an existing cluster.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster">Cluster to join</param>
/// <param name="_host">new cluster member</param>
2018-05-18 15:29:50 +02:00
/// <param name="_pif">Network interface to use for communication</param>
public static XenRef < Cluster_host > create ( Session session , string _cluster , string _host , string _pif )
2017-11-23 12:06:37 +01:00
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-05-18 15:29:50 +02:00
return session . JsonRpcClient . cluster_host_create ( session . opaque_ref , _cluster , _host , _pif ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Cluster_host > . Create ( session . XmlRpcProxy . cluster_host_create ( session . opaque_ref , _cluster ? ? "" , _host ? ? "" , _pif ? ? "" ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Add a new host to an existing cluster.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster">Cluster to join</param>
/// <param name="_host">new cluster member</param>
2018-05-18 15:29:50 +02:00
/// <param name="_pif">Network interface to use for communication</param>
public static XenRef < Task > async_create ( Session session , string _cluster , string _host , string _pif )
2017-11-23 12:06:37 +01:00
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-05-18 15:29:50 +02:00
return session . JsonRpcClient . async_cluster_host_create ( session . opaque_ref , _cluster , _host , _pif ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_cluster_host_create ( session . opaque_ref , _cluster ? ? "" , _host ? ? "" , _pif ? ? "" ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Remove a host from an existing cluster.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static void destroy ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
session . JsonRpcClient . cluster_host_destroy ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . cluster_host_destroy ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Remove a host from an existing cluster.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static XenRef < Task > async_destroy ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . async_cluster_host_destroy ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_cluster_host_destroy ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Enable cluster membership for a disabled cluster host.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static void enable ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
session . JsonRpcClient . cluster_host_enable ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . cluster_host_enable ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Enable cluster membership for a disabled cluster host.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static XenRef < Task > async_enable ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . async_cluster_host_enable ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_cluster_host_enable ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ) ;
2018-02-27 17:42:29 +01:00
}
/// <summary>
/// Remove a host from an existing cluster forcefully.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2018-02-27 17:42:29 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static void force_destroy ( Session session , string _cluster_host )
{
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
session . JsonRpcClient . cluster_host_force_destroy ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . cluster_host_force_destroy ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ;
2018-02-27 17:42:29 +01:00
}
/// <summary>
/// Remove a host from an existing cluster forcefully.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2018-02-27 17:42:29 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static XenRef < Task > async_force_destroy ( Session session , string _cluster_host )
{
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . async_cluster_host_force_destroy ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_cluster_host_force_destroy ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Disable cluster membership for an enabled cluster host.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static void disable ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
session . JsonRpcClient . cluster_host_disable ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . cluster_host_disable ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Disable cluster membership for an enabled cluster host.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster_host">The opaque_ref of the given cluster_host</param>
public static XenRef < Task > async_disable ( Session session , string _cluster_host )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . async_cluster_host_disable ( session . opaque_ref , _cluster_host ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_cluster_host_disable ( session . opaque_ref , _cluster_host ? ? "" ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Return a list of all the Cluster_hosts known to the system.
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
/// <param name="session">The session</param>
public static List < XenRef < Cluster_host > > get_all ( Session session )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . cluster_host_get_all ( session . opaque_ref ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Cluster_host > . Create ( session . XmlRpcProxy . cluster_host_get_all ( session . opaque_ref ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Get all the Cluster_host Records at once, in a single XML RPC call
/// </summary>
/// <param name="session">The session</param>
public static Dictionary < XenRef < Cluster_host > , Cluster_host > get_all_records ( Session session )
{
2018-02-27 17:42:29 +01:00
if ( session . JsonRpcClient ! = null )
2018-02-27 18:42:18 +01:00
return session . JsonRpcClient . cluster_host_get_all_records ( session . opaque_ref ) ;
2018-02-27 17:42:29 +01:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Cluster_host > . Create < Proxy_Cluster_host > ( session . XmlRpcProxy . cluster_host_get_all_records ( session . opaque_ref ) . parse ( ) ) ;
2017-11-23 12:06:37 +01:00
}
/// <summary>
/// Unique identifier/object reference
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
public virtual string uuid
{
get { return _uuid ; }
set
{
if ( ! Helper . AreEqual ( value , _uuid ) )
{
_uuid = value ;
NotifyPropertyChanged ( "uuid" ) ;
}
}
}
2018-02-27 17:42:29 +01:00
private string _uuid = "" ;
2017-11-23 12:06:37 +01:00
/// <summary>
/// Reference to the Cluster object
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
2018-02-27 17:42:29 +01:00
[JsonConverter(typeof(XenRefConverter<Cluster>))]
2017-11-23 12:06:37 +01:00
public virtual XenRef < Cluster > cluster
{
get { return _cluster ; }
set
{
if ( ! Helper . AreEqual ( value , _cluster ) )
{
_cluster = value ;
NotifyPropertyChanged ( "cluster" ) ;
}
}
}
2018-02-27 17:42:29 +01:00
private XenRef < Cluster > _cluster = new XenRef < Cluster > ( "OpaqueRef:NULL" ) ;
2017-11-23 12:06:37 +01:00
/// <summary>
/// Reference to the Host object
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
2018-02-27 17:42:29 +01:00
[JsonConverter(typeof(XenRefConverter<Host>))]
2017-11-23 12:06:37 +01:00
public virtual XenRef < Host > host
{
get { return _host ; }
set
{
if ( ! Helper . AreEqual ( value , _host ) )
{
_host = value ;
NotifyPropertyChanged ( "host" ) ;
}
}
}
2018-02-27 17:42:29 +01:00
private XenRef < Host > _host = new XenRef < Host > ( "OpaqueRef:NULL" ) ;
2017-11-23 12:06:37 +01:00
/// <summary>
/// Whether the cluster host believes that clustering should be enabled on this host
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
public virtual bool enabled
{
get { return _enabled ; }
set
{
if ( ! Helper . AreEqual ( value , _enabled ) )
{
_enabled = value ;
NotifyPropertyChanged ( "enabled" ) ;
}
}
}
2018-02-27 17:42:29 +01:00
private bool _enabled = false ;
2017-11-23 12:06:37 +01:00
2018-05-18 15:29:50 +02:00
/// <summary>
/// Reference to the PIF object
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2018-05-18 15:29:50 +02:00
/// </summary>
[JsonConverter(typeof(XenRefConverter<PIF>))]
public virtual XenRef < PIF > PIF
{
get { return _PIF ; }
set
{
if ( ! Helper . AreEqual ( value , _PIF ) )
{
_PIF = value ;
NotifyPropertyChanged ( "PIF" ) ;
}
}
}
private XenRef < PIF > _PIF = new XenRef < PIF > ( "OpaqueRef:NULL" ) ;
2018-07-03 11:40:50 +02:00
/// <summary>
/// Whether the cluster host has joined the cluster
/// Experimental. First published in XenServer 7.5.
/// </summary>
public virtual bool joined
{
get { return _joined ; }
set
{
if ( ! Helper . AreEqual ( value , _joined ) )
{
_joined = value ;
NotifyPropertyChanged ( "joined" ) ;
}
}
}
private bool _joined = true ;
2017-11-23 12:06:37 +01:00
/// <summary>
/// list of the operations allowed in this state. This list is advisory only and the server state may have changed by the time this field is read by a client.
/// </summary>
public virtual List < cluster_host_operation > allowed_operations
{
get { return _allowed_operations ; }
set
{
if ( ! Helper . AreEqual ( value , _allowed_operations ) )
{
_allowed_operations = value ;
NotifyPropertyChanged ( "allowed_operations" ) ;
}
}
}
2018-02-27 17:42:29 +01:00
private List < cluster_host_operation > _allowed_operations = new List < cluster_host_operation > ( ) { } ;
2017-11-23 12:06:37 +01:00
/// <summary>
/// links each of the running tasks using this object (by reference) to a current_operation enum which describes the nature of the task.
/// </summary>
public virtual Dictionary < string , cluster_host_operation > current_operations
{
get { return _current_operations ; }
set
{
if ( ! Helper . AreEqual ( value , _current_operations ) )
{
_current_operations = value ;
NotifyPropertyChanged ( "current_operations" ) ;
}
}
}
2018-02-27 17:42:29 +01:00
private Dictionary < string , cluster_host_operation > _current_operations = new Dictionary < string , cluster_host_operation > ( ) { } ;
2017-11-23 12:06:37 +01:00
/// <summary>
/// Additional configuration
2018-07-03 11:40:50 +02:00
/// Experimental. First published in XenServer 7.5.
2017-11-23 12:06:37 +01:00
/// </summary>
2018-03-22 13:30:43 +01:00
[JsonConverter(typeof(StringStringMapConverter))]
2017-11-23 12:06:37 +01: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" ) ;
}
}
}
2018-02-27 17:42:29 +01:00
private Dictionary < string , string > _other_config = new Dictionary < string , string > ( ) { } ;
2017-11-23 12:06:37 +01:00
}
}