mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-03 16:41:04 +01:00
Update API bindings
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
This commit is contained in:
parent
072397ac2a
commit
c1dc88a203
@ -58,7 +58,8 @@ namespace XenAPI
|
||||
XenRef<PIF> primary_slave,
|
||||
bond_mode mode,
|
||||
Dictionary<string, string> properties,
|
||||
long links_up)
|
||||
long links_up,
|
||||
bool auto_update_mac)
|
||||
{
|
||||
this.uuid = uuid;
|
||||
this.master = master;
|
||||
@ -68,6 +69,7 @@ namespace XenAPI
|
||||
this.mode = mode;
|
||||
this.properties = properties;
|
||||
this.links_up = links_up;
|
||||
this.auto_update_mac = auto_update_mac;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@ -107,6 +109,7 @@ namespace XenAPI
|
||||
mode = update.mode;
|
||||
properties = update.properties;
|
||||
links_up = update.links_up;
|
||||
auto_update_mac = update.auto_update_mac;
|
||||
}
|
||||
|
||||
internal void UpdateFrom(Proxy_Bond proxy)
|
||||
@ -119,6 +122,7 @@ namespace XenAPI
|
||||
mode = proxy.mode == null ? (bond_mode) 0 : (bond_mode)Helper.EnumParseDefault(typeof(bond_mode), (string)proxy.mode);
|
||||
properties = proxy.properties == null ? null : Maps.convert_from_proxy_string_string(proxy.properties);
|
||||
links_up = proxy.links_up == null ? 0 : long.Parse(proxy.links_up);
|
||||
auto_update_mac = (bool)proxy.auto_update_mac;
|
||||
}
|
||||
|
||||
public Proxy_Bond ToProxy()
|
||||
@ -132,6 +136,7 @@ namespace XenAPI
|
||||
result_.mode = bond_mode_helper.ToString(mode);
|
||||
result_.properties = Maps.convert_to_proxy_string_string(properties);
|
||||
result_.links_up = links_up.ToString();
|
||||
result_.auto_update_mac = auto_update_mac;
|
||||
return result_;
|
||||
}
|
||||
|
||||
@ -159,6 +164,8 @@ namespace XenAPI
|
||||
properties = Maps.convert_from_proxy_string_string(Marshalling.ParseHashTable(table, "properties"));
|
||||
if (table.ContainsKey("links_up"))
|
||||
links_up = Marshalling.ParseLong(table, "links_up");
|
||||
if (table.ContainsKey("auto_update_mac"))
|
||||
auto_update_mac = Marshalling.ParseBool(table, "auto_update_mac");
|
||||
}
|
||||
|
||||
public bool DeepEquals(Bond other)
|
||||
@ -175,7 +182,8 @@ namespace XenAPI
|
||||
Helper.AreEqual2(this._primary_slave, other._primary_slave) &&
|
||||
Helper.AreEqual2(this._mode, other._mode) &&
|
||||
Helper.AreEqual2(this._properties, other._properties) &&
|
||||
Helper.AreEqual2(this._links_up, other._links_up);
|
||||
Helper.AreEqual2(this._links_up, other._links_up) &&
|
||||
Helper.AreEqual2(this._auto_update_mac, other._auto_update_mac);
|
||||
}
|
||||
|
||||
internal static List<Bond> ProxyArrayToObjectList(Proxy_Bond[] input)
|
||||
@ -344,6 +352,20 @@ namespace XenAPI
|
||||
return long.Parse(session.proxy.bond_get_links_up(session.opaque_ref, _bond ?? "").parse());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get the auto_update_mac field of the given Bond.
|
||||
/// First published in Unreleased.
|
||||
/// </summary>
|
||||
/// <param name="session">The session</param>
|
||||
/// <param name="_bond">The opaque_ref of the given bond</param>
|
||||
public static bool get_auto_update_mac(Session session, string _bond)
|
||||
{
|
||||
if (session.JsonRpcClient != null)
|
||||
return session.JsonRpcClient.bond_get_auto_update_mac(session.opaque_ref, _bond);
|
||||
else
|
||||
return (bool)session.proxy.bond_get_auto_update_mac(session.opaque_ref, _bond ?? "").parse();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Set the other_config field of the given Bond.
|
||||
/// First published in XenServer 4.1.
|
||||
@ -761,5 +783,24 @@ namespace XenAPI
|
||||
}
|
||||
}
|
||||
private long _links_up = 0;
|
||||
|
||||
/// <summary>
|
||||
/// true if the MAC was taken from the primary slave when the bond was created, and false if the client specified the MAC
|
||||
/// First published in Unreleased.
|
||||
/// </summary>
|
||||
public virtual bool auto_update_mac
|
||||
{
|
||||
get { return _auto_update_mac; }
|
||||
set
|
||||
{
|
||||
if (!Helper.AreEqual(value, _auto_update_mac))
|
||||
{
|
||||
_auto_update_mac = value;
|
||||
Changed = true;
|
||||
NotifyPropertyChanged("auto_update_mac");
|
||||
}
|
||||
}
|
||||
}
|
||||
private bool _auto_update_mac = true;
|
||||
}
|
||||
}
|
||||
|
44
XenModel/XenAPI/FriendlyErrorNames.Designer.cs
generated
44
XenModel/XenAPI/FriendlyErrorNames.Designer.cs
generated
@ -2184,15 +2184,6 @@ namespace XenAPI {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to The passthrough_enabled must be true before passthrough usb to vm..
|
||||
/// </summary>
|
||||
public static string PASSTHROUGH_NOT_ENABLED {
|
||||
get {
|
||||
return ResourceManager.GetString("PASSTHROUGH_NOT_ENABLED", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to The update {0} has already been applied.
|
||||
/// </summary>
|
||||
@ -3009,7 +3000,7 @@ namespace XenAPI {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to The SM plugin did not respond to a query..
|
||||
/// Looks up a localized string similar to The SM plug-in did not respond to a query..
|
||||
/// </summary>
|
||||
public static string SM_PLUGIN_COMMUNICATION_FAILURE {
|
||||
get {
|
||||
@ -3683,6 +3674,15 @@ namespace XenAPI {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Gave up on leaf coalesce after leaf grew bigger than before snapshot taken.
|
||||
/// </summary>
|
||||
public static string SR_BACKEND_FAILURE_204 {
|
||||
get {
|
||||
return ResourceManager.GetString("SR_BACKEND_FAILURE_204", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to The device configuration request is missing the Location parameter.
|
||||
/// </summary>
|
||||
@ -5573,6 +5573,15 @@ namespace XenAPI {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to The guest driver does not support VGPU migration..
|
||||
/// </summary>
|
||||
public static string VGPU_GUEST_DRIVER_LIMIT {
|
||||
get {
|
||||
return ResourceManager.GetString("VGPU_GUEST_DRIVER_LIMIT", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Cannot create a virtual GPU that is incompatible with the existing types on the VM..
|
||||
/// </summary>
|
||||
@ -5709,7 +5718,7 @@ namespace XenAPI {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to There is a minimal interval required between consecutive plugin calls made on the same VM, please wait before retry..
|
||||
/// Looks up a localized string similar to There is a minimal interval required between consecutive plug-in calls made on the same VM, please wait before retry..
|
||||
/// </summary>
|
||||
public static string VM_CALL_PLUGIN_RATE_LIMIT {
|
||||
get {
|
||||
@ -6482,6 +6491,15 @@ namespace XenAPI {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to The current version of Xen or its control libraries is incompatible with the Toolstack..
|
||||
/// </summary>
|
||||
public static string XEN_INCOMPATIBLE {
|
||||
get {
|
||||
return ResourceManager.GetString("XEN_INCOMPATIBLE", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Some volumes to be snapshot could not be added to the VSS snapshot set.
|
||||
/// </summary>
|
||||
@ -6555,7 +6573,7 @@ namespace XenAPI {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to The requested plugin could not be found..
|
||||
/// Looks up a localized string similar to The requested plug-in could not be found..
|
||||
/// </summary>
|
||||
public static string XENAPI_MISSING_PLUGIN {
|
||||
get {
|
||||
@ -6564,7 +6582,7 @@ namespace XenAPI {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to There was a failure communicating with the plugin..
|
||||
/// Looks up a localized string similar to There was a failure communicating with the plug-in..
|
||||
/// </summary>
|
||||
public static string XENAPI_PLUGIN_FAILURE {
|
||||
get {
|
||||
|
@ -1,17 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
|
||||
Example:
|
||||
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
@ -26,39 +26,39 @@
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
@ -112,13 +112,13 @@
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="ACTIVATION_WHILE_NOT_FREE" xml:space="preserve">
|
||||
<value>An activation key can only be applied when the edition is set to 'free'.</value>
|
||||
<value>An activation key can only be applied when the edition is set to 'free'.</value>
|
||||
</data>
|
||||
<data name="ADDRESS_VIOLATES_LOCKING_CONSTRAINT" xml:space="preserve">
|
||||
<value>The specified IP address violates the VIF locking configuration.</value>
|
||||
@ -343,7 +343,7 @@
|
||||
<value>The operation could not be performed because the VBD was not connected to the VM.</value>
|
||||
</data>
|
||||
<data name="DISK_VBD_MUST_BE_READWRITE_FOR_HVM" xml:space="preserve">
|
||||
<value>All VBDs of type 'disk' must be read/write for HVM guests</value>
|
||||
<value>All VBDs of type 'disk' must be read/write for HVM guests</value>
|
||||
</data>
|
||||
<data name="DOMAIN_BUILDER_ERROR" xml:space="preserve">
|
||||
<value>An internal error generated by the domain builder.</value>
|
||||
@ -367,7 +367,7 @@
|
||||
<value>Some events have been lost from the queue and cannot be retrieved.</value>
|
||||
</data>
|
||||
<data name="EVENT_FROM_TOKEN_PARSE_FAILURE" xml:space="preserve">
|
||||
<value>The event.from token could not be parsed. Valid values include: '', and a value returned from a previous event.from call.</value>
|
||||
<value>The event.from token could not be parsed. Valid values include: '', and a value returned from a previous event.from call.</value>
|
||||
</data>
|
||||
<data name="EVENT_SUBSCRIPTION_PARSE_FAILURE" xml:space="preserve">
|
||||
<value>The server failed to parse your event subscription. Valid values include: *, class-name, class-name/object-reference.</value>
|
||||
@ -451,7 +451,7 @@
|
||||
<value>This server cannot join the pool because the pool has HA enabled but this server has HA disabled.</value>
|
||||
</data>
|
||||
<data name="HA_SHOULD_BE_FENCED" xml:space="preserve">
|
||||
<value>Server cannot rejoin pool because it should have fenced (it is not in the master's partition)</value>
|
||||
<value>Server cannot rejoin pool because it should have fenced (it is not in the master's partition)</value>
|
||||
</data>
|
||||
<data name="HA_TOO_FEW_HOSTS" xml:space="preserve">
|
||||
<value>HA can only be enabled for 2 servers or more. Note that 2 servers requires a pre-configured quorum tiebreak script.</value>
|
||||
@ -553,7 +553,7 @@
|
||||
<value>The server is still booting.</value>
|
||||
</data>
|
||||
<data name="HOST_UNKNOWN_TO_MASTER" xml:space="preserve">
|
||||
<value>The master says the server is not known to it. Perhaps the server was deleted from the master's database?</value>
|
||||
<value>The master says the server is not known to it. Perhaps the server was deleted from the master's database?</value>
|
||||
</data>
|
||||
<data name="ILLEGAL_VBD_DEVICE" xml:space="preserve">
|
||||
<value>The specified VBD device is not recognized: please use a non-negative integer</value>
|
||||
@ -625,7 +625,7 @@
|
||||
<value>The uploaded update package is invalid.</value>
|
||||
</data>
|
||||
<data name="INVALID_VALUE" xml:space="preserve">
|
||||
<value>The value '{1}' is invalid for field '{0}'.</value>
|
||||
<value>The value '{1}' is invalid for field '{0}'.</value>
|
||||
</data>
|
||||
<data name="IS_TUNNEL_ACCESS_PIF" xml:space="preserve">
|
||||
<value>Cannot create a VLAN or tunnel on top of a tunnel access PIF - use the underlying transport PIF instead.</value>
|
||||
@ -649,7 +649,7 @@
|
||||
<value>The connection to the joining server failed</value>
|
||||
</data>
|
||||
<data name="JOINING_HOST_SERVICE_FAILED" xml:space="preserve">
|
||||
<value>There was an error connecting to the server. the service contacted didn't reply properly.</value>
|
||||
<value>There was an error connecting to the server. the service contacted didn't reply properly.</value>
|
||||
</data>
|
||||
<data name="LICENCE_RESTRICTION" xml:space="preserve">
|
||||
<value>This operation is not allowed with your current license</value>
|
||||
@ -664,7 +664,7 @@
|
||||
<value>This server cannot join a pool because its license does not support pooling</value>
|
||||
</data>
|
||||
<data name="LICENSE_DOES_NOT_SUPPORT_XHA" xml:space="preserve">
|
||||
<value>HA cannot be enabled because this server's license does not allow it</value>
|
||||
<value>HA cannot be enabled because this server's license does not allow it</value>
|
||||
</data>
|
||||
<data name="LICENSE_EXPIRED" xml:space="preserve">
|
||||
<value>Your license has expired</value>
|
||||
@ -685,7 +685,7 @@
|
||||
<value>A VDI with the specified location already exists within the SR</value>
|
||||
</data>
|
||||
<data name="MAC_DOES_NOT_EXIST" xml:space="preserve">
|
||||
<value>The MAC address specified doesn't exist on this server.</value>
|
||||
<value>The MAC address specified doesn't exist on this server.</value>
|
||||
</data>
|
||||
<data name="MAC_INVALID" xml:space="preserve">
|
||||
<value>The MAC address specified is not valid.</value>
|
||||
@ -694,7 +694,7 @@
|
||||
<value>The MAC address specified still exists on this server.</value>
|
||||
</data>
|
||||
<data name="MAP_DUPLICATE_KEY" xml:space="preserve">
|
||||
<value>INTERNAL ERROR: Attempted to set '{0}'.'{1}':'{3}'='{2}', but the key '{3}' was already present in map '{1}'.</value>
|
||||
<value>INTERNAL ERROR: Attempted to set '{0}'.'{1}':'{3}'='{2}', but the key '{3}' was already present in map '{1}'.</value>
|
||||
</data>
|
||||
<data name="MEMORY_CONSTRAINT_VIOLATION" xml:space="preserve">
|
||||
<value>The dynamic memory range does not satisfy the following constraint.</value>
|
||||
@ -825,9 +825,6 @@
|
||||
<data name="OUT_OF_SPACE" xml:space="preserve">
|
||||
<value>There is not enough space to upload the update</value>
|
||||
</data>
|
||||
<data name="PASSTHROUGH_NOT_ENABLED" xml:space="preserve">
|
||||
<value>The passthrough_enabled must be true before passthrough usb to vm.</value>
|
||||
</data>
|
||||
<data name="PATCH_ALREADY_APPLIED" xml:space="preserve">
|
||||
<value>The update {0} has already been applied</value>
|
||||
</data>
|
||||
@ -910,7 +907,7 @@
|
||||
<value>PIF has no network configuration</value>
|
||||
</data>
|
||||
<data name="PIF_HAS_NO_V6_NETWORK_CONFIGURATION" xml:space="preserve">
|
||||
<value>PIF has no IPv6 configuration (mode currently set to 'none')</value>
|
||||
<value>PIF has no IPv6 configuration (mode currently set to 'none')</value>
|
||||
</data>
|
||||
<data name="PIF_INCOMPATIBLE_PRIMARY_ADDRESS_TYPE" xml:space="preserve">
|
||||
<value>The primary address types are not compatible</value>
|
||||
@ -994,7 +991,7 @@
|
||||
<value>Failed to enable external authentication, the supplied credentials were invalid.</value>
|
||||
</data>
|
||||
<data name="POOL_JOINING_EXTERNAL_AUTH_MISMATCH" xml:space="preserve">
|
||||
<value>The external authentication configuration of the server joining the pool must match the pool's own external authentication configuration.</value>
|
||||
<value>The external authentication configuration of the server joining the pool must match the pool's own external authentication configuration.</value>
|
||||
</data>
|
||||
<data name="POOL_JOINING_HOST_HAS_BONDS" xml:space="preserve">
|
||||
<value>The host joining the pool must not have any bonds.</value>
|
||||
@ -1080,7 +1077,7 @@ Authorized Roles: {1}</value>
|
||||
<value>The restore could not be performed because the restore script failed. Your backup file may be corrupt. See the logs for more information.</value>
|
||||
</data>
|
||||
<data name="RESTORE_TARGET_MGMT_IF_NOT_IN_BACKUP" xml:space="preserve">
|
||||
<value>The restore could not be performed because the server's current management interface is not in the backup. The interfaces mentioned in the backup are:</value>
|
||||
<value>The restore could not be performed because the server's current management interface is not in the backup. The interfaces mentioned in the backup are:</value>
|
||||
</data>
|
||||
<data name="RESTORE_TARGET_MISSING_DEVICE" xml:space="preserve">
|
||||
<value>The restore could not be performed because a network interface is missing</value>
|
||||
@ -1104,7 +1101,7 @@ Authorized Roles: {1}</value>
|
||||
<value>The management interface on a slave cannot be disabled because the slave would enter emergency mode.</value>
|
||||
</data>
|
||||
<data name="SM_PLUGIN_COMMUNICATION_FAILURE" xml:space="preserve">
|
||||
<value>The SM plugin did not respond to a query.</value>
|
||||
<value>The SM plug-in did not respond to a query.</value>
|
||||
</data>
|
||||
<data name="SR_ATTACH_FAILED" xml:space="preserve">
|
||||
<value>Attaching this SR failed.</value>
|
||||
@ -1266,7 +1263,7 @@ Authorized Roles: {1}</value>
|
||||
<value>Invalid snap-reserver-percentage value, must be an integer indicating the amount of space, as a percentage of the VDI size, to reserve for snapshots.</value>
|
||||
</data>
|
||||
<data name="SR_BACKEND_FAILURE_166" xml:space="preserve">
|
||||
<value>Invalid snap-depletion value, must be one of 'delete-oldest' or 'volume-offline'</value>
|
||||
<value>Invalid snap-depletion value, must be one of 'delete-oldest' or 'volume-offline'</value>
|
||||
</data>
|
||||
<data name="SR_BACKEND_FAILURE_167" xml:space="preserve">
|
||||
<value>Volume out of space, probably due to insufficient snapshot reserve allocation.</value>
|
||||
@ -1293,7 +1290,7 @@ Authorized Roles: {1}</value>
|
||||
<value>Invalid SNMP response received for a CLI command</value>
|
||||
</data>
|
||||
<data name="SR_BACKEND_FAILURE_175" xml:space="preserve">
|
||||
<value>Volume metadata stored in the 'Description' field is invalid, this field contains encoded data and is not user editable</value>
|
||||
<value>Volume metadata stored in the 'Description' field is invalid, this field contains encoded data and is not user editable</value>
|
||||
</data>
|
||||
<data name="SR_BACKEND_FAILURE_176" xml:space="preserve">
|
||||
<value>Invalid EOF response received for a CLI command</value>
|
||||
@ -1328,6 +1325,9 @@ Authorized Roles: {1}</value>
|
||||
<data name="SR_BACKEND_FAILURE_203" xml:space="preserve">
|
||||
<value>An active FIST point was reached that causes the process to exit abnormally</value>
|
||||
</data>
|
||||
<data name="SR_BACKEND_FAILURE_204" xml:space="preserve">
|
||||
<value>Gave up on leaf coalesce after leaf grew bigger than before snapshot taken</value>
|
||||
</data>
|
||||
<data name="SR_BACKEND_FAILURE_220" xml:space="preserve">
|
||||
<value>The device configuration request is missing the Location parameter</value>
|
||||
</data>
|
||||
@ -1353,7 +1353,7 @@ Authorized Roles: {1}</value>
|
||||
<value>Given SMB version is not allowed. Choose either 1.0 or 3.0</value>
|
||||
</data>
|
||||
<data name="SR_BACKEND_FAILURE_228" xml:space="preserve">
|
||||
<value>Require "-o" along with xe-mount-isosr</value>
|
||||
<value>Require "-o" along with xe-mount-isosr</value>
|
||||
</data>
|
||||
<data name="SR_BACKEND_FAILURE_24" xml:space="preserve">
|
||||
<value>The specified VDI is currently in use</value>
|
||||
@ -1434,7 +1434,7 @@ Authorized Roles: {1}</value>
|
||||
<value>The VDI failed to be introduced to the database</value>
|
||||
</data>
|
||||
<data name="SR_BACKEND_FAILURE_427" xml:space="preserve">
|
||||
<value>The CSLG software doesn't seem to be installed</value>
|
||||
<value>The CSLG software doesn't seem to be installed</value>
|
||||
</data>
|
||||
<data name="SR_BACKEND_FAILURE_428" xml:space="preserve">
|
||||
<value>Failed to create multiple sub-pools from parent pool</value>
|
||||
@ -1707,7 +1707,7 @@ Authorized Roles: {1}</value>
|
||||
<value>The SR operation cannot be performed because a device underlying the SR is in use by the server.</value>
|
||||
</data>
|
||||
<data name="SR_DOES_NOT_SUPPORT_MIGRATION" xml:space="preserve">
|
||||
<value>You attempted to migrate a VDI to or from an SR that doesn't support migration</value>
|
||||
<value>You attempted to migrate a VDI to or from an SR that doesn't support migration</value>
|
||||
</data>
|
||||
<data name="SR_FULL" xml:space="preserve">
|
||||
<value>The SR is full. Requested size {0} exceeds the maximum size {1}</value>
|
||||
@ -1722,7 +1722,7 @@ Authorized Roles: {1}</value>
|
||||
<value>The SR {0} is still connected to a server by a PBD. It cannot be destroyed.</value>
|
||||
</data>
|
||||
<data name="SR_INDESTRUCTIBLE" xml:space="preserve">
|
||||
<value>The SR could not be destroyed because the 'indestructible' flag was set on it.</value>
|
||||
<value>The SR could not be destroyed because the 'indestructible' flag was set on it.</value>
|
||||
</data>
|
||||
<data name="SR_IS_CACHE_SR" xml:space="preserve">
|
||||
<value>The SR is currently being used as a local cache SR.</value>
|
||||
@ -1755,7 +1755,7 @@ Authorized Roles: {1}</value>
|
||||
<value>The operation could not proceed because necessary VDIs were already locked at the storage level.</value>
|
||||
</data>
|
||||
<data name="SSL_VERIFY_ERROR" xml:space="preserve">
|
||||
<value>The remote system's SSL certificate failed to verify against our certificate library.</value>
|
||||
<value>The remote system's SSL certificate failed to verify against our certificate library.</value>
|
||||
</data>
|
||||
<data name="SUBJECT_ALREADY_EXISTS" xml:space="preserve">
|
||||
<value>Subject already exists.</value>
|
||||
@ -1896,7 +1896,7 @@ Authorized Roles: {1}</value>
|
||||
<value>The requested operation is not allowed for VDIs with CBT enabled or VMs having such VDIs, and CBT is enabled for the specified VDI.</value>
|
||||
</data>
|
||||
<data name="VDI_CONTAINS_METADATA_OF_THIS_POOL" xml:space="preserve">
|
||||
<value>The VDI could not be opened for metadata recovery as it contains the current pool's metadata.</value>
|
||||
<value>The VDI could not be opened for metadata recovery as it contains the current pool's metadata.</value>
|
||||
</data>
|
||||
<data name="VDI_COPY_FAILED" xml:space="preserve">
|
||||
<value>The VDI copy action has failed</value>
|
||||
@ -1938,13 +1938,13 @@ Authorized Roles: {1}</value>
|
||||
<value>This operation cannot be performed because the system does not manage this VDI</value>
|
||||
</data>
|
||||
<data name="VDI_NOT_SPARSE" xml:space="preserve">
|
||||
<value>The VDI is not stored using a sparse format. It is not possible to query and manipulate only the changed blocks (or 'block differences' or 'disk deltas') between two VDIs. Please select a VDI which uses a sparse-aware technology such as VHD.</value>
|
||||
<value>The VDI is not stored using a sparse format. It is not possible to query and manipulate only the changed blocks (or 'block differences' or 'disk deltas') between two VDIs. Please select a VDI which uses a sparse-aware technology such as VHD.</value>
|
||||
</data>
|
||||
<data name="VDI_NO_CBT_METADATA" xml:space="preserve">
|
||||
<value>The requested operation is not allowed because the specified VDI does not have changed block tracking metadata.</value>
|
||||
</data>
|
||||
<data name="VDI_ON_BOOT_MODE_INCOMPATIBLE_WITH_OPERATION" xml:space="preserve">
|
||||
<value>This operation is not permitted on VDIs in the 'on-boot=reset' mode, or on VMs having such VDIs.</value>
|
||||
<value>This operation is not permitted on VDIs in the 'on-boot=reset' mode, or on VMs having such VDIs.</value>
|
||||
</data>
|
||||
<data name="VDI_READONLY" xml:space="preserve">
|
||||
<value>The operation required write access but VDI {0} is read-only</value>
|
||||
@ -1958,6 +1958,9 @@ Authorized Roles: {1}</value>
|
||||
<data name="VGPU_DESTINATION_INCOMPATIBLE" xml:space="preserve">
|
||||
<value>The VGPU is not compatible with any PGPU in the destination.</value>
|
||||
</data>
|
||||
<data name="VGPU_GUEST_DRIVER_LIMIT" xml:space="preserve">
|
||||
<value>The guest driver does not support VGPU migration.</value>
|
||||
</data>
|
||||
<data name="VGPU_TYPE_NOT_COMPATIBLE" xml:space="preserve">
|
||||
<value>Cannot create a virtual GPU that is incompatible with the existing types on the VM.</value>
|
||||
</data>
|
||||
@ -1965,10 +1968,10 @@ Authorized Roles: {1}</value>
|
||||
<value>The VM cannot start because all GPUs are fully used or are running other types of virtual GPU</value>
|
||||
</data>
|
||||
<data name="VGPU_TYPE_NOT_ENABLED" xml:space="preserve">
|
||||
<value>Virtual GPU type is not one of the GPU's enabled types.</value>
|
||||
<value>Virtual GPU type is not one of the GPU's enabled types.</value>
|
||||
</data>
|
||||
<data name="VGPU_TYPE_NOT_SUPPORTED" xml:space="preserve">
|
||||
<value>Virtual GPU type is not one of the GPU's supported types.</value>
|
||||
<value>Virtual GPU type is not one of the GPU's supported types.</value>
|
||||
</data>
|
||||
<data name="VIFS_MAX_ALLOWED" xml:space="preserve">
|
||||
<value>You have reached the maximum number of virtual network interfaces allowed for this virtual machine.</value>
|
||||
@ -2007,16 +2010,16 @@ Authorized Roles: {1}</value>
|
||||
<value>This VM is assigned to a snapshot schedule.</value>
|
||||
</data>
|
||||
<data name="VM_ATTACHED_TO_MORE_THAN_ONE_VDI_WITH_TIMEOFFSET_MARKED_AS_RESET_ON_BOOT" xml:space="preserve">
|
||||
<value>You attempted to start a VM that's attached to more than one VDI with a timeoffset marked as reset-on-boot.</value>
|
||||
<value>You attempted to start a VM that's attached to more than one VDI with a timeoffset marked as reset-on-boot.</value>
|
||||
</data>
|
||||
<data name="VM_BAD_POWER_STATE" xml:space="preserve">
|
||||
<value>You attempted an operation on a VM that needed it to be in state '{1}' but was in state '{2}'.</value>
|
||||
<value>You attempted an operation on a VM that needed it to be in state '{1}' but was in state '{2}'.</value>
|
||||
</data>
|
||||
<data name="VM_BIOS_STRINGS_ALREADY_SET" xml:space="preserve">
|
||||
<value>The BIOS strings for this VM have already been set and cannot be changed.</value>
|
||||
</data>
|
||||
<data name="VM_CALL_PLUGIN_RATE_LIMIT" xml:space="preserve">
|
||||
<value>There is a minimal interval required between consecutive plugin calls made on the same VM, please wait before retry.</value>
|
||||
<value>There is a minimal interval required between consecutive plug-in calls made on the same VM, please wait before retry.</value>
|
||||
</data>
|
||||
<data name="VM_CANNOT_DELETE_DEFAULT_TEMPLATE" xml:space="preserve">
|
||||
<value>You cannot delete the specified default template.</value>
|
||||
@ -2034,10 +2037,10 @@ Authorized Roles: {1}</value>
|
||||
<value>The specified VM has a duplicate VBD device and cannot be started.</value>
|
||||
</data>
|
||||
<data name="VM_FAILED_SHUTDOWN_ACKNOWLEDGMENT" xml:space="preserve">
|
||||
<value>VM didn't acknowledge the need to shut down.</value>
|
||||
<value>VM didn't acknowledge the need to shut down.</value>
|
||||
</data>
|
||||
<data name="VM_FAILED_SUSPEND_ACKNOWLEDGMENT" xml:space="preserve">
|
||||
<value>VM didn't acknowledge the need to suspend.</value>
|
||||
<value>VM didn't acknowledge the need to suspend.</value>
|
||||
</data>
|
||||
<data name="VM_HALTED" xml:space="preserve">
|
||||
<value>The VM unexpectedly halted</value>
|
||||
@ -2070,7 +2073,7 @@ Authorized Roles: {1}</value>
|
||||
<value>Cannot migrate a VM to a destination host which is older than the source host.</value>
|
||||
</data>
|
||||
<data name="VM_HOST_INCOMPATIBLE_VIRTUAL_HARDWARE_PLATFORM_VERSION" xml:space="preserve">
|
||||
<value>The VM's Virtual Hardware Platform version is incompatible with this host.</value>
|
||||
<value>The VM's Virtual Hardware Platform version is incompatible with this host.</value>
|
||||
</data>
|
||||
<data name="VM_HVM_REQUIRED" xml:space="preserve">
|
||||
<value>HVM is required for this operation</value>
|
||||
@ -2151,13 +2154,13 @@ Authorized Roles: {1}</value>
|
||||
<value>The VM unexpectedly rebooted</value>
|
||||
</data>
|
||||
<data name="VM_REQUIRES_GPU" xml:space="preserve">
|
||||
<value>You attempted to run a VM on a host which doesn't have a GPU available in the GPU group needed by the VM. The VM has a virtual GPU attached to this GPU group.</value>
|
||||
<value>You attempted to run a VM on a host which doesn't have a GPU available in the GPU group needed by the VM. The VM has a virtual GPU attached to this GPU group.</value>
|
||||
</data>
|
||||
<data name="VM_REQUIRES_GPU-SHORT" xml:space="preserve">
|
||||
<value>GPU not available</value>
|
||||
</data>
|
||||
<data name="VM_REQUIRES_IOMMU" xml:space="preserve">
|
||||
<value>You attempted to run a VM on a host which doesn't have I/O virtualization (IOMMU/VT-d) enabled, which is needed by the VM.</value>
|
||||
<value>You attempted to run a VM on a host which doesn't have I/O virtualization (IOMMU/VT-d) enabled, which is needed by the VM.</value>
|
||||
</data>
|
||||
<data name="VM_REQUIRES_NETWORK" xml:space="preserve">
|
||||
<value>This VM needs a network that cannot be seen from that server</value>
|
||||
@ -2208,7 +2211,7 @@ Authorized Roles: {1}</value>
|
||||
<value>The VM cannot be imported unforced because it is either the same version or an older version of an existing VM.</value>
|
||||
</data>
|
||||
<data name="VM_UNSAFE_BOOT" xml:space="preserve">
|
||||
<value>You attempted an operation on VM {0} that was judged to be unsafe by the server. This can happen if the VM would run on a CPU that has a potentially incompatible set of feature flags to those the VM requires. If you want to override this warning then use the 'force' option.</value>
|
||||
<value>You attempted an operation on VM {0} that was judged to be unsafe by the server. This can happen if the VM would run on a CPU that has a potentially incompatible set of feature flags to those the VM requires. If you want to override this warning then use the 'force' option.</value>
|
||||
</data>
|
||||
<data name="WLB_AUTHENTICATION_FAILED" xml:space="preserve">
|
||||
<value>WLB rejected our configured authentication details.</value>
|
||||
@ -2226,10 +2229,10 @@ Authorized Roles: {1}</value>
|
||||
<value>WLB reported an internal error.</value>
|
||||
</data>
|
||||
<data name="WLB_MALFORMED_REQUEST" xml:space="preserve">
|
||||
<value>WLB rejected the server's request as malformed.</value>
|
||||
<value>WLB rejected the server's request as malformed.</value>
|
||||
</data>
|
||||
<data name="WLB_MALFORMED_RESPONSE" xml:space="preserve">
|
||||
<value>The WLB server said something that the server wasn't expecting or didn't understand.</value>
|
||||
<value>The WLB server said something that the server wasn't expecting or didn't understand.</value>
|
||||
</data>
|
||||
<data name="WLB_NOT_INITIALIZED" xml:space="preserve">
|
||||
<value>No WLB connection is configured.</value>
|
||||
@ -2247,10 +2250,10 @@ Authorized Roles: {1}</value>
|
||||
<value>WLB reported that the server rejected its configured authentication details.</value>
|
||||
</data>
|
||||
<data name="WLB_XENSERVER_CONNECTION_REFUSED" xml:space="preserve">
|
||||
<value>WLB reported that the server refused to let it connect (even though we're connecting perfectly fine in the other direction).</value>
|
||||
<value>WLB reported that the server refused to let it connect (even though we're connecting perfectly fine in the other direction).</value>
|
||||
</data>
|
||||
<data name="WLB_XENSERVER_MALFORMED_RESPONSE" xml:space="preserve">
|
||||
<value>WLB reported that the server said something to it that WLB wasn't expecting or didn't understand.</value>
|
||||
<value>WLB reported that the server said something to it that WLB wasn't expecting or didn't understand.</value>
|
||||
</data>
|
||||
<data name="WLB_XENSERVER_TIMEOUT" xml:space="preserve">
|
||||
<value>WLB reported that communication with the server timed out.</value>
|
||||
@ -2262,10 +2265,13 @@ Authorized Roles: {1}</value>
|
||||
<value>3rd party xapi hook failed</value>
|
||||
</data>
|
||||
<data name="XENAPI_MISSING_PLUGIN" xml:space="preserve">
|
||||
<value>The requested plugin could not be found.</value>
|
||||
<value>The requested plug-in could not be found.</value>
|
||||
</data>
|
||||
<data name="XENAPI_PLUGIN_FAILURE" xml:space="preserve">
|
||||
<value>There was a failure communicating with the plugin.</value>
|
||||
<value>There was a failure communicating with the plug-in.</value>
|
||||
</data>
|
||||
<data name="XEN_INCOMPATIBLE" xml:space="preserve">
|
||||
<value>The current version of Xen or its control libraries is incompatible with the Toolstack.</value>
|
||||
</data>
|
||||
<data name="XEN_VSS_REQ_ERROR_ADDING_VOLUME_TO_SNAPSET_FAILED" xml:space="preserve">
|
||||
<value>Some volumes to be snapshot could not be added to the VSS snapshot set</value>
|
||||
@ -2297,4 +2303,4 @@ Authorized Roles: {1}</value>
|
||||
<data name="XMLRPC_UNMARSHAL_FAILURE" xml:space="preserve">
|
||||
<value>The server failed to unmarshal the XMLRPC message; it was expecting one element and received something else.</value>
|
||||
</data>
|
||||
</root>
|
||||
</root>
|
@ -8894,6 +8894,13 @@ namespace XenAPI
|
||||
return Rpc<long>("Bond.get_links_up", new JArray(session, _bond ?? ""), serializer);
|
||||
}
|
||||
|
||||
public bool bond_get_auto_update_mac(string session, string _bond)
|
||||
{
|
||||
var converters = new List<JsonConverter> {};
|
||||
var serializer = CreateSerializer(converters);
|
||||
return Rpc<bool>("Bond.get_auto_update_mac", new JArray(session, _bond ?? ""), serializer);
|
||||
}
|
||||
|
||||
public void bond_set_other_config(string session, string _bond, Dictionary<string, string> _other_config)
|
||||
{
|
||||
var converters = new List<JsonConverter> {new StringStringMapConverter()};
|
||||
@ -12787,6 +12794,13 @@ namespace XenAPI
|
||||
return Rpc<string>("VGPU.get_extra_args", new JArray(session, _vgpu ?? ""), serializer);
|
||||
}
|
||||
|
||||
public XenRef<PCI> vgpu_get_pci(string session, string _vgpu)
|
||||
{
|
||||
var converters = new List<JsonConverter> {new XenRefConverter<PCI>()};
|
||||
var serializer = CreateSerializer(converters);
|
||||
return Rpc<XenRef<PCI>>("VGPU.get_PCI", new JArray(session, _vgpu ?? ""), serializer);
|
||||
}
|
||||
|
||||
public void vgpu_set_other_config(string session, string _vgpu, Dictionary<string, string> _other_config)
|
||||
{
|
||||
var converters = new List<JsonConverter> {new StringStringMapConverter()};
|
||||
|
@ -5102,6 +5102,10 @@ namespace XenAPI
|
||||
Response<string>
|
||||
bond_get_links_up(string session, string _bond);
|
||||
|
||||
[XmlRpcMethod("Bond.get_auto_update_mac")]
|
||||
Response<bool>
|
||||
bond_get_auto_update_mac(string session, string _bond);
|
||||
|
||||
[XmlRpcMethod("Bond.set_other_config")]
|
||||
Response<string>
|
||||
bond_set_other_config(string session, string _bond, Object _other_config);
|
||||
@ -7327,6 +7331,10 @@ namespace XenAPI
|
||||
Response<string>
|
||||
vgpu_get_extra_args(string session, string _vgpu);
|
||||
|
||||
[XmlRpcMethod("VGPU.get_PCI")]
|
||||
Response<string>
|
||||
vgpu_get_pci(string session, string _vgpu);
|
||||
|
||||
[XmlRpcMethod("VGPU.set_other_config")]
|
||||
Response<string>
|
||||
vgpu_set_other_config(string session, string _vgpu, Object _other_config);
|
||||
@ -8866,6 +8874,7 @@ namespace XenAPI
|
||||
public string mode;
|
||||
public Object properties;
|
||||
public string links_up;
|
||||
public bool auto_update_mac;
|
||||
}
|
||||
|
||||
[XmlRpcMissingMapping(MappingAction.Ignore)]
|
||||
@ -9198,6 +9207,7 @@ namespace XenAPI
|
||||
public string scheduled_to_be_resident_on;
|
||||
public Object compatibility_metadata;
|
||||
public string extra_args;
|
||||
public string PCI;
|
||||
}
|
||||
|
||||
[XmlRpcMissingMapping(MappingAction.Ignore)]
|
||||
|
@ -61,7 +61,8 @@ namespace XenAPI
|
||||
XenRef<PGPU> resident_on,
|
||||
XenRef<PGPU> scheduled_to_be_resident_on,
|
||||
Dictionary<string, string> compatibility_metadata,
|
||||
string extra_args)
|
||||
string extra_args,
|
||||
XenRef<PCI> PCI)
|
||||
{
|
||||
this.uuid = uuid;
|
||||
this.VM = VM;
|
||||
@ -74,6 +75,7 @@ namespace XenAPI
|
||||
this.scheduled_to_be_resident_on = scheduled_to_be_resident_on;
|
||||
this.compatibility_metadata = compatibility_metadata;
|
||||
this.extra_args = extra_args;
|
||||
this.PCI = PCI;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@ -116,6 +118,7 @@ namespace XenAPI
|
||||
scheduled_to_be_resident_on = update.scheduled_to_be_resident_on;
|
||||
compatibility_metadata = update.compatibility_metadata;
|
||||
extra_args = update.extra_args;
|
||||
PCI = update.PCI;
|
||||
}
|
||||
|
||||
internal void UpdateFrom(Proxy_VGPU proxy)
|
||||
@ -131,6 +134,7 @@ namespace XenAPI
|
||||
scheduled_to_be_resident_on = proxy.scheduled_to_be_resident_on == null ? null : XenRef<PGPU>.Create(proxy.scheduled_to_be_resident_on);
|
||||
compatibility_metadata = proxy.compatibility_metadata == null ? null : Maps.convert_from_proxy_string_string(proxy.compatibility_metadata);
|
||||
extra_args = proxy.extra_args == null ? null : proxy.extra_args;
|
||||
PCI = proxy.PCI == null ? null : XenRef<PCI>.Create(proxy.PCI);
|
||||
}
|
||||
|
||||
public Proxy_VGPU ToProxy()
|
||||
@ -147,6 +151,7 @@ namespace XenAPI
|
||||
result_.scheduled_to_be_resident_on = scheduled_to_be_resident_on ?? "";
|
||||
result_.compatibility_metadata = Maps.convert_to_proxy_string_string(compatibility_metadata);
|
||||
result_.extra_args = extra_args ?? "";
|
||||
result_.PCI = PCI ?? "";
|
||||
return result_;
|
||||
}
|
||||
|
||||
@ -180,6 +185,8 @@ namespace XenAPI
|
||||
compatibility_metadata = Maps.convert_from_proxy_string_string(Marshalling.ParseHashTable(table, "compatibility_metadata"));
|
||||
if (table.ContainsKey("extra_args"))
|
||||
extra_args = Marshalling.ParseString(table, "extra_args");
|
||||
if (table.ContainsKey("PCI"))
|
||||
PCI = Marshalling.ParseRef<PCI>(table, "PCI");
|
||||
}
|
||||
|
||||
public bool DeepEquals(VGPU other)
|
||||
@ -199,7 +206,8 @@ namespace XenAPI
|
||||
Helper.AreEqual2(this._resident_on, other._resident_on) &&
|
||||
Helper.AreEqual2(this._scheduled_to_be_resident_on, other._scheduled_to_be_resident_on) &&
|
||||
Helper.AreEqual2(this._compatibility_metadata, other._compatibility_metadata) &&
|
||||
Helper.AreEqual2(this._extra_args, other._extra_args);
|
||||
Helper.AreEqual2(this._extra_args, other._extra_args) &&
|
||||
Helper.AreEqual2(this._PCI, other._PCI);
|
||||
}
|
||||
|
||||
internal static List<VGPU> ProxyArrayToObjectList(Proxy_VGPU[] input)
|
||||
@ -414,6 +422,20 @@ namespace XenAPI
|
||||
return session.proxy.vgpu_get_extra_args(session.opaque_ref, _vgpu ?? "").parse();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get the PCI field of the given VGPU.
|
||||
/// First published in Unreleased.
|
||||
/// </summary>
|
||||
/// <param name="session">The session</param>
|
||||
/// <param name="_vgpu">The opaque_ref of the given vgpu</param>
|
||||
public static XenRef<PCI> get_PCI(Session session, string _vgpu)
|
||||
{
|
||||
if (session.JsonRpcClient != null)
|
||||
return session.JsonRpcClient.vgpu_get_pci(session.opaque_ref, _vgpu);
|
||||
else
|
||||
return XenRef<PCI>.Create(session.proxy.vgpu_get_pci(session.opaque_ref, _vgpu ?? "").parse());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Set the other_config field of the given VGPU.
|
||||
/// First published in XenServer 6.0.
|
||||
@ -808,5 +830,25 @@ namespace XenAPI
|
||||
}
|
||||
}
|
||||
private string _extra_args = "";
|
||||
|
||||
/// <summary>
|
||||
/// Device passed trough to VM, either as full device or SR-IOV virtual function
|
||||
/// First published in Unreleased.
|
||||
/// </summary>
|
||||
[JsonConverter(typeof(XenRefConverter<PCI>))]
|
||||
public virtual XenRef<PCI> PCI
|
||||
{
|
||||
get { return _PCI; }
|
||||
set
|
||||
{
|
||||
if (!Helper.AreEqual(value, _PCI))
|
||||
{
|
||||
_PCI = value;
|
||||
Changed = true;
|
||||
NotifyPropertyChanged("PCI");
|
||||
}
|
||||
}
|
||||
}
|
||||
private XenRef<PCI> _PCI = new XenRef<PCI>("OpaqueRef:NULL");
|
||||
}
|
||||
}
|
||||
|
@ -45,6 +45,10 @@ namespace XenAPI
|
||||
/// </summary>
|
||||
nvidia,
|
||||
/// <summary>
|
||||
/// vGPU using NVIDIA hardware with SR-IOV
|
||||
/// </summary>
|
||||
nvidia_sriov,
|
||||
/// <summary>
|
||||
/// vGPU using Intel GVT-g
|
||||
/// </summary>
|
||||
gvt_g,
|
||||
@ -73,6 +77,8 @@ namespace XenAPI
|
||||
return "passthrough";
|
||||
case vgpu_type_implementation.nvidia:
|
||||
return "nvidia";
|
||||
case vgpu_type_implementation.nvidia_sriov:
|
||||
return "nvidia_sriov";
|
||||
case vgpu_type_implementation.gvt_g:
|
||||
return "gvt_g";
|
||||
case vgpu_type_implementation.mxgpu:
|
||||
|
@ -45,7 +45,7 @@ namespace XenAPI
|
||||
/// </summary>
|
||||
checkpoint,
|
||||
/// <summary>
|
||||
/// The snapshot is a VSS
|
||||
/// Support for VSS has been removed.
|
||||
/// </summary>
|
||||
snapshot_with_quiesce,
|
||||
unknown
|
||||
|
Loading…
Reference in New Issue
Block a user