@kubernetes-models/flux-cd
Version:
30 lines (29 loc) • 1.55 kB
TypeScript
import { IIoK8sApimachineryPkgApisMetaV1ObjectMeta } from "@kubernetes-models/apimachinery/apis/meta/v1/ObjectMeta";
import { IComGithubFluxcdSourceControllerApiV1beta2HelmChartSpec } from "./HelmChartSpec.js";
import { IComGithubFluxcdSourceControllerApiV1beta2HelmChartStatus } 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/v1beta2";
"kind": "HelmChart";
"metadata"?: IIoK8sApimachineryPkgApisMetaV1ObjectMeta;
"spec"?: IComGithubFluxcdSourceControllerApiV1beta2HelmChartSpec;
"status"?: IComGithubFluxcdSourceControllerApiV1beta2HelmChartStatus;
}
/**
* HelmChart is the Schema for the helmcharts API.
*/
export declare class HelmChart extends Model<IHelmChart> implements IHelmChart {
"apiVersion": "source.toolkit.fluxcd.io/v1beta2";
"kind": "HelmChart";
"metadata"?: IIoK8sApimachineryPkgApisMetaV1ObjectMeta;
"spec"?: IComGithubFluxcdSourceControllerApiV1beta2HelmChartSpec;
"status"?: IComGithubFluxcdSourceControllerApiV1beta2HelmChartStatus;
static apiVersion: IHelmChart["apiVersion"];
static kind: IHelmChart["kind"];
static is: import("@kubernetes-models/base").TypeMetaGuard<IHelmChart>;
constructor(data?: ModelData<IHelmChart>);
}
export type { IHelmChart as IComGithubFluxcdSourceControllerApiV1beta2HelmChart, HelmChart as ComGithubFluxcdSourceControllerApiV1beta2HelmChart };