mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-02 05:54:26 +01:00
update api based latest master. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
20 lines
515 B
Go
20 lines
515 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
|
|
// FsConfig struct for FsConfig
|
|
type FsConfig struct {
|
|
Tag string `json:"tag"`
|
|
Sock string `json:"sock"`
|
|
NumQueues int32 `json:"num_queues,omitempty"`
|
|
QueueSize int32 `json:"queue_size,omitempty"`
|
|
Dax bool `json:"dax,omitempty"`
|
|
CacheSize int64 `json:"cache_size,omitempty"`
|
|
}
|