A2APolicyCreationInput Constructors

Definition

Overloads

A2APolicyCreationInput()

Initializes a new instance of the A2APolicyCreationInput class.

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

Initializes a new instance of the A2APolicyCreationInput class.

A2APolicyCreationInput()

Initializes a new instance of the A2APolicyCreationInput class.

public A2APolicyCreationInput ();
Public Sub New ()

Applies to

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

Initializes a new instance of the A2APolicyCreationInput class.

public A2APolicyCreationInput (string multiVMSyncStatus, int? recoveryPointHistory = default, int? crashConsistentFrequencyInMinutes = default, int? appConsistentFrequencyInMinutes = default);
new Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.A2APolicyCreationInput : string * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.A2APolicyCreationInput
Public Sub New (multiVMSyncStatus As String, Optional recoveryPointHistory As Nullable(Of Integer) = Nothing, Optional crashConsistentFrequencyInMinutes As Nullable(Of Integer) = Nothing, Optional appConsistentFrequencyInMinutes As Nullable(Of Integer) = Nothing)

Parameters

multiVMSyncStatus
String

A value indicating whether multi-VM sync has to be enabled. Value should be 'Enabled' or 'Disabled'. Possible values include: 'Enable', 'Disable'

recoveryPointHistory
Nullable<Int32>

The duration in minutes until which the recovery points need to be stored.

crashConsistentFrequencyInMinutes
Nullable<Int32>

The crash consistent snapshot frequency (in minutes).

appConsistentFrequencyInMinutes
Nullable<Int32>

The app consistent snapshot frequency (in minutes).

Applies to