airflow.providers.google.cloud.links.mlengine

This module contains Google ML Engine links.

Attributes

MLENGINE_BASE_LINK

MLENGINE_MODEL_DETAILS_LINK

MLENGINE_MODEL_VERSION_DETAILS_LINK

MLENGINE_MODELS_LIST_LINK

MLENGINE_JOB_DETAILS_LINK

MLENGINE_JOBS_LIST_LINK

Classes

MLEngineModelLink

Helper class for constructing ML Engine link.

MLEngineModelsListLink

Helper class for constructing ML Engine link.

MLEngineJobDetailsLink

Helper class for constructing ML Engine link.

MLEngineModelVersionDetailsLink

Helper class for constructing ML Engine link.

MLEngineJobSListLink

Helper class for constructing ML Engine link.

Module Contents

Bases: airflow.providers.google.cloud.links.base.BaseGoogleLink

Helper class for constructing ML Engine link.

name = 'MLEngine Model'[source]

Name of the link. This will be the button name on the task UI.

key = 'ml_engine_model'[source]
format_str = 'https://console.cloud.google.com/ai-platform/models/{model_id}/versions?project={project_id}'[source]
static persist(context, task_instance, model_id, project_id)[source]

Bases: airflow.providers.google.cloud.links.base.BaseGoogleLink

Helper class for constructing ML Engine link.

name = 'MLEngine Models List'[source]

Name of the link. This will be the button name on the task UI.

key = 'ml_engine_models_list'[source]
format_str = 'https://console.cloud.google.com/ai-platform/models/?project={project_id}'[source]
static persist(context, task_instance, project_id)[source]

Bases: airflow.providers.google.cloud.links.base.BaseGoogleLink

Helper class for constructing ML Engine link.

name = 'MLEngine Job Details'[source]

Name of the link. This will be the button name on the task UI.

key = 'ml_engine_job_details'[source]
format_str = 'https://console.cloud.google.com/ai-platform/jobs/{job_id}?project={project_id}'[source]
static persist(context, task_instance, job_id, project_id)[source]

Bases: airflow.providers.google.cloud.links.base.BaseGoogleLink

Helper class for constructing ML Engine link.

name = 'MLEngine Version Details'[source]

Name of the link. This will be the button name on the task UI.

key = 'ml_engine_version_details'[source]
format_str = 'https://console.cloud.google.com/ai-platform/models/{model_id}/versions/{version_id}/performance...[source]
static persist(context, task_instance, model_id, project_id, version_id)[source]

Bases: airflow.providers.google.cloud.links.base.BaseGoogleLink

Helper class for constructing ML Engine link.

name = 'MLEngine Jobs List'[source]

Name of the link. This will be the button name on the task UI.

key = 'ml_engine_jobs_list'[source]
format_str = 'https://console.cloud.google.com/ai-platform/jobs?project={project_id}'[source]
static persist(context, task_instance, project_id)[source]

Was this entry helpful?