index_name
Returns the name of the encrypted index.
Returns
str: The unique name identifier of the index.
Example Usage
index_type
Returns the type of the index (for example, 'ivfflat', 'ivfpq', or 'ivfsq').
"ivf" is a deprecated index type that may be returned by older indexes. New indexes should use 'ivfflat', 'ivfpq', or 'ivfsq'.
Returns
str: The index type.
Example Usage
is_trained
Returns whether the index has been trained. Training is required for optimal query performance on IVF-based indexes.
Returns
bool: True if the index has been trained, False otherwise.
Example Usage
is_training
Returns whether the index is currently in the process of training.
Returns
bool: True if the index is currently training, False otherwise.
Example Usage
index_config
Returns the index configuration object as a dictionary. The structure depends on the index type.
Returns
Dict[str, Any]: Configuration dictionary containing index parameters.
Example Usage
Configuration Properties
Common Properties (All Index Types)
IVFPQ-Specific Properties