blob: 4f16acc01fb40973c6bab0288dbb5ac2d91583c8 [file] [log] [blame]
:mod:`airflow.providers.google.ads.operators.ads`
=================================================
.. py:module:: airflow.providers.google.ads.operators.ads
.. autoapi-nested-parse::
This module contains Google Ad to GCS operators.
Module Contents
---------------
.. py:class:: GoogleAdsListAccountsOperator(*, bucket: str, object_name: str, gcp_conn_id: str = 'google_cloud_default', google_ads_conn_id: str = 'google_ads_default', gzip: bool = False, impersonation_chain: Optional[Union[str, Sequence[str]]] = None, **kwargs)
Bases: :class:`airflow.models.BaseOperator`
Saves list of customers on GCS in form of a csv file.
The resulting list of customers is based on your OAuth credentials. The request returns a list
of all accounts that you are able to act upon directly given your current credentials. This will
not necessarily include all accounts within the account hierarchy; rather, it will only include
accounts where your authenticated user has been added with admin or other rights in the account.
..seealso::
https://developers.google.com/google-ads/api/reference/rpc
.. seealso::
For more information on how to use this operator, take a look at the guide:
:ref:`howto/operator:GoogleAdsListAccountsOperator`
:param bucket: The GCS bucket to upload to
:type bucket: str
:param object_name: GCS path to save the csv file. Must be the full file path (ex. `path/to/file.csv`)
:type object_name: str
:param gcp_conn_id: Airflow Google Cloud connection ID
:type gcp_conn_id: str
:param google_ads_conn_id: Airflow Google Ads connection ID
:type google_ads_conn_id: str
:param page_size: The number of results per API page request. Max 10,000
:type page_size: int
:param gzip: Option to compress local file or file data for upload
:type gzip: bool
:param impersonation_chain: 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).
:type impersonation_chain: Union[str, Sequence[str]]
.. attribute:: template_fields
:annotation: = ['bucket', 'object_name', 'impersonation_chain']
.. method:: execute(self, context: dict)