Package version:

Interface ShareCreateSnapshotOptions

Options to configure the ShareClient.createSnapshot operation.

interface ShareCreateSnapshotOptions {
    abortSignal?: any;
    metadata?: {
        [propertyName: string]: string;
    };
    tracingOptions?: any;
}

Hierarchy (view full)

Properties

abortSignal?: any

An implementation of the AbortSignalLike interface to signal the request to cancel the operation. For example, use the @azure/abort-controller to create an AbortSignal.

metadata?: {
    [propertyName: string]: string;
}

A name-value pair to associate with a file storage object.

tracingOptions?: any