import * as pulumi from "@pulumi/pulumi"; export declare function getVectorIndex(args: GetVectorIndexArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVectorIndex. */ export interface GetVectorIndexArgs { id: string; } /** * A collection of values returned by getVectorIndex. */ export interface GetVectorIndexResult { readonly creationTime: number; readonly customerId: string; readonly dimensionCount: number; readonly endpoint: string; readonly id: string; readonly maxDailyQueries: number; readonly maxDailyUpdates: number; readonly maxMonthlyBandwidth: number; readonly maxQueryPerSecond: number; readonly maxReadsPerRequest: number; readonly maxTotalMetadataSize: number; readonly maxVectorCount: number; readonly maxWritesPerRequest: number; readonly maxWritesPerSecond: number; readonly name: string; readonly readOnlyToken: string; readonly region: string; readonly reservedPrice: number; readonly similarityFunction: string; readonly token: string; readonly type: string; } export declare function getVectorIndexOutput(args: GetVectorIndexOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVectorIndex. */ export interface GetVectorIndexOutputArgs { id: pulumi.Input; }