chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
"""Contains all the data models used in inputs/outputs"""
|
||||
|
||||
from .error import Error
|
||||
from .patch_volumecontent_volume_id_path_body import PatchVolumecontentVolumeIDPathBody
|
||||
from .volume_entry_stat import VolumeEntryStat
|
||||
from .volume_entry_stat_type import VolumeEntryStatType
|
||||
|
||||
__all__ = (
|
||||
"Error",
|
||||
"PatchVolumecontentVolumeIDPathBody",
|
||||
"VolumeEntryStat",
|
||||
"VolumeEntryStatType",
|
||||
)
|
||||
@@ -0,0 +1,67 @@
|
||||
from collections.abc import Mapping
|
||||
from typing import Any, TypeVar
|
||||
|
||||
from attrs import define as _attrs_define
|
||||
from attrs import field as _attrs_field
|
||||
|
||||
T = TypeVar("T", bound="Error")
|
||||
|
||||
|
||||
@_attrs_define
|
||||
class Error:
|
||||
"""
|
||||
Attributes:
|
||||
code (str): Error code
|
||||
message (str): Error message
|
||||
"""
|
||||
|
||||
code: str
|
||||
message: str
|
||||
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
||||
|
||||
def to_dict(self) -> dict[str, Any]:
|
||||
code = self.code
|
||||
|
||||
message = self.message
|
||||
|
||||
field_dict: dict[str, Any] = {}
|
||||
field_dict.update(self.additional_properties)
|
||||
field_dict.update(
|
||||
{
|
||||
"code": code,
|
||||
"message": message,
|
||||
}
|
||||
)
|
||||
|
||||
return field_dict
|
||||
|
||||
@classmethod
|
||||
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
||||
d = dict(src_dict)
|
||||
code = d.pop("code")
|
||||
|
||||
message = d.pop("message")
|
||||
|
||||
error = cls(
|
||||
code=code,
|
||||
message=message,
|
||||
)
|
||||
|
||||
error.additional_properties = d
|
||||
return error
|
||||
|
||||
@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
|
||||
+77
@@ -0,0 +1,77 @@
|
||||
from collections.abc import Mapping
|
||||
from typing import Any, TypeVar, Union
|
||||
|
||||
from attrs import define as _attrs_define
|
||||
from attrs import field as _attrs_field
|
||||
|
||||
from ..types import UNSET, Unset
|
||||
|
||||
T = TypeVar("T", bound="PatchVolumecontentVolumeIDPathBody")
|
||||
|
||||
|
||||
@_attrs_define
|
||||
class PatchVolumecontentVolumeIDPathBody:
|
||||
"""
|
||||
Attributes:
|
||||
uid (Union[Unset, int]):
|
||||
gid (Union[Unset, int]):
|
||||
mode (Union[Unset, int]):
|
||||
"""
|
||||
|
||||
uid: Union[Unset, int] = UNSET
|
||||
gid: Union[Unset, int] = UNSET
|
||||
mode: Union[Unset, int] = UNSET
|
||||
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
||||
|
||||
def to_dict(self) -> dict[str, Any]:
|
||||
uid = self.uid
|
||||
|
||||
gid = self.gid
|
||||
|
||||
mode = self.mode
|
||||
|
||||
field_dict: dict[str, Any] = {}
|
||||
field_dict.update(self.additional_properties)
|
||||
field_dict.update({})
|
||||
if uid is not UNSET:
|
||||
field_dict["uid"] = uid
|
||||
if gid is not UNSET:
|
||||
field_dict["gid"] = gid
|
||||
if mode is not UNSET:
|
||||
field_dict["mode"] = mode
|
||||
|
||||
return field_dict
|
||||
|
||||
@classmethod
|
||||
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
||||
d = dict(src_dict)
|
||||
uid = d.pop("uid", UNSET)
|
||||
|
||||
gid = d.pop("gid", UNSET)
|
||||
|
||||
mode = d.pop("mode", UNSET)
|
||||
|
||||
patch_volumecontent_volume_id_path_body = cls(
|
||||
uid=uid,
|
||||
gid=gid,
|
||||
mode=mode,
|
||||
)
|
||||
|
||||
patch_volumecontent_volume_id_path_body.additional_properties = d
|
||||
return patch_volumecontent_volume_id_path_body
|
||||
|
||||
@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
|
||||
@@ -0,0 +1,145 @@
|
||||
import datetime
|
||||
from collections.abc import Mapping
|
||||
from typing import Any, TypeVar, Union
|
||||
|
||||
from attrs import define as _attrs_define
|
||||
from attrs import field as _attrs_field
|
||||
from dateutil.parser import isoparse
|
||||
|
||||
from ..models.volume_entry_stat_type import VolumeEntryStatType
|
||||
from ..types import UNSET, Unset
|
||||
|
||||
T = TypeVar("T", bound="VolumeEntryStat")
|
||||
|
||||
|
||||
@_attrs_define
|
||||
class VolumeEntryStat:
|
||||
"""
|
||||
Attributes:
|
||||
name (str):
|
||||
type_ (VolumeEntryStatType):
|
||||
path (str):
|
||||
size (int):
|
||||
mode (int):
|
||||
uid (int):
|
||||
gid (int):
|
||||
atime (datetime.datetime):
|
||||
mtime (datetime.datetime):
|
||||
ctime (datetime.datetime):
|
||||
target (Union[Unset, str]):
|
||||
"""
|
||||
|
||||
name: str
|
||||
type_: VolumeEntryStatType
|
||||
path: str
|
||||
size: int
|
||||
mode: int
|
||||
uid: int
|
||||
gid: int
|
||||
atime: datetime.datetime
|
||||
mtime: datetime.datetime
|
||||
ctime: datetime.datetime
|
||||
target: Union[Unset, str] = UNSET
|
||||
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
||||
|
||||
def to_dict(self) -> dict[str, Any]:
|
||||
name = self.name
|
||||
|
||||
type_ = self.type_.value
|
||||
|
||||
path = self.path
|
||||
|
||||
size = self.size
|
||||
|
||||
mode = self.mode
|
||||
|
||||
uid = self.uid
|
||||
|
||||
gid = self.gid
|
||||
|
||||
atime = self.atime.isoformat()
|
||||
|
||||
mtime = self.mtime.isoformat()
|
||||
|
||||
ctime = self.ctime.isoformat()
|
||||
|
||||
target = self.target
|
||||
|
||||
field_dict: dict[str, Any] = {}
|
||||
field_dict.update(self.additional_properties)
|
||||
field_dict.update(
|
||||
{
|
||||
"name": name,
|
||||
"type": type_,
|
||||
"path": path,
|
||||
"size": size,
|
||||
"mode": mode,
|
||||
"uid": uid,
|
||||
"gid": gid,
|
||||
"atime": atime,
|
||||
"mtime": mtime,
|
||||
"ctime": ctime,
|
||||
}
|
||||
)
|
||||
if target is not UNSET:
|
||||
field_dict["target"] = target
|
||||
|
||||
return field_dict
|
||||
|
||||
@classmethod
|
||||
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
||||
d = dict(src_dict)
|
||||
name = d.pop("name")
|
||||
|
||||
type_ = VolumeEntryStatType(d.pop("type"))
|
||||
|
||||
path = d.pop("path")
|
||||
|
||||
size = d.pop("size")
|
||||
|
||||
mode = d.pop("mode")
|
||||
|
||||
uid = d.pop("uid")
|
||||
|
||||
gid = d.pop("gid")
|
||||
|
||||
atime = isoparse(d.pop("atime"))
|
||||
|
||||
mtime = isoparse(d.pop("mtime"))
|
||||
|
||||
ctime = isoparse(d.pop("ctime"))
|
||||
|
||||
target = d.pop("target", UNSET)
|
||||
|
||||
volume_entry_stat = cls(
|
||||
name=name,
|
||||
type_=type_,
|
||||
path=path,
|
||||
size=size,
|
||||
mode=mode,
|
||||
uid=uid,
|
||||
gid=gid,
|
||||
atime=atime,
|
||||
mtime=mtime,
|
||||
ctime=ctime,
|
||||
target=target,
|
||||
)
|
||||
|
||||
volume_entry_stat.additional_properties = d
|
||||
return volume_entry_stat
|
||||
|
||||
@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
|
||||
@@ -0,0 +1,11 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class VolumeEntryStatType(str, Enum):
|
||||
DIRECTORY = "directory"
|
||||
FILE = "file"
|
||||
SYMLINK = "symlink"
|
||||
UNKNOWN = "unknown"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
||||
Reference in New Issue
Block a user