UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

24 lines 698 B
/** Index */ export interface Index { /** If set, notify when size is near 80, 90 or 100 % of its maximum capacity */ alertNotifyEnabled?: boolean; /** Index creation */ createdAt: string; /** Current index size (in bytes) */ currentSize?: number; /** Index description */ description?: string; /** Index ID */ indexId: string; /** Indicates if you are allowed to edit entry */ isEditable: boolean; /** Maximum index size (in bytes) */ maxSize: number; /** Index name */ name: string; /** Number of shard */ nbShard?: number; /** Index last update */ updatedAt?: string; } //# sourceMappingURL=Index.interface.d.ts.map