Interface DeleteFileSearchStoreConfig

Optional parameters for deleting a FileSearchStore.

interface DeleteFileSearchStoreConfig {
    abortSignal?: AbortSignal;
    force?: boolean;
    httpOptions?: HttpOptions;
}

Properties

abortSignal?: AbortSignal

Abort signal which can be used to cancel the request.

NOTE: AbortSignal is a client-only operation. Using it to cancel an operation will not cancel the request in the service. You will still be charged usage for any applicable operations.

force?: boolean

If set to true, any Documents and objects related to this FileSearchStore will also be deleted. If false (the default), a FAILED_PRECONDITION error will be returned if the FileSearchStore contains any Documents.

httpOptions?: HttpOptions

Used to override HTTP request options.