@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
41 lines (40 loc) • 1.79 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.
*/
import { IoK8sApiAutoscalingV2CrossVersionObjectReference, IoK8sApiAutoscalingV2MetricIdentifier, IoK8sApiAutoscalingV2MetricValueStatus } from './';
/**
* ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).
* @export
* @interface IoK8sApiAutoscalingV2ObjectMetricStatus
*/
export interface IoK8sApiAutoscalingV2ObjectMetricStatus {
/**
*
* @type {IoK8sApiAutoscalingV2MetricValueStatus}
* @memberof IoK8sApiAutoscalingV2ObjectMetricStatus
*/
current: IoK8sApiAutoscalingV2MetricValueStatus;
/**
*
* @type {IoK8sApiAutoscalingV2CrossVersionObjectReference}
* @memberof IoK8sApiAutoscalingV2ObjectMetricStatus
*/
describedObject: IoK8sApiAutoscalingV2CrossVersionObjectReference;
/**
*
* @type {IoK8sApiAutoscalingV2MetricIdentifier}
* @memberof IoK8sApiAutoscalingV2ObjectMetricStatus
*/
metric: IoK8sApiAutoscalingV2MetricIdentifier;
}
export declare function IoK8sApiAutoscalingV2ObjectMetricStatusFromJSON(json: any): IoK8sApiAutoscalingV2ObjectMetricStatus;
export declare function IoK8sApiAutoscalingV2ObjectMetricStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAutoscalingV2ObjectMetricStatus;
export declare function IoK8sApiAutoscalingV2ObjectMetricStatusToJSON(value?: IoK8sApiAutoscalingV2ObjectMetricStatus | null): any;