UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

28 lines (27 loc) 934 B
/** * KubeVirt API * This is KubeVirt API an add-on for Kubernetes. * * 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. */ /** * PluginBinding represents a binding implemented in a plugin. * @export * @interface V1PluginBinding */ export interface V1PluginBinding { /** * Name references to the binding name as denined in the kubevirt CR. version: 1alphav1 * @type {string} * @memberof V1PluginBinding */ name: string; } export declare function V1PluginBindingFromJSON(json: any): V1PluginBinding; export declare function V1PluginBindingFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1PluginBinding; export declare function V1PluginBindingToJSON(value?: V1PluginBinding | null): any;