airflow.providers.google.cloud.links.cloud_build

Attributes

Classes

CloudBuildLink

Helper class for constructing Cloud Build link.

CloudBuildListLink

Helper class for constructing Cloud Build List link.

CloudBuildTriggersListLink

Helper class for constructing Cloud Build Triggers List link.

CloudBuildTriggerDetailsLink

Helper class for constructing Cloud Build Trigger Details link.

Module Contents

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

Helper class for constructing Cloud Build link.

name = 'Cloud Build Details'[source]

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

key = 'cloud_build_key'[source]
format_str = '/cloud-build/builds;region={region}/{build_id}?project={project_id}'[source]
static persist(context, task_instance, build_id, project_id, region)[source]

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

Helper class for constructing Cloud Build List link.

name = 'Cloud Builds List'[source]

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

key = 'cloud_build_list_key'[source]
format_str = '/cloud-build/builds;region={region}?project={project_id}'[source]
static persist(context, task_instance, project_id, region)[source]

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

Helper class for constructing Cloud Build Triggers List link.

name = 'Cloud Build Triggers List'[source]

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

key = 'cloud_build_triggers_list_key'[source]
format_str = '/cloud-build/triggers;region={region}?project={project_id}'[source]
static persist(context, task_instance, project_id, region)[source]

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

Helper class for constructing Cloud Build Trigger Details link.

name = 'Cloud Build Triggers Details'[source]

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

key = 'cloud_build_triggers_details_key'[source]
format_str = '/cloud-build/triggers;region={region}/edit/{trigger_id}?project={project_id}'[source]
static persist(context, task_instance, project_id, region, trigger_id)[source]

Was this entry helpful?