import { IComGithubElasticCloudOnK8sV3PkgApisCommonV1DeploymentStatus } from "../../common.k8s.elastic.co/v1/DeploymentStatus.js"; import { IComGithubElasticCloudOnK8sV3PkgApisCommonV1AssociationStatus } from "../../common.k8s.elastic.co/v1/AssociationStatus.js"; import { IComGithubElasticCloudOnK8sV3PkgApisCommonV1DeploymentHealth } from "../../common.k8s.elastic.co/v1/DeploymentHealth.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * EnterpriseSearchStatus defines the observed state of EnterpriseSearch */ export interface IEnterpriseSearchStatus extends IComGithubElasticCloudOnK8sV3PkgApisCommonV1DeploymentStatus { /** * Association is the status of any auto-linking to Elasticsearch clusters. */ "associationStatus"?: IComGithubElasticCloudOnK8sV3PkgApisCommonV1AssociationStatus; /** * ObservedGeneration represents the .metadata.generation that the status is based upon. * It corresponds to the metadata generation, which is updated on mutation by the API Server. * If the generation observed in status diverges from the generation in metadata, the Enterprise Search * controller has not yet processed the changes contained in the Enterprise Search specification. */ "observedGeneration"?: number; /** * ExternalService is the name of the service associated to the Enterprise Search Pods. */ "service"?: string; } /** * EnterpriseSearchStatus defines the observed state of EnterpriseSearch */ export declare class EnterpriseSearchStatus extends Model implements IEnterpriseSearchStatus { "availableNodes"?: number; "count"?: number; "health"?: IComGithubElasticCloudOnK8sV3PkgApisCommonV1DeploymentHealth; "selector"?: string; "version"?: string; "associationStatus"?: IComGithubElasticCloudOnK8sV3PkgApisCommonV1AssociationStatus; "observedGeneration"?: number; "service"?: string; constructor(data?: ModelData); } export type { IEnterpriseSearchStatus as IComGithubElasticCloudOnK8sV3PkgApisEnterprisesearchV1EnterpriseSearchStatus, EnterpriseSearchStatus as ComGithubElasticCloudOnK8sV3PkgApisEnterprisesearchV1EnterpriseSearchStatus };