BlobBeginCopyFromUrlPollState interface
The state used by the poller returned from beginCopyFromURL.
This state is passed into the user-specified onProgress
callback
whenever copy progress is detected.
- Extends
Properties
blob |
The instance of BlobClient that was used when calling beginCopyFromURL. |
copy |
The copyId that identifies the in-progress blob copy. |
copy |
the progress of the blob copy as reported by the service. |
copy |
The source URL provided in beginCopyFromURL. |
start |
The options that were passed to the initial beginCopyFromURL call. This is exposed for the poller and should not be modified directly. |
Inherited Properties
error | Will exist if the operation encountered any error. |
is |
True if the operation has been cancelled. |
is |
True if the operation has been completed. |
is |
True if the operation has started. |
result | Will exist if the operation concluded in a result of an expected type. |
Property Details
blobClient
The instance of BlobClient that was used when calling beginCopyFromURL.
blobClient: CopyPollerBlobClient
Property Value
copyId
The copyId that identifies the in-progress blob copy.
copyId?: string
Property Value
string
copyProgress
the progress of the blob copy as reported by the service.
copyProgress?: string
Property Value
string
copySource
startCopyFromURLOptions
The options that were passed to the initial beginCopyFromURL call. This is exposed for the poller and should not be modified directly.
startCopyFromURLOptions?: BlobStartCopyFromURLOptions
Property Value
Inherited Property Details
error
Will exist if the operation encountered any error.
error?: Error
Property Value
Error
Inherited From PollOperationState.error
isCancelled
True if the operation has been cancelled.
isCancelled?: boolean
Property Value
boolean
Inherited From PollOperationState.isCancelled
isCompleted
True if the operation has been completed.
isCompleted?: boolean
Property Value
boolean
Inherited From PollOperationState.isCompleted
isStarted
True if the operation has started.
isStarted?: boolean
Property Value
boolean
Inherited From PollOperationState.isStarted
result
Will exist if the operation concluded in a result of an expected type.
result?: BlobBeginCopyFromURLResponse
Property Value
Inherited From PollOperationState.result