airflow.providers.google.marketing_platform.sensors.campaign_manager

This module contains Google Campaign Manager sensor.

Module Contents

Classes

GoogleCampaignManagerReportSensor

Check if report is ready.

class airflow.providers.google.marketing_platform.sensors.campaign_manager.GoogleCampaignManagerReportSensor(*, profile_id, report_id, file_id, api_version='v4', gcp_conn_id='google_cloud_default', delegate_to=None, mode='reschedule', poke_interval=60 * 5, impersonation_chain=None, **kwargs)[source]

Bases: airflow.sensors.base.BaseSensorOperator

Check if report is ready.

See also

For more information on how to use this operator, take a look at the guide: Waiting for a report

Parameters
  • profile_id (str) – The DFA user profile ID.

  • report_id (str) – The ID of the report.

  • file_id (str) – The ID of the report file.

  • api_version (str) – The version of the api that will be requested, for example ‘v4’.

  • gcp_conn_id (str) – The connection ID to use when fetching connection info.

  • 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.

  • 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).

template_fields: Sequence[str] = ('profile_id', 'report_id', 'file_id', 'impersonation_chain')[source]
poke(context)[source]

Override when deriving this class.

Was this entry helpful?