airflow.providers.google.common.links.storage

This module contains a link for GCS Storage assets.

Attributes

BASE_LINK

GCS_STORAGE_LINK

GCS_FILE_DETAILS_LINK

Classes

StorageLink

Helper class for constructing GCS Storage link.

FileDetailsLink

Helper class for constructing GCS file details link.

Module Contents

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

Helper class for constructing GCS Storage link.

name = 'GCS Storage'[source]

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

key = 'storage_conf'[source]
format_str = 'https://console.cloud.google.com/storage/browser/{uri};tab=objects?project={project_id}'[source]
static persist(context, task_instance, uri, project_id)[source]

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

Helper class for constructing GCS file details link.

name = 'GCS File Details'[source]

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

key = 'file_details'[source]
format_str = 'https://console.cloud.google.com/storage/browser/_details/{uri};tab=live_object?project={project_id}'[source]
static persist(context, task_instance, uri, project_id)[source]

Was this entry helpful?