Data.Cloud.AzureAPI.TAzureBlobService.DeleteBlobSnapshot

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function DeleteBlobSnapshot(ContainerName, BlobName: string; SnapShot: string;  LeaseId: string = ''; ResponseInfo: TCloudResponseInfo = nil): Boolean;

C++

bool __fastcall DeleteBlobSnapshot(System::UnicodeString ContainerName, System::UnicodeString BlobName, System::UnicodeString SnapShot, System::UnicodeString LeaseId = System::UnicodeString(), Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0));

Properties

Type Visibility Source Unit Parent
function public
Data.Cloud.AzureAPI.pas
Data.Cloud.AzureAPI.hpp
Data.Cloud.AzureAPI TAzureBlobService

Description

Deletes the specified snapshot of the given blob.

DeleteBlobSnapshot deletes one specific snapshot of the specified blob. To delete all snapshots, or the blob itself, call DeleteBlob.

The following table describes the parameters:

Parameter Description

ContainerName

The name of the container the blob is in.

BlobName

The name of the blob to delete.

SnapShot

The snapshot to delete.

LeaseId

The LeaseId, required if the blob is locked.

ResponseInfo

The optional class for storing response info into.


The method returns True if the blob snapshot is deleted successfully, False otherwise.

See Also