apache-airflow-providers-google 15.0.0__py3-none-any.whl → 15.0.1rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
29
29
 
30
30
  __all__ = ["__version__"]
31
31
 
32
- __version__ = "15.0.0"
32
+ __version__ = "15.0.1"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
35
  "2.9.0"
@@ -26,7 +26,15 @@ from typing import Callable, TypeVar, cast
26
26
  import google
27
27
  import google.auth.transport.requests
28
28
  import google.oauth2.id_token
29
- from flask import Response, current_app, request as flask_request # type: ignore
29
+
30
+ try:
31
+ from flask import Response, current_app, request as flask_request # type: ignore
32
+ except ImportError:
33
+ raise ImportError(
34
+ "Google requires FAB provider to be installed in order to use this auth backend. "
35
+ "Please install the FAB provider by running: "
36
+ "pip install apache-airflow-providers-google[fab]"
37
+ )
30
38
  from google.auth import exceptions
31
39
  from google.auth.transport.requests import AuthorizedSession
32
40
  from google.oauth2 import service_account
@@ -26,79 +26,6 @@ def get_provider_info():
26
26
  "package-name": "apache-airflow-providers-google",
27
27
  "name": "Google",
28
28
  "description": "Google services including:\n\n - `Google Ads <https://ads.google.com/>`__\n - `Google Cloud (GCP) <https://cloud.google.com/>`__\n - `Google Firebase <https://firebase.google.com/>`__\n - `Google LevelDB <https://github.com/google/leveldb/>`__\n - `Google Marketing Platform <https://marketingplatform.google.com/>`__\n - `Google Workspace <https://workspace.google.com/>`__ (formerly Google Suite)\n",
29
- "state": "ready",
30
- "source-date-epoch": 1743836162,
31
- "versions": [
32
- "15.0.0",
33
- "14.1.0",
34
- "14.0.0",
35
- "12.0.0",
36
- "11.0.0",
37
- "10.26.0",
38
- "10.25.0",
39
- "10.24.0",
40
- "10.23.0",
41
- "10.22.0",
42
- "10.21.1",
43
- "10.21.0",
44
- "10.20.0",
45
- "10.19.0",
46
- "10.18.0",
47
- "10.17.0",
48
- "10.16.0",
49
- "10.15.0",
50
- "10.14.0",
51
- "10.13.1",
52
- "10.13.0",
53
- "10.12.0",
54
- "10.11.1",
55
- "10.11.0",
56
- "10.10.1",
57
- "10.10.0",
58
- "10.9.0",
59
- "10.8.0",
60
- "10.7.0",
61
- "10.6.0",
62
- "10.5.0",
63
- "10.4.0",
64
- "10.3.0",
65
- "10.2.0",
66
- "10.1.1",
67
- "10.1.0",
68
- "10.0.0",
69
- "9.0.0",
70
- "8.12.0",
71
- "8.11.0",
72
- "8.10.0",
73
- "8.9.0",
74
- "8.8.0",
75
- "8.7.0",
76
- "8.6.0",
77
- "8.5.0",
78
- "8.4.0",
79
- "8.3.0",
80
- "8.2.0",
81
- "8.1.0",
82
- "8.0.0",
83
- "7.0.0",
84
- "6.8.0",
85
- "6.7.0",
86
- "6.6.0",
87
- "6.5.0",
88
- "6.4.0",
89
- "6.3.0",
90
- "6.2.0",
91
- "6.1.0",
92
- "6.0.0",
93
- "5.1.0",
94
- "5.0.0",
95
- "4.0.0",
96
- "3.0.0",
97
- "2.2.0",
98
- "2.1.0",
99
- "2.0.0",
100
- "1.0.0",
101
- ],
102
29
  "integrations": [
103
30
  {
104
31
  "integration-name": "Google Analytics (GA4)",
@@ -1585,97 +1512,4 @@ def get_provider_info():
1585
1512
  "airflow.providers.google.cloud.log.gcs_task_handler.GCSTaskHandler",
1586
1513
  "airflow.providers.google.cloud.log.stackdriver_task_handler.StackdriverTaskHandler",
1587
1514
  ],
1588
- "dependencies": [
1589
- "apache-airflow>=2.9.0",
1590
- "apache-airflow-providers-common-compat>=1.4.0",
1591
- "apache-airflow-providers-common-sql>=1.20.0",
1592
- "asgiref>=3.5.2",
1593
- "dill>=0.2.3",
1594
- "gcloud-aio-auth>=5.2.0",
1595
- "gcloud-aio-bigquery>=6.1.2",
1596
- "gcloud-aio-storage>=9.0.0",
1597
- "gcsfs>=2023.10.0",
1598
- "google-ads>=26.0.0",
1599
- "google-analytics-admin>=0.9.0",
1600
- "google-api-core>=2.11.0,!=2.16.0,!=2.18.0",
1601
- "google-api-python-client>=2.0.2",
1602
- "google-auth>=2.29.0",
1603
- "google-auth-httplib2>=0.0.1",
1604
- "google-cloud-aiplatform[evaluation]>=1.73.0",
1605
- "google-cloud-alloydb>=0.4.0",
1606
- "google-cloud-automl>=2.12.0",
1607
- "google-cloud-bigquery>=3.4.0,!=3.21.*,!=3.22.0,!=3.23.*",
1608
- "google-cloud-bigquery-datatransfer>=3.13.0",
1609
- "google-cloud-bigtable>=2.17.0",
1610
- "google-cloud-build>=3.31.0",
1611
- "google-cloud-compute>=1.10.0",
1612
- "google-cloud-container>=2.52.0",
1613
- "google-cloud-datacatalog>=3.23.0",
1614
- "google-cloud-dataflow-client>=0.8.6",
1615
- "google-cloud-dataform>=0.5.0",
1616
- "google-cloud-dataplex>=2.6.0",
1617
- "google-cloud-dataproc>=5.12.0",
1618
- "google-cloud-dataproc-metastore>=1.12.0",
1619
- "google-cloud-dlp>=3.12.0",
1620
- "google-cloud-kms>=2.15.0",
1621
- "google-cloud-language>=2.9.0",
1622
- "google-cloud-logging>=3.5.0",
1623
- "google-cloud-managedkafka>=0.1.6",
1624
- "google-cloud-memcache>=1.7.0",
1625
- "google-cloud-monitoring>=2.18.0",
1626
- "google-cloud-orchestration-airflow>=1.10.0",
1627
- "google-cloud-os-login>=2.9.1",
1628
- "google-cloud-pubsub>=2.21.3",
1629
- "google-cloud-redis>=2.12.0",
1630
- "google-cloud-secret-manager>=2.16.0",
1631
- "google-cloud-spanner>=3.11.1,!=3.49.0",
1632
- "google-cloud-speech>=2.18.0",
1633
- "google-cloud-storage>=2.7.0",
1634
- "google-cloud-storage-transfer>=1.4.1",
1635
- "google-cloud-tasks>=2.13.0",
1636
- "google-cloud-texttospeech>=2.14.1",
1637
- "google-cloud-translate>=3.16.0",
1638
- "google-cloud-videointelligence>=2.11.0",
1639
- "google-cloud-vision>=3.4.0",
1640
- "google-cloud-workflows>=1.10.0",
1641
- "google-cloud-run>=0.10.0",
1642
- "google-cloud-batch>=0.13.0",
1643
- "grpcio-gcp>=0.2.2",
1644
- "httpx>=0.25.0",
1645
- "looker-sdk>=22.4.0,!=24.18.0",
1646
- "pandas-gbq>=0.7.0",
1647
- "pandas>=2.1.2,<2.2",
1648
- "proto-plus>=1.19.6",
1649
- "pyarrow>=14.0.1",
1650
- "python-slugify>=7.0.0",
1651
- "PyOpenSSL>=23.0.0",
1652
- "sqlalchemy-bigquery>=1.2.1",
1653
- "sqlalchemy-spanner>=1.6.2",
1654
- "tenacity>=8.1.0",
1655
- "immutabledict>=4.2.0",
1656
- "types-protobuf!=5.29.1.20250402",
1657
- ],
1658
- "optional-dependencies": {
1659
- "apache.beam": [
1660
- 'apache-beam[gcp]>=2.53.0; python_version < "3.12"',
1661
- 'apache-beam[gcp]>=2.57.0; python_version >= "3.12"',
1662
- ],
1663
- "cncf.kubernetes": ["apache-airflow-providers-cncf-kubernetes>=10.1.0"],
1664
- "leveldb": ["plyvel>=1.5.1"],
1665
- "oracle": ["apache-airflow-providers-oracle>=3.1.0"],
1666
- "facebook": ["apache-airflow-providers-facebook>=2.2.0"],
1667
- "amazon": ["apache-airflow-providers-amazon>=2.6.0"],
1668
- "apache.cassandra": ["apache-airflow-providers-apache-cassandra"],
1669
- "microsoft.azure": ["apache-airflow-providers-microsoft-azure"],
1670
- "microsoft.mssql": ["apache-airflow-providers-microsoft-mssql"],
1671
- "mysql": ["apache-airflow-providers-mysql"],
1672
- "openlineage": ["apache-airflow-providers-openlineage"],
1673
- "postgres": ["apache-airflow-providers-postgres"],
1674
- "presto": ["apache-airflow-providers-presto"],
1675
- "salesforce": ["apache-airflow-providers-salesforce"],
1676
- "sftp": ["apache-airflow-providers-sftp"],
1677
- "ssh": ["apache-airflow-providers-ssh"],
1678
- "trino": ["apache-airflow-providers-trino"],
1679
- },
1680
- "devel-dependencies": [],
1681
1515
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-google
3
- Version: 15.0.0
3
+ Version: 15.0.1rc1
4
4
  Summary: Provider package apache-airflow-providers-google for Apache Airflow
5
5
  Keywords: airflow-provider,google,airflow,integration
6
6
  Author-email: Apache Software Foundation <dev@airflow.apache.org>
@@ -20,9 +20,9 @@ Classifier: Programming Language :: Python :: 3.10
20
20
  Classifier: Programming Language :: Python :: 3.11
21
21
  Classifier: Programming Language :: Python :: 3.12
22
22
  Classifier: Topic :: System :: Monitoring
23
- Requires-Dist: apache-airflow>=2.9.0
24
- Requires-Dist: apache-airflow-providers-common-compat>=1.4.0
25
- Requires-Dist: apache-airflow-providers-common-sql>=1.20.0
23
+ Requires-Dist: apache-airflow>=2.9.0rc0
24
+ Requires-Dist: apache-airflow-providers-common-compat>=1.4.0rc0
25
+ Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc0
26
26
  Requires-Dist: asgiref>=3.5.2
27
27
  Requires-Dist: dill>=0.2.3
28
28
  Requires-Dist: gcloud-aio-auth>=5.2.0
@@ -93,6 +93,7 @@ Requires-Dist: apache-beam[gcp]>=2.53.0 ; extra == "apache-beam" and ( python_ve
93
93
  Requires-Dist: apache-beam[gcp]>=2.57.0 ; extra == "apache-beam" and ( python_version >= "3.12")
94
94
  Requires-Dist: apache-airflow-providers-apache-cassandra ; extra == "apache-cassandra"
95
95
  Requires-Dist: apache-airflow-providers-cncf-kubernetes>=10.1.0 ; extra == "cncf-kubernetes"
96
+ Requires-Dist: apache-airflow-providers-fab>=2.0.0 ; extra == "fab"
96
97
  Requires-Dist: apache-airflow-providers-facebook>=2.2.0 ; extra == "facebook"
97
98
  Requires-Dist: plyvel>=1.5.1 ; extra == "leveldb"
98
99
  Requires-Dist: apache-airflow-providers-microsoft-azure ; extra == "microsoft-azure"
@@ -107,8 +108,8 @@ Requires-Dist: apache-airflow-providers-sftp ; extra == "sftp"
107
108
  Requires-Dist: apache-airflow-providers-ssh ; extra == "ssh"
108
109
  Requires-Dist: apache-airflow-providers-trino ; extra == "trino"
109
110
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
110
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-google/15.0.0/changelog.html
111
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-google/15.0.0
111
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-google/15.0.1/changelog.html
112
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-google/15.0.1
112
113
  Project-URL: Mastodon, https://fosstodon.org/@airflow
113
114
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
114
115
  Project-URL: Source Code, https://github.com/apache/airflow
@@ -117,6 +118,7 @@ Provides-Extra: amazon
117
118
  Provides-Extra: apache-beam
118
119
  Provides-Extra: apache-cassandra
119
120
  Provides-Extra: cncf-kubernetes
121
+ Provides-Extra: fab
120
122
  Provides-Extra: facebook
121
123
  Provides-Extra: leveldb
122
124
  Provides-Extra: microsoft-azure
@@ -156,7 +158,7 @@ Provides-Extra: trino
156
158
 
157
159
  Package ``apache-airflow-providers-google``
158
160
 
159
- Release: ``15.0.0``
161
+ Release: ``15.0.1``
160
162
 
161
163
 
162
164
  Google services including:
@@ -176,7 +178,7 @@ This is a provider package for ``google`` provider. All classes for this provide
176
178
  are in ``airflow.providers.google`` python package.
177
179
 
178
180
  You can find package information and changelog for the provider
179
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-google/15.0.0/>`_.
181
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-google/15.0.1/>`_.
180
182
 
181
183
  Installation
182
184
  ------------
@@ -300,5 +302,5 @@ Dependent package
300
302
  ======================================================================================================================== ====================
301
303
 
302
304
  The changelog for the provider package can be found in the
303
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-google/15.0.0/changelog.html>`_.
305
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-google/15.0.1/changelog.html>`_.
304
306
 
@@ -1,6 +1,6 @@
1
1
  airflow/providers/google/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
2
- airflow/providers/google/__init__.py,sha256=lNhJDxFevcCKp8wCicVal6M_zIXKHxvnCi-Tx3DrDuM,1494
3
- airflow/providers/google/get_provider_info.py,sha256=TjHgPknRlZVL2NuPf-PB_A5AZgmvETIaA2LPhw7xuX0,86526
2
+ airflow/providers/google/__init__.py,sha256=JIkXuxz4FxAAfI4AVcDXO6V60Zc-cnXZSErVg3i5f8Y,1494
3
+ airflow/providers/google/get_provider_info.py,sha256=QhSHm8w6f1AdowS57g-2_JfIEaY0zTMGHDbzy4lwUJM,80607
4
4
  airflow/providers/google/go_module_utils.py,sha256=XVM-IGME6CPgJA8fgDgkusFc4fz3lEghZaZ4elBkv7s,1780
5
5
  airflow/providers/google/version_compat.py,sha256=aHg90_DtgoSnQvILFICexMyNlHlALBdaeWqkX3dFDug,1605
6
6
  airflow/providers/google/3rd-party-licenses/LICENSES.txt,sha256=vplRFSgyGOzReZVwChEgsa9r2t6hLpZ1hjFR2iN3W-k,1535
@@ -266,7 +266,7 @@ airflow/providers/google/common/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSG
266
266
  airflow/providers/google/common/consts.py,sha256=KKjQX0FO6HP4MuzS8DDfWPoQNk0mhdOrYe5CzDUx2e4,1050
267
267
  airflow/providers/google/common/deprecated.py,sha256=9N4A6AQ3sisIe6P9dt9vXuiWHuGPqKUKk2l-3DEUDT0,7953
268
268
  airflow/providers/google/common/auth_backend/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
269
- airflow/providers/google/common/auth_backend/google_openid.py,sha256=a_uoFwkLqVtSyaot39QdbinvZm4sYRcnuNB3vWzlQVw,4960
269
+ airflow/providers/google/common/auth_backend/google_openid.py,sha256=vqsiRJ_eMkUEVnne-A6nGhEO8zCmqyVxTURc1sseyv8,5224
270
270
  airflow/providers/google/common/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
271
271
  airflow/providers/google/common/hooks/base_google.py,sha256=2GvOKpmjLEqhk3MnZNqJKNo_OB9lZ7nFkG1Tm0FcN0s,32745
272
272
  airflow/providers/google/common/hooks/discovery_api.py,sha256=G_VJZbw4ye33I9JO-WLiyUoRz7WdZ6Yn5ZhcCFkf5ZQ,6482
@@ -315,7 +315,7 @@ airflow/providers/google/suite/transfers/gcs_to_gdrive.py,sha256=p3yRcEDp_ffxlHj
315
315
  airflow/providers/google/suite/transfers/gcs_to_sheets.py,sha256=iOrVicksPRSqRTvV2DX5ZgOHHGZekpCr3DvBFBquo_M,4003
316
316
  airflow/providers/google/suite/transfers/local_to_drive.py,sha256=NXAX1r9WGvW0X8af6CKqfFeiHjczRJJzgSOqMRUtrYg,5794
317
317
  airflow/providers/google/suite/transfers/sql_to_sheets.py,sha256=XFc95mXTGlAP9FbcYxOvjHWgiFN03skxXxAUGMqZXcE,4909
318
- apache_airflow_providers_google-15.0.0.dist-info/entry_points.txt,sha256=Ay1Uo7uHxdXCxWew3CyBHumZ44Ld-iR7AcSR2fY-PLw,102
319
- apache_airflow_providers_google-15.0.0.dist-info/WHEEL,sha256=_2ozNFCLWc93bK4WKHCO-eDUENDlo-dgc9cU3qokYO4,82
320
- apache_airflow_providers_google-15.0.0.dist-info/METADATA,sha256=0EYrPSuajlp7oSLnpQlUMABOGteQHbkqqdHWgbwtacw,16339
321
- apache_airflow_providers_google-15.0.0.dist-info/RECORD,,
318
+ apache_airflow_providers_google-15.0.1rc1.dist-info/entry_points.txt,sha256=Ay1Uo7uHxdXCxWew3CyBHumZ44Ld-iR7AcSR2fY-PLw,102
319
+ apache_airflow_providers_google-15.0.1rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
320
+ apache_airflow_providers_google-15.0.1rc1.dist-info/METADATA,sha256=oc_WnEz2Rwl3FQjMP1jSRjGOfuwpgieZz6X3Hbied3A,16439
321
+ apache_airflow_providers_google-15.0.1rc1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: flit 3.11.0
2
+ Generator: flit 3.12.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any