airflow.providers.google.cloud.links.automl

This module contains Google AutoML links.

Attributes

AUTOML_BASE_LINK

AUTOML_DATASET_LINK

AUTOML_DATASET_LIST_LINK

AUTOML_MODEL_LINK

AUTOML_MODEL_TRAIN_LINK

AUTOML_MODEL_PREDICT_LINK

Classes

AutoMLDatasetLink

Helper class for constructing AutoML Dataset link.

AutoMLDatasetListLink

Helper class for constructing AutoML Dataset List link.

AutoMLModelLink

Helper class for constructing AutoML Model link.

AutoMLModelTrainLink

Helper class for constructing AutoML Model Train link.

AutoMLModelPredictLink

Helper class for constructing AutoML Model Predict link.

Module Contents

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

Helper class for constructing AutoML Dataset link.

name = 'AutoML Dataset'[source]

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

key = 'automl_dataset'[source]
format_str = 'https://console.cloud.google.com/automl-tables/locations/{location}/datasets/{dataset_id}/schema...[source]
static persist(context, task_instance, dataset_id, project_id)[source]

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

Helper class for constructing AutoML Dataset List link.

name = 'AutoML Dataset List'[source]

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

key = 'automl_dataset_list'[source]
format_str = 'https://console.cloud.google.com/automl-tables/datasets?project={project_id}'[source]
static persist(context, task_instance, project_id)[source]

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

Helper class for constructing AutoML Model link.

name = 'AutoML Model'[source]

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

key = 'automl_model'[source]
format_str = 'https://console.cloud.google.com/automl-tables/locations/{location}/datasets/{dataset_id};modelI...[source]
static persist(context, task_instance, dataset_id, model_id, project_id)[source]

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

Helper class for constructing AutoML Model Train link.

name = 'AutoML Model Train'[source]

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

key = 'automl_model_train'[source]
format_str = 'https://console.cloud.google.com/automl-tables/locations/{location}/datasets/{dataset_id}/train?...[source]
static persist(context, task_instance, project_id)[source]

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

Helper class for constructing AutoML Model Predict link.

name = 'AutoML Model Predict'[source]

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

key = 'automl_model_predict'[source]
format_str = 'https://console.cloud.google.com/automl-tables/locations/{location}/datasets/{dataset_id};modelI...[source]
static persist(context, task_instance, model_id, project_id)[source]

Was this entry helpful?