Share via


PageBlobCopyIncrementalOptions Class

  • java.lang.Object
    • com.azure.storage.blob.options.PageBlobCopyIncrementalOptions

public class PageBlobCopyIncrementalOptions

Extended options that may be passed when incrementally copying a Page Blob.

Constructor Summary

Constructor Description
PageBlobCopyIncrementalOptions(String source, String snapshot)

Creates a new instance of PageBlobCopyIncrementalOptions.

Method Summary

Modifier and Type Method and Description
PageBlobCopyIncrementalRequestConditions getRequestConditions()

Gets the PageBlobCopyIncrementalRequestConditions for the destination.

String getSnapshot()

Gets the snapshot on the copy source.

String getSource()

Gets the source page blob.

PageBlobCopyIncrementalOptions setRequestConditions(PageBlobCopyIncrementalRequestConditions requestConditions)

Sets the PageBlobCopyIncrementalRequestConditions for the blob.

Methods inherited from java.lang.Object

Constructor Details

PageBlobCopyIncrementalOptions

public PageBlobCopyIncrementalOptions(String source, String snapshot)

Creates a new instance of PageBlobCopyIncrementalOptions.

Parameters:

source - The source page blob.
snapshot - The snapshot on the copy source.

Method Details

getRequestConditions

public PageBlobCopyIncrementalRequestConditions getRequestConditions()

Gets the PageBlobCopyIncrementalRequestConditions for the destination.

Returns:

getSnapshot

public String getSnapshot()

Gets the snapshot on the copy source.

Returns:

The snapshot on the copy source.

getSource

public String getSource()

Gets the source page blob.

Returns:

The source page blob.

setRequestConditions

public PageBlobCopyIncrementalOptions setRequestConditions(PageBlobCopyIncrementalRequestConditions requestConditions)

Sets the PageBlobCopyIncrementalRequestConditions for the blob.

Parameters:

requestConditions - PageBlobCopyIncrementalRequestConditions for the blob.

Returns:

The updated options.

Applies to