airflow.providers.google.cloud.links.bigquery

This module contains Google BigQuery links.

Module Contents

Classes

BigQueryDatasetLink

Helper class for constructing BigQuery Dataset Link.

BigQueryTableLink

Helper class for constructing BigQuery Table Link.

Attributes

BIGQUERY_BASE_LINK

BIGQUERY_DATASET_LINK

BIGQUERY_TABLE_LINK

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

Helper class for constructing BigQuery Dataset Link.

name = 'BigQuery Dataset'[source]
key = 'bigquery_dataset'[source]
format_str[source]
static persist(context, task_instance, dataset_id, project_id)[source]

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

Helper class for constructing BigQuery Table Link.

name = 'BigQuery Table'[source]
key = 'bigquery_table'[source]
format_str[source]
static persist(context, task_instance, project_id, table_id, dataset_id=None)[source]

Was this entry helpful?