Share via


InMagePolicyInput Constructors

Definition

Overloads

InMagePolicyInput()

Initializes a new instance of the InMagePolicyInput class.

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

Initializes a new instance of the InMagePolicyInput class.

InMagePolicyInput()

Initializes a new instance of the InMagePolicyInput class.

public InMagePolicyInput ();
Public Sub New ()

Applies to

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

Initializes a new instance of the InMagePolicyInput class.

public InMagePolicyInput (string multiVMSyncStatus, int? recoveryPointThresholdInMinutes = default, int? recoveryPointHistory = default, int? appConsistentFrequencyInMinutes = default);
new Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.InMagePolicyInput : string * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.InMagePolicyInput
Public Sub New (multiVMSyncStatus As String, Optional recoveryPointThresholdInMinutes As Nullable(Of Integer) = Nothing, Optional recoveryPointHistory 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'

recoveryPointThresholdInMinutes
Nullable<Int32>

The recovery point threshold in minutes.

recoveryPointHistory
Nullable<Int32>

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

appConsistentFrequencyInMinutes
Nullable<Int32>

The app consistent snapshot frequency (in minutes).

Applies to