0.1.dev2184+g1e0cbe7.d20250401

flytekit.models.core.compiler

Directory

Classes

Class Description
CompiledTask
CompiledWorkflow
CompiledWorkflowClosure
ConnectionSet

flytekit.models.core.compiler.CompiledTask

class CompiledTask(
    template,
)
Parameter Type
template

Methods

Method Description
from_flyte_idl() .
serialize_to_string()
short_string() :rtype: Text.
to_flyte_idl() :rtype: flyteidl.
verbose_string() :rtype: Text.

from_flyte_idl()

def from_flyte_idl(
    p,
) -> e: CompiledTask
Parameter Type
p

serialize_to_string()

def serialize_to_string()

short_string()

def short_string()

:rtype: Text

to_flyte_idl()

def to_flyte_idl()

:rtype: flyteidl.core.compiler_pb2.CompiledTask

verbose_string()

def verbose_string()

:rtype: Text

Properties

Property Type Description
is_empty
template
:rtype: TODO

flytekit.models.core.compiler.CompiledWorkflow

class CompiledWorkflow(
    template,
    connections,
)
Parameter Type
template
connections

Methods

Method Description
from_flyte_idl() .
serialize_to_string()
short_string() :rtype: Text.
to_flyte_idl() :rtype: flyteidl.
verbose_string() :rtype: Text.

from_flyte_idl()

def from_flyte_idl(
    p,
) -> e: CompiledWorkflow
Parameter Type
p

serialize_to_string()

def serialize_to_string()

short_string()

def short_string()

:rtype: Text

to_flyte_idl()

def to_flyte_idl()

:rtype: flyteidl.core.compiler_pb2.CompiledWorkflow

verbose_string()

def verbose_string()

:rtype: Text

Properties

Property Type Description
connections
:rtype: ConnectionSet
is_empty
template
:rtype: flytekit.models.core.workflow.WorkflowTemplate

flytekit.models.core.compiler.CompiledWorkflowClosure

class CompiledWorkflowClosure(
    primary,
    sub_workflows,
    tasks,
)
Parameter Type
primary
sub_workflows
tasks

Methods

Method Description
from_flyte_idl() .
serialize_to_string()
short_string() :rtype: Text.
to_flyte_idl() :rtype: flyteidl.
verbose_string() :rtype: Text.

from_flyte_idl()

def from_flyte_idl(
    p,
) -> e: CompiledWorkflowClosure
Parameter Type
p

serialize_to_string()

def serialize_to_string()

short_string()

def short_string()

:rtype: Text

to_flyte_idl()

def to_flyte_idl()

:rtype: flyteidl.core.compiler_pb2.CompiledWorkflowClosure

verbose_string()

def verbose_string()

:rtype: Text

Properties

Property Type Description
is_empty
primary
:rtype: CompiledWorkflow
sub_workflows
:rtype: list[CompiledWorkflow]
tasks
:rtype: list[CompiledTask]

flytekit.models.core.compiler.ConnectionSet

class ConnectionSet(
    upstream,
    downstream,
)
Parameter Type
upstream
downstream

Methods

Method Description
from_flyte_idl() .
serialize_to_string()
short_string() :rtype: Text.
to_flyte_idl() :rtype: flyteidl.
verbose_string() :rtype: Text.

from_flyte_idl()

def from_flyte_idl(
    p,
) -> e: ConnectionSet
Parameter Type
p

serialize_to_string()

def serialize_to_string()

short_string()

def short_string()

:rtype: Text

to_flyte_idl()

def to_flyte_idl()

:rtype: flyteidl.core.compiler_pb2.ConnectionSet

verbose_string()

def verbose_string()

:rtype: Text

Properties

Property Type Description
downstream
:rtype: dict[Text, ConnectionSet.IdList]
is_empty
upstream
:rtype: dict[Text, ConnectionSet.IdList]