mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-29 03:54:27 +01:00
Use CLH branch stable/v0.5.x, and also re-generate the openAPI client code with the new 'cloud-hypervisor.yaml'. Fixes: #2488 Signed-off-by: Bo Chen <chen.bo@intel.com>
22 lines
627 B
Go
22 lines
627 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
|
|
// DiskConfig struct for DiskConfig
|
|
type DiskConfig struct {
|
|
Path string `json:"path"`
|
|
Readonly bool `json:"readonly,omitempty"`
|
|
Iommu bool `json:"iommu,omitempty"`
|
|
NumQueues int32 `json:"num_queues,omitempty"`
|
|
QueueSize int32 `json:"queue_size,omitempty"`
|
|
VhostUser bool `json:"vhost_user,omitempty"`
|
|
VhostSocket string `json:"vhost_socket,omitempty"`
|
|
Wce bool `json:"wce,omitempty"`
|
|
}
|