@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
29 lines (28 loc) • 1.15 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 { IoK8sApiCoreV1DaemonEndpoint } from './';
/**
* NodeDaemonEndpoints lists ports opened by daemons running on the Node.
* @export
* @interface IoK8sApiCoreV1NodeDaemonEndpoints
*/
export interface IoK8sApiCoreV1NodeDaemonEndpoints {
/**
*
* @type {IoK8sApiCoreV1DaemonEndpoint}
* @memberof IoK8sApiCoreV1NodeDaemonEndpoints
*/
kubeletEndpoint?: IoK8sApiCoreV1DaemonEndpoint;
}
export declare function IoK8sApiCoreV1NodeDaemonEndpointsFromJSON(json: any): IoK8sApiCoreV1NodeDaemonEndpoints;
export declare function IoK8sApiCoreV1NodeDaemonEndpointsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1NodeDaemonEndpoints;
export declare function IoK8sApiCoreV1NodeDaemonEndpointsToJSON(value?: IoK8sApiCoreV1NodeDaemonEndpoints | null): any;