value
Attributes¶
logger = structlog.getLogger()
module-attribute
¶
Classes¶
StoreValueResult
¶
Bases: BaseModel
Source code in /opt/hostedtoolcache/Python/3.10.12/x64/lib/python3.10/site-packages/kiara/interfaces/python_api/value.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
Attributes¶
value: Value = Field(description='The stored value.')
instance-attribute
class-attribute
¶
aliases: List[str] = Field(description='The aliases that where assigned to the value when stored.')
instance-attribute
class-attribute
¶
persisted_data: Union[None, PersistedData] = Field(description="The structure describing the data that was persisted, 'None' if the data was already stored before (or storing failed).")
instance-attribute
class-attribute
¶
error: Union[str, None] = Field(description='An error that occured while trying to store.')
instance-attribute
class-attribute
¶
Functions¶
create_renderable(**config) -> RenderableType
¶
Source code in /opt/hostedtoolcache/Python/3.10.12/x64/lib/python3.10/site-packages/kiara/interfaces/python_api/value.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
StoreValuesResult
¶
Bases: BaseModel
Source code in /opt/hostedtoolcache/Python/3.10.12/x64/lib/python3.10/site-packages/kiara/interfaces/python_api/value.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
|
Functions¶
create_renderable(**config: Any) -> RenderableType
¶
Source code in /opt/hostedtoolcache/Python/3.10.12/x64/lib/python3.10/site-packages/kiara/interfaces/python_api/value.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
|