DateAfterModification 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
DateAfterModification() |
Initializes a new instance of the DateAfterModification class. |
DateAfterModification(Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>) |
Initializes a new instance of the DateAfterModification class. |
DateAfterModification()
Initializes a new instance of the DateAfterModification class.
public DateAfterModification ();
Public Sub New ()
Applies to
DateAfterModification(Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>)
Initializes a new instance of the DateAfterModification class.
public DateAfterModification (double? daysAfterModificationGreaterThan = default, double? daysAfterLastAccessTimeGreaterThan = default, double? daysAfterLastTierChangeGreaterThan = default, double? daysAfterCreationGreaterThan = default);
new Microsoft.Azure.Management.Storage.Models.DateAfterModification : Nullable<double> * Nullable<double> * Nullable<double> * Nullable<double> -> Microsoft.Azure.Management.Storage.Models.DateAfterModification
Public Sub New (Optional daysAfterModificationGreaterThan As Nullable(Of Double) = Nothing, Optional daysAfterLastAccessTimeGreaterThan As Nullable(Of Double) = Nothing, Optional daysAfterLastTierChangeGreaterThan As Nullable(Of Double) = Nothing, Optional daysAfterCreationGreaterThan As Nullable(Of Double) = Nothing)
Parameters
Value indicating the age in days after last modification
Value indicating the age in days after last blob access. This property can only be used in conjunction with last access time tracking policy
Value indicating the age in days after last blob tier change time. This property is only applicable for tierToArchive actions and requires daysAfterModificationGreaterThan to be set for baseBlobs based actions. The blob will be archived if both the conditions are satisfied.
Applies to
Azure SDK for .NET