mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-01 13:34:20 +01:00
update api based latest master. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
19 lines
469 B
Go
19 lines
469 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
|
|
// NetConfig struct for NetConfig
|
|
type NetConfig struct {
|
|
Tap string `json:"tap,omitempty"`
|
|
Ip string `json:"ip,omitempty"`
|
|
Mask string `json:"mask,omitempty"`
|
|
Mac string `json:"mac,omitempty"`
|
|
Iommu bool `json:"iommu,omitempty"`
|
|
}
|