IndexInfo

class borneo.IndexInfo(index_name, field_names, field_types=None)[source]

Bases: object

IndexInfo represents the information about a single index including its name, field names and field types. Instances of this class are returned in GetIndexesResult.

Methods Summary

get_field_names()

Returns the list of field names that define the index.

get_index_name()

Returns the name of the index.

Methods Documentation

get_field_names()[source]

Returns the list of field names that define the index.

Returns:

the field names.

Return type:

list(str)

get_index_name()[source]

Returns the name of the index.

Returns:

the index name.

Return type:

str