palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
20 lines • 979 B
TypeScript
/**
* Copyright (c) Spectro Cloud
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* Palette APIs - 4.8
* OpenAPI spec version: v1
*/
/**
* CPUFeature allows specifying a CPU feature.
*/
export type VmCpuFeature = {
/** Name of the CPU feature */
name: string;
/** Policy is the CPU feature attribute which can have the following attributes: force - The virtual CPU will claim the feature is supported regardless of it being supported by host CPU. require - Guest creation will fail unless the feature is supported by the host CPU or the hypervisor is able to emulate it. optional - The feature will be supported by virtual CPU if and only if it is supported by host CPU. disable - The feature will not be supported by virtual CPU. forbid - Guest creation will fail if the feature is supported by host CPU. Defaults to require */
policy?: string;
};
//# sourceMappingURL=vmCpuFeature.d.ts.map