@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
21 lines • 707 B
TypeScript
import { DeliveryStatusEnum } from './DeliveryStatusEnum';
/** Metric Tenant */
export interface MetricTenant {
/** Metric tenant creation */
createdAt: string;
/** Status of the delivering process */
deliveryStatus: DeliveryStatusEnum;
/** Metric tenant description */
description: string;
/** Maximum number of time series inside the tenant */
maxSeries: number;
/** Delete samples older than the specified retention period. */
retentionId: string;
/** The Id of the metric tenant */
tenantId: string;
/** Metric tenant title */
title: string;
/** Metric tenant last update */
updatedAt?: string;
}
//# sourceMappingURL=MetricTenant.d.ts.map