Skip to content

Commit 4f55bb2

Browse files
committed
Client Python update by KubeVirt Prow build 1915233500718436352
1 parent 51e0c6c commit 4f55bb2

10 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is KubeVirt API an add-on for Kubernetes.
44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

66
- API version: 1.0.0
7-
- Package version: v1.5.0-beta.0-1172-g0b5ae89423
7+
- Package version: v1.5.0-beta.0-1168-gedb498353c
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99
For more information, please visit [https://github.com/kubevirt/kubevirt](https://github.com/kubevirt/kubevirt)
1010

docs/V1VirtualMachineInstanceGuestAgentInfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**api_version** | **str** | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | [optional]
7-
**fs_freeze_status** | **str** | FSFreezeStatus indicates whether a freeze operation was requested for the guest filesystem. It will be set to \"frozen\" if the request was made, or unset otherwise. This does not reflect the actual state of the guest filesystem. | [optional]
7+
**fs_freeze_status** | **str** | FSFreezeStatus is the state of the fs of the guest it can be either frozen or thawed | [optional]
88
**fs_info** | [**V1VirtualMachineInstanceFileSystemInfo**](V1VirtualMachineInstanceFileSystemInfo.md) | FSInfo is a guest os filesystem information containing the disk mapping and disk mounts with usage | [optional]
99
**guest_agent_version** | **str** | GAVersion is a version of currently installed guest agent | [optional]
1010
**hostname** | **str** | Hostname represents FQDN of a guest | [optional]

docs/V1VirtualMachineInstanceStatus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
**conditions** | [**list[V1VirtualMachineInstanceCondition]**](V1VirtualMachineInstanceCondition.md) | Conditions are specific points in VirtualMachineInstance's pod runtime. | [optional]
99
**current_cpu_topology** | [**V1CPUTopology**](V1CPUTopology.md) | CurrentCPUTopology specifies the current CPU topology used by the VM workload. Current topology may differ from the desired topology in the spec while CPU hotplug takes place. | [optional]
1010
**evacuation_node_name** | **str** | EvacuationNodeName is used to track the eviction process of a VMI. It stores the name of the node that we want to evacuate. It is meant to be used by KubeVirt core components only and can't be set or modified by users. | [optional]
11-
**fs_freeze_status** | **str** | FSFreezeStatus indicates whether a freeze operation was requested for the guest filesystem. It will be set to \"frozen\" if the request was made, or unset otherwise. This does not reflect the actual state of the guest filesystem. | [optional]
11+
**fs_freeze_status** | **str** | FSFreezeStatus is the state of the fs of the guest it can be either frozen or thawed | [optional]
1212
**guest_os_info** | [**V1VirtualMachineInstanceGuestOSInfo**](V1VirtualMachineInstanceGuestOSInfo.md) | Guest OS Information | [optional]
1313
**interfaces** | [**list[V1VirtualMachineInstanceNetworkInterface]**](V1VirtualMachineInstanceNetworkInterface.md) | Interfaces represent the details of available network interfaces. | [optional]
1414
**kernel_boot_status** | [**V1KernelBootStatus**](V1KernelBootStatus.md) | KernelBootStatus contains info about the kernelBootContainer | [optional]

git_push.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if [ "$git_repo_id" = "" ]; then
1818
fi
1919

2020
if [ "$release_note" = "" ]; then
21-
release_note="Auto-generated client v1.5.0-beta.0-1172-g0b5ae89423"
21+
release_note="Auto-generated client v1.5.0-beta.0-1168-gedb498353c"
2222
echo "[INFO] No command line input provided. Set \$release_note to $release_note"
2323
fi
2424

kubevirt/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def __init__(self, host=None, header_name=None, header_value=None, cookie=None):
7373
self.host = host
7474
self.cookie = cookie
7575
# Set default User-Agent.
76-
self.user_agent = 'Swagger-Codegen/v1.5.0-beta.0-1172-g0b5ae89423/python'
76+
self.user_agent = 'Swagger-Codegen/v1.5.0-beta.0-1168-gedb498353c/python'
7777

7878
@property
7979
def user_agent(self):

kubevirt/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,5 +227,5 @@ def to_debug_report(self):
227227
"OS: {env}\n"\
228228
"Python Version: {pyversion}\n"\
229229
"Version of the API: 1.0.0\n"\
230-
"SDK Package Version: v1.5.0-beta.0-1172-g0b5ae89423".\
230+
"SDK Package Version: v1.5.0-beta.0-1168-gedb498353c".\
231231
format(env=sys.platform, pyversion=sys.version)

kubevirt/models/v1_virtual_machine_instance_guest_agent_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def api_version(self, api_version):
120120
def fs_freeze_status(self):
121121
"""
122122
Gets the fs_freeze_status of this V1VirtualMachineInstanceGuestAgentInfo.
123-
FSFreezeStatus indicates whether a freeze operation was requested for the guest filesystem. It will be set to \"frozen\" if the request was made, or unset otherwise. This does not reflect the actual state of the guest filesystem.
123+
FSFreezeStatus is the state of the fs of the guest it can be either frozen or thawed
124124
125125
:return: The fs_freeze_status of this V1VirtualMachineInstanceGuestAgentInfo.
126126
:rtype: str
@@ -131,7 +131,7 @@ def fs_freeze_status(self):
131131
def fs_freeze_status(self, fs_freeze_status):
132132
"""
133133
Sets the fs_freeze_status of this V1VirtualMachineInstanceGuestAgentInfo.
134-
FSFreezeStatus indicates whether a freeze operation was requested for the guest filesystem. It will be set to \"frozen\" if the request was made, or unset otherwise. This does not reflect the actual state of the guest filesystem.
134+
FSFreezeStatus is the state of the fs of the guest it can be either frozen or thawed
135135
136136
:param fs_freeze_status: The fs_freeze_status of this V1VirtualMachineInstanceGuestAgentInfo.
137137
:type: str

kubevirt/models/v1_virtual_machine_instance_status.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def evacuation_node_name(self, evacuation_node_name):
292292
def fs_freeze_status(self):
293293
"""
294294
Gets the fs_freeze_status of this V1VirtualMachineInstanceStatus.
295-
FSFreezeStatus indicates whether a freeze operation was requested for the guest filesystem. It will be set to \"frozen\" if the request was made, or unset otherwise. This does not reflect the actual state of the guest filesystem.
295+
FSFreezeStatus is the state of the fs of the guest it can be either frozen or thawed
296296
297297
:return: The fs_freeze_status of this V1VirtualMachineInstanceStatus.
298298
:rtype: str
@@ -303,7 +303,7 @@ def fs_freeze_status(self):
303303
def fs_freeze_status(self, fs_freeze_status):
304304
"""
305305
Sets the fs_freeze_status of this V1VirtualMachineInstanceStatus.
306-
FSFreezeStatus indicates whether a freeze operation was requested for the guest filesystem. It will be set to \"frozen\" if the request was made, or unset otherwise. This does not reflect the actual state of the guest filesystem.
306+
FSFreezeStatus is the state of the fs of the guest it can be either frozen or thawed
307307
308308
:param fs_freeze_status: The fs_freeze_status of this V1VirtualMachineInstanceStatus.
309309
:type: str

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from setuptools import setup, find_packages
1616

1717
NAME = "kubevirt-py"
18-
VERSION = "v1.5.0-beta.0-1172-g0b5ae89423"
18+
VERSION = "v1.5.0-beta.0-1168-gedb498353c"
1919
# To install the library, run the following
2020
#
2121
# python setup.py install

swagger-codegen-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"packageName": "kubevirt",
33
"projectName": "kubevirt-py",
44
"packageUrl": "https://github.com/kubevirt/client-python",
5-
"packageVersion": "v1.5.0-beta.0-1172-g0b5ae89423"
5+
"packageVersion": "v1.5.0-beta.0-1168-gedb498353c"
66
}

0 commit comments

Comments
 (0)