0.1.dev2184+g1e0cbe7.d20250401
flytekit.core.reference
Directory
Methods
Method | Description |
---|---|
get_reference_entity() |
See the documentation for :py:class:`flytekit. |
Methods
get_reference_entity()
def get_reference_entity(
resource_type: int,
project: str,
domain: str,
name: str,
version: str,
inputs: Dict[str, Type],
outputs: Dict[str, Type],
) -> n:
See the documentation for :py:class:flytekit.reference_task
and :py:class:flytekit.reference_workflow
as well.
This function is the general form of the two aforementioned functions. It’s better for programmatic usage, as the interface is passed in as arguments instead of analyzed from type annotations.
.. literalinclude:: ../../../tests/flytekit/unit/core/test_references.py :start-after: # docs_ref_start :end-before: # docs_ref_end :language: python :dedent: 4
Parameter | Type |
---|---|
resource_type |
int |
project |
str |
domain |
str |
name |
str |
version |
str |
inputs |
Dict[str, Type] |
outputs |
Dict[str, Type] |