Interface BackupModel

The BackupModel describes the configuration and status of a Pinecone backup.

Export

BackupModel

Hierarchy

  • BackupModel

Properties

backupId: string

Unique identifier for the backup.

Memberof

BackupModel

cloud: string

Cloud provider where the backup is stored.

Memberof

BackupModel

createdAt?: string

Timestamp when the backup was created.

Memberof

BackupModel

description?: string

Optional description providing context for the backup.

Memberof

BackupModel

dimension?: number

The dimensions of the vectors to be inserted in the index.

Memberof

BackupModel

metric?: BackupModelMetricEnum

The distance metric to be used for similarity search. You can use 'euclidean', 'cosine', or 'dotproduct'. If the 'vector_type' is 'sparse', the metric must be 'dotproduct'. If the vector_type is dense, the metric defaults to 'cosine'.

Memberof

BackupModel

name?: string

Optional user-defined name for the backup.

Memberof

BackupModel

namespaceCount?: number

Number of namespaces in the backup.

Memberof

BackupModel

recordCount?: number

Total number of records in the backup.

Memberof

BackupModel

region: string

Cloud region where the backup is stored.

Memberof

BackupModel

sizeBytes?: number

Size of the backup in bytes.

Memberof

BackupModel

sourceIndexId: string

ID of the index.

Memberof

BackupModel

sourceIndexName: string

Name of the index from which the backup was taken.

Memberof

BackupModel

status: string

Current status of the backup (e.g., Initializing, Ready, Failed).

Memberof

BackupModel

tags?: {
    [key: string]: string;
}

Custom user tags added to an index. Keys must be 80 characters or less. Values must be 120 characters or less. Keys must be alphanumeric, '', or '-'. Values must be alphanumeric, ';', '@', '', '-', '.', '+', or ' '. To unset a key, set the value to be an empty string.

Type declaration

  • [key: string]: string

Memberof

BackupModel