@kubernetes-models/flux-cd
Version:
30 lines (29 loc) • 1.5 kB
TypeScript
import { IIoK8sApimachineryPkgApisMetaV1ObjectMeta } from "@kubernetes-models/apimachinery/apis/meta/v1/ObjectMeta";
import { IComGithubFluxcdSourceControllerApiV1HelmChartSpec } from "./HelmChartSpec.js";
import { IComGithubFluxcdSourceControllerApiV1HelmChartStatus } from "./HelmChartStatus.js";
import { ModelData, TypeMeta, Model } from "@kubernetes-models/base";
/**
* HelmChart is the Schema for the helmcharts API.
*/
export interface IHelmChart extends TypeMeta {
"apiVersion": "source.toolkit.fluxcd.io/v1";
"kind": "HelmChart";
"metadata"?: IIoK8sApimachineryPkgApisMetaV1ObjectMeta;
"spec"?: IComGithubFluxcdSourceControllerApiV1HelmChartSpec;
"status"?: IComGithubFluxcdSourceControllerApiV1HelmChartStatus;
}
/**
* HelmChart is the Schema for the helmcharts API.
*/
export declare class HelmChart extends Model<IHelmChart> implements IHelmChart {
"apiVersion": "source.toolkit.fluxcd.io/v1";
"kind": "HelmChart";
"metadata"?: IIoK8sApimachineryPkgApisMetaV1ObjectMeta;
"spec"?: IComGithubFluxcdSourceControllerApiV1HelmChartSpec;
"status"?: IComGithubFluxcdSourceControllerApiV1HelmChartStatus;
static apiVersion: IHelmChart["apiVersion"];
static kind: IHelmChart["kind"];
static is: import("@kubernetes-models/base").TypeMetaGuard<IHelmChart>;
constructor(data?: ModelData<IHelmChart>);
}
export type { IHelmChart as IComGithubFluxcdSourceControllerApiV1HelmChart, HelmChart as ComGithubFluxcdSourceControllerApiV1HelmChart };