import { IDevKnativeServingPkgApisServingV1RevisionTemplateSpec } from "./RevisionTemplateSpec.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * ConfigurationSpec holds the desired state of the Configuration (from the client). */ export interface IConfigurationSpec { /** * Template holds the latest specification for the Revision to be stamped out. */ "template"?: IDevKnativeServingPkgApisServingV1RevisionTemplateSpec; } /** * ConfigurationSpec holds the desired state of the Configuration (from the client). */ export declare class ConfigurationSpec extends Model implements IConfigurationSpec { "template"?: IDevKnativeServingPkgApisServingV1RevisionTemplateSpec; constructor(data?: ModelData); } export type { IConfigurationSpec as IDevKnativeServingPkgApisServingV1ConfigurationSpec, ConfigurationSpec as DevKnativeServingPkgApisServingV1ConfigurationSpec };