/*
* Copyright (c) Cloud Software Group, Inc.
*
* 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;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using Newtonsoft.Json;
namespace XenAPI
{
///
/// a proxy connects a VM/VIF with a PVS site
/// First published in XenServer 7.1.
///
public partial class PVS_proxy : XenObject
{
#region Constructors
public PVS_proxy()
{
}
public PVS_proxy(string uuid,
XenRef site,
XenRef VIF,
bool currently_attached,
pvs_proxy_status status)
{
this.uuid = uuid;
this.site = site;
this.VIF = VIF;
this.currently_attached = currently_attached;
this.status = status;
}
///
/// Creates a new PVS_proxy from a Hashtable.
/// Note that the fields not contained in the Hashtable
/// will be created with their default values.
///
///
public PVS_proxy(Hashtable table)
: this()
{
UpdateFrom(table);
}
#endregion
///
/// Updates each field of this instance with the value of
/// the corresponding field of a given PVS_proxy.
///
public override void UpdateFrom(PVS_proxy record)
{
uuid = record.uuid;
site = record.site;
VIF = record.VIF;
currently_attached = record.currently_attached;
status = record.status;
}
///
/// Given a Hashtable with field-value pairs, it updates the fields of this PVS_proxy
/// 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.
///
///
public void UpdateFrom(Hashtable table)
{
if (table.ContainsKey("uuid"))
uuid = Marshalling.ParseString(table, "uuid");
if (table.ContainsKey("site"))
site = Marshalling.ParseRef(table, "site");
if (table.ContainsKey("VIF"))
VIF = Marshalling.ParseRef(table, "VIF");
if (table.ContainsKey("currently_attached"))
currently_attached = Marshalling.ParseBool(table, "currently_attached");
if (table.ContainsKey("status"))
status = (pvs_proxy_status)Helper.EnumParseDefault(typeof(pvs_proxy_status), Marshalling.ParseString(table, "status"));
}
public bool DeepEquals(PVS_proxy other)
{
if (ReferenceEquals(null, other))
return false;
if (ReferenceEquals(this, other))
return true;
return Helper.AreEqual2(_uuid, other._uuid) &&
Helper.AreEqual2(_site, other._site) &&
Helper.AreEqual2(_VIF, other._VIF) &&
Helper.AreEqual2(_currently_attached, other._currently_attached) &&
Helper.AreEqual2(_status, other._status);
}
public override string SaveChanges(Session session, string opaqueRef, PVS_proxy 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");
}
}
///
/// Get a record containing the current state of the given PVS_proxy.
/// First published in XenServer 7.1.
///
/// The session
/// The opaque_ref of the given pvs_proxy
public static PVS_proxy get_record(Session session, string _pvs_proxy)
{
return session.JsonRpcClient.pvs_proxy_get_record(session.opaque_ref, _pvs_proxy);
}
///
/// Get a reference to the PVS_proxy instance with the specified UUID.
/// First published in XenServer 7.1.
///
/// The session
/// UUID of object to return
public static XenRef get_by_uuid(Session session, string _uuid)
{
return session.JsonRpcClient.pvs_proxy_get_by_uuid(session.opaque_ref, _uuid);
}
///
/// Get the uuid field of the given PVS_proxy.
/// First published in XenServer 7.1.
///
/// The session
/// The opaque_ref of the given pvs_proxy
public static string get_uuid(Session session, string _pvs_proxy)
{
return session.JsonRpcClient.pvs_proxy_get_uuid(session.opaque_ref, _pvs_proxy);
}
///
/// Get the site field of the given PVS_proxy.
/// First published in XenServer 7.1.
///
/// The session
/// The opaque_ref of the given pvs_proxy
public static XenRef get_site(Session session, string _pvs_proxy)
{
return session.JsonRpcClient.pvs_proxy_get_site(session.opaque_ref, _pvs_proxy);
}
///
/// Get the VIF field of the given PVS_proxy.
/// First published in XenServer 7.1.
///
/// The session
/// The opaque_ref of the given pvs_proxy
public static XenRef get_VIF(Session session, string _pvs_proxy)
{
return session.JsonRpcClient.pvs_proxy_get_vif(session.opaque_ref, _pvs_proxy);
}
///
/// Get the currently_attached field of the given PVS_proxy.
/// First published in XenServer 7.1.
///
/// The session
/// The opaque_ref of the given pvs_proxy
public static bool get_currently_attached(Session session, string _pvs_proxy)
{
return session.JsonRpcClient.pvs_proxy_get_currently_attached(session.opaque_ref, _pvs_proxy);
}
///
/// Get the status field of the given PVS_proxy.
/// First published in XenServer 7.1.
///
/// The session
/// The opaque_ref of the given pvs_proxy
public static pvs_proxy_status get_status(Session session, string _pvs_proxy)
{
return session.JsonRpcClient.pvs_proxy_get_status(session.opaque_ref, _pvs_proxy);
}
///
/// Configure a VM/VIF to use a PVS proxy
/// First published in XenServer 7.1.
///
/// The session
/// PVS site that we proxy for
/// VIF for the VM that needs to be proxied
public static XenRef create(Session session, string _site, string _vif)
{
return session.JsonRpcClient.pvs_proxy_create(session.opaque_ref, _site, _vif);
}
///
/// Configure a VM/VIF to use a PVS proxy
/// First published in XenServer 7.1.
///
/// The session
/// PVS site that we proxy for
/// VIF for the VM that needs to be proxied
public static XenRef async_create(Session session, string _site, string _vif)
{
return session.JsonRpcClient.async_pvs_proxy_create(session.opaque_ref, _site, _vif);
}
///
/// remove (or switch off) a PVS proxy for this VM
/// First published in XenServer 7.1.
///
/// The session
/// The opaque_ref of the given pvs_proxy
public static void destroy(Session session, string _pvs_proxy)
{
session.JsonRpcClient.pvs_proxy_destroy(session.opaque_ref, _pvs_proxy);
}
///
/// remove (or switch off) a PVS proxy for this VM
/// First published in XenServer 7.1.
///
/// The session
/// The opaque_ref of the given pvs_proxy
public static XenRef async_destroy(Session session, string _pvs_proxy)
{
return session.JsonRpcClient.async_pvs_proxy_destroy(session.opaque_ref, _pvs_proxy);
}
///
/// Return a list of all the PVS_proxys known to the system.
/// First published in XenServer 7.1.
///
/// The session
public static List> get_all(Session session)
{
return session.JsonRpcClient.pvs_proxy_get_all(session.opaque_ref);
}
///
/// Get all the PVS_proxy Records at once, in a single XML RPC call
/// First published in XenServer 7.1.
///
/// The session
public static Dictionary, PVS_proxy> get_all_records(Session session)
{
return session.JsonRpcClient.pvs_proxy_get_all_records(session.opaque_ref);
}
///
/// Unique identifier/object reference
///
public virtual string uuid
{
get { return _uuid; }
set
{
if (!Helper.AreEqual(value, _uuid))
{
_uuid = value;
NotifyPropertyChanged("uuid");
}
}
}
private string _uuid = "";
///
/// PVS site this proxy is part of
///
[JsonConverter(typeof(XenRefConverter))]
public virtual XenRef site
{
get { return _site; }
set
{
if (!Helper.AreEqual(value, _site))
{
_site = value;
NotifyPropertyChanged("site");
}
}
}
private XenRef _site = new XenRef("OpaqueRef:NULL");
///
/// VIF of the VM using the proxy
///
[JsonConverter(typeof(XenRefConverter))]
public virtual XenRef VIF
{
get { return _VIF; }
set
{
if (!Helper.AreEqual(value, _VIF))
{
_VIF = value;
NotifyPropertyChanged("VIF");
}
}
}
private XenRef _VIF = new XenRef("OpaqueRef:NULL");
///
/// true = VM is currently proxied
///
public virtual bool currently_attached
{
get { return _currently_attached; }
set
{
if (!Helper.AreEqual(value, _currently_attached))
{
_currently_attached = value;
NotifyPropertyChanged("currently_attached");
}
}
}
private bool _currently_attached = false;
///
/// The run-time status of the proxy
///
[JsonConverter(typeof(pvs_proxy_statusConverter))]
public virtual pvs_proxy_status status
{
get { return _status; }
set
{
if (!Helper.AreEqual(value, _status))
{
_status = value;
NotifyPropertyChanged("status");
}
}
}
private pvs_proxy_status _status = pvs_proxy_status.stopped;
}
}