@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 535 B
TypeScript
import { StatusEnum } from './ownLogs/StatusEnum';
/** Hosting own logs */
export interface OwnLogs {
/** The ownlogs fqdn available on logs.clusterXX.hosting.ovh.net */
fqdn: string;
/** Identifier of this ownLogs */
id: number;
/** URL to access this ownLogs logs */
logs: string;
/** URL to access this ownLogs stats */
stats: string;
/** Status of this ownLogs */
status: StatusEnum;
/** The task ID working on this ownLogs */
taskId?: number;
}
//# sourceMappingURL=OwnLogs.d.ts.map