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

    Interface APIKeyWithSecret

    The details of an API key, including the secret. Only returned on API key creation.

    APIKeyWithSecret

    interface APIKeyWithSecret {
        key: APIKey;
        value: string;
    }
    Index
    key: APIKey

    APIKeyWithSecret

    value: string

    The value to use as an API key. New keys will have the format "pckey_<public-label>_<unique-key>". The entire string should be used when authenticating.

    APIKeyWithSecret