virtcontainers: clh: Re-generate the client code

This patch re-generates the client code for Cloud Hypervisor v21.0.
Note: The client code of cloud-hypervisor's (CLH) OpenAPI is
automatically generated by openapi-generator [1-2].

[1] https://github.com/OpenAPITools/openapi-generator
[2] https://github.com/kata-containers/kata-containers/blob/main/src/runtime/virtcontainers/pkg/cloud-hypervisor/README.md

Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
Bo Chen
2022-01-20 17:48:10 -08:00
parent 7e15e99d5f
commit 2d799cbfa3
12 changed files with 875 additions and 54 deletions

View File

@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Tap** | Pointer to **string** | | [optional] [default to ""]
**Tap** | Pointer to **string** | | [optional]
**Ip** | Pointer to **string** | | [optional] [default to "192.168.249.1"]
**Mask** | Pointer to **string** | | [optional] [default to "255.255.255.0"]
**Mac** | Pointer to **string** | | [optional]
@@ -15,7 +15,7 @@ Name | Type | Description | Notes
**VhostSocket** | Pointer to **string** | | [optional]
**VhostMode** | Pointer to **string** | | [optional] [default to "Client"]
**Id** | Pointer to **string** | | [optional]
**Fd** | Pointer to **[]int32** | | [optional]
**Fds** | Pointer to **[]int32** | | [optional]
**PciSegment** | Pointer to **int32** | | [optional]
**RateLimiterConfig** | Pointer to [**RateLimiterConfig**](RateLimiterConfig.md) | | [optional]
@@ -313,30 +313,30 @@ SetId sets Id field to given value.
HasId returns a boolean if a field has been set.
### GetFd
### GetFds
`func (o *NetConfig) GetFd() []int32`
`func (o *NetConfig) GetFds() []int32`
GetFd returns the Fd field if non-nil, zero value otherwise.
GetFds returns the Fds field if non-nil, zero value otherwise.
### GetFdOk
### GetFdsOk
`func (o *NetConfig) GetFdOk() (*[]int32, bool)`
`func (o *NetConfig) GetFdsOk() (*[]int32, bool)`
GetFdOk returns a tuple with the Fd field if it's non-nil, zero value otherwise
GetFdsOk returns a tuple with the Fds field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFd
### SetFds
`func (o *NetConfig) SetFd(v []int32)`
`func (o *NetConfig) SetFds(v []int32)`
SetFd sets Fd field to given value.
SetFds sets Fds field to given value.
### HasFd
### HasFds
`func (o *NetConfig) HasFd() bool`
`func (o *NetConfig) HasFds() bool`
HasFd returns a boolean if a field has been set.
HasFds returns a boolean if a field has been set.
### GetPciSegment