UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

28 lines (27 loc) 948 B
/** * 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. */ /** * PodIP represents a single IP address allocated to the pod. * @export * @interface IoK8sApiCoreV1PodIP */ export interface IoK8sApiCoreV1PodIP { /** * IP is the IP address assigned to the pod * @type {string} * @memberof IoK8sApiCoreV1PodIP */ ip: string; } export declare function IoK8sApiCoreV1PodIPFromJSON(json: any): IoK8sApiCoreV1PodIP; export declare function IoK8sApiCoreV1PodIPFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1PodIP; export declare function IoK8sApiCoreV1PodIPToJSON(value?: IoK8sApiCoreV1PodIP | null): any;