BlobsStorageResourceProvider.FromBlob Method

Definition

Creates a storage resource pointing towards the given container URI.

public Azure.Storage.DataMovement.StorageResource FromBlob (string blobUri, Azure.Storage.DataMovement.Blobs.BlobStorageResourceOptions options = default);
member this.FromBlob : string * Azure.Storage.DataMovement.Blobs.BlobStorageResourceOptions -> Azure.Storage.DataMovement.StorageResource
Public Function FromBlob (blobUri As String, Optional options As BlobStorageResourceOptions = Nothing) As StorageResource

Parameters

blobUri
String

Target location.

options
BlobStorageResourceOptions

Options for creating the storage resource. You may supply a BlobStorageResourceOptions, but you may also supply type-specific options instead:

When making a destination storage resource, the corresponding blob type of the options class will be used to determine the intended blob type of the destination. If only the base options type is provided, block blob will be the default used.

Returns

The configured storage resource.

Applies to