xenadmin/XenModel/XenAPI/Cluster_host.cs

500 lines
21 KiB
C#
Raw Normal View History

/*
* 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;
namespace XenAPI
{
/// <summary>
/// Cluster member metadata
/// First published in Unreleased.
/// </summary>
public partial class Cluster_host : XenObject<Cluster_host>
{
public Cluster_host()
{
}
public Cluster_host(string uuid,
XenRef<Cluster> cluster,
XenRef<Host> host,
bool enabled,
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;
this.allowed_operations = allowed_operations;
this.current_operations = current_operations;
this.other_config = other_config;
}
/// <summary>
/// Creates a new Cluster_host from a Proxy_Cluster_host.
/// </summary>
/// <param name="proxy"></param>
public Cluster_host(Proxy_Cluster_host proxy)
{
this.UpdateFromProxy(proxy);
}
public override void UpdateFrom(Cluster_host update)
{
uuid = update.uuid;
cluster = update.cluster;
host = update.host;
enabled = update.enabled;
allowed_operations = update.allowed_operations;
current_operations = update.current_operations;
other_config = update.other_config;
}
internal void UpdateFromProxy(Proxy_Cluster_host proxy)
{
uuid = proxy.uuid == null ? null : (string)proxy.uuid;
cluster = proxy.cluster == null ? null : XenRef<Cluster>.Create(proxy.cluster);
host = proxy.host == null ? null : XenRef<Host>.Create(proxy.host);
enabled = (bool)proxy.enabled;
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;
result_.allowed_operations = (allowed_operations != null) ? Helper.ObjectListToStringArray(allowed_operations) : new string[] {};
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_;
}
/// <summary>
/// Creates a new Cluster_host from a Hashtable.
/// </summary>
/// <param name="table"></param>
public Cluster_host(Hashtable table)
{
uuid = Marshalling.ParseString(table, "uuid");
cluster = Marshalling.ParseRef<Cluster>(table, "cluster");
host = Marshalling.ParseRef<Host>(table, "host");
enabled = Marshalling.ParseBool(table, "enabled");
allowed_operations = Helper.StringArrayToEnumList<cluster_host_operation>(Marshalling.ParseStringArray(table, "allowed_operations"));
current_operations = Maps.convert_from_proxy_string_cluster_host_operation(Marshalling.ParseHashTable(table, "current_operations"));
other_config = Maps.convert_from_proxy_string_string(Marshalling.ParseHashTable(table, "other_config"));
}
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) &&
Helper.AreEqual2(this._allowed_operations, other._allowed_operations) &&
Helper.AreEqual2(this._other_config, other._other_config);
}
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;
}
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.
/// First published in Unreleased.
/// </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)
{
return new Cluster_host((Proxy_Cluster_host)session.proxy.cluster_host_get_record(session.uuid, _cluster_host ?? "").parse());
}
/// <summary>
/// Get a reference to the Cluster_host instance with the specified UUID.
/// First published in Unreleased.
/// </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)
{
return XenRef<Cluster_host>.Create(session.proxy.cluster_host_get_by_uuid(session.uuid, _uuid ?? "").parse());
}
/// <summary>
/// Get the uuid field of the given Cluster_host.
/// First published in Unreleased.
/// </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)
{
return (string)session.proxy.cluster_host_get_uuid(session.uuid, _cluster_host ?? "").parse();
}
/// <summary>
/// Get the cluster field of the given Cluster_host.
/// First published in Unreleased.
/// </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)
{
return XenRef<Cluster>.Create(session.proxy.cluster_host_get_cluster(session.uuid, _cluster_host ?? "").parse());
}
/// <summary>
/// Get the host field of the given Cluster_host.
/// First published in Unreleased.
/// </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)
{
return XenRef<Host>.Create(session.proxy.cluster_host_get_host(session.uuid, _cluster_host ?? "").parse());
}
/// <summary>
/// Get the enabled field of the given Cluster_host.
/// First published in Unreleased.
/// </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)
{
return (bool)session.proxy.cluster_host_get_enabled(session.uuid, _cluster_host ?? "").parse();
}
/// <summary>
/// Get the allowed_operations field of the given Cluster_host.
/// First published in Unreleased.
/// </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)
{
return Helper.StringArrayToEnumList<cluster_host_operation>(session.proxy.cluster_host_get_allowed_operations(session.uuid, _cluster_host ?? "").parse());
}
/// <summary>
/// Get the current_operations field of the given Cluster_host.
/// First published in Unreleased.
/// </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)
{
return Maps.convert_from_proxy_string_cluster_host_operation(session.proxy.cluster_host_get_current_operations(session.uuid, _cluster_host ?? "").parse());
}
/// <summary>
/// Get the other_config field of the given Cluster_host.
/// First published in Unreleased.
/// </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)
{
return Maps.convert_from_proxy_string_string(session.proxy.cluster_host_get_other_config(session.uuid, _cluster_host ?? "").parse());
}
/// <summary>
/// Add a new host to an existing cluster.
/// First published in Unreleased.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster">Cluster to join</param>
/// <param name="_host">new cluster member</param>
public static XenRef<Cluster_host> create(Session session, string _cluster, string _host)
{
return XenRef<Cluster_host>.Create(session.proxy.cluster_host_create(session.uuid, _cluster ?? "", _host ?? "").parse());
}
/// <summary>
/// Add a new host to an existing cluster.
/// First published in Unreleased.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_cluster">Cluster to join</param>
/// <param name="_host">new cluster member</param>
public static XenRef<Task> async_create(Session session, string _cluster, string _host)
{
return XenRef<Task>.Create(session.proxy.async_cluster_host_create(session.uuid, _cluster ?? "", _host ?? "").parse());
}
/// <summary>
/// Remove a host from an existing cluster.
/// First published in Unreleased.
/// </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)
{
session.proxy.cluster_host_destroy(session.uuid, _cluster_host ?? "").parse();
}
/// <summary>
/// Remove a host from an existing cluster.
/// First published in Unreleased.
/// </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)
{
return XenRef<Task>.Create(session.proxy.async_cluster_host_destroy(session.uuid, _cluster_host ?? "").parse());
}
/// <summary>
/// Enable cluster membership for a disabled cluster host.
/// First published in Unreleased.
/// </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)
{
session.proxy.cluster_host_enable(session.uuid, _cluster_host ?? "").parse();
}
/// <summary>
/// Enable cluster membership for a disabled cluster host.
/// First published in Unreleased.
/// </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)
{
return XenRef<Task>.Create(session.proxy.async_cluster_host_enable(session.uuid, _cluster_host ?? "").parse());
}
/// <summary>
/// Disable cluster membership for an enabled cluster host.
/// First published in Unreleased.
/// </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)
{
session.proxy.cluster_host_disable(session.uuid, _cluster_host ?? "").parse();
}
/// <summary>
/// Disable cluster membership for an enabled cluster host.
/// First published in Unreleased.
/// </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)
{
return XenRef<Task>.Create(session.proxy.async_cluster_host_disable(session.uuid, _cluster_host ?? "").parse());
}
/// <summary>
/// Return a list of all the Cluster_hosts known to the system.
/// First published in Unreleased.
/// </summary>
/// <param name="session">The session</param>
public static List<XenRef<Cluster_host>> get_all(Session session)
{
return XenRef<Cluster_host>.Create(session.proxy.cluster_host_get_all(session.uuid).parse());
}
/// <summary>
/// Get all the Cluster_host Records at once, in a single XML RPC call
/// First published in Unreleased.
/// </summary>
/// <param name="session">The session</param>
public static Dictionary<XenRef<Cluster_host>, Cluster_host> get_all_records(Session session)
{
return XenRef<Cluster_host>.Create<Proxy_Cluster_host>(session.proxy.cluster_host_get_all_records(session.uuid).parse());
}
/// <summary>
/// Unique identifier/object reference
/// </summary>
public virtual string uuid
{
get { return _uuid; }
set
{
if (!Helper.AreEqual(value, _uuid))
{
_uuid = value;
Changed = true;
NotifyPropertyChanged("uuid");
}
}
}
private string _uuid;
/// <summary>
/// Reference to the Cluster object
/// </summary>
public virtual XenRef<Cluster> cluster
{
get { return _cluster; }
set
{
if (!Helper.AreEqual(value, _cluster))
{
_cluster = value;
Changed = true;
NotifyPropertyChanged("cluster");
}
}
}
private XenRef<Cluster> _cluster;
/// <summary>
/// Reference to the Host object
/// </summary>
public virtual XenRef<Host> host
{
get { return _host; }
set
{
if (!Helper.AreEqual(value, _host))
{
_host = value;
Changed = true;
NotifyPropertyChanged("host");
}
}
}
private XenRef<Host> _host;
/// <summary>
/// Whether the cluster host believes that clustering should be enabled on this host
/// </summary>
public virtual bool enabled
{
get { return _enabled; }
set
{
if (!Helper.AreEqual(value, _enabled))
{
_enabled = value;
Changed = true;
NotifyPropertyChanged("enabled");
}
}
}
private bool _enabled;
/// <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;
Changed = true;
NotifyPropertyChanged("allowed_operations");
}
}
}
private List<cluster_host_operation> _allowed_operations;
/// <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;
Changed = true;
NotifyPropertyChanged("current_operations");
}
}
}
private Dictionary<string, cluster_host_operation> _current_operations;
/// <summary>
/// Additional configuration
/// </summary>
public virtual Dictionary<string, string> other_config
{
get { return _other_config; }
set
{
if (!Helper.AreEqual(value, _other_config))
{
_other_config = value;
Changed = true;
NotifyPropertyChanged("other_config");
}
}
}
private Dictionary<string, string> _other_config;
}
}