apache-airflow-providers-google 10.11.0__py3-none-any.whl → 10.11.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.
@@ -28,7 +28,7 @@ import packaging.version
28
28
 
29
29
  __all__ = ["__version__"]
30
30
 
31
- __version__ = "10.11.0"
31
+ __version__ = "10.11.1"
32
32
 
33
33
  try:
34
34
  from airflow import __version__ as airflow_version
@@ -31,9 +31,9 @@ from airflow.hooks.base import BaseHook
31
31
  from airflow.providers.google.common.hooks.base_google import get_field
32
32
 
33
33
  if TYPE_CHECKING:
34
- from google.ads.googleads.v14.services.services.customer_service import CustomerServiceClient
35
- from google.ads.googleads.v14.services.services.google_ads_service import GoogleAdsServiceClient
36
- from google.ads.googleads.v14.services.types.google_ads_service import GoogleAdsRow
34
+ from google.ads.googleads.v15.services.services.customer_service import CustomerServiceClient
35
+ from google.ads.googleads.v15.services.services.google_ads_service import GoogleAdsServiceClient
36
+ from google.ads.googleads.v15.services.types.google_ads_service import GoogleAdsRow
37
37
  from google.api_core.page_iterator import GRPCIterator
38
38
 
39
39
 
@@ -72,7 +72,7 @@ class GoogleAdsHook(BaseHook):
72
72
  :param api_version: The Google Ads API version to use.
73
73
  """
74
74
 
75
- default_api_version = "v14"
75
+ default_api_version = "v15"
76
76
 
77
77
  def __init__(
78
78
  self,
@@ -1725,7 +1725,7 @@ class BigQueryHook(GoogleBaseHook, DbApiHook):
1725
1725
  # we check to make sure the passed source format is valid
1726
1726
  # if it's not, we raise a ValueError
1727
1727
  # Refer to this link for more details:
1728
- # https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs#configuration.query.tableDefinitions.(key).sourceFormat # noqa
1728
+ # https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs#configuration.query.tableDefinitions.(key).sourceFormat
1729
1729
 
1730
1730
  if schema_fields is None and not autodetect:
1731
1731
  raise ValueError("You must either pass a schema or autodetect=True.")
@@ -2137,7 +2137,7 @@ class BigQueryHook(GoogleBaseHook, DbApiHook):
2137
2137
  # BigQuery also allows you to define how you want a table's schema to change
2138
2138
  # as a side effect of a query job
2139
2139
  # for more details:
2140
- # https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs#configuration.query.schemaUpdateOptions # noqa
2140
+ # https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs#configuration.query.schemaUpdateOptions
2141
2141
 
2142
2142
  allowed_schema_update_options = ["ALLOW_FIELD_ADDITION", "ALLOW_FIELD_RELAXATION"]
2143
2143
 
@@ -590,7 +590,9 @@ class MLEngineAsyncHook(GoogleBaseAsyncHook):
590
590
  async with ClientSession() as session:
591
591
  try:
592
592
  job = await self.get_job(
593
- project_id=project_id, job_id=job_id, session=session # type: ignore
593
+ project_id=project_id,
594
+ job_id=job_id,
595
+ session=session, # type: ignore
594
596
  )
595
597
  job = await job.json(content_type=None)
596
598
  self.log.info("Retrieving json_response: %s", job)
@@ -81,5 +81,7 @@ class SecretsManagerHook(GoogleBaseHook):
81
81
  :param project_id: Project id (if you want to override the project_id from credentials)
82
82
  """
83
83
  return self.get_conn().get_secret(
84
- secret_id=secret_id, secret_version=secret_version, project_id=project_id # type: ignore
84
+ secret_id=secret_id,
85
+ secret_version=secret_version,
86
+ project_id=project_id, # type: ignore
85
87
  )
@@ -2850,7 +2850,9 @@ class BigQueryInsertJobOperator(GoogleCloudBaseOperator, _BigQueryOpenLineageMix
2850
2850
  project_id = self.project_id or self.hook.project_id
2851
2851
  if project_id:
2852
2852
  job_id_path = convert_job_id(
2853
- job_id=self.job_id, project_id=project_id, location=self.location # type: ignore[arg-type]
2853
+ job_id=self.job_id, # type: ignore[arg-type]
2854
+ project_id=project_id,
2855
+ location=self.location,
2854
2856
  )
2855
2857
  context["ti"].xcom_push(key="job_id_path", value=job_id_path)
2856
2858
  # Wait for the job to complete
@@ -152,7 +152,7 @@ class ClusterGenerator:
152
152
  ``projects/[PROJECT_STORING_KEYS]/locations/[LOCATION]/keyRings/[KEY_RING_NAME]/cryptoKeys/[KEY_NAME]`` # noqa
153
153
  :param enable_component_gateway: Provides access to the web interfaces of default and selected optional
154
154
  components on the cluster.
155
- """ # noqa: E501
155
+ """
156
156
 
157
157
  def __init__(
158
158
  self,
@@ -62,10 +62,7 @@ class BigQueryToMsSqlOperator(BigQueryToSqlBaseOperator):
62
62
  ) -> None:
63
63
  if mssql_table is not None:
64
64
  warnings.warn(
65
- # fmt: off
66
- "The `mssql_table` parameter has been deprecated. "
67
- "Use `target_table_name` instead.",
68
- # fmt: on
65
+ "The `mssql_table` parameter has been deprecated. Use `target_table_name` instead.",
69
66
  AirflowProviderDeprecationWarning,
70
67
  )
71
68
 
@@ -29,6 +29,7 @@ def get_provider_info():
29
29
  "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",
30
30
  "suspended": False,
31
31
  "versions": [
32
+ "10.11.1",
32
33
  "10.11.0",
33
34
  "10.10.1",
34
35
  "10.10.0",
@@ -84,7 +85,7 @@ def get_provider_info():
84
85
  "gcloud-aio-bigquery>=6.1.2",
85
86
  "gcloud-aio-storage",
86
87
  "gcsfs>=2023.9.2",
87
- "google-ads>=21.2.0",
88
+ "google-ads>=22.1.0",
88
89
  "google-api-core>=2.11.0",
89
90
  "google-api-python-client>=1.6.0",
90
91
  "google-auth>=1.0.0",
@@ -1,14 +1,14 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apache-airflow-providers-google
3
- Version: 10.11.0
3
+ Version: 10.11.1rc1
4
4
  Summary: Provider for Apache Airflow. Implements apache-airflow-providers-google package
5
5
  Home-page: https://airflow.apache.org/
6
6
  Download-URL: https://archive.apache.org/dist/airflow/providers
7
7
  Author: Apache Software Foundation
8
8
  Author-email: dev@airflow.apache.org
9
9
  License: Apache License 2.0
10
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-google/10.11.0/
11
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-google/10.11.0/changelog.html
10
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-google/10.11.1/
11
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-google/10.11.1/changelog.html
12
12
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
13
13
  Project-URL: Source Code, https://github.com/apache/airflow
14
14
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
@@ -32,14 +32,14 @@ Description-Content-Type: text/x-rst
32
32
  License-File: LICENSE
33
33
  License-File: NOTICE
34
34
  Requires-Dist: PyOpenSSL
35
- Requires-Dist: apache-airflow-providers-common-sql >=1.7.2
36
- Requires-Dist: apache-airflow >=2.5.0
35
+ Requires-Dist: apache-airflow-providers-common-sql >=1.7.2.dev0
36
+ Requires-Dist: apache-airflow >=2.5.0.dev0
37
37
  Requires-Dist: asgiref >=3.5.2
38
38
  Requires-Dist: gcloud-aio-auth <5.0.0,>=4.0.0
39
39
  Requires-Dist: gcloud-aio-bigquery >=6.1.2
40
40
  Requires-Dist: gcloud-aio-storage
41
41
  Requires-Dist: gcsfs >=2023.9.2
42
- Requires-Dist: google-ads >=21.2.0
42
+ Requires-Dist: google-ads >=22.1.0
43
43
  Requires-Dist: google-api-core >=2.11.0
44
44
  Requires-Dist: google-api-python-client >=1.6.0
45
45
  Requires-Dist: google-auth-httplib2 >=0.0.1
@@ -144,8 +144,7 @@ Requires-Dist: apache-airflow-providers-trino ; extra == 'trino'
144
144
  KIND, either express or implied. See the License for the
145
145
  specific language governing permissions and limitations
146
146
  under the License.
147
-
148
- .. Licensed to the Apache Software Foundation (ASF) under one
147
+ .. Licensed to the Apache Software Foundation (ASF) under one
149
148
  or more contributor license agreements. See the NOTICE file
150
149
  distributed with this work for additional information
151
150
  regarding copyright ownership. The ASF licenses this file
@@ -165,7 +164,7 @@ Requires-Dist: apache-airflow-providers-trino ; extra == 'trino'
165
164
 
166
165
  Package ``apache-airflow-providers-google``
167
166
 
168
- Release: ``10.11.0``
167
+ Release: ``10.11.1rc1``
169
168
 
170
169
 
171
170
  Google services including:
@@ -185,8 +184,7 @@ This is a provider package for ``google`` provider. All classes for this provide
185
184
  are in ``airflow.providers.google`` python package.
186
185
 
187
186
  You can find package information and changelog for the provider
188
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-google/10.11.0/>`_.
189
-
187
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-google/10.11.1/>`_.
190
188
 
191
189
  Installation
192
190
  ------------
@@ -210,7 +208,7 @@ PIP package Version required
210
208
  ``gcloud-aio-bigquery`` ``>=6.1.2``
211
209
  ``gcloud-aio-storage``
212
210
  ``gcsfs`` ``>=2023.9.2``
213
- ``google-ads`` ``>=21.2.0``
211
+ ``google-ads`` ``>=22.1.0``
214
212
  ``google-api-core`` ``>=2.11.0``
215
213
  ``google-api-python-client`` ``>=1.6.0``
216
214
  ``google-auth`` ``>=1.0.0``
@@ -299,4 +297,4 @@ Dependent package
299
297
  ======================================================================================================================== ====================
300
298
 
301
299
  The changelog for the provider package can be found in the
302
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-google/10.11.0/changelog.html>`_.
300
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-google/10.11.1/changelog.html>`_.
@@ -1,9 +1,9 @@
1
- airflow/providers/google/__init__.py,sha256=fwRMGjBMFqP2VKKjrEWFQfCje4072Rda7Yax_45r73c,1563
2
- airflow/providers/google/get_provider_info.py,sha256=RcEDoQWzUq4_8-XZeb0KPmjAAmjWR74ORpWcv_gccSU,79017
1
+ airflow/providers/google/__init__.py,sha256=_QRb3iOdC2aIpMLyP6kQ7MlxtBiHZnMHqYNQVpkZzeg,1563
2
+ airflow/providers/google/get_provider_info.py,sha256=HhX3i8L7UOGb7Hmd65xQyjeMqLvogTQg6-S3euGOry8,79040
3
3
  airflow/providers/google/go_module_utils.py,sha256=cPXfLr6Crk5FHGakGSWhR52HoqG1hFbfOi64pgm5MC4,1769
4
4
  airflow/providers/google/ads/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
5
5
  airflow/providers/google/ads/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
6
- airflow/providers/google/ads/hooks/ads.py,sha256=29gaVtmbh0Qd5LkgqzEWLWf-dJ7li6SwaGcxJdFBLsU,11093
6
+ airflow/providers/google/ads/hooks/ads.py,sha256=Ywih0ysYzfu0USBSydDsefm9OGab-t2u_EIP_pAoLAI,11093
7
7
  airflow/providers/google/ads/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
8
8
  airflow/providers/google/ads/operators/ads.py,sha256=pVYxX7QBqvXhm4DbcGOHkVNPvAa3WN-hJUpmO_78ULE,4743
9
9
  airflow/providers/google/ads/transfers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
@@ -22,7 +22,7 @@ airflow/providers/google/cloud/fs/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2x
22
22
  airflow/providers/google/cloud/fs/gcs.py,sha256=hbtBKT0yzoHu04eILnveReJvtCkZ4n82fH0cZdZDnHE,2333
23
23
  airflow/providers/google/cloud/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
24
24
  airflow/providers/google/cloud/hooks/automl.py,sha256=CDME_sTFOSUdMSBkK1vquDHQIlM3r1i3l-1rAJG0q-M,27567
25
- airflow/providers/google/cloud/hooks/bigquery.py,sha256=ohtbDBSnPEuoe8c2Ys2FkAkLSQraRK9g7F_6s8tdguw,139885
25
+ airflow/providers/google/cloud/hooks/bigquery.py,sha256=F1UUl_YzRAx6u5buSYLK72cYh_g1ODAx3fpqUWEhfSw,139870
26
26
  airflow/providers/google/cloud/hooks/bigquery_dts.py,sha256=rZIrK58s_W4-TLIR_5x0EYDwRZIAjyqCeWfKJ-WkGVQ,15173
27
27
  airflow/providers/google/cloud/hooks/bigtable.py,sha256=CCzj-prJ94ZBOH9gRxmxpfpSEKeXFIF0i_VadZryTV0,12589
28
28
  airflow/providers/google/cloud/hooks/cloud_batch.py,sha256=e2-PUQJEWdy2LOpXExKXH_z_wGWsvvit8tXyJry1-R4,7810
@@ -52,11 +52,11 @@ airflow/providers/google/cloud/hooks/kms.py,sha256=-4Sy9BDbIRiosPrmW7ih5XydSLqpC
52
52
  airflow/providers/google/cloud/hooks/kubernetes_engine.py,sha256=QV7GVxNP37NOHliSNUV6TQ3nzaWRCWuXGXsEXRTduNU,20583
53
53
  airflow/providers/google/cloud/hooks/life_sciences.py,sha256=u4B-xTTf834Z0rl52sEHJEd-RrGBcTwxq3BkSXpnyE4,6680
54
54
  airflow/providers/google/cloud/hooks/looker.py,sha256=PwEALWn_RSpiAzPP9xdN88Rr1hmszrBQQsEPUR42nv4,8960
55
- airflow/providers/google/cloud/hooks/mlengine.py,sha256=AlSMbWCu76dK5tzCuu4_D4SK2mjKIcF3UN_58F6NNH8,24950
55
+ airflow/providers/google/cloud/hooks/mlengine.py,sha256=tEyPxUmh52FFvsomo1prR_LdC0G6rNENTEzw_FrMKho,24991
56
56
  airflow/providers/google/cloud/hooks/natural_language.py,sha256=nu853PE6Th5clQJK_J7p21R6u27pAdTuToH2_E1wTBI,11658
57
57
  airflow/providers/google/cloud/hooks/os_login.py,sha256=mTmSf-NgiWP3zPpzPekik_SsUEckLBQEx5jahpgp06w,4085
58
58
  airflow/providers/google/cloud/hooks/pubsub.py,sha256=J9t3KEPuHxafBj7uuW8K75o4v2U02s28Fqwf-ZD5U34,33554
59
- airflow/providers/google/cloud/hooks/secret_manager.py,sha256=I8DqD0QUvKdH1sRb42L43aF3phjTKEbStmyf_EecPYw,3542
59
+ airflow/providers/google/cloud/hooks/secret_manager.py,sha256=fj7ZWW_4kkVPMcvOT6_ciOJjWoewFxAUDJAK0TFRKNc,3567
60
60
  airflow/providers/google/cloud/hooks/spanner.py,sha256=7t0dEHZq9shhYUdF6sFn8c5FDJ1ZmA0MjaXYJKBTVVw,17484
61
61
  airflow/providers/google/cloud/hooks/speech_to_text.py,sha256=_3UkjRnvuag5OXfLTuzAucVk9t_Mk-chjY7FxH_C7lU,4532
62
62
  airflow/providers/google/cloud/hooks/stackdriver.py,sha256=vSFKHxXFzsId9vW2JllMVhiMDl-FKjayHp_BwhCflzg,25891
@@ -110,7 +110,7 @@ airflow/providers/google/cloud/log/gcs_task_handler.py,sha256=r6Wxqq31Q2Ze6qH8t4
110
110
  airflow/providers/google/cloud/log/stackdriver_task_handler.py,sha256=qS6yu64exSJwEjgEBkr9LpmkypSHqSk4r0mdhMJUw1Y,15330
111
111
  airflow/providers/google/cloud/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
112
112
  airflow/providers/google/cloud/operators/automl.py,sha256=JoO5As5mguWqjNwSJt3r73M1fb-oxvnIu0gk22-V5HY,52102
113
- airflow/providers/google/cloud/operators/bigquery.py,sha256=RLRXYf6P8EdZeayVJY5ys1uw6-X0Qkw4njS8CP3u0ak,122721
113
+ airflow/providers/google/cloud/operators/bigquery.py,sha256=v8RofVo-wLFitoa2ij94fD7CztN-ieYVtnWubWjMIys,122754
114
114
  airflow/providers/google/cloud/operators/bigquery_dts.py,sha256=Va1UE8rsrdNA63J3-C1DNPJveQlQj6s_KEqPgY41S_s,17606
115
115
  airflow/providers/google/cloud/operators/bigtable.py,sha256=laYp8IvPMJxiPwP7hGotuXsS7m0rHd_7NQ6AxREacZI,26797
116
116
  airflow/providers/google/cloud/operators/cloud_base.py,sha256=AE-iUAcjE2kiSwnuFMfL51ESWhFsZKib2VQefQdYXR0,1484
@@ -129,7 +129,7 @@ airflow/providers/google/cloud/operators/datafusion.py,sha256=EZj30M96vIcb_mKFKw
129
129
  airflow/providers/google/cloud/operators/datapipeline.py,sha256=iWRnkVK4McQ2NnA07VFNBh-ijRi80ndfvhuaury4Sgg,6382
130
130
  airflow/providers/google/cloud/operators/dataplex.py,sha256=XhhrJdH5afzldyU-m3vN3K0DvdRmvKjhVM4XBcgy-ZI,67868
131
131
  airflow/providers/google/cloud/operators/dataprep.py,sha256=qwGcpHE06Hgn70MO6LiMuaqVLSWjLAtHqD8Y0TTHGok,10367
132
- airflow/providers/google/cloud/operators/dataproc.py,sha256=k_Bw67_sB0wIRg25fhoF5iu2JyypsnD1K2_TWMARmv4,126929
132
+ airflow/providers/google/cloud/operators/dataproc.py,sha256=p7_QGoyV4bfyBdmbCsJwWGDHHPFiiiHCT00x1BQQUeQ,126915
133
133
  airflow/providers/google/cloud/operators/dataproc_metastore.py,sha256=1VH3xnipEJoZs14e39bv9Cv6JcQMyqfLC4mH7totxaY,49531
134
134
  airflow/providers/google/cloud/operators/datastore.py,sha256=2ioItQMOgxIFGE8tu07CdG-SK6BE6dUo9KpBQ-gnROs,24796
135
135
  airflow/providers/google/cloud/operators/dlp.py,sha256=4yVPfDnWaQCxs_dxM31thgvqh32__MmS3_-LB-6OGzk,120451
@@ -186,7 +186,7 @@ airflow/providers/google/cloud/transfers/azure_blob_to_gcs.py,sha256=gOWKydikAyq
186
186
  airflow/providers/google/cloud/transfers/azure_fileshare_to_gcs.py,sha256=Xo8nmMolywRfPxTTGBXl_LHm7wSIjQ-REYsGpq6RDFY,7759
187
187
  airflow/providers/google/cloud/transfers/bigquery_to_bigquery.py,sha256=8F1-lnQ8SZzQYrKM_mGbw0y4miLVzPFcFjZW7Yg3Msk,6546
188
188
  airflow/providers/google/cloud/transfers/bigquery_to_gcs.py,sha256=96TL2o6nTP8YgQmAuylyc1b0q8qeD14VJHP59_Qnw4U,11680
189
- airflow/providers/google/cloud/transfers/bigquery_to_mssql.py,sha256=uvwkeZHULFMU-Kskro6iKp9XURjdUKjL-Bxlfo9Jbxk,4097
189
+ airflow/providers/google/cloud/transfers/bigquery_to_mssql.py,sha256=m4aUViuHTvqEjORSCP6Frb1bh_TNNaOJDjNwt5crbvg,4025
190
190
  airflow/providers/google/cloud/transfers/bigquery_to_mysql.py,sha256=ipNBkbnZr7rOGKjyz-0iGfNkH5qwWzhZmKmxEzGnWx4,2921
191
191
  airflow/providers/google/cloud/transfers/bigquery_to_postgres.py,sha256=oB3hR5-oFJe20mZc0sMCGv5SaofGOGkZpxeYkwu_-cg,2121
192
192
  airflow/providers/google/cloud/transfers/bigquery_to_sql.py,sha256=5qg2Ug__p-jVAevbuBb-OZasM9e1K2oeacOQFPLl9ZA,5367
@@ -291,10 +291,10 @@ airflow/providers/google/suite/transfers/gcs_to_gdrive.py,sha256=7DIZVzdkzYfb94s
291
291
  airflow/providers/google/suite/transfers/gcs_to_sheets.py,sha256=KFEjSKWPCTQU2pJSCZ9EuX_9Nl4VcZ3_csc1F95ZUBA,4193
292
292
  airflow/providers/google/suite/transfers/local_to_drive.py,sha256=2QdO0DPErLfpV00Oeg_WBZZ0GSNFpnt3jBMK3FPD6lA,6099
293
293
  airflow/providers/google/suite/transfers/sql_to_sheets.py,sha256=sORkYSUDArRPnvi8WCiXP7YIXtpAgpEPhf8cqgpu644,5220
294
- apache_airflow_providers_google-10.11.0.dist-info/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
295
- apache_airflow_providers_google-10.11.0.dist-info/METADATA,sha256=3kzG_PACf8h7lwQeoY5jNe2Zf6da6IOtzSO-Z8I4n1E,15371
296
- apache_airflow_providers_google-10.11.0.dist-info/NOTICE,sha256=m-6s2XynUxVSUIxO4rVablAZCvFq-wmLrqV91DotRBw,240
297
- apache_airflow_providers_google-10.11.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
298
- apache_airflow_providers_google-10.11.0.dist-info/entry_points.txt,sha256=GQrsexDfU-Y8Dtn6VzRCI3fkXSZwdor4R206FXPerlg,103
299
- apache_airflow_providers_google-10.11.0.dist-info/top_level.txt,sha256=OeMVH5md7fr2QQWpnZoOWWxWO-0WH1IP70lpTVwopPg,8
300
- apache_airflow_providers_google-10.11.0.dist-info/RECORD,,
294
+ apache_airflow_providers_google-10.11.1rc1.dist-info/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
295
+ apache_airflow_providers_google-10.11.1rc1.dist-info/METADATA,sha256=bKGPrEWDby5V6GXKTe6JimbgN8-r8kEWfrsnGneEhSo,15384
296
+ apache_airflow_providers_google-10.11.1rc1.dist-info/NOTICE,sha256=m-6s2XynUxVSUIxO4rVablAZCvFq-wmLrqV91DotRBw,240
297
+ apache_airflow_providers_google-10.11.1rc1.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
298
+ apache_airflow_providers_google-10.11.1rc1.dist-info/entry_points.txt,sha256=GQrsexDfU-Y8Dtn6VzRCI3fkXSZwdor4R206FXPerlg,103
299
+ apache_airflow_providers_google-10.11.1rc1.dist-info/top_level.txt,sha256=OeMVH5md7fr2QQWpnZoOWWxWO-0WH1IP70lpTVwopPg,8
300
+ apache_airflow_providers_google-10.11.1rc1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: bdist_wheel (0.41.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5