airflow.providers.google.cloud.transfers.facebook_ads_to_gcs

This module contains Facebook Ad Reporting to GCS operators.

Module Contents

class airflow.providers.google.cloud.transfers.facebook_ads_to_gcs.FacebookAdsReportToGcsOperator(*, bucket_name: str, object_name: str, fields: List[str], params: Dict[str, Any] = None, parameters: Dict[str, Any] = None, gzip: bool = False, api_version: str = 'v6.0', gcp_conn_id: str = 'google_cloud_default', facebook_conn_id: str = 'facebook_default', impersonation_chain: Optional[Union[str, Sequence[str]]] = None, **kwargs)[source]

Bases: airflow.models.BaseOperator

Fetches the results from the Facebook Ads API as desired in the params Converts and saves the data as a temporary JSON file Uploads the JSON to Google Cloud Storage

See also

For more information on the Facebook Ads API, take a look at the API docs: https://developers.facebook.com/docs/marketing-apis/

See also

For more information on the Facebook Ads Python SDK, take a look at the docs: https://github.com/facebook/facebook-python-business-sdk

See also

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

Parameters
  • bucket_name (str) -- The GCS bucket to upload to

  • object_name (str) -- GCS path to save the object. Must be the full file path (ex. path/to/file.txt)

  • gcp_conn_id (str) -- Airflow Google Cloud connection ID

  • facebook_conn_id (str) -- Airflow Facebook Ads connection ID

  • api_version (str) -- The version of Facebook API. Default to v6.0

  • fields (List[str]) -- List of fields that is obtained from Facebook. Found in AdsInsights.Field class. https://developers.facebook.com/docs/marketing-api/insights/parameters/v6.0

  • params (Dict[str, Any]) -- Parameters that determine the query for Facebook. This keyword is deprecated, please use parameters keyword to pass the parameters. https://developers.facebook.com/docs/marketing-api/insights/parameters/v6.0

  • parameters (Dict[str, Any]) -- Parameters that determine the query for Facebook https://developers.facebook.com/docs/marketing-api/insights/parameters/v6.0

  • gzip (bool) -- Option to compress local file or file data for upload

  • impersonation_chain (Union[str, Sequence[str]]) -- 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 = ['facebook_conn_id', 'bucket_name', 'object_name', 'impersonation_chain', 'parameters'][source]
execute(self, context: dict)[source]

Was this entry helpful?