@kubernetes-models/argo-cd
Version:
24 lines (23 loc) • 755 B
TypeScript
import { ModelData, Model } from "@kubernetes-models/base";
/**
* EnvEntry represents an entry in the application's environment
*/
export interface IEnvEntry {
/**
* Name is the name of the variable, usually expressed in uppercase
*/
"name": string;
/**
* Value is the value of the variable
*/
"value": string;
}
/**
* EnvEntry represents an entry in the application's environment
*/
export declare class EnvEntry extends Model<IEnvEntry> implements IEnvEntry {
"name": string;
"value": string;
constructor(data?: ModelData<IEnvEntry>);
}
export type { IEnvEntry as IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1EnvEntry, EnvEntry as ComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1EnvEntry };