CloudPageBlob.StartIncrementalCopy Method

Definition

Overloads

StartIncrementalCopy(CloudPageBlob, AccessCondition, BlobRequestOptions, OperationContext)

Begins an operation to start an incremental copy of another page blob's contents, properties, and metadata to this page blob.

StartIncrementalCopy(Uri, AccessCondition, BlobRequestOptions, OperationContext)

Begins an operation to start an incremental copy of another page blob's contents, properties, and metadata to this page blob.

StartIncrementalCopy(CloudPageBlob, AccessCondition, BlobRequestOptions, OperationContext)

Begins an operation to start an incremental copy of another page blob's contents, properties, and metadata to this page blob.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual string StartIncrementalCopy (Microsoft.Azure.Storage.Blob.CloudPageBlob sourceSnapshot, Microsoft.Azure.Storage.AccessCondition destAccessCondition = default, Microsoft.Azure.Storage.Blob.BlobRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member StartIncrementalCopy : Microsoft.Azure.Storage.Blob.CloudPageBlob * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> string
override this.StartIncrementalCopy : Microsoft.Azure.Storage.Blob.CloudPageBlob * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> string
Public Overridable Function StartIncrementalCopy (sourceSnapshot As CloudPageBlob, Optional destAccessCondition As AccessCondition = Nothing, Optional options As BlobRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As String

Parameters

sourceSnapshot
CloudPageBlob

The CloudPageBlob that is the source blob which must be a snapshot.

destAccessCondition
AccessCondition

An AccessCondition object that represents the access conditions for the destination blob. If null, no condition is used.

options
BlobRequestOptions

A BlobRequestOptions object that specifies additional options for the request. If null, default options are applied to the request.

operationContext
OperationContext

An OperationContext object that represents the context for the current operation.

Returns

The copy ID associated with the copy operation.

Attributes

Remarks

This method fetches the blob's ETag, last-modified time, and part of the copy state. The copy ID and copy status fields are fetched, and the rest of the copy state is cleared.

Applies to

StartIncrementalCopy(Uri, AccessCondition, BlobRequestOptions, OperationContext)

Begins an operation to start an incremental copy of another page blob's contents, properties, and metadata to this page blob.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual string StartIncrementalCopy (Uri sourceSnapshotUri, Microsoft.Azure.Storage.AccessCondition destAccessCondition = default, Microsoft.Azure.Storage.Blob.BlobRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member StartIncrementalCopy : Uri * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> string
override this.StartIncrementalCopy : Uri * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> string
Public Overridable Function StartIncrementalCopy (sourceSnapshotUri As Uri, Optional destAccessCondition As AccessCondition = Nothing, Optional options As BlobRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As String

Parameters

sourceSnapshotUri
Uri

The Uri of the source blob which must be a snapshot.

destAccessCondition
AccessCondition

An AccessCondition object that represents the access conditions for the destination blob. If null, no condition is used.

options
BlobRequestOptions

A BlobRequestOptions object that specifies additional options for the request. If null, default options are applied to the request.

operationContext
OperationContext

An OperationContext object that represents the context for the current operation.

Returns

The copy ID associated with the copy operation.

Attributes

Remarks

This method fetches the blob's ETag, last-modified time, and part of the copy state. The copy ID and copy status fields are fetched, and the rest of the copy state is cleared.

Applies to