Interface FileSearchStore

A collection of Documents.

interface FileSearchStore {
    activeDocumentsCount?: string;
    createTime?: string;
    displayName?: string;
    failedDocumentsCount?: string;
    name?: string;
    pendingDocumentsCount?: string;
    sizeBytes?: string;
    updateTime?: string;
}

Properties

activeDocumentsCount?: string

The number of documents in the FileSearchStore that are active and ready for retrieval.

createTime?: string

The Timestamp of when the FileSearchStore was created.

displayName?: string

The human-readable display name for the FileSearchStore.

failedDocumentsCount?: string

The number of documents in the FileSearchStore that have failed processing.

name?: string

The resource name of the FileSearchStore. Example: fileSearchStores/my-file-search-store-123

pendingDocumentsCount?: string

The number of documents in the FileSearchStore that are being processed.

sizeBytes?: string

The size of raw bytes ingested into the FileSearchStore. This is the total size of all the documents in the FileSearchStore.

updateTime?: string

The Timestamp of when the FileSearchStore was last updated.