UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

27 lines 826 B
import { ResourceMetadata } from '../../iam/ResourceMetadata'; /** Index */ export interface IndexWithIAM { /** 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; /** IAM resource metadata */ iam?: ResourceMetadata; /** 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=IndexWithIAM.d.ts.map