import { ModelData, Model } from "@kubernetes-models/base"; /** * SecretMount contains information about additional secrets to be mounted to the elasticsearch pods */ export interface ISecretMount { /** * MountPath denotes the path to which the secret should be mounted to inside the elasticsearch pod */ "mountPath"?: string; /** * SecretName denotes the name of the secret that needs to be mounted to the elasticsearch pod */ "secretName"?: string; } /** * SecretMount contains information about additional secrets to be mounted to the elasticsearch pods */ export declare class SecretMount extends Model implements ISecretMount { "mountPath"?: string; "secretName"?: string; constructor(data?: ModelData); } export type { ISecretMount as IComGithubElasticCloudOnK8sV3PkgApisStackconfigpolicyV1alpha1SecretMount, SecretMount as ComGithubElasticCloudOnK8sV3PkgApisStackconfigpolicyV1alpha1SecretMount };