node-ovh-ts
Version:
OVH API wrapper library for TypeScript
20 lines (17 loc) • 603 B
TypeScript
import { AnalyticsClusterNode } from './AnalyticsClusterNode.js';
import { AnalyticsStatusEnum } from './AnalyticsStatusEnum.js';
import './AnalyticsNodeTypeEnum.js';
type AnalyticsCluster = {
analyticsProjectId?: string | null;
clusterName?: string | null;
clusterType?: string | null;
deploymentEndDate?: Date | null;
deploymentStartDate?: Date | null;
domain?: string | null;
nodes?: AnalyticsClusterNode[] | null;
osProjectId?: string | null;
osRegion?: string | null;
serviceName?: string;
status?: AnalyticsStatusEnum;
};
export { AnalyticsCluster };