UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

28 lines (27 loc) 909 B
/** * KubeVirt Containerized Data Importer API * Containerized Data Importer for KubeVirt. * * The version of the OpenAPI document: 1.0.0 * Contact: kubevirt-dev@googlegroups.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * RootPaths lists the paths available at root. For example: "/healthz", "/apis". * @export * @interface V1RootPaths */ export interface V1RootPaths { /** * paths are the paths available at root. * @type {Array<string>} * @memberof V1RootPaths */ paths: Array<string>; } export declare function V1RootPathsFromJSON(json: any): V1RootPaths; export declare function V1RootPathsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1RootPaths; export declare function V1RootPathsToJSON(value?: V1RootPaths | null): any;