@kubernetes-models/argo-cd
Version:
20 lines (19 loc) • 1.24 kB
TypeScript
import { IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationSetTemplateMeta } from "./ApplicationSetTemplateMeta.js";
import { IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationSpec } from "./ApplicationSpec.js";
import { ModelData, Model } from "@kubernetes-models/base";
/**
* ApplicationSetTemplate represents argocd ApplicationSpec
*/
export interface IApplicationSetTemplate {
"metadata": IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationSetTemplateMeta;
"spec": IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationSpec;
}
/**
* ApplicationSetTemplate represents argocd ApplicationSpec
*/
export declare class ApplicationSetTemplate extends Model<IApplicationSetTemplate> implements IApplicationSetTemplate {
"metadata": IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationSetTemplateMeta;
"spec": IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationSpec;
constructor(data?: ModelData<IApplicationSetTemplate>);
}
export type { IApplicationSetTemplate as IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationSetTemplate, ApplicationSetTemplate as ComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1ApplicationSetTemplate };