Pinecone TypeScript SDK - v8.2.0
    Preparing search index...

    Interface APIKey

    The details of an API key, without the secret.

    APIKey

    interface APIKey {
        id: string;
        name: string;
        projectId: string;
        roles: string[];
    }
    Index
    id: string

    The unique ID of the API key.

    APIKey

    name: string

    The name of the API key.

    APIKey

    projectId: string

    The ID of the project containing the API key.

    APIKey

    roles: string[]

    The roles assigned to the API key.

    APIKey