FileSearchStore

@Serializable
data class FileSearchStore(val name: String? = null, val displayName: String? = null, val createTime: String? = null, val updateTime: String? = null, val activeDocumentsCount: String? = null, val pendingDocumentsCount: String? = null, val failedDocumentsCount: String? = null, val sizeBytes: String? = null)

A FileSearchStore is a collection of Documents.

Constructors

Link copied to clipboard
constructor(name: String? = null, displayName: String? = null, createTime: String? = null, updateTime: String? = null, activeDocumentsCount: String? = null, pendingDocumentsCount: String? = null, failedDocumentsCount: String? = null, sizeBytes: String? = null)

Properties

Link copied to clipboard

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

Link copied to clipboard
val createTime: String?

Output only. The Timestamp of when the FileSearchStore was created.

Link copied to clipboard
val displayName: String?

Optional. The human-readable display name for the FileSearchStore.

Link copied to clipboard

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

Link copied to clipboard
val name: String?

Output only. Immutable. Identifier. The FileSearchStore resource name.

Link copied to clipboard

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

Link copied to clipboard
val sizeBytes: String?

Output only. The size of raw bytes ingested into the FileSearchStore.

Link copied to clipboard
val updateTime: String?

Output only. The Timestamp of when the FileSearchStore was last updated.