@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
35 lines (34 loc) • 1.35 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 { IoK8sApiCoreV1LoadBalancerStatus, IoK8sApimachineryPkgApisMetaV1Condition } from './';
/**
* ServiceStatus represents the current status of a service.
* @export
* @interface IoK8sApiCoreV1ServiceStatus
*/
export interface IoK8sApiCoreV1ServiceStatus {
/**
* Current service state
* @type {Array<IoK8sApimachineryPkgApisMetaV1Condition>}
* @memberof IoK8sApiCoreV1ServiceStatus
*/
conditions?: Array<IoK8sApimachineryPkgApisMetaV1Condition>;
/**
*
* @type {IoK8sApiCoreV1LoadBalancerStatus}
* @memberof IoK8sApiCoreV1ServiceStatus
*/
loadBalancer?: IoK8sApiCoreV1LoadBalancerStatus;
}
export declare function IoK8sApiCoreV1ServiceStatusFromJSON(json: any): IoK8sApiCoreV1ServiceStatus;
export declare function IoK8sApiCoreV1ServiceStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1ServiceStatus;
export declare function IoK8sApiCoreV1ServiceStatusToJSON(value?: IoK8sApiCoreV1ServiceStatus | null): any;