Interface BlobServiceProperties.UpdateStages.WithDeleteRetentionPolicy
-
- All Known Subinterfaces:
BlobServiceProperties.Update
- Enclosing interface:
- BlobServiceProperties.UpdateStages
public static interface BlobServiceProperties.UpdateStages.WithDeleteRetentionPolicyThe stage of the blobserviceproperties update allowing to specify DeleteRetentionPolicy.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlobServiceProperties.UpdatewithDeleteRetentionPolicy(DeleteRetentionPolicy deleteRetentionPolicy)Specifies deleteRetentionPolicy.BlobServiceProperties.UpdatewithDeleteRetentionPolicyDisabled()Specifies that the delete retention policy is disabled.BlobServiceProperties.UpdatewithDeleteRetentionPolicyEnabled(int numDaysEnabled)Specifies that the delete retention policy is enabled for soft delete.
-
-
-
Method Detail
-
withDeleteRetentionPolicy
BlobServiceProperties.Update withDeleteRetentionPolicy(DeleteRetentionPolicy deleteRetentionPolicy)
Specifies deleteRetentionPolicy.- Parameters:
deleteRetentionPolicy- The blob service properties for soft delete- Returns:
- the next update stage
-
withDeleteRetentionPolicyEnabled
BlobServiceProperties.Update withDeleteRetentionPolicyEnabled(int numDaysEnabled)
Specifies that the delete retention policy is enabled for soft delete.- Parameters:
numDaysEnabled- number of days after soft delete that the blob service properties will actually be deleted- Returns:
- the next update stage
-
withDeleteRetentionPolicyDisabled
BlobServiceProperties.Update withDeleteRetentionPolicyDisabled()
Specifies that the delete retention policy is disabled.- Returns:
- the next update stage
-
-