/* * 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 { /// /// individual machine serving provisioning (block) data /// First published in XenServer 7.1. /// public partial class PVS_server : XenObject { #region Constructors public PVS_server() { } public PVS_server(string uuid, string[] addresses, long first_port, long last_port, XenRef site) { this.uuid = uuid; this.addresses = addresses; this.first_port = first_port; this.last_port = last_port; this.site = site; } /// /// Creates a new PVS_server from a Hashtable. /// Note that the fields not contained in the Hashtable /// will be created with their default values. /// /// public PVS_server(Hashtable table) : this() { UpdateFrom(table); } #endregion /// /// Updates each field of this instance with the value of /// the corresponding field of a given PVS_server. /// public override void UpdateFrom(PVS_server record) { uuid = record.uuid; addresses = record.addresses; first_port = record.first_port; last_port = record.last_port; site = record.site; } /// /// Given a Hashtable with field-value pairs, it updates the fields of this PVS_server /// 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("addresses")) addresses = Marshalling.ParseStringArray(table, "addresses"); if (table.ContainsKey("first_port")) first_port = Marshalling.ParseLong(table, "first_port"); if (table.ContainsKey("last_port")) last_port = Marshalling.ParseLong(table, "last_port"); if (table.ContainsKey("site")) site = Marshalling.ParseRef(table, "site"); } public bool DeepEquals(PVS_server other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return Helper.AreEqual2(this._uuid, other._uuid) && Helper.AreEqual2(this._addresses, other._addresses) && Helper.AreEqual2(this._first_port, other._first_port) && Helper.AreEqual2(this._last_port, other._last_port) && Helper.AreEqual2(this._site, other._site); } public override string SaveChanges(Session session, string opaqueRef, PVS_server 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_server. /// First published in XenServer 7.1. /// /// The session /// The opaque_ref of the given pvs_server public static PVS_server get_record(Session session, string _pvs_server) { return session.JsonRpcClient.pvs_server_get_record(session.opaque_ref, _pvs_server); } /// /// Get a reference to the PVS_server 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_server_get_by_uuid(session.opaque_ref, _uuid); } /// /// Get the uuid field of the given PVS_server. /// First published in XenServer 7.1. /// /// The session /// The opaque_ref of the given pvs_server public static string get_uuid(Session session, string _pvs_server) { return session.JsonRpcClient.pvs_server_get_uuid(session.opaque_ref, _pvs_server); } /// /// Get the addresses field of the given PVS_server. /// First published in XenServer 7.1. /// /// The session /// The opaque_ref of the given pvs_server public static string[] get_addresses(Session session, string _pvs_server) { return session.JsonRpcClient.pvs_server_get_addresses(session.opaque_ref, _pvs_server); } /// /// Get the first_port field of the given PVS_server. /// First published in XenServer 7.1. /// /// The session /// The opaque_ref of the given pvs_server public static long get_first_port(Session session, string _pvs_server) { return session.JsonRpcClient.pvs_server_get_first_port(session.opaque_ref, _pvs_server); } /// /// Get the last_port field of the given PVS_server. /// First published in XenServer 7.1. /// /// The session /// The opaque_ref of the given pvs_server public static long get_last_port(Session session, string _pvs_server) { return session.JsonRpcClient.pvs_server_get_last_port(session.opaque_ref, _pvs_server); } /// /// Get the site field of the given PVS_server. /// First published in XenServer 7.1. /// /// The session /// The opaque_ref of the given pvs_server public static XenRef get_site(Session session, string _pvs_server) { return session.JsonRpcClient.pvs_server_get_site(session.opaque_ref, _pvs_server); } /// /// introduce new PVS server /// First published in XenServer 7.1. /// /// The session /// IPv4 addresses of the server /// first UDP port accepted by this server /// last UDP port accepted by this server /// PVS site this server is a part of public static XenRef introduce(Session session, string[] _addresses, long _first_port, long _last_port, string _site) { return session.JsonRpcClient.pvs_server_introduce(session.opaque_ref, _addresses, _first_port, _last_port, _site); } /// /// introduce new PVS server /// First published in XenServer 7.1. /// /// The session /// IPv4 addresses of the server /// first UDP port accepted by this server /// last UDP port accepted by this server /// PVS site this server is a part of public static XenRef async_introduce(Session session, string[] _addresses, long _first_port, long _last_port, string _site) { return session.JsonRpcClient.async_pvs_server_introduce(session.opaque_ref, _addresses, _first_port, _last_port, _site); } /// /// forget a PVS server /// First published in XenServer 7.1. /// /// The session /// The opaque_ref of the given pvs_server public static void forget(Session session, string _pvs_server) { session.JsonRpcClient.pvs_server_forget(session.opaque_ref, _pvs_server); } /// /// forget a PVS server /// First published in XenServer 7.1. /// /// The session /// The opaque_ref of the given pvs_server public static XenRef async_forget(Session session, string _pvs_server) { return session.JsonRpcClient.async_pvs_server_forget(session.opaque_ref, _pvs_server); } /// /// Return a list of all the PVS_servers known to the system. /// First published in XenServer 7.1. /// /// The session public static List> get_all(Session session) { return session.JsonRpcClient.pvs_server_get_all(session.opaque_ref); } /// /// Get all the PVS_server Records at once, in a single XML RPC call /// First published in XenServer 7.1. /// /// The session public static Dictionary, PVS_server> get_all_records(Session session) { return session.JsonRpcClient.pvs_server_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 = ""; /// /// IPv4 addresses of this server /// public virtual string[] addresses { get { return _addresses; } set { if (!Helper.AreEqual(value, _addresses)) { _addresses = value; NotifyPropertyChanged("addresses"); } } } private string[] _addresses = {}; /// /// First UDP port accepted by this server /// public virtual long first_port { get { return _first_port; } set { if (!Helper.AreEqual(value, _first_port)) { _first_port = value; NotifyPropertyChanged("first_port"); } } } private long _first_port = 0; /// /// Last UDP port accepted by this server /// public virtual long last_port { get { return _last_port; } set { if (!Helper.AreEqual(value, _last_port)) { _last_port = value; NotifyPropertyChanged("last_port"); } } } private long _last_port = 0; /// /// PVS site this server 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"); } }