@kubernetes-models/argo-rollouts
Version:
43 lines (42 loc) • 1.81 kB
TypeScript
import { IIoK8sApimachineryPkgApisMetaV1Time } from "@kubernetes-models/apimachinery/apis/meta/v1/Time";
import { IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1ExperimentConditionType } from "./ExperimentConditionType.js";
import { ModelData, Model } from "@kubernetes-models/base";
/**
* ExperimentCondition describes the state of a experiment at a certain point.
*/
export interface IExperimentCondition {
/**
* Last time the condition transitioned from one status to another.
*/
"lastTransitionTime": IIoK8sApimachineryPkgApisMetaV1Time;
/**
* The last time this condition was updated.
*/
"lastUpdateTime": IIoK8sApimachineryPkgApisMetaV1Time;
/**
* A human readable message indicating details about the transition.
*/
"message": string;
/**
* The reason for the condition's last transition.
*/
"reason": string;
"status": string;
/**
* Type of deployment condition.
*/
"type": IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1ExperimentConditionType;
}
/**
* ExperimentCondition describes the state of a experiment at a certain point.
*/
export declare class ExperimentCondition extends Model<IExperimentCondition> implements IExperimentCondition {
"lastTransitionTime": IIoK8sApimachineryPkgApisMetaV1Time;
"lastUpdateTime": IIoK8sApimachineryPkgApisMetaV1Time;
"message": string;
"reason": string;
"status": string;
"type": IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1ExperimentConditionType;
constructor(data?: ModelData<IExperimentCondition>);
}
export type { IExperimentCondition as IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1ExperimentCondition, ExperimentCondition as ComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1ExperimentCondition };