DateAfterModification Class
Object to define the base blob action conditions. Properties daysAfterModificationGreaterThan, daysAfterLastAccessTimeGreaterThan and daysAfterCreationGreaterThan are mutually exclusive. The daysAfterLastTierChangeGreaterThan property is only applicable for tierToArchive actions which requires daysAfterModificationGreaterThan to be set, also it cannot be used in conjunction with daysAfterLastAccessTimeGreaterThan or daysAfterCreationGreaterThan.
- Inheritance
-
azure.mgmt.storage._serialization.ModelDateAfterModification
Constructor
DateAfterModification(*, days_after_modification_greater_than: float | None = None, days_after_last_access_time_greater_than: float | None = None, days_after_last_tier_change_greater_than: float | None = None, days_after_creation_greater_than: float | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
days_after_modification_greater_than
|
Value indicating the age in days after last modification. |
days_after_last_access_time_greater_than
|
Value indicating the age in days after last blob access. This property can only be used in conjunction with last access time tracking policy. |
days_after_last_tier_change_greater_than
|
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. |
days_after_creation_greater_than
|
Value indicating the age in days after blob creation. |
Variables
Name | Description |
---|---|
days_after_modification_greater_than
|
Value indicating the age in days after last modification. |
days_after_last_access_time_greater_than
|
Value indicating the age in days after last blob access. This property can only be used in conjunction with last access time tracking policy. |
days_after_last_tier_change_greater_than
|
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. |
days_after_creation_greater_than
|
Value indicating the age in days after blob creation. |
Azure SDK for Python