import { ModelData, Model } from "@kubernetes-models/base"; /** * KeyToPath defines how to map a key in a Secret object to a filesystem path. */ export interface IKeyToPath { /** * Key is the key contained in the secret. */ "key": string; /** * Path is the relative file path to map the key to. * Path must not be an absolute file path and must not contain any ".." components. */ "path"?: string; } /** * KeyToPath defines how to map a key in a Secret object to a filesystem path. */ export declare class KeyToPath extends Model implements IKeyToPath { "key": string; "path"?: string; constructor(data?: ModelData); } export type { IKeyToPath as IComGithubElasticCloudOnK8sV3PkgApisCommonV1beta1KeyToPath, KeyToPath as ComGithubElasticCloudOnK8sV3PkgApisCommonV1beta1KeyToPath };