Lists all indexes in a vector bucket.
Configuration block for the operation.
val response = supabase.storage.vectors
.from("vectors-bucket")
.listIndexes {
maxResults = 20
prefix = "myPrefix"
nextToken = "nextToken"
}
println(response.indexes)