cleanup
Signed-off-by: Jess Frazelle <github@jessfraz.com> add more Signed-off-by: Jess Frazelle <github@jessfraz.com> update Signed-off-by: Jess Frazelle <github@jessfraz.com> u[dates Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
91
kittycad/models/engine_metadata.py
Normal file
91
kittycad/models/engine_metadata.py
Normal file
@ -0,0 +1,91 @@
|
||||
from typing import Any, Dict, List, Type, TypeVar, Union, cast
|
||||
|
||||
import attr
|
||||
|
||||
from ..models.file_system_metadata import FileSystemMetadata
|
||||
from ..models.nats_connection import NatsConnection
|
||||
from ..types import UNSET, Unset
|
||||
|
||||
T = TypeVar("T", bound="EngineMetadata")
|
||||
|
||||
|
||||
@attr.s(auto_attribs=True)
|
||||
class EngineMetadata:
|
||||
""" """
|
||||
async_jobs_running: Union[Unset, bool] = False
|
||||
fs: Union[Unset, FileSystemMetadata] = UNSET
|
||||
git_hash: Union[Unset, str] = UNSET
|
||||
nats: Union[Unset, NatsConnection] = UNSET
|
||||
|
||||
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
|
||||
|
||||
def to_dict(self) -> Dict[str, Any]:
|
||||
async_jobs_running = self.async_jobs_running
|
||||
fs: Union[Unset, str] = UNSET
|
||||
if not isinstance(self.fs, Unset):
|
||||
fs = self.fs.value
|
||||
git_hash = self.git_hash
|
||||
nats: Union[Unset, str] = UNSET
|
||||
if not isinstance(self.nats, Unset):
|
||||
nats = self.nats.value
|
||||
|
||||
field_dict: Dict[str, Any] = {}
|
||||
field_dict.update(self.additional_properties)
|
||||
field_dict.update({})
|
||||
if async_jobs_running is not UNSET:
|
||||
field_dict['async_jobs_running'] = async_jobs_running
|
||||
if fs is not UNSET:
|
||||
field_dict['fs'] = fs
|
||||
if git_hash is not UNSET:
|
||||
field_dict['git_hash'] = git_hash
|
||||
if nats is not UNSET:
|
||||
field_dict['nats'] = nats
|
||||
|
||||
return field_dict
|
||||
|
||||
@classmethod
|
||||
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
||||
d = src_dict.copy()
|
||||
async_jobs_running = d.pop("async_jobs_running", UNSET)
|
||||
|
||||
_fs = d.pop("fs", UNSET)
|
||||
fs: Union[Unset, FileSystemMetadata]
|
||||
if isinstance(_fs, Unset):
|
||||
fs = UNSET
|
||||
else:
|
||||
fs = FileSystemMetadata(_fs)
|
||||
|
||||
git_hash = d.pop("git_hash", UNSET)
|
||||
|
||||
_nats = d.pop("nats", UNSET)
|
||||
nats: Union[Unset, NatsConnection]
|
||||
if isinstance(_nats, Unset):
|
||||
nats = UNSET
|
||||
else:
|
||||
nats = NatsConnection(_nats)
|
||||
|
||||
engine_metadata = cls(
|
||||
async_jobs_running=async_jobs_running,
|
||||
fs=fs,
|
||||
git_hash=git_hash,
|
||||
nats=nats,
|
||||
)
|
||||
|
||||
engine_metadata.additional_properties = d
|
||||
return engine_metadata
|
||||
|
||||
@property
|
||||
def additional_keys(self) -> List[str]:
|
||||
return list(self.additional_properties.keys())
|
||||
|
||||
def __getitem__(self, key: str) -> Any:
|
||||
return self.additional_properties[key]
|
||||
|
||||
def __setitem__(self, key: str, value: Any) -> None:
|
||||
self.additional_properties[key] = value
|
||||
|
||||
def __delitem__(self, key: str) -> None:
|
||||
del self.additional_properties[key]
|
||||
|
||||
def __contains__(self, key: str) -> bool:
|
||||
return key in self.additional_properties
|
Reference in New Issue
Block a user