UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

49 lines (48 loc) 2.38 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. */ import { K8sIoApimachineryPkgApisMetaV1ObjectMeta, V1VirtualMachineInstancePresetSpec } from './'; /** * Deprecated for removal in v2, please use VirtualMachineInstanceType and VirtualMachinePreference instead. * * VirtualMachineInstancePreset defines a VMI spec.domain to be applied to all VMIs that match the provided label selector More info: https://kubevirt.io/user-guide/virtual_machines/presets/#overrides * @export * @interface V1VirtualMachineInstancePreset */ export interface V1VirtualMachineInstancePreset { /** * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources * @type {string} * @memberof V1VirtualMachineInstancePreset */ apiVersion?: string; /** * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds * @type {string} * @memberof V1VirtualMachineInstancePreset */ kind?: string; /** * * @type {K8sIoApimachineryPkgApisMetaV1ObjectMeta} * @memberof V1VirtualMachineInstancePreset */ metadata?: K8sIoApimachineryPkgApisMetaV1ObjectMeta; /** * * @type {V1VirtualMachineInstancePresetSpec} * @memberof V1VirtualMachineInstancePreset */ spec?: V1VirtualMachineInstancePresetSpec; } export declare function V1VirtualMachineInstancePresetFromJSON(json: any): V1VirtualMachineInstancePreset; export declare function V1VirtualMachineInstancePresetFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1VirtualMachineInstancePreset; export declare function V1VirtualMachineInstancePresetToJSON(value?: V1VirtualMachineInstancePreset | null): any;