UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

29 lines (28 loc) 1.34 kB
/** * 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 { IoK8sApimachineryPkgApisMetaV1Condition } from './'; /** * ServiceCIDRStatus describes the current state of the ServiceCIDR. * @export * @interface IoK8sApiNetworkingV1ServiceCIDRStatus */ export interface IoK8sApiNetworkingV1ServiceCIDRStatus { /** * conditions holds an array of metav1.Condition that describe the state of the ServiceCIDR. Current service state * @type {Array<IoK8sApimachineryPkgApisMetaV1Condition>} * @memberof IoK8sApiNetworkingV1ServiceCIDRStatus */ conditions?: Array<IoK8sApimachineryPkgApisMetaV1Condition>; } export declare function IoK8sApiNetworkingV1ServiceCIDRStatusFromJSON(json: any): IoK8sApiNetworkingV1ServiceCIDRStatus; export declare function IoK8sApiNetworkingV1ServiceCIDRStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiNetworkingV1ServiceCIDRStatus; export declare function IoK8sApiNetworkingV1ServiceCIDRStatusToJSON(value?: IoK8sApiNetworkingV1ServiceCIDRStatus | null): any;