airflow.providers.google.cloud.triggers.cloud_build

Module Contents

Classes

CloudBuildCreateBuildTrigger

CloudBuildCreateBuildTrigger run on the trigger worker to perform create Build operation

class airflow.providers.google.cloud.triggers.cloud_build.CloudBuildCreateBuildTrigger(id_, project_id, gcp_conn_id='google_cloud_default', impersonation_chain=None, delegate_to=None, poll_interval=4.0)[source]

Bases: airflow.triggers.base.BaseTrigger

CloudBuildCreateBuildTrigger run on the trigger worker to perform create Build operation

Parameters
  • id – The ID of the build.

  • project_id (str | None) – Google Cloud Project where the job is running

  • gcp_conn_id (str) – Optional, the connection ID used to connect to Google Cloud Platform.

  • impersonation_chain (str | Sequence[str] | None) – Optional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated).

  • delegate_to (str | None) – The account to impersonate using domain-wide delegation of authority, if any. For this to work, the service account making the request must have domain-wide delegation enabled.

  • poll_interval (float) – polling period in seconds to check for the status

serialize()[source]

Serializes CloudBuildCreateBuildTrigger arguments and classpath.

async run()[source]

Gets current build execution status and yields a TriggerEvent

Was this entry helpful?