mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-31 13:04:23 +01:00
Generated using OpenAPITools/openapi-generator. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
19 lines
471 B
Go
19 lines
471 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
|
|
// VsockConfig struct for VsockConfig
|
|
type VsockConfig struct {
|
|
// Guest Vsock CID
|
|
Cid int64 `json:"cid"`
|
|
// Path to UNIX domain socket, used to proxy vsock connections.
|
|
Sock string `json:"sock"`
|
|
Iommu bool `json:"iommu,omitempty"`
|
|
}
|