This is an automated email from the ASF dual-hosted git repository.
shahar pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new f6844d84579 Update default api version of campaign manager sensor
(#64265)
f6844d84579 is described below
commit f6844d84579a5fd992d3c8c4d61d69ce96a76821
Author: Nitochkin <[email protected]>
AuthorDate: Fri Apr 3 12:18:21 2026 +0200
Update default api version of campaign manager sensor (#64265)
Co-authored-by: Anton Nitochkin <[email protected]>
---
.../providers/google/marketing_platform/sensors/campaign_manager.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/providers/google/src/airflow/providers/google/marketing_platform/sensors/campaign_manager.py
b/providers/google/src/airflow/providers/google/marketing_platform/sensors/campaign_manager.py
index 7325663fd81..5c723fa910e 100644
---
a/providers/google/src/airflow/providers/google/marketing_platform/sensors/campaign_manager.py
+++
b/providers/google/src/airflow/providers/google/marketing_platform/sensors/campaign_manager.py
@@ -44,7 +44,7 @@ class GoogleCampaignManagerReportSensor(BaseSensorOperator):
:param profile_id: The DFA user profile ID.
:param report_id: The ID of the report.
:param file_id: The ID of the report file.
- :param api_version: The version of the api that will be requested, for
example 'v4'.
+ :param api_version: The version of the api that will be requested, for
example 'v5'.
:param gcp_conn_id: The connection ID to use when fetching connection info.
:param impersonation_chain: Optional service account to impersonate using
short-term
credentials, or chained list of accounts required to get the
access_token
@@ -79,7 +79,7 @@ class GoogleCampaignManagerReportSensor(BaseSensorOperator):
profile_id: str,
report_id: str,
file_id: str,
- api_version: str = "v4",
+ api_version: str = "v5",
gcp_conn_id: str = "google_cloud_default",
mode: str = "reschedule",
poke_interval: int = 60 * 5,