@kubernetes-models/argo-rollouts
Version:
34 lines (33 loc) • 1.54 kB
TypeScript
import { IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1Argument } from "./Argument.js";
import { ModelData, Model } from "@kubernetes-models/base";
export interface IExperimentAnalysisTemplateRef {
/**
* Args are the arguments that will be added to the AnalysisRuns
*/
"args"?: Array<IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1Argument>;
/**
* Whether to look for the templateName at cluster scope or namespace scope
*/
"clusterScope"?: boolean;
/**
* Name is the name of the analysis
*/
"name": string;
/**
* RequiredForCompletion blocks the Experiment from completing until the analysis has completed
*/
"requiredForCompletion"?: boolean;
/**
* TemplateName reference of the AnalysisTemplate name used by the Experiment to create the run
*/
"templateName": string;
}
export declare class ExperimentAnalysisTemplateRef extends Model<IExperimentAnalysisTemplateRef> implements IExperimentAnalysisTemplateRef {
"args"?: Array<IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1Argument>;
"clusterScope"?: boolean;
"name": string;
"requiredForCompletion"?: boolean;
"templateName": string;
constructor(data?: ModelData<IExperimentAnalysisTemplateRef>);
}
export type { IExperimentAnalysisTemplateRef as IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1ExperimentAnalysisTemplateRef, ExperimentAnalysisTemplateRef as ComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1ExperimentAnalysisTemplateRef };