Package version:

Interface DirectoryListHandlesSegmentOptions

Options to configure Directory - List Handles Segment operations.

See:

  • ShareDirectoryClient.listHandlesSegment
  • ShareDirectoryClient.iterateHandleSegments
  • ShareDirectoryClient.listHandleItems
interface DirectoryListHandlesSegmentOptions {
    abortSignal?: any;
    maxResults?: number;
    recursive?: boolean;
    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.

maxResults?: number

Specifies the maximum number of entries to return. If the request does not specify maxResults, or specifies a value greater than 5,000, the server will return up to 5,000 items.

recursive?: boolean

Specifies operation should apply to the directory specified in the URI, its files, its subdirectories and their files.

tracingOptions?: any