mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-05 07:24:20 +01:00
Generated using OpenAPITools/openapi-generator. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
18 lines
430 B
Go
18 lines
430 B
Go
/*
|
|
* Cloud Hypervisor API
|
|
*
|
|
* Local HTTP based API for managing and inspecting a cloud-hypervisor virtual machine.
|
|
*
|
|
* API version: 0.3.0
|
|
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
|
|
*/
|
|
|
|
package openapi
|
|
// PmemConfig struct for PmemConfig
|
|
type PmemConfig struct {
|
|
File string `json:"file"`
|
|
Size int64 `json:"size"`
|
|
Iommu bool `json:"iommu,omitempty"`
|
|
Mergeable bool `json:"mergeable,omitempty"`
|
|
}
|