UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

38 lines (37 loc) 1.05 kB
/** * 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. */ /** * * @export * @interface V1alpha1Selectors */ export interface V1alpha1Selectors { /** * * @type {{ [key: string]: string; }} * @memberof V1alpha1Selectors */ namespaceSelector?: { [key: string]: string; }; /** * * @type {{ [key: string]: string; }} * @memberof V1alpha1Selectors */ virtualMachineInstanceSelector?: { [key: string]: string; }; } export declare function V1alpha1SelectorsFromJSON(json: any): V1alpha1Selectors; export declare function V1alpha1SelectorsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1alpha1Selectors; export declare function V1alpha1SelectorsToJSON(value?: V1alpha1Selectors | null): any;