DeleteSnapshotsOption
Required if the blob has associated snapshots. Specify one of the following two options:
include: Delete the base blob and all of its snapshots.
only: Delete only the blob's snapshots and not the blob itself
using Azure.Core;
namespace Azure.Storage.Blobs.Models
{
[CodeGenModel("DeleteSnapshotsOptionType")]
public enum DeleteSnapshotsOption
{
None,
[CodeGenMember("Include")]
IncludeSnapshots,
[CodeGenMember("Only")]
OnlySnapshots
}
}