import { ClusterInterface, ClusterTypes } from "../clusters/ClusterTypes"; import { OrganisationUnitInterface } from "../organisation_units/OrganisationUnitTypes"; export declare enum ClusterAuthTypes { Ldap = "ldap" } export interface ClusterGroupInterface { id?: string; name?: string; clusterAuthType?: ClusterAuthTypes; organisationUnits?: OrganisationUnitInterface[]; nonProdClusters?: ClusterInterface[]; prodClusters?: ClusterInterface[]; clusterGroupType?: ClusterTypes; } export interface MinimalClusterGroupDto extends ClusterGroupInterface { id: string; name: string; clusterGroupType: ClusterTypes; clusterAuthType: ClusterAuthTypes; }