@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.57 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.
*/
/**
* ScaleStatus represents the current status of a scale subresource.
* @export
* @interface IoK8sApiAutoscalingV1ScaleStatus
*/
export interface IoK8sApiAutoscalingV1ScaleStatus {
/**
* replicas is the actual number of observed instances of the scaled object.
* @type {number}
* @memberof IoK8sApiAutoscalingV1ScaleStatus
*/
replicas: number;
/**
* selector is the label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
* @type {string}
* @memberof IoK8sApiAutoscalingV1ScaleStatus
*/
selector?: string;
}
export declare function IoK8sApiAutoscalingV1ScaleStatusFromJSON(json: any): IoK8sApiAutoscalingV1ScaleStatus;
export declare function IoK8sApiAutoscalingV1ScaleStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAutoscalingV1ScaleStatus;
export declare function IoK8sApiAutoscalingV1ScaleStatusToJSON(value?: IoK8sApiAutoscalingV1ScaleStatus | null): any;