Airflow Summit 2026 is coming August 31 - September 2 in Austin, TX. Register now to secure your spot!

airflow.providers.google.cloud.links.cloud_run

Attributes

CLOUD_RUN_BASE_LINK

CLOUD_RUN_JOB_EXECUTION_DETAILS_LINK

Classes

CloudRunJobLoggingLink

Helper class for constructing Cloud Run Job Logging link.

CloudRunJobExecutionDetailsLink

Helper class for constructing a Cloud Run Job execution details link.

Module Contents

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

Helper class for constructing Cloud Run Job Logging link.

name = 'Cloud Run Job Logging'[source]

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

key = 'log_uri'[source]
format_str = '{log_uri}'[source]
classmethod persist(context, **value)[source]

Persist the complete URL expected by serialized operator links.

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

Helper class for constructing a Cloud Run Job execution details link.

name = 'Cloud Run Job Execution Details'[source]

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

key = 'cloud_run_job_execution_details'[source]
format_str = '/run/jobs/details/{region}/{job_name}/executions?project={project_id}'[source]
classmethod persist(context, **value)[source]

Persist the complete URL so it is usable while the execution is running.

Was this entry helpful?