Skip to content

DependencyRef

class: DependencyRef

class DependencyRef(BaseModel):
    ref: str
    outputs: dict[str, str] = ...
    outputs_mock: dict[str, str] = ...

Fields

Field Type Default Since
ref str - 0.6.0
outputs dict[str, str] ... unreleased
outputs_mock dict[str, str] ... unreleased

Changes

Version Change
0.7.0 field 'outputs' default: True -> ...
0.7.0 field 'outputs' type: bool -> dict[str, str]
0.7.0 added optional field 'outputs_mock' (default: ...)
0.6.0 Made public