initial fixing

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2022-06-11 17:26:20 -07:00
parent 4631ca24cb
commit 9dc390a64d
58 changed files with 9685 additions and 6732 deletions

View File

@ -2,9 +2,11 @@ from typing import Any, Dict, List, Type, TypeVar, Union, cast
import attr
from ..models.cache_metadata import CacheMetadata
from ..models.engine_metadata import EngineMetadata
from ..models.environment import Environment
from ..models.file_system_metadata import FileSystemMetadata
from ..models.nats_connection import NatsConnection
from ..models.connection import Connection
from ..types import UNSET, Unset
T = TypeVar("T", bound="Metadata")
@ -13,42 +15,61 @@ T = TypeVar("T", bound="Metadata")
@attr.s(auto_attribs=True)
class Metadata:
""" """
cache: Union[Unset, CacheMetadata] = UNSET
engine: Union[Unset, EngineMetadata] = UNSET
environment: Union[Unset, Environment] = UNSET
fs: Union[Unset, FileSystemMetadata] = UNSET
git_hash: Union[Unset, str] = UNSET
nats: Union[Unset, NatsConnection] = UNSET
pubsub: Union[Unset, Connection] = UNSET
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
def to_dict(self) -> Dict[str, Any]:
cache: Union[Unset, str] = UNSET
if not isinstance(self.cache, Unset):
cache = self.cache.value
engine: Union[Unset, str] = UNSET
if not isinstance(self.engine, Unset):
engine = self.engine.value
environment: Union[Unset, str] = UNSET
if not isinstance(self.environment, Unset):
environment = self.environment.value
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
pubsub: Union[Unset, str] = UNSET
if not isinstance(self.pubsub, Unset):
pubsub = self.pubsub.value
field_dict: Dict[str, Any] = {}
field_dict.update(self.additional_properties)
field_dict.update({})
if cache is not UNSET:
field_dict['cache'] = cache
if engine is not UNSET:
field_dict['engine'] = engine
if environment is not UNSET:
field_dict['environment'] = environment
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
if pubsub is not UNSET:
field_dict['pubsub'] = pubsub
return field_dict
@classmethod
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
d = src_dict.copy()
_cache = d.pop("cache", UNSET)
cache: Union[Unset, CacheMetadata]
if isinstance(_cache, Unset):
cache = UNSET
else:
cache = CacheMetadata(_cache)
_engine = d.pop("engine", UNSET)
engine: Union[Unset, EngineMetadata]
if isinstance(_engine, Unset):
@ -56,6 +77,13 @@ class Metadata:
else:
engine = EngineMetadata(_engine)
_environment = d.pop("environment", UNSET)
environment: Union[Unset, Environment]
if isinstance(_environment, Unset):
environment = UNSET
else:
environment = Environment(_environment)
_fs = d.pop("fs", UNSET)
fs: Union[Unset, FileSystemMetadata]
if isinstance(_fs, Unset):
@ -65,18 +93,20 @@ class Metadata:
git_hash = d.pop("git_hash", UNSET)
_nats = d.pop("nats", UNSET)
nats: Union[Unset, NatsConnection]
if isinstance(_nats, Unset):
nats = UNSET
_pubsub = d.pop("pubsub", UNSET)
pubsub: Union[Unset, Connection]
if isinstance(_pubsub, Unset):
pubsub = UNSET
else:
nats = NatsConnection(_nats)
pubsub = Connection(_pubsub)
metadata = cls(
cache=cache,
engine=engine,
environment=environment,
fs=fs,
git_hash=git_hash,
nats=nats,
pubsub=pubsub,
)
metadata.additional_properties = d