Data.Cloud.AzureAPI.TAzureBlobService.GetBlockList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetBlockList(ContainerName, BlobName: string;  BlockType: TAzureQueryIncludeBlockType = aqbtCommitted; const SnapShot: string = ''; const LeaseId: string = ''; ResponseInfo: TCloudResponseInfo = nil): TList<TAzureBlockListItem>; overload; deprecated 'Use overloaded method instead';
function GetBlockList(const AContainerName, ABlobName, ALeaseId, ASnapshot: string;  ABlockType: TAzureQueryIncludeBlockType; out AResponseXML: string; const AResponseInfo: TCloudResponseInfo): TArray<TAzureBlockListItem>; overload;

C++

System::Generics::Collections::TList__1<TAzureBlockListItem>* __fastcall GetBlockList _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (System::UnicodeString ContainerName, System::UnicodeString BlobName, TAzureQueryIncludeBlockType BlockType = (TAzureQueryIncludeBlockType)(0x0), const System::UnicodeString SnapShot = System::UnicodeString(), const System::UnicodeString LeaseId = System::UnicodeString(), Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0))/* overload */;
System::DynamicArray<TAzureBlockListItem> __fastcall GetBlockList(const System::UnicodeString AContainerName, const System::UnicodeString ABlobName, const System::UnicodeString ALeaseId, const System::UnicodeString ASnapshot, TAzureQueryIncludeBlockType ABlockType, /* out */ System::UnicodeString &AResponseXML, Data::Cloud::Cloudapi::TCloudResponseInfo* const AResponseInfo)/* overload */;

Properties

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

Description

Returns the block list for the given blob.

GetBlockList returns the block list for the given blob.


The following table describes the parameters:

Parameter Description

ContainerName

The name of the container the blob is in.

BlobName

The name of the block blob to get the block list for.

BlockType

The type of blocks to get (committed, uncommitted, or both).

SnapShot

The snapshot ID if you want the list of a snapshot instead of the blob.

LeaseId

The lease ID, required if the blob is locked.

ResponseInfo

The optional class for storing response info into.


See Also