Share via


RoleInstance.InstanceFaultDomain Property

 

Gets or sets an integer that represents the fault domain to which the role instance belongs.

Namespace:   Microsoft.WindowsAzure.Management.Compute.Models
Assembly:  Microsoft.WindowsAzure.Management.Compute (in Microsoft.WindowsAzure.Management.Compute.dll)

Syntax

public Nullable<int> InstanceFaultDomain { get; set; }
public:
property Nullable<int> InstanceFaultDomain {
    Nullable<int> get();
    void set(Nullable<int> value);
}
member InstanceFaultDomain : Nullable<int> with get, set
Public Property InstanceFaultDomain As Nullable(Of Integer)

Property Value

Type: System.Nullable<Int32>

The fault domain.

Remarks

A fault domain is a grouping of hardware in which role instances run. When multiple instances of a role are running, Microsoft Azure distributes the role instances among fault domains. You do not have control over which fault domain is used or the number of fault domains used, but you can query a role instance to know what fault domain it is in. For more information, see RoleInstance.FaultDomain Property

See Also

RoleInstance Class
Microsoft.WindowsAzure.Management.Compute.Models Namespace

Return to top