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

    Interface ServiceAccountWithSecret

    A service account with a newly issued OAuth client_secret. The secret is returned only once and cannot be retrieved later.

    ServiceAccountWithSecret

    interface ServiceAccountWithSecret {
        clientSecret: string;
        serviceAccount: ServiceAccount;
    }
    Index
    clientSecret: string

    The OAuth client secret. Returned exactly once. Treat this value as a credential — store it securely and never log it.

    ServiceAccountWithSecret

    serviceAccount: ServiceAccount

    ServiceAccountWithSecret