共用方式為


FailoverPolicy Constructors

Definition

Overloads

FailoverPolicy()

Initializes a new instance of the FailoverPolicy class.

FailoverPolicy(String, String, Nullable<Int32>)

Initializes a new instance of the FailoverPolicy class.

FailoverPolicy()

Initializes a new instance of the FailoverPolicy class.

public FailoverPolicy ();
Public Sub New ()

Applies to

FailoverPolicy(String, String, Nullable<Int32>)

Initializes a new instance of the FailoverPolicy class.

public FailoverPolicy (string id = default, string locationName = default, int? failoverPriority = default);
new Microsoft.Azure.Management.CosmosDB.Models.FailoverPolicy : string * string * Nullable<int> -> Microsoft.Azure.Management.CosmosDB.Models.FailoverPolicy
Public Sub New (Optional id As String = Nothing, Optional locationName As String = Nothing, Optional failoverPriority As Nullable(Of Integer) = Nothing)

Parameters

id
String

The unique identifier of the region in which the database account replicates to. Example: &lt;accountName&gt;-&lt;locationName&gt;.

locationName
String

The name of the region in which the database account exists.

failoverPriority
Nullable<Int32>

The failover priority of the region. A failover priority of 0 indicates a write region. The maximum value for a failover priority = (total number of regions - 1). Failover priority values must be unique for each of the regions in which the database account exists.

Applies to