Skip to content

Commit

Permalink
add common models
Browse files Browse the repository at this point in the history
Signed-off-by: Yee Hing Tong <[email protected]>
  • Loading branch information
wild-endeavor committed Oct 29, 2021
1 parent c6efe63 commit 0140acb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions flytekit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,25 @@
Secret
SecurityContext
Common Flyte IDL Objects
=========================
.. autosummary::
:nosignatures:
:template: custom.rst
:toctree: generated/
AuthRole
Labels
Annotations
WorkflowExecutionPhase
Blob
BlobMetadata
Literal
Scalar
LiteralType
BlobType
"""

import sys
Expand Down Expand Up @@ -162,6 +181,10 @@
from flytekit.core.workflow import WorkflowFailurePolicy, reference_workflow, workflow
from flytekit.extras.persistence import GCSPersistence, HttpPersistence, S3Persistence
from flytekit.loggers import logger
from flytekit.models.admin.common import Annotations, AuthRole, Labels
from flytekit.models.core.execution import WorkflowExecutionPhase
from flytekit.models.core.literals import Blob, BlobMetadata, Literal, Scalar
from flytekit.models.core.types import BlobType, LiteralType
from flytekit.types import directory, file, schema

__version__ = "0.0.0+develop"
Expand Down

0 comments on commit 0140acb

Please sign in to comment.