共用方式為


PeriodicModeProperties Constructors

Definition

Overloads

PeriodicModeProperties()

Initializes a new instance of the PeriodicModeProperties class.

PeriodicModeProperties(Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the PeriodicModeProperties class.

PeriodicModeProperties()

Initializes a new instance of the PeriodicModeProperties class.

public PeriodicModeProperties ();
Public Sub New ()

Applies to

PeriodicModeProperties(Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the PeriodicModeProperties class.

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

Parameters

backupIntervalInMinutes
Nullable<Int32>

An integer representing the interval in minutes between two backups

backupRetentionIntervalInHours
Nullable<Int32>

An integer representing the time (in hours) that each backup is retained

backupStorageRedundancy
String

Enum to indicate type of backup residency. Possible values include: 'Geo', 'Local', 'Zone'

Applies to