RestorePolicyProperties 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
RestorePolicyProperties() |
Initializes a new instance of the RestorePolicyProperties class. |
RestorePolicyProperties(Boolean, Nullable<Int32>, Nullable<DateTime>, Nullable<DateTime>) |
Initializes a new instance of the RestorePolicyProperties class. |
RestorePolicyProperties()
Initializes a new instance of the RestorePolicyProperties class.
public RestorePolicyProperties ();
Public Sub New ()
Applies to
RestorePolicyProperties(Boolean, Nullable<Int32>, Nullable<DateTime>, Nullable<DateTime>)
Initializes a new instance of the RestorePolicyProperties class.
public RestorePolicyProperties (bool enabled, int? days = default, DateTime? lastEnabledTime = default, DateTime? minRestoreTime = default);
new Microsoft.Azure.Management.Storage.Models.RestorePolicyProperties : bool * Nullable<int> * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.Management.Storage.Models.RestorePolicyProperties
Public Sub New (enabled As Boolean, Optional days As Nullable(Of Integer) = Nothing, Optional lastEnabledTime As Nullable(Of DateTime) = Nothing, Optional minRestoreTime As Nullable(Of DateTime) = Nothing)
Parameters
- enabled
- Boolean
Blob restore is enabled if set to true.
how long this blob can be restored. It should be great than zero and less than DeleteRetentionPolicy.days.
Returns the minimum date and time that the restore can be started.
Applies to
Azure SDK for .NET