apache-airflow-providers-microsoft-azure 6.1.1__py3-none-any.whl → 6.1.2rc1__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.
- airflow/providers/microsoft/azure/__init__.py +1 -1
- airflow/providers/microsoft/azure/get_provider_info.py +11 -0
- airflow/providers/microsoft/azure/hooks/adx.py +3 -3
- airflow/providers/microsoft/azure/hooks/asb.py +25 -24
- airflow/providers/microsoft/azure/hooks/base_azure.py +2 -2
- airflow/providers/microsoft/azure/hooks/batch.py +14 -14
- airflow/providers/microsoft/azure/hooks/container_instance.py +7 -7
- airflow/providers/microsoft/azure/hooks/container_registry.py +2 -2
- airflow/providers/microsoft/azure/hooks/container_volume.py +4 -4
- airflow/providers/microsoft/azure/hooks/cosmos.py +5 -5
- airflow/providers/microsoft/azure/hooks/data_factory.py +8 -8
- airflow/providers/microsoft/azure/hooks/data_lake.py +39 -55
- airflow/providers/microsoft/azure/hooks/fileshare.py +2 -2
- airflow/providers/microsoft/azure/hooks/synapse.py +2 -2
- airflow/providers/microsoft/azure/hooks/wasb.py +8 -8
- airflow/providers/microsoft/azure/log/wasb_task_handler.py +5 -4
- airflow/providers/microsoft/azure/operators/adls.py +1 -1
- airflow/providers/microsoft/azure/operators/adx.py +6 -4
- airflow/providers/microsoft/azure/operators/asb.py +20 -35
- airflow/providers/microsoft/azure/operators/batch.py +2 -2
- airflow/providers/microsoft/azure/operators/container_instances.py +1 -1
- airflow/providers/microsoft/azure/operators/cosmos.py +4 -3
- airflow/providers/microsoft/azure/secrets/key_vault.py +4 -4
- airflow/providers/microsoft/azure/sensors/cosmos.py +2 -3
- airflow/providers/microsoft/azure/sensors/data_factory.py +4 -2
- airflow/providers/microsoft/azure/sensors/wasb.py +8 -4
- airflow/providers/microsoft/azure/transfers/azure_blob_to_gcs.py +1 -5
- airflow/providers/microsoft/azure/transfers/local_to_adls.py +1 -1
- airflow/providers/microsoft/azure/transfers/oracle_to_azure_data_lake.py +4 -6
- airflow/providers/microsoft/azure/transfers/sftp_to_wasb.py +3 -3
- airflow/providers/microsoft/azure/triggers/data_factory.py +6 -8
- {apache_airflow_providers_microsoft_azure-6.1.1.dist-info → apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info}/METADATA +29 -8
- apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info/RECORD +51 -0
- apache_airflow_providers_microsoft_azure-6.1.1.dist-info/RECORD +0 -51
- {apache_airflow_providers_microsoft_azure-6.1.1.dist-info → apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info}/LICENSE +0 -0
- {apache_airflow_providers_microsoft_azure-6.1.1.dist-info → apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info}/NOTICE +0 -0
- {apache_airflow_providers_microsoft_azure-6.1.1.dist-info → apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_microsoft_azure-6.1.1.dist-info → apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info}/entry_points.txt +0 -0
- {apache_airflow_providers_microsoft_azure-6.1.1.dist-info → apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info}/top_level.txt +0 -0
@@ -27,9 +27,10 @@ if TYPE_CHECKING:
|
|
27
27
|
|
28
28
|
|
29
29
|
class AzureCosmosInsertDocumentOperator(BaseOperator):
|
30
|
-
"""
|
31
|
-
|
32
|
-
|
30
|
+
"""Insert a new document into the specified Cosmos database and collection.
|
31
|
+
|
32
|
+
Both the database and collection will be created automatically if they do
|
33
|
+
not already exist.
|
33
34
|
|
34
35
|
:param database_name: The name of the database. (templated)
|
35
36
|
:param collection_name: The name of the collection. (templated)
|
@@ -18,12 +18,12 @@ from __future__ import annotations
|
|
18
18
|
|
19
19
|
import re
|
20
20
|
import warnings
|
21
|
+
from functools import cached_property
|
21
22
|
|
22
23
|
from azure.core.exceptions import ResourceNotFoundError
|
23
24
|
from azure.identity import DefaultAzureCredential
|
24
25
|
from azure.keyvault.secrets import SecretClient
|
25
26
|
|
26
|
-
from airflow.compat.functools import cached_property
|
27
27
|
from airflow.exceptions import AirflowProviderDeprecationWarning
|
28
28
|
from airflow.secrets import BaseSecretsBackend
|
29
29
|
from airflow.utils.log.logging_mixin import LoggingMixin
|
@@ -107,7 +107,7 @@ class AzureKeyVaultBackend(BaseSecretsBackend, LoggingMixin):
|
|
107
107
|
|
108
108
|
def get_conn_value(self, conn_id: str) -> str | None:
|
109
109
|
"""
|
110
|
-
Get a serialized representation of Airflow Connection from an Azure Key Vault secret
|
110
|
+
Get a serialized representation of Airflow Connection from an Azure Key Vault secret.
|
111
111
|
|
112
112
|
:param conn_id: The Airflow connection id to retrieve
|
113
113
|
"""
|
@@ -148,7 +148,7 @@ class AzureKeyVaultBackend(BaseSecretsBackend, LoggingMixin):
|
|
148
148
|
|
149
149
|
def get_config(self, key: str) -> str | None:
|
150
150
|
"""
|
151
|
-
Get Airflow Configuration
|
151
|
+
Get Airflow Configuration.
|
152
152
|
|
153
153
|
:param key: Configuration Option Key
|
154
154
|
:return: Configuration Option Value
|
@@ -178,7 +178,7 @@ class AzureKeyVaultBackend(BaseSecretsBackend, LoggingMixin):
|
|
178
178
|
|
179
179
|
def _get_secret(self, path_prefix: str, secret_id: str) -> str | None:
|
180
180
|
"""
|
181
|
-
Get an Azure Key Vault secret value
|
181
|
+
Get an Azure Key Vault secret value.
|
182
182
|
|
183
183
|
:param path_prefix: Prefix for the Path to get Secret
|
184
184
|
:param secret_id: Secret Key
|
@@ -28,10 +28,9 @@ if TYPE_CHECKING:
|
|
28
28
|
|
29
29
|
class AzureCosmosDocumentSensor(BaseSensorOperator):
|
30
30
|
"""
|
31
|
-
Checks for the existence of a document which
|
32
|
-
matches the given query in CosmosDB. Example:
|
31
|
+
Checks for the existence of a document which matches the given query in CosmosDB.
|
33
32
|
|
34
|
-
.. code-block::
|
33
|
+
.. code-block:: python
|
35
34
|
|
36
35
|
azure_cosmos_sensor = AzureCosmosDocumentSensor(
|
37
36
|
database_name="somedatabase_name",
|
@@ -88,8 +88,10 @@ class AzureDataFactoryPipelineRunStatusSensor(BaseSensorOperator):
|
|
88
88
|
return pipeline_run_status == AzureDataFactoryPipelineRunStatus.SUCCEEDED
|
89
89
|
|
90
90
|
def execute(self, context: Context) -> None:
|
91
|
-
"""
|
92
|
-
|
91
|
+
"""Poll for state of the job run.
|
92
|
+
|
93
|
+
In deferrable mode, the polling is deferred to the triggerer. Otherwise
|
94
|
+
the sensor waits synchronously.
|
93
95
|
"""
|
94
96
|
if not self.deferrable:
|
95
97
|
super().execute(context=context)
|
@@ -72,8 +72,10 @@ class WasbBlobSensor(BaseSensorOperator):
|
|
72
72
|
return hook.check_for_blob(self.container_name, self.blob_name, **self.check_options)
|
73
73
|
|
74
74
|
def execute(self, context: Context) -> None:
|
75
|
-
"""
|
76
|
-
|
75
|
+
"""Poll for state of the job run.
|
76
|
+
|
77
|
+
In deferrable mode, the polling is deferred to the triggerer. Otherwise
|
78
|
+
the sensor waits synchronously.
|
77
79
|
"""
|
78
80
|
if not self.deferrable:
|
79
81
|
super().execute(context=context)
|
@@ -167,8 +169,10 @@ class WasbPrefixSensor(BaseSensorOperator):
|
|
167
169
|
return hook.check_for_prefix(self.container_name, self.prefix, **self.check_options)
|
168
170
|
|
169
171
|
def execute(self, context: Context) -> None:
|
170
|
-
"""
|
171
|
-
|
172
|
+
"""Poll for state of the job run.
|
173
|
+
|
174
|
+
In deferrable mode, the polling is deferred to the triggerer. Otherwise
|
175
|
+
the sensor waits synchronously.
|
172
176
|
"""
|
173
177
|
if not self.deferrable:
|
174
178
|
super().execute(context=context)
|
@@ -30,7 +30,7 @@ if TYPE_CHECKING:
|
|
30
30
|
|
31
31
|
class AzureBlobStorageToGCSOperator(BaseOperator):
|
32
32
|
"""
|
33
|
-
Operator transfers data from Azure Blob Storage to specified bucket in Google Cloud Storage
|
33
|
+
Operator transfers data from Azure Blob Storage to specified bucket in Google Cloud Storage.
|
34
34
|
|
35
35
|
.. seealso::
|
36
36
|
For more information on how to use this operator, take a look at the guide:
|
@@ -39,7 +39,6 @@ class AzureBlobStorageToGCSOperator(BaseOperator):
|
|
39
39
|
:param wasb_conn_id: Reference to the wasb connection.
|
40
40
|
:param gcp_conn_id: The connection ID to use when fetching connection info.
|
41
41
|
:param blob_name: Name of the blob
|
42
|
-
:param file_path: Path to the file to download
|
43
42
|
:param container_name: Name of the container
|
44
43
|
:param bucket_name: The bucket to upload to
|
45
44
|
:param object_name: The object name to set when uploading the file
|
@@ -61,7 +60,6 @@ class AzureBlobStorageToGCSOperator(BaseOperator):
|
|
61
60
|
wasb_conn_id="wasb_default",
|
62
61
|
gcp_conn_id: str = "google_cloud_default",
|
63
62
|
blob_name: str,
|
64
|
-
file_path: str,
|
65
63
|
container_name: str,
|
66
64
|
bucket_name: str,
|
67
65
|
object_name: str,
|
@@ -74,7 +72,6 @@ class AzureBlobStorageToGCSOperator(BaseOperator):
|
|
74
72
|
self.wasb_conn_id = wasb_conn_id
|
75
73
|
self.gcp_conn_id = gcp_conn_id
|
76
74
|
self.blob_name = blob_name
|
77
|
-
self.file_path = file_path
|
78
75
|
self.container_name = container_name
|
79
76
|
self.bucket_name = bucket_name
|
80
77
|
self.object_name = object_name
|
@@ -84,7 +81,6 @@ class AzureBlobStorageToGCSOperator(BaseOperator):
|
|
84
81
|
|
85
82
|
template_fields: Sequence[str] = (
|
86
83
|
"blob_name",
|
87
|
-
"file_path",
|
88
84
|
"container_name",
|
89
85
|
"bucket_name",
|
90
86
|
"object_name",
|
@@ -17,12 +17,11 @@
|
|
17
17
|
# under the License.
|
18
18
|
from __future__ import annotations
|
19
19
|
|
20
|
+
import csv
|
20
21
|
import os
|
21
22
|
from tempfile import TemporaryDirectory
|
22
23
|
from typing import TYPE_CHECKING, Any, Sequence
|
23
24
|
|
24
|
-
import unicodecsv as csv
|
25
|
-
|
26
25
|
from airflow.models import BaseOperator
|
27
26
|
from airflow.providers.microsoft.azure.hooks.data_lake import AzureDataLakeHook
|
28
27
|
from airflow.providers.oracle.hooks.oracle import OracleHook
|
@@ -46,7 +45,7 @@ class OracleToAzureDataLakeOperator(BaseOperator):
|
|
46
45
|
:param delimiter: field delimiter in the file.
|
47
46
|
:param encoding: encoding type for the file.
|
48
47
|
:param quotechar: Character to use in quoting.
|
49
|
-
:param quoting: Quoting strategy. See
|
48
|
+
:param quoting: Quoting strategy. See csv library for more information.
|
50
49
|
"""
|
51
50
|
|
52
51
|
template_fields: Sequence[str] = ("filename", "sql", "sql_params")
|
@@ -65,7 +64,7 @@ class OracleToAzureDataLakeOperator(BaseOperator):
|
|
65
64
|
delimiter: str = ",",
|
66
65
|
encoding: str = "utf-8",
|
67
66
|
quotechar: str = '"',
|
68
|
-
quoting:
|
67
|
+
quoting: int = csv.QUOTE_MINIMAL,
|
69
68
|
**kwargs,
|
70
69
|
) -> None:
|
71
70
|
super().__init__(**kwargs)
|
@@ -83,11 +82,10 @@ class OracleToAzureDataLakeOperator(BaseOperator):
|
|
83
82
|
self.quoting = quoting
|
84
83
|
|
85
84
|
def _write_temp_file(self, cursor: Any, path_to_save: str | bytes | int) -> None:
|
86
|
-
with open(path_to_save, "
|
85
|
+
with open(path_to_save, "w", encoding=self.encoding) as csvfile:
|
87
86
|
csv_writer = csv.writer(
|
88
87
|
csvfile,
|
89
88
|
delimiter=self.delimiter,
|
90
|
-
encoding=self.encoding,
|
91
89
|
quotechar=self.quotechar,
|
92
90
|
quoting=self.quoting,
|
93
91
|
)
|
@@ -20,13 +20,13 @@ from __future__ import annotations
|
|
20
20
|
|
21
21
|
import os
|
22
22
|
from collections import namedtuple
|
23
|
+
from functools import cached_property
|
23
24
|
from tempfile import NamedTemporaryFile
|
24
25
|
from typing import TYPE_CHECKING, Sequence
|
25
26
|
|
26
27
|
if TYPE_CHECKING:
|
27
28
|
from airflow.utils.context import Context
|
28
29
|
|
29
|
-
from airflow.compat.functools import cached_property
|
30
30
|
from airflow.exceptions import AirflowException
|
31
31
|
from airflow.models import BaseOperator
|
32
32
|
from airflow.providers.microsoft.azure.hooks.wasb import WasbHook
|
@@ -134,7 +134,7 @@ class SFTPToWasbOperator(BaseOperator):
|
|
134
134
|
return sftp_files
|
135
135
|
|
136
136
|
def get_tree_behavior(self) -> tuple[str, str | None, str | None]:
|
137
|
-
"""Extracts from source path the tree behavior to interact with the remote folder"""
|
137
|
+
"""Extracts from source path the tree behavior to interact with the remote folder."""
|
138
138
|
self.check_wildcards_limit()
|
139
139
|
|
140
140
|
if self.source_path_contains_wildcard:
|
@@ -167,7 +167,7 @@ class SFTPToWasbOperator(BaseOperator):
|
|
167
167
|
return SFTPHook(self.sftp_conn_id)
|
168
168
|
|
169
169
|
def get_full_path_blob(self, file: str) -> str:
|
170
|
-
"""Get a blob name based on the previous name and a blob_prefix variable"""
|
170
|
+
"""Get a blob name based on the previous name and a blob_prefix variable."""
|
171
171
|
return self.blob_prefix + os.path.basename(file)
|
172
172
|
|
173
173
|
def copy_files_to_wasb(self, sftp_files: list[SftpFile]) -> list[str]:
|
@@ -28,9 +28,7 @@ from airflow.triggers.base import BaseTrigger, TriggerEvent
|
|
28
28
|
|
29
29
|
|
30
30
|
class ADFPipelineRunStatusSensorTrigger(BaseTrigger):
|
31
|
-
"""
|
32
|
-
ADFPipelineRunStatusSensorTrigger is fired as deferred class with params to run the
|
33
|
-
task in trigger worker, when ADF Pipeline is running
|
31
|
+
"""Trigger with params to run the task when the ADF Pipeline is running.
|
34
32
|
|
35
33
|
:param run_id: The pipeline run identifier.
|
36
34
|
:param azure_data_factory_conn_id: The connection identifier for connecting to Azure Data Factory.
|
@@ -68,7 +66,7 @@ class ADFPipelineRunStatusSensorTrigger(BaseTrigger):
|
|
68
66
|
)
|
69
67
|
|
70
68
|
async def run(self) -> AsyncIterator[TriggerEvent]:
|
71
|
-
"""Make async connection to Azure Data Factory, polls for the pipeline run status"""
|
69
|
+
"""Make async connection to Azure Data Factory, polls for the pipeline run status."""
|
72
70
|
hook = AzureDataFactoryAsyncHook(azure_data_factory_conn_id=self.azure_data_factory_conn_id)
|
73
71
|
try:
|
74
72
|
while True:
|
@@ -93,9 +91,9 @@ class ADFPipelineRunStatusSensorTrigger(BaseTrigger):
|
|
93
91
|
|
94
92
|
|
95
93
|
class AzureDataFactoryTrigger(BaseTrigger):
|
96
|
-
"""
|
97
|
-
|
98
|
-
When wait_for_termination is set to False it
|
94
|
+
"""Trigger when the Azure data factory pipeline job finishes.
|
95
|
+
|
96
|
+
When wait_for_termination is set to False, it triggers immediately with success status.
|
99
97
|
|
100
98
|
:param run_id: Run id of a Azure data pipeline run job.
|
101
99
|
:param azure_data_factory_conn_id: The connection identifier for connecting to Azure Data Factory.
|
@@ -141,7 +139,7 @@ class AzureDataFactoryTrigger(BaseTrigger):
|
|
141
139
|
)
|
142
140
|
|
143
141
|
async def run(self) -> AsyncIterator[TriggerEvent]:
|
144
|
-
"""Make async connection to Azure Data Factory, polls for the pipeline run status"""
|
142
|
+
"""Make async connection to Azure Data Factory, polls for the pipeline run status."""
|
145
143
|
hook = AzureDataFactoryAsyncHook(azure_data_factory_conn_id=self.azure_data_factory_conn_id)
|
146
144
|
try:
|
147
145
|
pipeline_status = await hook.get_adf_pipeline_run_status(
|
@@ -1,13 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: apache-airflow-providers-microsoft-azure
|
3
|
-
Version: 6.1.
|
3
|
+
Version: 6.1.2rc1
|
4
4
|
Summary: Provider for Apache Airflow. Implements apache-airflow-providers-microsoft-azure 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-microsoft-azure/6.1.
|
10
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/6.1.2/
|
11
11
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
12
12
|
Project-URL: Source Code, https://github.com/apache/airflow
|
13
13
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
@@ -21,18 +21,17 @@ Classifier: Intended Audience :: System Administrators
|
|
21
21
|
Classifier: Framework :: Apache Airflow
|
22
22
|
Classifier: Framework :: Apache Airflow :: Provider
|
23
23
|
Classifier: License :: OSI Approved :: Apache Software License
|
24
|
-
Classifier: Programming Language :: Python :: 3.7
|
25
24
|
Classifier: Programming Language :: Python :: 3.8
|
26
25
|
Classifier: Programming Language :: Python :: 3.9
|
27
26
|
Classifier: Programming Language :: Python :: 3.10
|
28
27
|
Classifier: Programming Language :: Python :: 3.11
|
29
28
|
Classifier: Topic :: System :: Monitoring
|
30
|
-
Requires-Python: ~=3.
|
29
|
+
Requires-Python: ~=3.8
|
31
30
|
Description-Content-Type: text/x-rst
|
32
31
|
License-File: LICENSE
|
33
32
|
License-File: NOTICE
|
34
33
|
Requires-Dist: adal (>=1.2.7)
|
35
|
-
Requires-Dist: apache-airflow (>=2.4.0)
|
34
|
+
Requires-Dist: apache-airflow (>=2.4.0.dev0)
|
36
35
|
Requires-Dist: azure-batch (>=8.0.0)
|
37
36
|
Requires-Dist: azure-cosmos (>=4.0.0)
|
38
37
|
Requires-Dist: azure-datalake-store (>=0.0.45)
|
@@ -77,7 +76,7 @@ Requires-Dist: apache-airflow-providers-sftp ; extra == 'sftp'
|
|
77
76
|
|
78
77
|
Package ``apache-airflow-providers-microsoft-azure``
|
79
78
|
|
80
|
-
Release: ``6.1.
|
79
|
+
Release: ``6.1.2rc1``
|
81
80
|
|
82
81
|
|
83
82
|
`Microsoft Azure <https://azure.microsoft.com/>`__
|
@@ -90,7 +89,7 @@ This is a provider package for ``microsoft.azure`` provider. All classes for thi
|
|
90
89
|
are in ``airflow.providers.microsoft.azure`` python package.
|
91
90
|
|
92
91
|
You can find package information and changelog for the provider
|
93
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/6.1.
|
92
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/6.1.2/>`_.
|
94
93
|
|
95
94
|
|
96
95
|
Installation
|
@@ -100,7 +99,7 @@ You can install this package on top of an existing Airflow 2 installation (see `
|
|
100
99
|
for the minimum Airflow version supported) via
|
101
100
|
``pip install apache-airflow-providers-microsoft-azure``
|
102
101
|
|
103
|
-
The package supports the following python versions: 3.
|
102
|
+
The package supports the following python versions: 3.8,3.9,3.10,3.11
|
104
103
|
|
105
104
|
Requirements
|
106
105
|
------------
|
@@ -175,6 +174,28 @@ Dependent package
|
|
175
174
|
Changelog
|
176
175
|
---------
|
177
176
|
|
177
|
+
6.1.2
|
178
|
+
.....
|
179
|
+
|
180
|
+
.. note::
|
181
|
+
This release dropped support for Python 3.7
|
182
|
+
|
183
|
+
Misc
|
184
|
+
~~~~
|
185
|
+
|
186
|
+
* ``Replace unicodecsv with standard csv library (#31693)``
|
187
|
+
* ``Removed unused variables in AzureBlobStorageToGCSOperator (#31765)``
|
188
|
+
* ``Remove Python 3.7 support (#30963)``
|
189
|
+
* ``Add docstring and signature for _read_remote_logs (#31623)``
|
190
|
+
|
191
|
+
.. Below changes are excluded from the changelog. Move them to
|
192
|
+
appropriate section above if needed. Do not delete the lines(!):
|
193
|
+
* ``Replace spelling directive with spelling:word-list (#31752)``
|
194
|
+
* ``Add D400 pydocstyle check - Microsoft provider only (#31425)``
|
195
|
+
* ``Add discoverability for triggers in provider.yaml (#31576)``
|
196
|
+
* ``Add note about dropping Python 3.7 for providers (#32015)``
|
197
|
+
* ``Microsoft provider docstring improvements (#31708)``
|
198
|
+
|
178
199
|
6.1.1
|
179
200
|
.....
|
180
201
|
|
@@ -0,0 +1,51 @@
|
|
1
|
+
airflow/providers/microsoft/azure/__init__.py,sha256=GjXS_fTZXbe14Bt4B7hvDtGOOuKFn_3KLu6bhQcJm_g,1540
|
2
|
+
airflow/providers/microsoft/azure/get_provider_info.py,sha256=N8y0QG3tm_oJDsZzNp5ZpXKn0bqAlYMrHC6liOQFYZk,17113
|
3
|
+
airflow/providers/microsoft/azure/utils.py,sha256=LLknJmH_10piRY6tO8KByNycjDe7MYwBf2tzOOYdTYs,2804
|
4
|
+
airflow/providers/microsoft/azure/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
5
|
+
airflow/providers/microsoft/azure/hooks/adx.py,sha256=tubbLmKaAxmefcyYo6aMMYn3L8LBii0MRrf3vv-wdAE,8732
|
6
|
+
airflow/providers/microsoft/azure/hooks/asb.py,sha256=qMSmqKPZu_bcuaKHTD_Dn0TZ0ZNURLiawv2V1hblZgg,10984
|
7
|
+
airflow/providers/microsoft/azure/hooks/base_azure.py,sha256=NjwtpyfNkvo8MX_dlbswbn0dBHnAMdYVYur-MWj4ooA,4780
|
8
|
+
airflow/providers/microsoft/azure/hooks/batch.py,sha256=LMQjBTgnRyvTkJSJp0pRDsa_YGbzsLuICVrOcMmr2wc,15302
|
9
|
+
airflow/providers/microsoft/azure/hooks/container_instance.py,sha256=euwS6SlIFH4z7h_4B0E0S4lXxQDlKm4jgmd8sPhmCxA,6183
|
10
|
+
airflow/providers/microsoft/azure/hooks/container_registry.py,sha256=Js9baC9lnE_NbwTFpOH6yXANLpr-JTEd4NT4LapDNqU,2460
|
11
|
+
airflow/providers/microsoft/azure/hooks/container_volume.py,sha256=h-qWIrkmv7g74fTubfsYODv0TlnfvhNdg-6rUujH5D0,4062
|
12
|
+
airflow/providers/microsoft/azure/hooks/cosmos.py,sha256=FuoJKxMoXuKcYQrmwx4HwxxBlpgbZutsNjgCjVTKn98,14227
|
13
|
+
airflow/providers/microsoft/azure/hooks/data_factory.py,sha256=rR9HT-jNwPaK8vAX7HnW9AyvpVDtqcyXl1u3OIv3nMk,43009
|
14
|
+
airflow/providers/microsoft/azure/hooks/data_lake.py,sha256=MmKlW7NhQKySKnOEk1c-DGsbRIEzcv13yis7R7eiKMc,21409
|
15
|
+
airflow/providers/microsoft/azure/hooks/fileshare.py,sha256=Ilh6l65u68q8c1TliKjjAEN4niB4jSUtqSrILg_zheM,12987
|
16
|
+
airflow/providers/microsoft/azure/hooks/synapse.py,sha256=AdAtIooBgJ5wNEZCjo9ZiIat093MEactINLMLyPHlLk,7320
|
17
|
+
airflow/providers/microsoft/azure/hooks/wasb.py,sha256=T0iXQC2EEghnbKXP1iYyoJeIhRw-8T-KiMfEAtAC4PA,27574
|
18
|
+
airflow/providers/microsoft/azure/log/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
19
|
+
airflow/providers/microsoft/azure/log/wasb_task_handler.py,sha256=NnWUSto4A3J_mXmU8Cn_1fv0xkw-7ilZ0R0dpLG9eh8,10057
|
20
|
+
airflow/providers/microsoft/azure/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
21
|
+
airflow/providers/microsoft/azure/operators/adls.py,sha256=msx7uZNlSshiZsNASESk6c0BQr3QNvsByxWh0Nr2TP0,3789
|
22
|
+
airflow/providers/microsoft/azure/operators/adx.py,sha256=rK5ErQqYJFFDaSirE4G2QV6V3Oj2QtKxUk6fIsJGluA,3032
|
23
|
+
airflow/providers/microsoft/azure/operators/asb.py,sha256=T1bRjwjncth6tkXkoshg2qy1TPEaD1ceVzp2VUAiu9w,29309
|
24
|
+
airflow/providers/microsoft/azure/operators/batch.py,sha256=fzJ7IYAG_1NcZ-muVfM-JqxNYHvzvDyz1cQueHRIVQQ,16254
|
25
|
+
airflow/providers/microsoft/azure/operators/container_instances.py,sha256=ZukRCHU0n87W4XRTcpcw1Q5mpfCFPkKaFT9Mu1uaYvg,15968
|
26
|
+
airflow/providers/microsoft/azure/operators/cosmos.py,sha256=Y1Hj4p6W8soVFaq1rx8LFgchNISjkq8vjdaQ0j8Tnqs,2782
|
27
|
+
airflow/providers/microsoft/azure/operators/data_factory.py,sha256=0n5602SIWat8MrJt7wKCXIh3nrUxuqmY63iRbNqR2j0,12432
|
28
|
+
airflow/providers/microsoft/azure/operators/synapse.py,sha256=KKnwRVLM--Kd9Acaw5GcUydX5IzR_GM2-PHw7mdq-BI,4422
|
29
|
+
airflow/providers/microsoft/azure/operators/wasb_delete_blob.py,sha256=GUfV9DLU1bGYvn2TE54iTYBTbxn3Jm_e985pXp_0IsE,2687
|
30
|
+
airflow/providers/microsoft/azure/secrets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
31
|
+
airflow/providers/microsoft/azure/secrets/key_vault.py,sha256=2ELwoxehPKdu3Atw5JNcT8oDhag6Q9pKlonVrRt3Nno,7890
|
32
|
+
airflow/providers/microsoft/azure/sensors/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
33
|
+
airflow/providers/microsoft/azure/sensors/cosmos.py,sha256=vRrJ8zJnApvuKxHia53tNZUZ7wILWFT3_5cEyMA2M1I,2637
|
34
|
+
airflow/providers/microsoft/azure/sensors/data_factory.py,sha256=vx4oVB2kUTxiLxJ1j45wtbb0ljW4vuj3PU6bLbnZTc0,5803
|
35
|
+
airflow/providers/microsoft/azure/sensors/wasb.py,sha256=8SWE7J3BbVVCi-fYohlKZqFs5BNkXXB26noA2-MfR-E,7918
|
36
|
+
airflow/providers/microsoft/azure/transfers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
37
|
+
airflow/providers/microsoft/azure/transfers/azure_blob_to_gcs.py,sha256=gOWKydikAyqACZdb573BSd9ptd9FdH1dzN1YDsNJ7hY,4641
|
38
|
+
airflow/providers/microsoft/azure/transfers/local_to_adls.py,sha256=yWY1OTpriUIXhFgod8eqPvmY0p_eKbBc1pZ3aMzFzPM,4816
|
39
|
+
airflow/providers/microsoft/azure/transfers/local_to_wasb.py,sha256=4CK9OKBW07BH4oCADES8O0_CMAXRM9sbe_qHsmLvvPA,2936
|
40
|
+
airflow/providers/microsoft/azure/transfers/oracle_to_azure_data_lake.py,sha256=_Mq9zUBZecGtYD5l0EalRFncWzEo9zgyQ-GwSM-H5ck,4536
|
41
|
+
airflow/providers/microsoft/azure/transfers/sftp_to_wasb.py,sha256=-VSa-7Pz4Uf8RYCeXSDaZCyBB9dT2J37PJyuxd2STAk,8202
|
42
|
+
airflow/providers/microsoft/azure/triggers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
43
|
+
airflow/providers/microsoft/azure/triggers/data_factory.py,sha256=F4PRQTkAVi0hqgIjA4HAA6iKMx6YSkM8U2LYObiRVQ0,8746
|
44
|
+
airflow/providers/microsoft/azure/triggers/wasb.py,sha256=Q3ebxfYYrQnOGJwXB8R1l7e76f4wz4FjudKG9oPacFw,7384
|
45
|
+
apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
46
|
+
apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info/METADATA,sha256=adHilFM_uif6qTmjAy-ma3eeTXNJD40-CPlZlnB7lN0,28773
|
47
|
+
apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info/NOTICE,sha256=m-6s2XynUxVSUIxO4rVablAZCvFq-wmLrqV91DotRBw,240
|
48
|
+
apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
49
|
+
apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info/entry_points.txt,sha256=mAQpo-U_MYTG3pa7xmaY5vG849FnAziWsdGpfV-16NM,112
|
50
|
+
apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info/top_level.txt,sha256=OeMVH5md7fr2QQWpnZoOWWxWO-0WH1IP70lpTVwopPg,8
|
51
|
+
apache_airflow_providers_microsoft_azure-6.1.2rc1.dist-info/RECORD,,
|
@@ -1,51 +0,0 @@
|
|
1
|
-
airflow/providers/microsoft/azure/__init__.py,sha256=sqGhvH8gS5IPXZF4u_Be3j-c2NLJyqDcWkMTHpQAuGQ,1540
|
2
|
-
airflow/providers/microsoft/azure/get_provider_info.py,sha256=eMBhJfntyzvuI7JVhUcGtmadOiH-vvmsEY3L1S1AirQ,16683
|
3
|
-
airflow/providers/microsoft/azure/utils.py,sha256=LLknJmH_10piRY6tO8KByNycjDe7MYwBf2tzOOYdTYs,2804
|
4
|
-
airflow/providers/microsoft/azure/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
5
|
-
airflow/providers/microsoft/azure/hooks/adx.py,sha256=G9mMDGdPPt_yohNGdlKFZD5BLYcVAbRO1knx9VUrYSI,8720
|
6
|
-
airflow/providers/microsoft/azure/hooks/asb.py,sha256=vYuVc3Xo28VuusIoNUqmFuBtSpGZsUEgLd731gxbQ4M,10986
|
7
|
-
airflow/providers/microsoft/azure/hooks/base_azure.py,sha256=YM9vlMZ5BFj-pzCdWi7uK_J4u_VVYypW8jVryxDgixo,4778
|
8
|
-
airflow/providers/microsoft/azure/hooks/batch.py,sha256=IWYDOCYbAeu8Az5r9O-zy1Xyg4WzPxjtSqeL1xJehFQ,15288
|
9
|
-
airflow/providers/microsoft/azure/hooks/container_instance.py,sha256=pF_ZO7SbHtEGzJMZNCBQTHqH9OQC7uBCm5ytAAAfwmE,6176
|
10
|
-
airflow/providers/microsoft/azure/hooks/container_registry.py,sha256=qSPIFWzu1OEvJDNWTb6VBc-Riu3e7kxZonovzKNAPZo,2458
|
11
|
-
airflow/providers/microsoft/azure/hooks/container_volume.py,sha256=QFTgNg3L7Y_EwWYKJYEoYODDY_BMgDB7fd3B8Vb5HVw,4058
|
12
|
-
airflow/providers/microsoft/azure/hooks/cosmos.py,sha256=qEyL7_xSsj-jVI6Mqqs2GhphzCkI_Wt1NJZV259ji-k,14222
|
13
|
-
airflow/providers/microsoft/azure/hooks/data_factory.py,sha256=J3lLlsGlP8ohjanu2-o9ljM_HOg36xwThMXk8-9dwIQ,42973
|
14
|
-
airflow/providers/microsoft/azure/hooks/data_lake.py,sha256=7qPr_rjRaUu6-eO6YBSc7F_bmVfuQ5z-AMLIDLmSwPs,21695
|
15
|
-
airflow/providers/microsoft/azure/hooks/fileshare.py,sha256=LV9gnORvV-XoUXRWmccmkMki2V6UQVf8vtZhdAzuOas,12985
|
16
|
-
airflow/providers/microsoft/azure/hooks/synapse.py,sha256=iufunt8i2yOVCK0Yi6VLK2I_TD7gguT2KmDadDv3a2E,7318
|
17
|
-
airflow/providers/microsoft/azure/hooks/wasb.py,sha256=XNHdt1ZrxQvcjzfjAJtClu5UsUk6j9Z1YNlBlzepmZs,27566
|
18
|
-
airflow/providers/microsoft/azure/log/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
19
|
-
airflow/providers/microsoft/azure/log/wasb_task_handler.py,sha256=tIRjgz2icbSS54ufkKPXTe612tyRIfnWfTThCR4u8a8,10038
|
20
|
-
airflow/providers/microsoft/azure/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
21
|
-
airflow/providers/microsoft/azure/operators/adls.py,sha256=ukLjR5ed9va4jq6sgKUBogkz63piYKpHAkK5Y4Dks98,3788
|
22
|
-
airflow/providers/microsoft/azure/operators/adx.py,sha256=j8ZeVI6MvnMMAYuiFZgW9QYJbDjB5ydA2mKJTtgerFY,3029
|
23
|
-
airflow/providers/microsoft/azure/operators/asb.py,sha256=m6vmbXK5j3uVgGFwfg21MEpE-OP9dUBUuSLIRLkIt_Q,29576
|
24
|
-
airflow/providers/microsoft/azure/operators/batch.py,sha256=zakpmBg_x3Q2raMHz1HQbV5zcvwK-STuUOVOgIzwkCw,16252
|
25
|
-
airflow/providers/microsoft/azure/operators/container_instances.py,sha256=dVPd2_KeUTzWPxj8puMJ-66mnl6Q65XcelJvnEbUZAA,15967
|
26
|
-
airflow/providers/microsoft/azure/operators/cosmos.py,sha256=kqTATZjUSoBsRynPGAMVS4t4Z_FKy7_PVtcyMiCAR9g,2766
|
27
|
-
airflow/providers/microsoft/azure/operators/data_factory.py,sha256=0n5602SIWat8MrJt7wKCXIh3nrUxuqmY63iRbNqR2j0,12432
|
28
|
-
airflow/providers/microsoft/azure/operators/synapse.py,sha256=KKnwRVLM--Kd9Acaw5GcUydX5IzR_GM2-PHw7mdq-BI,4422
|
29
|
-
airflow/providers/microsoft/azure/operators/wasb_delete_blob.py,sha256=GUfV9DLU1bGYvn2TE54iTYBTbxn3Jm_e985pXp_0IsE,2687
|
30
|
-
airflow/providers/microsoft/azure/secrets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
31
|
-
airflow/providers/microsoft/azure/secrets/key_vault.py,sha256=ZjF8qlhGH-qyf6lRWppoSCWJZnFFcArkeOYfOtC4lyQ,7902
|
32
|
-
airflow/providers/microsoft/azure/sensors/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
33
|
-
airflow/providers/microsoft/azure/sensors/cosmos.py,sha256=yZ1vfcKNAYsDcRXYXZI2Y4Sb7ZHapmsICCQQx6sdDWI,2643
|
34
|
-
airflow/providers/microsoft/azure/sensors/data_factory.py,sha256=Zi6ji0_NFGfRQdZxdcqKAMTrM3w0okBKTdJyMEEi_7w,5763
|
35
|
-
airflow/providers/microsoft/azure/sensors/wasb.py,sha256=yYeMlThGCueeGRvsIHL5UDhnDyOuLEGykny4Gr_Msrk,7838
|
36
|
-
airflow/providers/microsoft/azure/transfers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
37
|
-
airflow/providers/microsoft/azure/transfers/azure_blob_to_gcs.py,sha256=9z7-mtPd9Ki1RTBr9auTwX1EiCFML7LGR2Zu7_D8Z1o,4771
|
38
|
-
airflow/providers/microsoft/azure/transfers/local_to_adls.py,sha256=xofv-vqYsogNeS3-uEe71c8mm5cwiHlA5uGq9KPptdw,4815
|
39
|
-
airflow/providers/microsoft/azure/transfers/local_to_wasb.py,sha256=4CK9OKBW07BH4oCADES8O0_CMAXRM9sbe_qHsmLvvPA,2936
|
40
|
-
airflow/providers/microsoft/azure/transfers/oracle_to_azure_data_lake.py,sha256=FGtWxURltY398E80D3FmUq2IZPjYe4_6bnA7dHo7kQ4,4575
|
41
|
-
airflow/providers/microsoft/azure/transfers/sftp_to_wasb.py,sha256=zhU24VwrOazQSATy8i3aksjxUJCAra60K0nmHTyl5pI,8215
|
42
|
-
airflow/providers/microsoft/azure/triggers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
43
|
-
airflow/providers/microsoft/azure/triggers/data_factory.py,sha256=p5do_hbGthkTBqXaHOBKkuq6uPLGFqOH9uEmXfSUi6g,8859
|
44
|
-
airflow/providers/microsoft/azure/triggers/wasb.py,sha256=Q3ebxfYYrQnOGJwXB8R1l7e76f4wz4FjudKG9oPacFw,7384
|
45
|
-
apache_airflow_providers_microsoft_azure-6.1.1.dist-info/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
46
|
-
apache_airflow_providers_microsoft_azure-6.1.1.dist-info/METADATA,sha256=2jdvKrQUcGL_X0adEJ-CCrNS9z6Knl3Dhj9dm3exiMg,28029
|
47
|
-
apache_airflow_providers_microsoft_azure-6.1.1.dist-info/NOTICE,sha256=m-6s2XynUxVSUIxO4rVablAZCvFq-wmLrqV91DotRBw,240
|
48
|
-
apache_airflow_providers_microsoft_azure-6.1.1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
49
|
-
apache_airflow_providers_microsoft_azure-6.1.1.dist-info/entry_points.txt,sha256=mAQpo-U_MYTG3pa7xmaY5vG849FnAziWsdGpfV-16NM,112
|
50
|
-
apache_airflow_providers_microsoft_azure-6.1.1.dist-info/top_level.txt,sha256=OeMVH5md7fr2QQWpnZoOWWxWO-0WH1IP70lpTVwopPg,8
|
51
|
-
apache_airflow_providers_microsoft_azure-6.1.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|