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

    Interface RoleBindingInput

    A role to grant to the principal being created. resource_type selects the binding scope and acts as the tag for the entry. For organization scope, omit resource_id; the binding applies to the principal's organization (inferred from the request context). For project scope, resource_id is required and must be the project UUID.

    RoleBindingInput

    interface RoleBindingInput {
        resourceId?: string;
        resourceType: string;
        role: string;
    }
    Index
    resourceId?: string

    Project UUID. Required when resource_type is project; omit for organization scope.

    RoleBindingInput

    resourceType: string

    The kind of resource scope a role binding applies to. Possible values: organization, project.

    RoleBindingInput

    role: string

    A role assigned to a principal at a resource scope.

    RoleBindingInput