import { ModelData, Model } from "@kubernetes-models/base"; /** * ConfigurationStatusFields holds the fields of Configuration's status that * are not generally shared. This is defined separately and inlined so that * other types can readily consume these fields via duck typing. */ export interface IConfigurationStatusFields { /** * LatestCreatedRevisionName is the last revision that was created from this * Configuration. It might not be ready yet, for that use LatestReadyRevisionName. */ "latestCreatedRevisionName"?: string; /** * LatestReadyRevisionName holds the name of the latest Revision stamped out * from this Configuration that has had its "Ready" condition become "True". */ "latestReadyRevisionName"?: string; } /** * ConfigurationStatusFields holds the fields of Configuration's status that * are not generally shared. This is defined separately and inlined so that * other types can readily consume these fields via duck typing. */ export declare class ConfigurationStatusFields extends Model implements IConfigurationStatusFields { "latestCreatedRevisionName"?: string; "latestReadyRevisionName"?: string; constructor(data?: ModelData); } export type { IConfigurationStatusFields as IDevKnativeServingPkgApisServingV1ConfigurationStatusFields, ConfigurationStatusFields as DevKnativeServingPkgApisServingV1ConfigurationStatusFields };