@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
28 lines (27 loc) • 1.03 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.
*/
/**
* DaemonEndpoint contains information about a single Daemon endpoint.
* @export
* @interface IoK8sApiCoreV1DaemonEndpoint
*/
export interface IoK8sApiCoreV1DaemonEndpoint {
/**
* Port number of the given endpoint.
* @type {number}
* @memberof IoK8sApiCoreV1DaemonEndpoint
*/
port: number;
}
export declare function IoK8sApiCoreV1DaemonEndpointFromJSON(json: any): IoK8sApiCoreV1DaemonEndpoint;
export declare function IoK8sApiCoreV1DaemonEndpointFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1DaemonEndpoint;
export declare function IoK8sApiCoreV1DaemonEndpointToJSON(value?: IoK8sApiCoreV1DaemonEndpoint | null): any;