0.1.dev2192+g7c539c3.d20250403
flytekit.models.project
Directory
Classes
Class | Description |
---|---|
Project |
flytekit.models.project.Project
class Project(
id,
name,
description,
state,
)
A project represents a logical grouping used to organize entities (tasks, workflows, executions) in the Flyte platform.
Parameter | Type |
---|---|
id |
|
name |
|
description |
|
state |
Methods
Method | Description |
---|---|
active_project() |
|
archived_project() |
|
from_flyte_idl() |
. |
serialize_to_string() |
|
short_string() |
:rtype: Text. |
to_flyte_idl() |
:rtype: flyteidl. |
verbose_string() |
:rtype: Text. |
active_project()
def active_project(
id,
)
Parameter | Type |
---|---|
id |
archived_project()
def archived_project(
id,
)
Parameter | Type |
---|---|
id |
from_flyte_idl()
def from_flyte_idl(
pb2_object,
) -> e: Project
Parameter | Type |
---|---|
pb2_object |
serialize_to_string()
def serialize_to_string()
short_string()
def short_string()
:rtype: Text
to_flyte_idl()
def to_flyte_idl()
:rtype: flyteidl.admin.project_pb2.Project
verbose_string()
def verbose_string()
:rtype: Text
Properties
Property | Type | Description |
---|---|---|
description |
A concise description for this project. :rtype: Text |
|
id |
A globally unique identifier associated with this project :rtype: Text |
|
is_empty |
||
name |
A human-readable name for this project. :rtype: Text |
|
state |
The state of this project. :rtype: int |