FailoverPolicy Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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: <accountName>-<locationName>.
- locationName
- String
The name of the region in which the database account exists.
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
Azure SDK for .NET