import { ModelData, Model } from "@kubernetes-models/base"; /** * FakeSpec contains the static data. */ export interface IFakeSpec { /** * Used to select the correct ESO controller (think: ingress.ingressClassName) * The ESO controller is instantiated with a specific controller name and filters VDS based on this property */ "controller"?: string; /** * Data defines the static data returned * by this generator. */ "data"?: { [key: string]: string; }; } /** * FakeSpec contains the static data. */ export declare class FakeSpec extends Model implements IFakeSpec { "controller"?: string; "data"?: { [key: string]: string; }; constructor(data?: ModelData); } export type { IFakeSpec as IComGithubExternalSecretsExternalSecretsApisGeneratorsV1alpha1FakeSpec, FakeSpec as ComGithubExternalSecretsExternalSecretsApisGeneratorsV1alpha1FakeSpec };