@kubernetes-models/argo-cd
Version:
29 lines (28 loc) • 1 kB
TypeScript
import { ModelData, Model } from "@kubernetes-models/base";
/**
* HelmParameter is a parameter that's passed to helm template during manifest generation
*/
export interface IHelmParameter {
/**
* ForceString determines whether to tell Helm to interpret booleans and numbers as strings
*/
"forceString"?: boolean;
/**
* Name is the name of the Helm parameter
*/
"name"?: string;
/**
* Value is the value for the Helm parameter
*/
"value"?: string;
}
/**
* HelmParameter is a parameter that's passed to helm template during manifest generation
*/
export declare class HelmParameter extends Model<IHelmParameter> implements IHelmParameter {
"forceString"?: boolean;
"name"?: string;
"value"?: string;
constructor(data?: ModelData<IHelmParameter>);
}
export type { IHelmParameter as IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1HelmParameter, HelmParameter as ComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1HelmParameter };