mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-09-28 20:15:51 +00:00
Generated using OpenAPITools/openapi-generator. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
17 lines
409 B
Go
17 lines
409 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
|
|
// MemoryConfig struct for MemoryConfig
|
|
type MemoryConfig struct {
|
|
Size int64 `json:"size"`
|
|
File string `json:"file,omitempty"`
|
|
Mergeable bool `json:"mergeable,omitempty"`
|
|
}
|