@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
28 lines (27 loc) • 1.08 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: unversioned
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* ScaleSpec describes the attributes of a scale subresource.
* @export
* @interface IoK8sApiAutoscalingV1ScaleSpec
*/
export interface IoK8sApiAutoscalingV1ScaleSpec {
/**
* replicas is the desired number of instances for the scaled object.
* @type {number}
* @memberof IoK8sApiAutoscalingV1ScaleSpec
*/
replicas?: number;
}
export declare function IoK8sApiAutoscalingV1ScaleSpecFromJSON(json: any): IoK8sApiAutoscalingV1ScaleSpec;
export declare function IoK8sApiAutoscalingV1ScaleSpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAutoscalingV1ScaleSpec;
export declare function IoK8sApiAutoscalingV1ScaleSpecToJSON(value?: IoK8sApiAutoscalingV1ScaleSpec | null): any;