Class HyperVServerSettings
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the server settings for a Hyper-V server.
public class HyperVServerSettings : GlobalSerializableBase
- Inheritance
-
HyperVServerSettings
Constructors
HyperVServerSettings()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.HyperVServerSettings class.
public HyperVServerSettings()
Properties
EnhancedSessionMode
Gets or sets whether enhanced session mode is enabled. This only applies to Windows Server 2012 R2 and above.
public BooleanOption EnhancedSessionMode { get; set; }
Property Value
FibreChannelWwnn
Gets or sets the fibre channel world wide node name (WWNN).
public string FibreChannelWwnn { get; set; }
Property Value
FibreChannelWwpnMaximum
Gets or sets the fibre channel maximum world wide port name (WWPN).
public string FibreChannelWwpnMaximum { get; set; }
Property Value
FibreChannelWwpnMinimum
Gets or sets the fibre channel minimum world wide port name (WWPN).
public string FibreChannelWwpnMinimum { get; set; }
Property Value
MacAddressMaximum
Gets or sets the maximum MAC address as a hexadecimal value that can be assigned to virtual machines configured to receive dynamic MAC addresses.
public string MacAddressMaximum { get; set; }
Property Value
MacAddressMinimum
Gets or sets the minimum MAC address as a hexadecimal value that can be assigned to virtual machines configured to receive dynamic MAC addresses.
public string MacAddressMinimum { get; set; }
Property Value
MaximumStorageMigrations
Gets or sets the maximum number of storage migration.
public uint MaximumStorageMigrations { get; set; }
Property Value
NumaSpanning
Gets or sets whether to allow virtual machines to span physical NUMA nodes.
public BooleanOption NumaSpanning { get; set; }
Property Value
VirtualHardDiskPath
Gets or sets the default path to store virtual hard disk files.
public string VirtualHardDiskPath { get; set; }
Property Value
VirtualMachinePath
Gets or sets the default path to store virtual machine configuration files.
public string VirtualMachinePath { get; set; }
Property Value
Methods
FromXml(string)
Returns a CENTREL.XIA.Configuration.Types.HyperVServerSettings class from the specified XML.
public static HyperVServerSettings FromXml(string xml)
Parameters
xml
stringThe XML representation of the object.
Returns
- HyperVServerSettings
A CENTREL.XIA.Configuration.Types.HyperVServerSettings class.