The page you navigated to does not exist, so we brought you to the closest page to it.
flytekit.clis.helpers
| Property |
Type |
Description |
DOMAIN_PLACEHOLDER |
str |
|
PROJECT_PLACEHOLDER |
str |
|
VERSION_PLACEHOLDER |
str |
|
def display_help_with_error(
ctx: click.core.Context,
message: str,
)
| Parameter |
Type |
Description |
ctx |
click.core.Context |
|
message |
str |
|
def hydrate_registration_parameters(
resource_type: int,
project: str,
domain: str,
version: str,
entity: typing.Union[flyteidl.admin.launch_plan_pb2.LaunchPlan, flyteidl.admin.workflow_pb2.WorkflowSpec, flyteidl.admin.task_pb2.TaskSpec],
) -> typing.Tuple[flyteidl.core.identifier_pb2.Identifier, typing.Union[flyteidl.admin.launch_plan_pb2.LaunchPlan, flyteidl.admin.workflow_pb2.WorkflowSpec, flyteidl.admin.task_pb2.TaskSpec]]
This is called at registration time to fill out identifier fields (e.g. project, domain, version) that are mutable.
| Parameter |
Type |
Description |
resource_type |
int |
|
project |
str |
|
domain |
str |
|
version |
str |
|
entity |
typing.Union[flyteidl.admin.launch_plan_pb2.LaunchPlan, flyteidl.admin.workflow_pb2.WorkflowSpec, flyteidl.admin.task_pb2.TaskSpec] |
|
def parse_args_into_dict(
input_arguments,
)
Takes a tuple like (u’input_b=mystr’, u’input_c=18’) and returns a dictionary of input name to the
original string value
| Parameter |
Type |
Description |
input_arguments |
|
|
bool(‘False’) is True in Python, so we need to do some string parsing. Use the same words in ConfigParser
| Parameter |
Type |
Description |
str |
|
|