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

    Interface ServiceAccount

    A service account. The OAuth client_secret is not included.

    ServiceAccount

    interface ServiceAccount {
        clientId: string;
        createdAt: Date;
        id: string;
        name: string;
        updatedAt: Date;
    }
    Index
    clientId: string

    The OAuth client ID used by the service account to obtain access tokens. Used only for OAuth token exchange.

    ServiceAccount

    createdAt: Date

    The date and time the service account was created.

    ServiceAccount

    id: string

    The unique identifier for the service account. Use this as the path parameter on /admin/service-accounts/{service_account_id} endpoints and as the principal_id when querying or creating role bindings.

    ServiceAccount

    name: string

    A short human-readable label, set by the caller at creation time.

    ServiceAccount

    updatedAt: Date

    The date and time of the service account's most recent metadata update.

    ServiceAccount