airflow.providers.google.cloud.links.bigtable

Attributes

BIGTABLE_BASE_LINK

BIGTABLE_INSTANCE_LINK

BIGTABLE_CLUSTER_LINK

BIGTABLE_TABLES_LINK

Classes

BigtableInstanceLink

Helper class for constructing Bigtable Instance link.

BigtableClusterLink

Helper class for constructing Bigtable Cluster link.

BigtableTablesLink

Helper class for constructing Bigtable Tables link.

Module Contents

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

Helper class for constructing Bigtable Instance link.

name = 'Bigtable Instance'[source]

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

key = 'instance_key'[source]
format_str = '/bigtable/instances/{instance_id}/overview?project={project_id}'[source]
static persist(context, task_instance)[source]

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

Helper class for constructing Bigtable Cluster link.

name = 'Bigtable Cluster'[source]

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

key = 'cluster_key'[source]
format_str = '/bigtable/instances/{instance_id}/clusters/{cluster_id}?project={project_id}'[source]
static persist(context, task_instance)[source]

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

Helper class for constructing Bigtable Tables link.

name = 'Bigtable Tables'[source]

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

key = 'tables_key'[source]
format_str = '/bigtable/instances/{instance_id}/tables?project={project_id}'[source]
static persist(context, task_instance)[source]

Was this entry helpful?