update to 0.1.33
This commit is contained in:
parent
31ae5415b4
commit
fe00221ff8
|
@ -220,7 +220,7 @@ class VMPost(VM):
|
||||||
"""VM DELETE"""
|
"""VM DELETE"""
|
||||||
class VMDelete(BaseModel):
|
class VMDelete(BaseModel):
|
||||||
id:UUID4 = Field()
|
id:UUID4 = Field()
|
||||||
inventory_only:bool = Field(default=True)
|
inventory_only:Optional[bool] = Field(default=True)
|
||||||
|
|
||||||
"""VM STOP"""
|
"""VM STOP"""
|
||||||
class VMStop(BaseModel):
|
class VMStop(BaseModel):
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import find_packages, setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='deevirt_schema',
|
name='deevirt_schema',
|
||||||
version='0.1.32',
|
version='0.1.33',
|
||||||
description='Deevirt Schema',
|
description='Deevirt Schema',
|
||||||
url='https://git.celeonet.fr/Deevirt/deevirt_schema.git',
|
url='https://git.celeonet.fr/Deevirt/deevirt_schema.git',
|
||||||
author='Celeonet',
|
author='Celeonet',
|
||||||
|
|
Loading…
Reference in New Issue