UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

28 lines (27 loc) 1.4 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 V1InstancetypeConfiguration */ export interface V1InstancetypeConfiguration { /** * ReferencePolicy defines how an instance type or preference should be referenced by the VM after submission, supported values are: reference (default) - Where a copy of the original object is stashed in a ControllerRevision and referenced by the VM. expand - Where the instance type or preference are expanded into the VM if no revisionNames have been populated. expandAll - Where the instance type or preference are expanded into the VM regardless of revisionNames previously being populated. * @type {string} * @memberof V1InstancetypeConfiguration */ referencePolicy?: string; } export declare function V1InstancetypeConfigurationFromJSON(json: any): V1InstancetypeConfiguration; export declare function V1InstancetypeConfigurationFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1InstancetypeConfiguration; export declare function V1InstancetypeConfigurationToJSON(value?: V1InstancetypeConfiguration | null): any;