apache-airflow-providers-yandex 2.2.2rc1__tar.gz → 4.3.0__tar.gz
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.
Potentially problematic release.
This version of apache-airflow-providers-yandex might be problematic. Click here for more details.
- apache_airflow_providers_yandex-4.3.0/NOTICE +5 -0
- apache_airflow_providers_yandex-4.3.0/PKG-INFO +131 -0
- apache_airflow_providers_yandex-4.3.0/README.rst +93 -0
- apache_airflow_providers_yandex-4.3.0/docs/.latest-doc-only-change.txt +1 -0
- apache_airflow_providers_yandex-4.3.0/docs/changelog.rst +598 -0
- apache_airflow_providers_yandex-4.3.0/docs/commits.rst +37 -0
- apache_airflow_providers_yandex-4.3.0/docs/conf.py +27 -0
- apache_airflow_providers_yandex-4.3.0/docs/configurations-ref.rst +19 -0
- apache_airflow_providers_yandex-4.3.0/docs/connections/yandexcloud.rst +95 -0
- apache_airflow_providers_yandex-4.3.0/docs/index.rst +139 -0
- apache_airflow_providers_yandex-4.3.0/docs/installing-providers-from-sources.rst +18 -0
- apache_airflow_providers_yandex-4.3.0/docs/integration-logos/Yandex-Cloud.png +0 -0
- apache_airflow_providers_yandex-4.3.0/docs/operators/dataproc.rst +37 -0
- apache_airflow_providers_yandex-4.3.0/docs/operators/index.rst +28 -0
- apache_airflow_providers_yandex-4.3.0/docs/operators/yq.rst +28 -0
- apache_airflow_providers_yandex-4.3.0/docs/secrets-backends/yandex-cloud-lockbox-secret-backend.rst +298 -0
- apache_airflow_providers_yandex-4.3.0/docs/security.rst +18 -0
- apache_airflow_providers_yandex-4.3.0/provider.yaml +128 -0
- apache_airflow_providers_yandex-4.3.0/pyproject.toml +122 -0
- apache_airflow_providers_yandex-4.3.0/src/airflow/__init__.py +17 -0
- apache_airflow_providers_yandex-4.3.0/src/airflow/providers/__init__.py +17 -0
- apache-airflow-providers-yandex-2.2.2rc1/setup.py → apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/__init__.py +16 -17
- apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/get_provider_info.py +91 -0
- apache-airflow-providers-yandex-2.2.2rc1/airflow/providers/yandex/hooks/yandexcloud_dataproc.py → apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/hooks/dataproc.py +22 -2
- apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/hooks/yandex.py +146 -0
- apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/hooks/yq.py +106 -0
- apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/links/yq.py +40 -0
- apache-airflow-providers-yandex-2.2.2rc1/airflow/providers/yandex/operators/yandexcloud_dataproc.py → apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/operators/dataproc.py +222 -171
- apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/operators/yq.py +93 -0
- apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/secrets/lockbox.py +290 -0
- apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/utils/__init__.py +16 -0
- apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/utils/credentials.py +107 -0
- apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/utils/defaults.py +22 -0
- apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/utils/fields.py +42 -0
- apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/utils/user_agent.py +48 -0
- apache-airflow-providers-yandex-2.2.2rc1/MANIFEST.in → apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/version_compat.py +14 -10
- apache_airflow_providers_yandex-4.3.0/tests/conftest.py +19 -0
- apache_airflow_providers_yandex-4.3.0/tests/system/__init__.py +17 -0
- apache_airflow_providers_yandex-4.3.0/tests/system/yandex/__init__.py +16 -0
- apache_airflow_providers_yandex-4.3.0/tests/system/yandex/example_yandexcloud.py +215 -0
- apache_airflow_providers_yandex-4.3.0/tests/system/yandex/example_yandexcloud_dataproc.py +179 -0
- apache_airflow_providers_yandex-4.3.0/tests/system/yandex/example_yandexcloud_dataproc_lightweight.py +87 -0
- apache_airflow_providers_yandex-4.3.0/tests/system/yandex/example_yandexcloud_yq.py +52 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/__init__.py +17 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/__init__.py +16 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/hooks/__init__.py +16 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/hooks/test_dataproc.py +194 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/hooks/test_yandex.py +152 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/hooks/test_yq.py +135 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/links/__init__.py +16 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/links/test_yq.py +68 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/operators/__init__.py +16 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/operators/test_dataproc.py +452 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/operators/test_yq.py +123 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/secrets/__init__.py +16 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/secrets/test_lockbox.py +475 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/utils/__init__.py +16 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/utils/test_credentials.py +168 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/utils/test_defaults.py +16 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/utils/test_fields.py +83 -0
- apache_airflow_providers_yandex-4.3.0/tests/unit/yandex/utils/test_user_agent.py +56 -0
- apache-airflow-providers-yandex-2.2.2rc1/NOTICE +0 -6
- apache-airflow-providers-yandex-2.2.2rc1/PKG-INFO +0 -216
- apache-airflow-providers-yandex-2.2.2rc1/README.rst +0 -180
- apache-airflow-providers-yandex-2.2.2rc1/airflow/providers/yandex/example_dags/example_yandexcloud_dataproc.py +0 -155
- apache-airflow-providers-yandex-2.2.2rc1/airflow/providers/yandex/get_provider_info.py +0 -66
- apache-airflow-providers-yandex-2.2.2rc1/airflow/providers/yandex/hooks/yandex.py +0 -153
- apache-airflow-providers-yandex-2.2.2rc1/apache_airflow_providers_yandex.egg-info/PKG-INFO +0 -216
- apache-airflow-providers-yandex-2.2.2rc1/apache_airflow_providers_yandex.egg-info/SOURCES.txt +0 -23
- apache-airflow-providers-yandex-2.2.2rc1/apache_airflow_providers_yandex.egg-info/dependency_links.txt +0 -1
- apache-airflow-providers-yandex-2.2.2rc1/apache_airflow_providers_yandex.egg-info/entry_points.txt +0 -3
- apache-airflow-providers-yandex-2.2.2rc1/apache_airflow_providers_yandex.egg-info/not-zip-safe +0 -1
- apache-airflow-providers-yandex-2.2.2rc1/apache_airflow_providers_yandex.egg-info/requires.txt +0 -4
- apache-airflow-providers-yandex-2.2.2rc1/apache_airflow_providers_yandex.egg-info/top_level.txt +0 -1
- apache-airflow-providers-yandex-2.2.2rc1/pyproject.toml +0 -20
- apache-airflow-providers-yandex-2.2.2rc1/setup.cfg +0 -64
- {apache-airflow-providers-yandex-2.2.2rc1 → apache_airflow_providers_yandex-4.3.0}/LICENSE +0 -0
- {apache-airflow-providers-yandex-2.2.2rc1/airflow/providers/yandex → apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/hooks}/__init__.py +0 -0
- {apache-airflow-providers-yandex-2.2.2rc1/airflow/providers/yandex/example_dags → apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/links}/__init__.py +0 -0
- {apache-airflow-providers-yandex-2.2.2rc1/airflow/providers/yandex/hooks → apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/operators}/__init__.py +0 -0
- {apache-airflow-providers-yandex-2.2.2rc1/airflow/providers/yandex/operators → apache_airflow_providers_yandex-4.3.0/src/airflow/providers/yandex/secrets}/__init__.py +0 -0
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: apache-airflow-providers-yandex
|
|
3
|
+
Version: 4.3.0
|
|
4
|
+
Summary: Provider package apache-airflow-providers-yandex for Apache Airflow
|
|
5
|
+
Keywords: airflow-provider,yandex,airflow,integration
|
|
6
|
+
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
7
|
+
Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
8
|
+
Requires-Python: >=3.10,!=3.13
|
|
9
|
+
Description-Content-Type: text/x-rst
|
|
10
|
+
License-Expression: Apache-2.0
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Environment :: Web Environment
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Intended Audience :: System Administrators
|
|
16
|
+
Classifier: Framework :: Apache Airflow
|
|
17
|
+
Classifier: Framework :: Apache Airflow :: Provider
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Topic :: System :: Monitoring
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
License-File: NOTICE
|
|
24
|
+
Requires-Dist: apache-airflow>=2.11.0
|
|
25
|
+
Requires-Dist: yandexcloud>=0.308.0; python_version < '3.13'
|
|
26
|
+
Requires-Dist: yandex-query-client>=0.1.4; python_version < '3.13'
|
|
27
|
+
Requires-Dist: apache-airflow-providers-common-compat>=1.8.0
|
|
28
|
+
Requires-Dist: apache-airflow-providers-common-compat ; extra == "common-compat"
|
|
29
|
+
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
30
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.3.0/changelog.html
|
|
31
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.3.0
|
|
32
|
+
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
33
|
+
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
34
|
+
Project-URL: Source Code, https://github.com/apache/airflow
|
|
35
|
+
Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
36
|
+
Provides-Extra: common-compat
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
40
|
+
or more contributor license agreements. See the NOTICE file
|
|
41
|
+
distributed with this work for additional information
|
|
42
|
+
regarding copyright ownership. The ASF licenses this file
|
|
43
|
+
to you under the Apache License, Version 2.0 (the
|
|
44
|
+
"License"); you may not use this file except in compliance
|
|
45
|
+
with the License. You may obtain a copy of the License at
|
|
46
|
+
|
|
47
|
+
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
48
|
+
|
|
49
|
+
.. Unless required by applicable law or agreed to in writing,
|
|
50
|
+
software distributed under the License is distributed on an
|
|
51
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
52
|
+
KIND, either express or implied. See the License for the
|
|
53
|
+
specific language governing permissions and limitations
|
|
54
|
+
under the License.
|
|
55
|
+
|
|
56
|
+
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
|
|
57
|
+
|
|
58
|
+
.. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
|
59
|
+
``PROVIDER_README_TEMPLATE.rst.jinja2`` IN the ``dev/breeze/src/airflow_breeze/templates`` DIRECTORY
|
|
60
|
+
|
|
61
|
+
Package ``apache-airflow-providers-yandex``
|
|
62
|
+
|
|
63
|
+
Release: ``4.3.0``
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
This package is for Yandex, including:
|
|
67
|
+
|
|
68
|
+
- `Yandex.Cloud <https://cloud.yandex.com/>`__
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
Provider package
|
|
72
|
+
----------------
|
|
73
|
+
|
|
74
|
+
This is a provider package for ``yandex`` provider. All classes for this provider package
|
|
75
|
+
are in ``airflow.providers.yandex`` python package.
|
|
76
|
+
|
|
77
|
+
You can find package information and changelog for the provider
|
|
78
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.3.0/>`_.
|
|
79
|
+
|
|
80
|
+
Installation
|
|
81
|
+
------------
|
|
82
|
+
|
|
83
|
+
You can install this package on top of an existing Airflow installation (see ``Requirements`` below
|
|
84
|
+
for the minimum Airflow version supported) via
|
|
85
|
+
``pip install apache-airflow-providers-yandex``
|
|
86
|
+
|
|
87
|
+
The package supports the following python versions: 3.10,3.11,3.12
|
|
88
|
+
|
|
89
|
+
Requirements
|
|
90
|
+
------------
|
|
91
|
+
|
|
92
|
+
========================================== ======================================
|
|
93
|
+
PIP package Version required
|
|
94
|
+
========================================== ======================================
|
|
95
|
+
``apache-airflow`` ``>=2.11.0``
|
|
96
|
+
``yandexcloud`` ``>=0.308.0; python_version < "3.13"``
|
|
97
|
+
``yandex-query-client`` ``>=0.1.4; python_version < "3.13"``
|
|
98
|
+
``apache-airflow-providers-common-compat`` ``>=1.8.0``
|
|
99
|
+
========================================== ======================================
|
|
100
|
+
|
|
101
|
+
Cross provider package dependencies
|
|
102
|
+
-----------------------------------
|
|
103
|
+
|
|
104
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
105
|
+
You need to install the specified providers in order to use them.
|
|
106
|
+
|
|
107
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
108
|
+
|
|
109
|
+
.. code-block:: bash
|
|
110
|
+
|
|
111
|
+
pip install apache-airflow-providers-yandex[common.compat]
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
================================================================================================================== =================
|
|
115
|
+
Dependent package Extra
|
|
116
|
+
================================================================================================================== =================
|
|
117
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
118
|
+
================================================================================================================== =================
|
|
119
|
+
|
|
120
|
+
Optional dependencies
|
|
121
|
+
----------------------
|
|
122
|
+
|
|
123
|
+
================= ==========================================
|
|
124
|
+
Extra Dependencies
|
|
125
|
+
================= ==========================================
|
|
126
|
+
``common.compat`` ``apache-airflow-providers-common-compat``
|
|
127
|
+
================= ==========================================
|
|
128
|
+
|
|
129
|
+
The changelog for the provider package can be found in the
|
|
130
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.3.0/changelog.html>`_.
|
|
131
|
+
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
|
|
2
|
+
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
3
|
+
or more contributor license agreements. See the NOTICE file
|
|
4
|
+
distributed with this work for additional information
|
|
5
|
+
regarding copyright ownership. The ASF licenses this file
|
|
6
|
+
to you under the Apache License, Version 2.0 (the
|
|
7
|
+
"License"); you may not use this file except in compliance
|
|
8
|
+
with the License. You may obtain a copy of the License at
|
|
9
|
+
|
|
10
|
+
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
|
|
12
|
+
.. Unless required by applicable law or agreed to in writing,
|
|
13
|
+
software distributed under the License is distributed on an
|
|
14
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
15
|
+
KIND, either express or implied. See the License for the
|
|
16
|
+
specific language governing permissions and limitations
|
|
17
|
+
under the License.
|
|
18
|
+
|
|
19
|
+
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
|
|
20
|
+
|
|
21
|
+
.. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
|
22
|
+
``PROVIDER_README_TEMPLATE.rst.jinja2`` IN the ``dev/breeze/src/airflow_breeze/templates`` DIRECTORY
|
|
23
|
+
|
|
24
|
+
Package ``apache-airflow-providers-yandex``
|
|
25
|
+
|
|
26
|
+
Release: ``4.3.0``
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
This package is for Yandex, including:
|
|
30
|
+
|
|
31
|
+
- `Yandex.Cloud <https://cloud.yandex.com/>`__
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
Provider package
|
|
35
|
+
----------------
|
|
36
|
+
|
|
37
|
+
This is a provider package for ``yandex`` provider. All classes for this provider package
|
|
38
|
+
are in ``airflow.providers.yandex`` python package.
|
|
39
|
+
|
|
40
|
+
You can find package information and changelog for the provider
|
|
41
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.3.0/>`_.
|
|
42
|
+
|
|
43
|
+
Installation
|
|
44
|
+
------------
|
|
45
|
+
|
|
46
|
+
You can install this package on top of an existing Airflow installation (see ``Requirements`` below
|
|
47
|
+
for the minimum Airflow version supported) via
|
|
48
|
+
``pip install apache-airflow-providers-yandex``
|
|
49
|
+
|
|
50
|
+
The package supports the following python versions: 3.10,3.11,3.12
|
|
51
|
+
|
|
52
|
+
Requirements
|
|
53
|
+
------------
|
|
54
|
+
|
|
55
|
+
========================================== ======================================
|
|
56
|
+
PIP package Version required
|
|
57
|
+
========================================== ======================================
|
|
58
|
+
``apache-airflow`` ``>=2.11.0``
|
|
59
|
+
``yandexcloud`` ``>=0.308.0; python_version < "3.13"``
|
|
60
|
+
``yandex-query-client`` ``>=0.1.4; python_version < "3.13"``
|
|
61
|
+
``apache-airflow-providers-common-compat`` ``>=1.8.0``
|
|
62
|
+
========================================== ======================================
|
|
63
|
+
|
|
64
|
+
Cross provider package dependencies
|
|
65
|
+
-----------------------------------
|
|
66
|
+
|
|
67
|
+
Those are dependencies that might be needed in order to use all the features of the package.
|
|
68
|
+
You need to install the specified providers in order to use them.
|
|
69
|
+
|
|
70
|
+
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
71
|
+
|
|
72
|
+
.. code-block:: bash
|
|
73
|
+
|
|
74
|
+
pip install apache-airflow-providers-yandex[common.compat]
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
================================================================================================================== =================
|
|
78
|
+
Dependent package Extra
|
|
79
|
+
================================================================================================================== =================
|
|
80
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
81
|
+
================================================================================================================== =================
|
|
82
|
+
|
|
83
|
+
Optional dependencies
|
|
84
|
+
----------------------
|
|
85
|
+
|
|
86
|
+
================= ==========================================
|
|
87
|
+
Extra Dependencies
|
|
88
|
+
================= ==========================================
|
|
89
|
+
``common.compat`` ``apache-airflow-providers-common-compat``
|
|
90
|
+
================= ==========================================
|
|
91
|
+
|
|
92
|
+
The changelog for the provider package can be found in the
|
|
93
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.3.0/changelog.html>`_.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
134348e1895ad54cfa4d3a75a78bafe872328b11
|