Package com.google.genai.types
Class FileSearchStore
java.lang.Object
com.google.genai.JsonSerializable
com.google.genai.types.FileSearchStore
A collection of Documents.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classBuilder for FileSearchStore. -
Field Summary
Fields inherited from class com.google.genai.JsonSerializable
MAX_READ_LENGTH_PROPERTY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe number of documents in the FileSearchStore that are active and ready for retrieval.static FileSearchStore.Builderbuilder()Instantiates a builder for FileSearchStore.The Timestamp of when the FileSearchStore was created.The human-readable display name for the FileSearchStore.The number of documents in the FileSearchStore that have failed processing.static FileSearchStoreDeserializes a JSON string to a FileSearchStore object.name()The resource name of the FileSearchStore.The number of documents in the FileSearchStore that are being processed.The size of raw bytes ingested into the FileSearchStore.abstract FileSearchStore.BuilderCreates a builder with the same values as this instance.The Timestamp of when the FileSearchStore was last updated.Methods inherited from class com.google.genai.JsonSerializable
setMaxReadLength, stringToJsonNode, toJson
-
Constructor Details
-
FileSearchStore
public FileSearchStore()
-
-
Method Details
-
name
The resource name of the FileSearchStore. Example: `fileSearchStores/my-file-search-store-123` -
displayName
The human-readable display name for the FileSearchStore. -
createTime
The Timestamp of when the FileSearchStore was created. -
updateTime
The Timestamp of when the FileSearchStore was last updated. -
activeDocumentsCount
The number of documents in the FileSearchStore that are active and ready for retrieval. -
pendingDocumentsCount
The number of documents in the FileSearchStore that are being processed. -
failedDocumentsCount
The number of documents in the FileSearchStore that have failed processing. -
sizeBytes
The size of raw bytes ingested into the FileSearchStore. This is the total size of all the documents in the FileSearchStore. -
builder
Instantiates a builder for FileSearchStore. -
toBuilder
Creates a builder with the same values as this instance. -
fromJson
Deserializes a JSON string to a FileSearchStore object.
-