airflow.providers.google.cloud.links.alloy_db

This module contains Google Cloud AlloyDB links.

Attributes

Classes

AlloyDBClusterLink

Helper class for constructing AlloyDB cluster Link.

AlloyDBUsersLink

Helper class for constructing AlloyDB users Link.

AlloyDBBackupsLink

Helper class for constructing AlloyDB backups Link.

Module Contents

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

Helper class for constructing AlloyDB cluster Link.

name = 'AlloyDB Cluster'[source]

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

key = 'alloy_db_cluster'[source]
format_str = '/alloydb/locations/{location_id}/clusters/{cluster_id}?project={project_id}'[source]
static persist(context, task_instance, location_id, cluster_id, project_id)[source]

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

Helper class for constructing AlloyDB users Link.

name = 'AlloyDB Users'[source]

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

key = 'alloy_db_users'[source]
format_str = '/alloydb/locations/{location_id}/clusters/{cluster_id}/users?project={project_id}'[source]
static persist(context, task_instance, location_id, cluster_id, project_id)[source]

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

Helper class for constructing AlloyDB backups Link.

name = 'AlloyDB Backups'[source]

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

key = 'alloy_db_backups'[source]
format_str = '/alloydb/backups?project={project_id}'[source]
static persist(context, task_instance, project_id)[source]

Was this entry helpful?