import { ModelData, Model } from "@kubernetes-models/base"; /** * ElasticsearchRef is a reference to an Elasticsearch cluster that exists in the same namespace. */ export interface IElasticsearchRef { /** * Name is the name of the Elasticsearch resource to scale automatically. */ "name"?: string; } /** * ElasticsearchRef is a reference to an Elasticsearch cluster that exists in the same namespace. */ export declare class ElasticsearchRef extends Model implements IElasticsearchRef { "name"?: string; constructor(data?: ModelData); } export type { IElasticsearchRef as IComGithubElasticCloudOnK8sV3PkgApisAutoscalingV1alpha1ElasticsearchRef, ElasticsearchRef as ComGithubElasticCloudOnK8sV3PkgApisAutoscalingV1alpha1ElasticsearchRef };