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 ;
using Newtonsoft.Json ;
2013-06-24 13:41:48 +02:00
namespace XenAPI
{
2014-05-16 17:58:13 +02:00
/// <summary>
/// A virtual network interface
/// First published in XenServer 4.0.
/// </summary>
2013-06-24 13:41:48 +02:00
public partial class VIF : XenObject < VIF >
{
2019-06-19 10:11:30 +02:00
#region Constructors
2013-06-24 13:41:48 +02:00
public VIF ( )
{
}
public VIF ( string uuid ,
List < vif_operations > allowed_operations ,
Dictionary < string , vif_operations > current_operations ,
string device ,
XenRef < Network > network ,
XenRef < VM > VM ,
string MAC ,
long MTU ,
Dictionary < string , string > other_config ,
bool currently_attached ,
long status_code ,
string status_detail ,
Dictionary < string , string > runtime_properties ,
string qos_algorithm_type ,
Dictionary < string , string > qos_algorithm_params ,
string [ ] qos_supported_algorithms ,
XenRef < VIF_metrics > metrics ,
bool MAC_autogenerated ,
vif_locking_mode locking_mode ,
string [ ] ipv4_allowed ,
2016-04-08 18:09:21 +02:00
string [ ] ipv6_allowed ,
vif_ipv4_configuration_mode ipv4_configuration_mode ,
string [ ] ipv4_addresses ,
string ipv4_gateway ,
vif_ipv6_configuration_mode ipv6_configuration_mode ,
string [ ] ipv6_addresses ,
string ipv6_gateway )
2013-06-24 13:41:48 +02:00
{
this . uuid = uuid ;
this . allowed_operations = allowed_operations ;
this . current_operations = current_operations ;
this . device = device ;
this . network = network ;
this . VM = VM ;
this . MAC = MAC ;
this . MTU = MTU ;
this . other_config = other_config ;
this . currently_attached = currently_attached ;
this . status_code = status_code ;
this . status_detail = status_detail ;
this . runtime_properties = runtime_properties ;
this . qos_algorithm_type = qos_algorithm_type ;
this . qos_algorithm_params = qos_algorithm_params ;
this . qos_supported_algorithms = qos_supported_algorithms ;
this . metrics = metrics ;
this . MAC_autogenerated = MAC_autogenerated ;
this . locking_mode = locking_mode ;
this . ipv4_allowed = ipv4_allowed ;
this . ipv6_allowed = ipv6_allowed ;
2016-04-08 18:09:21 +02:00
this . ipv4_configuration_mode = ipv4_configuration_mode ;
this . ipv4_addresses = ipv4_addresses ;
this . ipv4_gateway = ipv4_gateway ;
this . ipv6_configuration_mode = ipv6_configuration_mode ;
this . ipv6_addresses = ipv6_addresses ;
this . ipv6_gateway = ipv6_gateway ;
2013-06-24 13:41:48 +02:00
}
2019-06-19 10:11:30 +02:00
/// <summary>
/// Creates a new VIF 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 VIF ( Hashtable table )
: this ( )
{
UpdateFrom ( table ) ;
}
2013-06-24 13:41:48 +02:00
/// <summary>
/// Creates a new VIF from a Proxy_VIF.
/// </summary>
/// <param name="proxy"></param>
public VIF ( Proxy_VIF 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 VIF.
/// </summary>
2013-06-24 13:41:48 +02:00
public override void UpdateFrom ( VIF update )
{
uuid = update . uuid ;
allowed_operations = update . allowed_operations ;
current_operations = update . current_operations ;
device = update . device ;
network = update . network ;
VM = update . VM ;
MAC = update . MAC ;
MTU = update . MTU ;
other_config = update . other_config ;
currently_attached = update . currently_attached ;
status_code = update . status_code ;
status_detail = update . status_detail ;
runtime_properties = update . runtime_properties ;
qos_algorithm_type = update . qos_algorithm_type ;
qos_algorithm_params = update . qos_algorithm_params ;
qos_supported_algorithms = update . qos_supported_algorithms ;
metrics = update . metrics ;
MAC_autogenerated = update . MAC_autogenerated ;
locking_mode = update . locking_mode ;
ipv4_allowed = update . ipv4_allowed ;
ipv6_allowed = update . ipv6_allowed ;
2016-04-08 18:09:21 +02:00
ipv4_configuration_mode = update . ipv4_configuration_mode ;
ipv4_addresses = update . ipv4_addresses ;
ipv4_gateway = update . ipv4_gateway ;
ipv6_configuration_mode = update . ipv6_configuration_mode ;
ipv6_addresses = update . ipv6_addresses ;
ipv6_gateway = update . ipv6_gateway ;
2013-06-24 13:41:48 +02:00
}
2019-06-19 10:11:30 +02:00
internal void UpdateFrom ( Proxy_VIF proxy )
2013-06-24 13:41:48 +02:00
{
2018-03-22 13:30:43 +01:00
uuid = proxy . uuid = = null ? null : proxy . uuid ;
2013-06-24 13:41:48 +02:00
allowed_operations = proxy . allowed_operations = = null ? null : Helper . StringArrayToEnumList < vif_operations > ( proxy . allowed_operations ) ;
current_operations = proxy . current_operations = = null ? null : Maps . convert_from_proxy_string_vif_operations ( proxy . current_operations ) ;
2018-03-22 13:30:43 +01:00
device = proxy . device = = null ? null : proxy . device ;
2013-06-24 13:41:48 +02:00
network = proxy . network = = null ? null : XenRef < Network > . Create ( proxy . network ) ;
VM = proxy . VM = = null ? null : XenRef < VM > . Create ( proxy . VM ) ;
2018-03-22 13:30:43 +01:00
MAC = proxy . MAC = = null ? null : proxy . MAC ;
MTU = proxy . MTU = = null ? 0 : long . Parse ( proxy . MTU ) ;
2013-06-24 13:41:48 +02:00
other_config = proxy . other_config = = null ? null : Maps . convert_from_proxy_string_string ( proxy . other_config ) ;
currently_attached = ( bool ) proxy . currently_attached ;
2018-03-22 13:30:43 +01:00
status_code = proxy . status_code = = null ? 0 : long . Parse ( proxy . status_code ) ;
status_detail = proxy . status_detail = = null ? null : proxy . status_detail ;
2013-06-24 13:41:48 +02:00
runtime_properties = proxy . runtime_properties = = null ? null : Maps . convert_from_proxy_string_string ( proxy . runtime_properties ) ;
2018-03-22 13:30:43 +01:00
qos_algorithm_type = proxy . qos_algorithm_type = = null ? null : proxy . qos_algorithm_type ;
2013-06-24 13:41:48 +02:00
qos_algorithm_params = proxy . qos_algorithm_params = = null ? null : Maps . convert_from_proxy_string_string ( proxy . qos_algorithm_params ) ;
qos_supported_algorithms = proxy . qos_supported_algorithms = = null ? new string [ ] { } : ( string [ ] ) proxy . qos_supported_algorithms ;
metrics = proxy . metrics = = null ? null : XenRef < VIF_metrics > . Create ( proxy . metrics ) ;
MAC_autogenerated = ( bool ) proxy . MAC_autogenerated ;
locking_mode = proxy . locking_mode = = null ? ( vif_locking_mode ) 0 : ( vif_locking_mode ) Helper . EnumParseDefault ( typeof ( vif_locking_mode ) , ( string ) proxy . locking_mode ) ;
ipv4_allowed = proxy . ipv4_allowed = = null ? new string [ ] { } : ( string [ ] ) proxy . ipv4_allowed ;
ipv6_allowed = proxy . ipv6_allowed = = null ? new string [ ] { } : ( string [ ] ) proxy . ipv6_allowed ;
2016-04-08 18:09:21 +02:00
ipv4_configuration_mode = proxy . ipv4_configuration_mode = = null ? ( vif_ipv4_configuration_mode ) 0 : ( vif_ipv4_configuration_mode ) Helper . EnumParseDefault ( typeof ( vif_ipv4_configuration_mode ) , ( string ) proxy . ipv4_configuration_mode ) ;
ipv4_addresses = proxy . ipv4_addresses = = null ? new string [ ] { } : ( string [ ] ) proxy . ipv4_addresses ;
2018-03-22 13:30:43 +01:00
ipv4_gateway = proxy . ipv4_gateway = = null ? null : proxy . ipv4_gateway ;
2016-04-08 18:09:21 +02:00
ipv6_configuration_mode = proxy . ipv6_configuration_mode = = null ? ( vif_ipv6_configuration_mode ) 0 : ( vif_ipv6_configuration_mode ) Helper . EnumParseDefault ( typeof ( vif_ipv6_configuration_mode ) , ( string ) proxy . ipv6_configuration_mode ) ;
ipv6_addresses = proxy . ipv6_addresses = = null ? new string [ ] { } : ( string [ ] ) proxy . ipv6_addresses ;
2018-03-22 13:30:43 +01:00
ipv6_gateway = proxy . ipv6_gateway = = null ? null : proxy . ipv6_gateway ;
2013-06-24 13:41:48 +02:00
}
public Proxy_VIF ToProxy ( )
{
Proxy_VIF result_ = new Proxy_VIF ( ) ;
2017-09-13 18:14:07 +02:00
result_ . uuid = uuid ? ? "" ;
2018-03-22 13:30:43 +01:00
result_ . allowed_operations = allowed_operations = = null ? new string [ ] { } : Helper . ObjectListToStringArray ( allowed_operations ) ;
2013-06-24 13:41:48 +02:00
result_ . current_operations = Maps . convert_to_proxy_string_vif_operations ( current_operations ) ;
2017-09-13 18:14:07 +02:00
result_ . device = device ? ? "" ;
result_ . network = network ? ? "" ;
result_ . VM = VM ? ? "" ;
result_ . MAC = MAC ? ? "" ;
2013-06-24 13:41:48 +02:00
result_ . MTU = MTU . ToString ( ) ;
result_ . other_config = Maps . convert_to_proxy_string_string ( other_config ) ;
result_ . currently_attached = currently_attached ;
result_ . status_code = status_code . ToString ( ) ;
2017-09-13 18:14:07 +02:00
result_ . status_detail = status_detail ? ? "" ;
2013-06-24 13:41:48 +02:00
result_ . runtime_properties = Maps . convert_to_proxy_string_string ( runtime_properties ) ;
2017-09-13 18:14:07 +02:00
result_ . qos_algorithm_type = qos_algorithm_type ? ? "" ;
2013-06-24 13:41:48 +02:00
result_ . qos_algorithm_params = Maps . convert_to_proxy_string_string ( qos_algorithm_params ) ;
result_ . qos_supported_algorithms = qos_supported_algorithms ;
2017-09-13 18:14:07 +02:00
result_ . metrics = metrics ? ? "" ;
2013-06-24 13:41:48 +02:00
result_ . MAC_autogenerated = MAC_autogenerated ;
result_ . locking_mode = vif_locking_mode_helper . ToString ( locking_mode ) ;
result_ . ipv4_allowed = ipv4_allowed ;
result_ . ipv6_allowed = ipv6_allowed ;
2016-04-08 18:09:21 +02:00
result_ . ipv4_configuration_mode = vif_ipv4_configuration_mode_helper . ToString ( ipv4_configuration_mode ) ;
result_ . ipv4_addresses = ipv4_addresses ;
2017-09-13 18:14:07 +02:00
result_ . ipv4_gateway = ipv4_gateway ? ? "" ;
2016-04-08 18:09:21 +02:00
result_ . ipv6_configuration_mode = vif_ipv6_configuration_mode_helper . ToString ( ipv6_configuration_mode ) ;
result_ . ipv6_addresses = ipv6_addresses ;
2017-09-13 18:14:07 +02:00
result_ . ipv6_gateway = ipv6_gateway ? ? "" ;
2013-06-24 13:41:48 +02:00
return result_ ;
}
2018-02-16 17:27:30 +01:00
/// <summary>
/// Given a Hashtable with field-value pairs, it updates the fields of this VIF
/// 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 ( "allowed_operations" ) )
2018-02-23 17:06:32 +01:00
allowed_operations = Helper . StringArrayToEnumList < vif_operations > ( Marshalling . ParseStringArray ( table , "allowed_operations" ) ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "current_operations" ) )
2018-02-23 17:06:32 +01:00
current_operations = Maps . convert_from_proxy_string_vif_operations ( Marshalling . ParseHashTable ( table , "current_operations" ) ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "device" ) )
2018-02-23 17:06:32 +01:00
device = Marshalling . ParseString ( table , "device" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "network" ) )
2018-02-23 17:06:32 +01:00
network = Marshalling . ParseRef < Network > ( table , "network" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "VM" ) )
2018-02-23 17:06:32 +01:00
VM = Marshalling . ParseRef < VM > ( table , "VM" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "MAC" ) )
2018-02-23 17:06:32 +01:00
MAC = Marshalling . ParseString ( table , "MAC" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "MTU" ) )
2018-02-23 17:06:32 +01:00
MTU = Marshalling . ParseLong ( table , "MTU" ) ;
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 ( "currently_attached" ) )
2018-02-23 17:06:32 +01:00
currently_attached = Marshalling . ParseBool ( table , "currently_attached" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "status_code" ) )
2018-02-23 17:06:32 +01:00
status_code = Marshalling . ParseLong ( table , "status_code" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "status_detail" ) )
2018-02-23 17:06:32 +01:00
status_detail = Marshalling . ParseString ( table , "status_detail" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "runtime_properties" ) )
2018-02-23 17:06:32 +01:00
runtime_properties = Maps . convert_from_proxy_string_string ( Marshalling . ParseHashTable ( table , "runtime_properties" ) ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "qos_algorithm_type" ) )
2018-02-23 17:06:32 +01:00
qos_algorithm_type = Marshalling . ParseString ( table , "qos_algorithm_type" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "qos_algorithm_params" ) )
2018-02-23 17:06:32 +01:00
qos_algorithm_params = Maps . convert_from_proxy_string_string ( Marshalling . ParseHashTable ( table , "qos_algorithm_params" ) ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "qos_supported_algorithms" ) )
2018-02-23 17:06:32 +01:00
qos_supported_algorithms = Marshalling . ParseStringArray ( table , "qos_supported_algorithms" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "metrics" ) )
2018-02-23 17:06:32 +01:00
metrics = Marshalling . ParseRef < VIF_metrics > ( table , "metrics" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "MAC_autogenerated" ) )
2018-02-23 17:06:32 +01:00
MAC_autogenerated = Marshalling . ParseBool ( table , "MAC_autogenerated" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "locking_mode" ) )
2018-02-23 17:06:32 +01:00
locking_mode = ( vif_locking_mode ) Helper . EnumParseDefault ( typeof ( vif_locking_mode ) , Marshalling . ParseString ( table , "locking_mode" ) ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "ipv4_allowed" ) )
2018-02-23 17:06:32 +01:00
ipv4_allowed = Marshalling . ParseStringArray ( table , "ipv4_allowed" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "ipv6_allowed" ) )
2018-02-23 17:06:32 +01:00
ipv6_allowed = Marshalling . ParseStringArray ( table , "ipv6_allowed" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "ipv4_configuration_mode" ) )
2018-02-23 17:06:32 +01:00
ipv4_configuration_mode = ( vif_ipv4_configuration_mode ) Helper . EnumParseDefault ( typeof ( vif_ipv4_configuration_mode ) , Marshalling . ParseString ( table , "ipv4_configuration_mode" ) ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "ipv4_addresses" ) )
2018-02-23 17:06:32 +01:00
ipv4_addresses = Marshalling . ParseStringArray ( table , "ipv4_addresses" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "ipv4_gateway" ) )
2018-02-23 17:06:32 +01:00
ipv4_gateway = Marshalling . ParseString ( table , "ipv4_gateway" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "ipv6_configuration_mode" ) )
2018-02-23 17:06:32 +01:00
ipv6_configuration_mode = ( vif_ipv6_configuration_mode ) Helper . EnumParseDefault ( typeof ( vif_ipv6_configuration_mode ) , Marshalling . ParseString ( table , "ipv6_configuration_mode" ) ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "ipv6_addresses" ) )
2018-02-23 17:06:32 +01:00
ipv6_addresses = Marshalling . ParseStringArray ( table , "ipv6_addresses" ) ;
2018-02-16 17:27:30 +01:00
if ( table . ContainsKey ( "ipv6_gateway" ) )
2018-02-23 17:06:32 +01:00
ipv6_gateway = Marshalling . ParseString ( table , "ipv6_gateway" ) ;
2013-06-24 13:41:48 +02:00
}
public bool DeepEquals ( VIF 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 . _allowed_operations , other . _allowed_operations ) & &
Helper . AreEqual2 ( this . _device , other . _device ) & &
Helper . AreEqual2 ( this . _network , other . _network ) & &
Helper . AreEqual2 ( this . _VM , other . _VM ) & &
Helper . AreEqual2 ( this . _MAC , other . _MAC ) & &
Helper . AreEqual2 ( this . _MTU , other . _MTU ) & &
Helper . AreEqual2 ( this . _other_config , other . _other_config ) & &
Helper . AreEqual2 ( this . _currently_attached , other . _currently_attached ) & &
Helper . AreEqual2 ( this . _status_code , other . _status_code ) & &
Helper . AreEqual2 ( this . _status_detail , other . _status_detail ) & &
Helper . AreEqual2 ( this . _runtime_properties , other . _runtime_properties ) & &
Helper . AreEqual2 ( this . _qos_algorithm_type , other . _qos_algorithm_type ) & &
Helper . AreEqual2 ( this . _qos_algorithm_params , other . _qos_algorithm_params ) & &
Helper . AreEqual2 ( this . _qos_supported_algorithms , other . _qos_supported_algorithms ) & &
Helper . AreEqual2 ( this . _metrics , other . _metrics ) & &
Helper . AreEqual2 ( this . _MAC_autogenerated , other . _MAC_autogenerated ) & &
Helper . AreEqual2 ( this . _locking_mode , other . _locking_mode ) & &
Helper . AreEqual2 ( this . _ipv4_allowed , other . _ipv4_allowed ) & &
2016-04-08 18:09:21 +02:00
Helper . AreEqual2 ( this . _ipv6_allowed , other . _ipv6_allowed ) & &
Helper . AreEqual2 ( this . _ipv4_configuration_mode , other . _ipv4_configuration_mode ) & &
Helper . AreEqual2 ( this . _ipv4_addresses , other . _ipv4_addresses ) & &
Helper . AreEqual2 ( this . _ipv4_gateway , other . _ipv4_gateway ) & &
Helper . AreEqual2 ( this . _ipv6_configuration_mode , other . _ipv6_configuration_mode ) & &
Helper . AreEqual2 ( this . _ipv6_addresses , other . _ipv6_addresses ) & &
Helper . AreEqual2 ( this . _ipv6_gateway , other . _ipv6_gateway ) ;
2013-06-24 13:41:48 +02:00
}
2017-11-17 12:19:01 +01:00
internal static List < VIF > ProxyArrayToObjectList ( Proxy_VIF [ ] input )
{
var result = new List < VIF > ( ) ;
foreach ( var item in input )
result . Add ( new VIF ( item ) ) ;
return result ;
}
2013-06-24 13:41:48 +02:00
public override string SaveChanges ( Session session , string opaqueRef , VIF server )
{
if ( opaqueRef = = null )
{
2017-09-13 18:14:07 +02:00
var reference = create ( session , this ) ;
return reference = = null ? null : reference . opaque_ref ;
2013-06-24 13:41:48 +02:00
}
else
{
if ( ! Helper . AreEqual2 ( _other_config , server . _other_config ) )
{
VIF . set_other_config ( session , opaqueRef , _other_config ) ;
}
if ( ! Helper . AreEqual2 ( _qos_algorithm_type , server . _qos_algorithm_type ) )
{
VIF . set_qos_algorithm_type ( session , opaqueRef , _qos_algorithm_type ) ;
}
if ( ! Helper . AreEqual2 ( _qos_algorithm_params , server . _qos_algorithm_params ) )
{
VIF . set_qos_algorithm_params ( session , opaqueRef , _qos_algorithm_params ) ;
}
if ( ! Helper . AreEqual2 ( _locking_mode , server . _locking_mode ) )
{
VIF . set_locking_mode ( session , opaqueRef , _locking_mode ) ;
}
if ( ! Helper . AreEqual2 ( _ipv4_allowed , server . _ipv4_allowed ) )
{
VIF . set_ipv4_allowed ( session , opaqueRef , _ipv4_allowed ) ;
}
if ( ! Helper . AreEqual2 ( _ipv6_allowed , server . _ipv6_allowed ) )
{
VIF . set_ipv6_allowed ( session , opaqueRef , _ipv6_allowed ) ;
}
return null ;
}
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get a record containing the current state of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static VIF get_record ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_record ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return new VIF ( session . XmlRpcProxy . vif_get_record ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get a reference to the VIF 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 < VIF > 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 . vif_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 < VIF > . Create ( session . XmlRpcProxy . vif_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>
/// Create a new VIF instance, and return its handle.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_record">All constructor arguments</param>
2013-06-24 13:41:48 +02:00
public static XenRef < VIF > create ( Session session , VIF _record )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_create ( session . opaque_ref , _record ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < VIF > . Create ( session . XmlRpcProxy . vif_create ( session . opaque_ref , _record . ToProxy ( ) ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Create a new VIF instance, and return its handle.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_record">All constructor arguments</param>
2013-06-24 13:41:48 +02:00
public static XenRef < Task > async_create ( Session session , VIF _record )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_create ( session . opaque_ref , _record ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_create ( session . opaque_ref , _record . ToProxy ( ) ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Destroy the specified VIF instance.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static void destroy ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_destroy ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_destroy ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Destroy the specified VIF instance.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static XenRef < Task > async_destroy ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_destroy ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_destroy ( session . opaque_ref , _vif ? ? "" ) . 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 VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static string get_uuid ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_uuid ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return session . XmlRpcProxy . vif_get_uuid ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the allowed_operations field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static List < vif_operations > get_allowed_operations ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_allowed_operations ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return Helper . StringArrayToEnumList < vif_operations > ( session . XmlRpcProxy . vif_get_allowed_operations ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the current_operations field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static Dictionary < string , vif_operations > get_current_operations ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_current_operations ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return Maps . convert_from_proxy_string_vif_operations ( session . XmlRpcProxy . vif_get_current_operations ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the device field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static string get_device ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_device ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return session . XmlRpcProxy . vif_get_device ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the network field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static XenRef < Network > get_network ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_network ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Network > . Create ( session . XmlRpcProxy . vif_get_network ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the VM field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static XenRef < VM > get_VM ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_vm ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < VM > . Create ( session . XmlRpcProxy . vif_get_vm ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the MAC field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static string get_MAC ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_mac ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return session . XmlRpcProxy . vif_get_mac ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the MTU field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static long get_MTU ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_mtu ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return long . Parse ( session . XmlRpcProxy . vif_get_mtu ( session . opaque_ref , _vif ? ? "" ) . 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 VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static Dictionary < string , string > get_other_config ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_other_config ( session . opaque_ref , _vif ) ;
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 . vif_get_other_config ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the currently_attached field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static bool get_currently_attached ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_currently_attached ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( bool ) session . XmlRpcProxy . vif_get_currently_attached ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the status_code field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static long get_status_code ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_status_code ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return long . Parse ( session . XmlRpcProxy . vif_get_status_code ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the status_detail field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static string get_status_detail ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_status_detail ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return session . XmlRpcProxy . vif_get_status_detail ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the runtime_properties field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static Dictionary < string , string > get_runtime_properties ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_runtime_properties ( session . opaque_ref , _vif ) ;
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 . vif_get_runtime_properties ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the qos/algorithm_type field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static string get_qos_algorithm_type ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_qos_algorithm_type ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return session . XmlRpcProxy . vif_get_qos_algorithm_type ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the qos/algorithm_params field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static Dictionary < string , string > get_qos_algorithm_params ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_qos_algorithm_params ( session . opaque_ref , _vif ) ;
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 . vif_get_qos_algorithm_params ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the qos/supported_algorithms field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static string [ ] get_qos_supported_algorithms ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_qos_supported_algorithms ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( string [ ] ) session . XmlRpcProxy . vif_get_qos_supported_algorithms ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the metrics field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static XenRef < VIF_metrics > get_metrics ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_metrics ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < VIF_metrics > . Create ( session . XmlRpcProxy . vif_get_metrics ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the MAC_autogenerated field of the given VIF.
/// First published in XenServer 5.5.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static bool get_MAC_autogenerated ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_mac_autogenerated ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( bool ) session . XmlRpcProxy . vif_get_mac_autogenerated ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the locking_mode field of the given VIF.
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static vif_locking_mode get_locking_mode ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_locking_mode ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( vif_locking_mode ) Helper . EnumParseDefault ( typeof ( vif_locking_mode ) , ( string ) session . XmlRpcProxy . vif_get_locking_mode ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the ipv4_allowed field of the given VIF.
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static string [ ] get_ipv4_allowed ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_ipv4_allowed ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( string [ ] ) session . XmlRpcProxy . vif_get_ipv4_allowed ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Get the ipv6_allowed field of the given VIF.
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
2013-06-24 13:41:48 +02:00
public static string [ ] get_ipv6_allowed ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_ipv6_allowed ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( string [ ] ) session . XmlRpcProxy . vif_get_ipv6_allowed ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2016-04-08 18:09:21 +02:00
/// <summary>
/// Get the ipv4_configuration_mode field of the given VIF.
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
public static vif_ipv4_configuration_mode get_ipv4_configuration_mode ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_ipv4_configuration_mode ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( vif_ipv4_configuration_mode ) Helper . EnumParseDefault ( typeof ( vif_ipv4_configuration_mode ) , ( string ) session . XmlRpcProxy . vif_get_ipv4_configuration_mode ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2016-04-08 18:09:21 +02:00
}
/// <summary>
/// Get the ipv4_addresses field of the given VIF.
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
public static string [ ] get_ipv4_addresses ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_ipv4_addresses ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( string [ ] ) session . XmlRpcProxy . vif_get_ipv4_addresses ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2016-04-08 18:09:21 +02:00
}
/// <summary>
/// Get the ipv4_gateway field of the given VIF.
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
public static string get_ipv4_gateway ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_ipv4_gateway ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return session . XmlRpcProxy . vif_get_ipv4_gateway ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2016-04-08 18:09:21 +02:00
}
/// <summary>
/// Get the ipv6_configuration_mode field of the given VIF.
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
public static vif_ipv6_configuration_mode get_ipv6_configuration_mode ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_ipv6_configuration_mode ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( vif_ipv6_configuration_mode ) Helper . EnumParseDefault ( typeof ( vif_ipv6_configuration_mode ) , ( string ) session . XmlRpcProxy . vif_get_ipv6_configuration_mode ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2016-04-08 18:09:21 +02:00
}
/// <summary>
/// Get the ipv6_addresses field of the given VIF.
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
public static string [ ] get_ipv6_addresses ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_ipv6_addresses ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return ( string [ ] ) session . XmlRpcProxy . vif_get_ipv6_addresses ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2016-04-08 18:09:21 +02:00
}
/// <summary>
/// Get the ipv6_gateway field of the given VIF.
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
public static string get_ipv6_gateway ( Session session , string _vif )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . vif_get_ipv6_gateway ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return session . XmlRpcProxy . vif_get_ipv6_gateway ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2016-04-08 18:09:21 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Set the other_config field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</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 _vif , 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 . vif_set_other_config ( session . opaque_ref , _vif , _other_config ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_set_other_config ( session . opaque_ref , _vif ? ? "" , 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 VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</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 _vif , 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 . vif_add_to_other_config ( session . opaque_ref , _vif , _key , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_add_to_other_config ( session . opaque_ref , _vif ? ? "" , _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 VIF. If the key is not in that Map, then do nothing.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</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 _vif , string _key )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_remove_from_other_config ( session . opaque_ref , _vif , _key ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_remove_from_other_config ( session . opaque_ref , _vif ? ? "" , _key ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Set the qos/algorithm_type field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_algorithm_type">New value to set</param>
2013-06-24 13:41:48 +02:00
public static void set_qos_algorithm_type ( Session session , string _vif , string _algorithm_type )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_set_qos_algorithm_type ( session . opaque_ref , _vif , _algorithm_type ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_set_qos_algorithm_type ( session . opaque_ref , _vif ? ? "" , _algorithm_type ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Set the qos/algorithm_params field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_algorithm_params">New value to set</param>
2013-06-24 13:41:48 +02:00
public static void set_qos_algorithm_params ( Session session , string _vif , Dictionary < string , string > _algorithm_params )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_set_qos_algorithm_params ( session . opaque_ref , _vif , _algorithm_params ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_set_qos_algorithm_params ( session . opaque_ref , _vif ? ? "" , Maps . convert_to_proxy_string_string ( _algorithm_params ) ) . 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 qos/algorithm_params field of the given VIF.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</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_qos_algorithm_params ( Session session , string _vif , 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 . vif_add_to_qos_algorithm_params ( session . opaque_ref , _vif , _key , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_add_to_qos_algorithm_params ( session . opaque_ref , _vif ? ? "" , _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 qos/algorithm_params field of the given VIF. If the key is not in that Map, then do nothing.
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_key">Key to remove</param>
2013-06-24 13:41:48 +02:00
public static void remove_from_qos_algorithm_params ( Session session , string _vif , string _key )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_remove_from_qos_algorithm_params ( session . opaque_ref , _vif , _key ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_remove_from_qos_algorithm_params ( session . opaque_ref , _vif ? ? "" , _key ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Hotplug the specified VIF, dynamically attaching it to the running VM
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
public static void plug ( Session session , string _vif )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_plug ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_plug ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Hotplug the specified VIF, dynamically attaching it to the running VM
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
public static XenRef < Task > async_plug ( Session session , string _vif )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_plug ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_plug ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Hot-unplug the specified VIF, dynamically unattaching it from the running VM
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
public static void unplug ( Session session , string _vif )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_unplug ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_unplug ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Hot-unplug the specified VIF, dynamically unattaching it from the running VM
/// First published in XenServer 4.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
public static XenRef < Task > async_unplug ( Session session , string _vif )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_unplug ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_unplug ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Forcibly unplug the specified VIF
/// First published in XenServer 6.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
public static void unplug_force ( Session session , string _vif )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_unplug_force ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_unplug_force ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Forcibly unplug the specified VIF
/// First published in XenServer 6.0.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
public static XenRef < Task > async_unplug_force ( Session session , string _vif )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_unplug_force ( session . opaque_ref , _vif ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_unplug_force ( session . opaque_ref , _vif ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2016-08-30 18:11:47 +02:00
/// <summary>
/// Move the specified VIF to the specified network, even while the VM is running
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.1.
2016-08-30 18:11:47 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_network">The network to move it to</param>
public static void move ( Session session , string _vif , string _network )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_move ( session . opaque_ref , _vif , _network ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_move ( session . opaque_ref , _vif ? ? "" , _network ? ? "" ) . parse ( ) ;
2016-08-30 18:11:47 +02:00
}
/// <summary>
/// Move the specified VIF to the specified network, even while the VM is running
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.1.
2016-08-30 18:11:47 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_network">The network to move it to</param>
public static XenRef < Task > async_move ( Session session , string _vif , string _network )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_move ( session . opaque_ref , _vif , _network ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_move ( session . opaque_ref , _vif ? ? "" , _network ? ? "" ) . parse ( ) ) ;
2016-08-30 18:11:47 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Set the locking mode for this VIF
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The new locking mode for the VIF</param>
public static void set_locking_mode ( Session session , string _vif , vif_locking_mode _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_set_locking_mode ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_set_locking_mode ( session . opaque_ref , _vif ? ? "" , vif_locking_mode_helper . ToString ( _value ) ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Set the locking mode for this VIF
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The new locking mode for the VIF</param>
public static XenRef < Task > async_set_locking_mode ( Session session , string _vif , vif_locking_mode _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_set_locking_mode ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_set_locking_mode ( session . opaque_ref , _vif ? ? "" , vif_locking_mode_helper . ToString ( _value ) ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Set the IPv4 addresses to which traffic on this VIF can be restricted
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The IP addresses which will be associated with the VIF</param>
public static void set_ipv4_allowed ( Session session , string _vif , string [ ] _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_set_ipv4_allowed ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_set_ipv4_allowed ( session . opaque_ref , _vif ? ? "" , _value ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Set the IPv4 addresses to which traffic on this VIF can be restricted
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The IP addresses which will be associated with the VIF</param>
public static XenRef < Task > async_set_ipv4_allowed ( Session session , string _vif , string [ ] _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_set_ipv4_allowed ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_set_ipv4_allowed ( session . opaque_ref , _vif ? ? "" , _value ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Associates an IPv4 address with this VIF
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The IP address which will be associated with the VIF</param>
public static void add_ipv4_allowed ( Session session , string _vif , string _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_add_ipv4_allowed ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_add_ipv4_allowed ( session . opaque_ref , _vif ? ? "" , _value ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Associates an IPv4 address with this VIF
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The IP address which will be associated with the VIF</param>
public static XenRef < Task > async_add_ipv4_allowed ( Session session , string _vif , string _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_add_ipv4_allowed ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_add_ipv4_allowed ( session . opaque_ref , _vif ? ? "" , _value ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Removes an IPv4 address from this VIF
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The IP address which will be removed from the VIF</param>
public static void remove_ipv4_allowed ( Session session , string _vif , string _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_remove_ipv4_allowed ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_remove_ipv4_allowed ( session . opaque_ref , _vif ? ? "" , _value ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Removes an IPv4 address from this VIF
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The IP address which will be removed from the VIF</param>
public static XenRef < Task > async_remove_ipv4_allowed ( Session session , string _vif , string _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_remove_ipv4_allowed ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_remove_ipv4_allowed ( session . opaque_ref , _vif ? ? "" , _value ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Set the IPv6 addresses to which traffic on this VIF can be restricted
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The IP addresses which will be associated with the VIF</param>
public static void set_ipv6_allowed ( Session session , string _vif , string [ ] _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_set_ipv6_allowed ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_set_ipv6_allowed ( session . opaque_ref , _vif ? ? "" , _value ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Set the IPv6 addresses to which traffic on this VIF can be restricted
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The IP addresses which will be associated with the VIF</param>
public static XenRef < Task > async_set_ipv6_allowed ( Session session , string _vif , string [ ] _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_set_ipv6_allowed ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_set_ipv6_allowed ( session . opaque_ref , _vif ? ? "" , _value ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Associates an IPv6 address with this VIF
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The IP address which will be associated with the VIF</param>
public static void add_ipv6_allowed ( Session session , string _vif , string _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_add_ipv6_allowed ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_add_ipv6_allowed ( session . opaque_ref , _vif ? ? "" , _value ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Associates an IPv6 address with this VIF
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The IP address which will be associated with the VIF</param>
public static XenRef < Task > async_add_ipv6_allowed ( Session session , string _vif , string _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_add_ipv6_allowed ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_add_ipv6_allowed ( session . opaque_ref , _vif ? ? "" , _value ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Removes an IPv6 address from this VIF
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The IP address which will be removed from the VIF</param>
public static void remove_ipv6_allowed ( Session session , string _vif , string _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_remove_ipv6_allowed ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_remove_ipv6_allowed ( session . opaque_ref , _vif ? ? "" , _value ? ? "" ) . parse ( ) ;
2013-06-24 13:41:48 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Removes an IPv6 address from this VIF
/// First published in XenServer 6.1.
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_value">The IP address which will be removed from the VIF</param>
public static XenRef < Task > async_remove_ipv6_allowed ( Session session , string _vif , string _value )
2013-06-24 13:41:48 +02:00
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_remove_ipv6_allowed ( session . opaque_ref , _vif , _value ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_remove_ipv6_allowed ( session . opaque_ref , _vif ? ? "" , _value ? ? "" ) . parse ( ) ) ;
2013-06-24 13:41:48 +02:00
}
2016-04-08 18:09:21 +02:00
/// <summary>
/// Configure IPv4 settings for this virtual interface
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_mode">Whether to use static or no IPv4 assignment</param>
2017-09-13 18:14:07 +02:00
/// <param name="_address">The IPv4 address in <addr>/<prefix length> format (for static mode only)</param>
2016-04-08 18:09:21 +02:00
/// <param name="_gateway">The IPv4 gateway (for static mode only; leave empty to not set a gateway)</param>
public static void configure_ipv4 ( Session session , string _vif , vif_ipv4_configuration_mode _mode , string _address , string _gateway )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_configure_ipv4 ( session . opaque_ref , _vif , _mode , _address , _gateway ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_configure_ipv4 ( session . opaque_ref , _vif ? ? "" , vif_ipv4_configuration_mode_helper . ToString ( _mode ) , _address ? ? "" , _gateway ? ? "" ) . parse ( ) ;
2016-04-08 18:09:21 +02:00
}
/// <summary>
/// Configure IPv4 settings for this virtual interface
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_mode">Whether to use static or no IPv4 assignment</param>
2017-09-13 18:14:07 +02:00
/// <param name="_address">The IPv4 address in <addr>/<prefix length> format (for static mode only)</param>
2016-04-08 18:09:21 +02:00
/// <param name="_gateway">The IPv4 gateway (for static mode only; leave empty to not set a gateway)</param>
public static XenRef < Task > async_configure_ipv4 ( Session session , string _vif , vif_ipv4_configuration_mode _mode , string _address , string _gateway )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_configure_ipv4 ( session . opaque_ref , _vif , _mode , _address , _gateway ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_configure_ipv4 ( session . opaque_ref , _vif ? ? "" , vif_ipv4_configuration_mode_helper . ToString ( _mode ) , _address ? ? "" , _gateway ? ? "" ) . parse ( ) ) ;
2016-04-08 18:09:21 +02:00
}
/// <summary>
/// Configure IPv6 settings for this virtual interface
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_mode">Whether to use static or no IPv6 assignment</param>
2017-09-13 18:14:07 +02:00
/// <param name="_address">The IPv6 address in <addr>/<prefix length> format (for static mode only)</param>
2016-04-08 18:09:21 +02:00
/// <param name="_gateway">The IPv6 gateway (for static mode only; leave empty to not set a gateway)</param>
public static void configure_ipv6 ( Session session , string _vif , vif_ipv6_configuration_mode _mode , string _address , string _gateway )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
session . JsonRpcClient . vif_configure_ipv6 ( session . opaque_ref , _vif , _mode , _address , _gateway ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
session . XmlRpcProxy . vif_configure_ipv6 ( session . opaque_ref , _vif ? ? "" , vif_ipv6_configuration_mode_helper . ToString ( _mode ) , _address ? ? "" , _gateway ? ? "" ) . parse ( ) ;
2016-04-08 18:09:21 +02:00
}
/// <summary>
/// Configure IPv6 settings for this virtual interface
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
/// <param name="session">The session</param>
/// <param name="_vif">The opaque_ref of the given vif</param>
/// <param name="_mode">Whether to use static or no IPv6 assignment</param>
2017-09-13 18:14:07 +02:00
/// <param name="_address">The IPv6 address in <addr>/<prefix length> format (for static mode only)</param>
2016-04-08 18:09:21 +02:00
/// <param name="_gateway">The IPv6 gateway (for static mode only; leave empty to not set a gateway)</param>
public static XenRef < Task > async_configure_ipv6 ( Session session , string _vif , vif_ipv6_configuration_mode _mode , string _address , string _gateway )
{
2017-09-13 18:14:07 +02:00
if ( session . JsonRpcClient ! = null )
2018-02-23 17:06:32 +01:00
return session . JsonRpcClient . async_vif_configure_ipv6 ( session . opaque_ref , _vif , _mode , _address , _gateway ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < Task > . Create ( session . XmlRpcProxy . async_vif_configure_ipv6 ( session . opaque_ref , _vif ? ? "" , vif_ipv6_configuration_mode_helper . ToString ( _mode ) , _address ? ? "" , _gateway ? ? "" ) . parse ( ) ) ;
2016-04-08 18:09:21 +02:00
}
2014-05-16 17:58:13 +02:00
/// <summary>
/// Return a list of all the VIFs 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 < VIF > > 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 . vif_get_all ( session . opaque_ref ) ;
2017-09-13 18:14:07 +02:00
else
2020-01-30 01:02:24 +01:00
return XenRef < VIF > . Create ( session . XmlRpcProxy . vif_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 VIF 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 < VIF > , VIF > 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 . vif_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 < VIF > . Create < Proxy_VIF > ( session . XmlRpcProxy . vif_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>
/// 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 < vif_operations > allowed_operations
{
get { return _allowed_operations ; }
set
{
if ( ! Helper . AreEqual ( value , _allowed_operations ) )
{
_allowed_operations = value ;
NotifyPropertyChanged ( "allowed_operations" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private List < vif_operations > _allowed_operations = new List < vif_operations > ( ) { } ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02: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 , vif_operations > current_operations
{
get { return _current_operations ; }
set
{
if ( ! Helper . AreEqual ( value , _current_operations ) )
{
_current_operations = value ;
NotifyPropertyChanged ( "current_operations" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private Dictionary < string , vif_operations > _current_operations = new Dictionary < string , vif_operations > ( ) { } ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// order in which VIF backends are created by xapi
/// </summary>
public virtual string device
{
get { return _device ; }
set
{
if ( ! Helper . AreEqual ( value , _device ) )
{
_device = value ;
NotifyPropertyChanged ( "device" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string _device = "" ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// virtual network to which this vif is connected
/// </summary>
2017-09-13 18:14:07 +02:00
[JsonConverter(typeof(XenRefConverter<Network>))]
2014-05-16 17:58:13 +02:00
public virtual XenRef < Network > network
{
get { return _network ; }
set
{
if ( ! Helper . AreEqual ( value , _network ) )
{
_network = value ;
NotifyPropertyChanged ( "network" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private XenRef < Network > _network = new XenRef < Network > ( Helper . NullOpaqueRef ) ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// virtual machine to which this vif is connected
/// </summary>
2017-09-13 18:14:07 +02:00
[JsonConverter(typeof(XenRefConverter<VM>))]
2014-05-16 17:58:13 +02:00
public virtual XenRef < VM > VM
{
get { return _VM ; }
set
{
if ( ! Helper . AreEqual ( value , _VM ) )
{
_VM = value ;
NotifyPropertyChanged ( "VM" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private XenRef < VM > _VM = new XenRef < VM > ( Helper . NullOpaqueRef ) ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// ethernet MAC address of virtual interface, as exposed to guest
/// </summary>
public virtual string MAC
{
get { return _MAC ; }
set
{
if ( ! Helper . AreEqual ( value , _MAC ) )
{
_MAC = value ;
NotifyPropertyChanged ( "MAC" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string _MAC = "" ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// MTU in octets
/// </summary>
public virtual long MTU
{
get { return _MTU ; }
set
{
if ( ! Helper . AreEqual ( value , _MTU ) )
{
_MTU = value ;
NotifyPropertyChanged ( "MTU" ) ;
}
}
}
2013-06-24 13:41:48 +02:00
private long _MTU ;
2014-05-16 17:58:13 +02:00
/// <summary>
/// additional configuration
/// </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 > ( ) { } ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// is the device currently attached (erased on reboot)
/// </summary>
public virtual bool currently_attached
{
get { return _currently_attached ; }
set
{
if ( ! Helper . AreEqual ( value , _currently_attached ) )
{
_currently_attached = value ;
NotifyPropertyChanged ( "currently_attached" ) ;
}
}
}
2020-06-17 10:48:49 +02:00
private bool _currently_attached = false ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// error/success code associated with last attach-operation (erased on reboot)
/// </summary>
public virtual long status_code
{
get { return _status_code ; }
set
{
if ( ! Helper . AreEqual ( value , _status_code ) )
{
_status_code = value ;
NotifyPropertyChanged ( "status_code" ) ;
}
}
}
2013-06-24 13:41:48 +02:00
private long _status_code ;
2014-05-16 17:58:13 +02:00
/// <summary>
/// error/success information associated with last attach-operation status (erased on reboot)
/// </summary>
public virtual string status_detail
{
get { return _status_detail ; }
set
{
if ( ! Helper . AreEqual ( value , _status_detail ) )
{
_status_detail = value ;
NotifyPropertyChanged ( "status_detail" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string _status_detail = "" ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// Device runtime properties
/// </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 > runtime_properties
{
get { return _runtime_properties ; }
set
{
if ( ! Helper . AreEqual ( value , _runtime_properties ) )
{
_runtime_properties = value ;
NotifyPropertyChanged ( "runtime_properties" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private Dictionary < string , string > _runtime_properties = new Dictionary < string , string > ( ) { } ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// QoS algorithm to use
/// </summary>
public virtual string qos_algorithm_type
{
get { return _qos_algorithm_type ; }
set
{
if ( ! Helper . AreEqual ( value , _qos_algorithm_type ) )
{
_qos_algorithm_type = value ;
NotifyPropertyChanged ( "qos_algorithm_type" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string _qos_algorithm_type = "" ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// parameters for chosen QoS algorithm
/// </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 > qos_algorithm_params
{
get { return _qos_algorithm_params ; }
set
{
if ( ! Helper . AreEqual ( value , _qos_algorithm_params ) )
{
_qos_algorithm_params = value ;
NotifyPropertyChanged ( "qos_algorithm_params" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private Dictionary < string , string > _qos_algorithm_params = new Dictionary < string , string > ( ) { } ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// supported QoS algorithms for this VIF
/// </summary>
public virtual string [ ] qos_supported_algorithms
{
get { return _qos_supported_algorithms ; }
set
{
if ( ! Helper . AreEqual ( value , _qos_supported_algorithms ) )
{
_qos_supported_algorithms = value ;
NotifyPropertyChanged ( "qos_supported_algorithms" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string [ ] _qos_supported_algorithms = { } ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// metrics associated with this VIF
/// </summary>
2017-09-13 18:14:07 +02:00
[JsonConverter(typeof(XenRefConverter<VIF_metrics>))]
2014-05-16 17:58:13 +02:00
public virtual XenRef < VIF_metrics > metrics
{
get { return _metrics ; }
set
{
if ( ! Helper . AreEqual ( value , _metrics ) )
{
_metrics = value ;
NotifyPropertyChanged ( "metrics" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private XenRef < VIF_metrics > _metrics = new XenRef < VIF_metrics > ( Helper . NullOpaqueRef ) ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// true if the MAC was autogenerated; false indicates it was set manually
/// First published in XenServer 5.5.
/// </summary>
public virtual bool MAC_autogenerated
{
get { return _MAC_autogenerated ; }
set
{
if ( ! Helper . AreEqual ( value , _MAC_autogenerated ) )
{
_MAC_autogenerated = value ;
NotifyPropertyChanged ( "MAC_autogenerated" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private bool _MAC_autogenerated = false ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// current locking mode of the VIF
/// First published in XenServer 6.1.
/// </summary>
2017-09-13 18:14:07 +02:00
[JsonConverter(typeof(vif_locking_modeConverter))]
2014-05-16 17:58:13 +02:00
public virtual vif_locking_mode locking_mode
{
get { return _locking_mode ; }
set
{
if ( ! Helper . AreEqual ( value , _locking_mode ) )
{
_locking_mode = value ;
NotifyPropertyChanged ( "locking_mode" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private vif_locking_mode _locking_mode = vif_locking_mode . network_default ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// A list of IPv4 addresses which can be used to filter traffic passing through this VIF
/// First published in XenServer 6.1.
/// </summary>
public virtual string [ ] ipv4_allowed
{
get { return _ipv4_allowed ; }
set
{
if ( ! Helper . AreEqual ( value , _ipv4_allowed ) )
{
_ipv4_allowed = value ;
NotifyPropertyChanged ( "ipv4_allowed" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string [ ] _ipv4_allowed = { } ;
2013-06-24 13:41:48 +02:00
2014-05-16 17:58:13 +02:00
/// <summary>
/// A list of IPv6 addresses which can be used to filter traffic passing through this VIF
/// First published in XenServer 6.1.
/// </summary>
public virtual string [ ] ipv6_allowed
{
get { return _ipv6_allowed ; }
set
{
if ( ! Helper . AreEqual ( value , _ipv6_allowed ) )
{
_ipv6_allowed = value ;
NotifyPropertyChanged ( "ipv6_allowed" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string [ ] _ipv6_allowed = { } ;
2016-04-08 18:09:21 +02:00
/// <summary>
/// Determines whether IPv4 addresses are configured on the VIF
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
2017-09-13 18:14:07 +02:00
[JsonConverter(typeof(vif_ipv4_configuration_modeConverter))]
2016-04-08 18:09:21 +02:00
public virtual vif_ipv4_configuration_mode ipv4_configuration_mode
{
get { return _ipv4_configuration_mode ; }
set
{
if ( ! Helper . AreEqual ( value , _ipv4_configuration_mode ) )
{
_ipv4_configuration_mode = value ;
NotifyPropertyChanged ( "ipv4_configuration_mode" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private vif_ipv4_configuration_mode _ipv4_configuration_mode = vif_ipv4_configuration_mode . None ;
2016-04-08 18:09:21 +02:00
/// <summary>
/// IPv4 addresses in CIDR format
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
public virtual string [ ] ipv4_addresses
{
get { return _ipv4_addresses ; }
set
{
if ( ! Helper . AreEqual ( value , _ipv4_addresses ) )
{
_ipv4_addresses = value ;
NotifyPropertyChanged ( "ipv4_addresses" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string [ ] _ipv4_addresses = { } ;
2016-04-08 18:09:21 +02:00
/// <summary>
/// IPv4 gateway (the empty string means that no gateway is set)
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
public virtual string ipv4_gateway
{
get { return _ipv4_gateway ; }
set
{
if ( ! Helper . AreEqual ( value , _ipv4_gateway ) )
{
_ipv4_gateway = value ;
NotifyPropertyChanged ( "ipv4_gateway" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string _ipv4_gateway = "" ;
2016-04-08 18:09:21 +02:00
/// <summary>
/// Determines whether IPv6 addresses are configured on the VIF
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
2017-09-13 18:14:07 +02:00
[JsonConverter(typeof(vif_ipv6_configuration_modeConverter))]
2016-04-08 18:09:21 +02:00
public virtual vif_ipv6_configuration_mode ipv6_configuration_mode
{
get { return _ipv6_configuration_mode ; }
set
{
if ( ! Helper . AreEqual ( value , _ipv6_configuration_mode ) )
{
_ipv6_configuration_mode = value ;
NotifyPropertyChanged ( "ipv6_configuration_mode" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private vif_ipv6_configuration_mode _ipv6_configuration_mode = vif_ipv6_configuration_mode . None ;
2016-04-08 18:09:21 +02:00
/// <summary>
/// IPv6 addresses in CIDR format
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
public virtual string [ ] ipv6_addresses
{
get { return _ipv6_addresses ; }
set
{
if ( ! Helper . AreEqual ( value , _ipv6_addresses ) )
{
_ipv6_addresses = value ;
NotifyPropertyChanged ( "ipv6_addresses" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string [ ] _ipv6_addresses = { } ;
2016-04-08 18:09:21 +02:00
/// <summary>
/// IPv6 gateway (the empty string means that no gateway is set)
2017-06-28 18:00:22 +02:00
/// First published in XenServer 7.0.
2016-04-08 18:09:21 +02:00
/// </summary>
public virtual string ipv6_gateway
{
get { return _ipv6_gateway ; }
set
{
if ( ! Helper . AreEqual ( value , _ipv6_gateway ) )
{
_ipv6_gateway = value ;
NotifyPropertyChanged ( "ipv6_gateway" ) ;
}
}
}
2017-09-13 18:14:07 +02:00
private string _ipv6_gateway = "" ;
2013-06-24 13:41:48 +02:00
}
}