UNPKG

kubernetes-models

Version:
18 lines (17 loc) 517 B
import { Model } from "@kubernetes-models/base"; /** * describes the attributes of a scale subresource */ export interface IScaleSpec { /** * desired number of instances for the scaled object. */ "replicas"?: number; } /** * describes the attributes of a scale subresource */ export declare class ScaleSpec extends Model<IScaleSpec> implements IScaleSpec { "replicas"?: number; } export { IScaleSpec as IIoK8sApiExtensionsV1beta1ScaleSpec, ScaleSpec as IoK8sApiExtensionsV1beta1ScaleSpec };