Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Interface CreateBackupScheduleOptions

    Options for creating a backup schedule on an index.

    Backups

    interface CreateBackupScheduleOptions {
        frequency: BackupScheduleFrequency;
        name: string;
        retentionDays: number;
    }
    Index

    How often the schedule runs.

    name: string

    Name for the schedule. Each run names its backup after the schedule plus the run timestamp, so keep it short.

    retentionDays: number

    Number of days to keep each backup the schedule produces.