openmetadata-managed-apis 1.7.0.0rc1__py3-none-any.whl → 1.7.0.1__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.
Files changed (52) hide show
  1. openmetadata_managed_apis/__init__.py +3 -3
  2. openmetadata_managed_apis/api/apis_metadata.py +3 -3
  3. openmetadata_managed_apis/api/app.py +3 -3
  4. openmetadata_managed_apis/api/config.py +3 -3
  5. openmetadata_managed_apis/api/error_handlers.py +3 -3
  6. openmetadata_managed_apis/api/response.py +3 -3
  7. openmetadata_managed_apis/api/routes/delete.py +3 -3
  8. openmetadata_managed_apis/api/routes/deploy.py +3 -3
  9. openmetadata_managed_apis/api/routes/disable.py +3 -3
  10. openmetadata_managed_apis/api/routes/enable.py +3 -3
  11. openmetadata_managed_apis/api/routes/health.py +3 -3
  12. openmetadata_managed_apis/api/routes/health_auth.py +3 -3
  13. openmetadata_managed_apis/api/routes/ip.py +3 -3
  14. openmetadata_managed_apis/api/routes/kill.py +3 -3
  15. openmetadata_managed_apis/api/routes/last_dag_logs.py +3 -3
  16. openmetadata_managed_apis/api/routes/run_automation.py +3 -3
  17. openmetadata_managed_apis/api/routes/status.py +3 -3
  18. openmetadata_managed_apis/api/routes/trigger.py +3 -3
  19. openmetadata_managed_apis/api/utils.py +3 -3
  20. openmetadata_managed_apis/operations/delete.py +3 -3
  21. openmetadata_managed_apis/operations/deploy.py +3 -3
  22. openmetadata_managed_apis/operations/health.py +3 -3
  23. openmetadata_managed_apis/operations/kill_all.py +3 -3
  24. openmetadata_managed_apis/operations/last_dag_logs.py +2 -2
  25. openmetadata_managed_apis/operations/state.py +3 -3
  26. openmetadata_managed_apis/operations/status.py +3 -3
  27. openmetadata_managed_apis/operations/trigger.py +3 -3
  28. openmetadata_managed_apis/plugin.py +3 -3
  29. openmetadata_managed_apis/utils/parser.py +3 -3
  30. openmetadata_managed_apis/views/rest_api.py +3 -3
  31. openmetadata_managed_apis/workflows/config.py +3 -3
  32. openmetadata_managed_apis/workflows/ingestion/application.py +3 -3
  33. openmetadata_managed_apis/workflows/ingestion/auto_classification.py +3 -3
  34. openmetadata_managed_apis/workflows/ingestion/common.py +3 -3
  35. openmetadata_managed_apis/workflows/ingestion/dbt.py +2 -2
  36. openmetadata_managed_apis/workflows/ingestion/elasticsearch_sink.py +3 -3
  37. openmetadata_managed_apis/workflows/ingestion/es_reindex.py +3 -3
  38. openmetadata_managed_apis/workflows/ingestion/lineage.py +3 -3
  39. openmetadata_managed_apis/workflows/ingestion/metadata.py +3 -3
  40. openmetadata_managed_apis/workflows/ingestion/profiler.py +3 -3
  41. openmetadata_managed_apis/workflows/ingestion/registry.py +3 -3
  42. openmetadata_managed_apis/workflows/ingestion/test_suite.py +3 -3
  43. openmetadata_managed_apis/workflows/ingestion/usage.py +3 -3
  44. openmetadata_managed_apis/workflows/workflow_builder.py +3 -3
  45. openmetadata_managed_apis/workflows/workflow_factory.py +3 -3
  46. {openmetadata_managed_apis-1.7.0.0rc1.dist-info → openmetadata_managed_apis-1.7.0.1.dist-info}/METADATA +2 -2
  47. openmetadata_managed_apis-1.7.0.1.dist-info/RECORD +62 -0
  48. openmetadata_managed_apis-1.7.0.0rc1.dist-info/RECORD +0 -62
  49. {openmetadata_managed_apis-1.7.0.0rc1.dist-info → openmetadata_managed_apis-1.7.0.1.dist-info}/LICENSE +0 -0
  50. {openmetadata_managed_apis-1.7.0.0rc1.dist-info → openmetadata_managed_apis-1.7.0.1.dist-info}/WHEEL +0 -0
  51. {openmetadata_managed_apis-1.7.0.0rc1.dist-info → openmetadata_managed_apis-1.7.0.1.dist-info}/entry_points.txt +0 -0
  52. {openmetadata_managed_apis-1.7.0.0rc1.dist-info → openmetadata_managed_apis-1.7.0.1.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
1
  # Copyright 2022 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
1
  # Copyright 2022 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,8 +1,8 @@
1
- # Copyright 2021 Collate
2
- # Licensed under the Apache License, Version 2.0 (the "License");
1
+ # Copyright 2025 Collate
2
+ # Licensed under the Collate Community License, Version 1.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
5
- # http://www.apache.org/licenses/LICENSE-2.0
5
+ # https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
6
6
  # Unless required by applicable law or agreed to in writing, software
7
7
  # distributed under the License is distributed on an "AS IS" BASIS,
8
8
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: openmetadata_managed_apis
3
- Version: 1.7.0.0rc1
3
+ Version: 1.7.0.1
4
4
  Summary: Airflow REST APIs to create and manage DAGS
5
5
  Author: OpenMetadata Committers
6
6
  License: Apache License
@@ -207,7 +207,7 @@ License: Apache License
207
207
  Project-URL: Homepage, https://open-metadata.org/
208
208
  Project-URL: Documentation, https://docs.open-metadata.org/
209
209
  Project-URL: Source, https://github.com/open-metadata/OpenMetadata
210
- Requires-Python: >=3.8
210
+ Requires-Python: >=3.9
211
211
  Description-Content-Type: text/markdown
212
212
  License-File: LICENSE
213
213
  Requires-Dist: pendulum ~=3.0
@@ -0,0 +1,62 @@
1
+ openmetadata_managed_apis/__init__.py,sha256=hpTH8PWvEwBG78Mp8TVWC3rBn1Kt2RXEFX7EoaIKV3g,639
2
+ openmetadata_managed_apis/plugin.py,sha256=O6QpGYVQ1CrIgEcdH9rxjnHFswIy8bpxGYlDW6F6t3I,1661
3
+ openmetadata_managed_apis/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ openmetadata_managed_apis/api/apis_metadata.py,sha256=T4iutGPFRFSoyrssjlsMMo_rtsch-T-GWceVoy-ezV0,4626
5
+ openmetadata_managed_apis/api/app.py,sha256=dKPK8-NvFr3xJdRAEvyaZ_b1ISN3NKmHQEhHOOpVVxM,1406
6
+ openmetadata_managed_apis/api/config.py,sha256=mkhl8-jw7_ayNRO9_w7bvxpeJmoMl4ikHcvcayOEZas,1392
7
+ openmetadata_managed_apis/api/error_handlers.py,sha256=N5NrJlRwmhFdLDiy61lzpD2TjWP3ytasmMGV6r0Sxbc,1403
8
+ openmetadata_managed_apis/api/response.py,sha256=tc4Vgd0qmd33eEaBx31r6Gi5KopLEwEcQ8DX9Rd90gE,2768
9
+ openmetadata_managed_apis/api/utils.py,sha256=nGOUzJgnZ_0vkId46Ab1a1hvar0vrHj1ap67UoZR8sE,4753
10
+ openmetadata_managed_apis/api/routes/__init__.py,sha256=Fx0Abo8-NkK39Y3Xw2XzLnphDM_TiSniZfVL29zHTxw,217
11
+ openmetadata_managed_apis/api/routes/delete.py,sha256=tI-1Y12H_8UNOUQW_p_05KXtcGqzO1rSzPsVVoNopFE,2526
12
+ openmetadata_managed_apis/api/routes/deploy.py,sha256=KvCY36qzNSd2T9jV1I5E_TmlQF-16JMbjmbqN1TTOjI,3243
13
+ openmetadata_managed_apis/api/routes/disable.py,sha256=X930jHXJy8puQjEZVLFmELqKLsZFl6DNQQbG14n5FoY,2142
14
+ openmetadata_managed_apis/api/routes/enable.py,sha256=Z8fFwBYJ-WvVcK7A9yUqZNHr4fuRD2lpfa9wFvEJ3y0,2137
15
+ openmetadata_managed_apis/api/routes/health.py,sha256=7w1qXN-zKPSbQEq3WOGQJ5SPsHit10pPdVFBskqzfNs,1462
16
+ openmetadata_managed_apis/api/routes/health_auth.py,sha256=vwfKDZDs_kUefFSZAE-2Apna2SY45ZjlPPhzGACIZ1o,1679
17
+ openmetadata_managed_apis/api/routes/ip.py,sha256=JNB28JfjRiu3__pX1w4XdQqVM5LQ-AJ48CpFDCmZ1wI,2969
18
+ openmetadata_managed_apis/api/routes/kill.py,sha256=hHYJnYonSr2M9br0Hwv6-y5mZa7x_yiTX1g25bkzy98,2178
19
+ openmetadata_managed_apis/api/routes/last_dag_logs.py,sha256=fum-ugonKO4nKtaTep9AZmnURIxOfx6Uh27s68Qkum0,2387
20
+ openmetadata_managed_apis/api/routes/run_automation.py,sha256=axlkIk87rmfC-eeoYPkIevJWzQ6FQz93D2UHbiIgRXM,3344
21
+ openmetadata_managed_apis/api/routes/status.py,sha256=6fIWqBXS_77koEdaZQKjyAkdfc5QiYbPatIsq7V2WvQ,2227
22
+ openmetadata_managed_apis/api/routes/trigger.py,sha256=JTPhw7DIHjZjtifw5PLeCOxiJFOfO20AYVuJZ0cN_TI,2252
23
+ openmetadata_managed_apis/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ openmetadata_managed_apis/operations/delete.py,sha256=aduDpBiDcvcOtA606GFZcw7QxjHBt5sbervur1M4dTY,2293
25
+ openmetadata_managed_apis/operations/deploy.py,sha256=3R9LNs1JvAzYqa8Fh_gsUW8X706bKgbmyHfWBB1wzxU,7117
26
+ openmetadata_managed_apis/operations/health.py,sha256=pWyRqAflxsqc3ml2zHddRnWZG6tSyNwDPLdQA8ZspCU,1418
27
+ openmetadata_managed_apis/operations/kill_all.py,sha256=nMRfuc45oZL1G2k9ufBUgmMCTsDu1CmeU0L7dYJE0nY,2340
28
+ openmetadata_managed_apis/operations/last_dag_logs.py,sha256=ioABe_dZBZqmxhK-Ig4ew-S9scdVePYWESw-dO_MnKY,4060
29
+ openmetadata_managed_apis/operations/state.py,sha256=6eTL0iS3LcWOJmcLE66HBtyVxw68FH8SLWrxSuv6ZLg,2049
30
+ openmetadata_managed_apis/operations/status.py,sha256=9ZFEgVHggQRDPXLFYZ3eqqHhVl7qg008nPL0VdzUFto,1858
31
+ openmetadata_managed_apis/operations/trigger.py,sha256=wzf29vO7jxWEr4NKMSLvsrwZQqkitTVCZcZaU97kzbE,1290
32
+ openmetadata_managed_apis/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ openmetadata_managed_apis/resources/dag_runner.j2,sha256=DdNQEjqtn1hwBPLo6rqQ2Srsc1PhiHKlqUvYaB4AcmU,285
34
+ openmetadata_managed_apis/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ openmetadata_managed_apis/utils/logger.py,sha256=C6JYCI-8oBHZHF4cDebIQLvMIiRE-I7gkJNbUDEqn4g,2033
36
+ openmetadata_managed_apis/utils/parser.py,sha256=XayyxLNHwzmooetWi8ZmKhoQGPm_r5pshOiQcL7UzdI,3885
37
+ openmetadata_managed_apis/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ openmetadata_managed_apis/views/rest_api.py,sha256=ErdQ6yg81B-r4Uk0Ry8vkX5ZNdqFx_xFDdZeXSuetrQ,1680
39
+ openmetadata_managed_apis/views/templates/rest_api/index.html,sha256=h6MONxll2wmG_-uRO1h13TtNwLlqhFpZp4zNaXUiA_E,6004
40
+ openmetadata_managed_apis/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ openmetadata_managed_apis/workflows/config.py,sha256=CsltqC736TbpgwjZUM44_StZLujB92LNmzQ6Aq8S8qE,1122
42
+ openmetadata_managed_apis/workflows/workflow_builder.py,sha256=ZPaS6bXgQgTSfuXO9y3q8Yn8NxBwnO2Gxiygy2fE8t4,2080
43
+ openmetadata_managed_apis/workflows/workflow_factory.py,sha256=HmyTHQ_WuKBTBQ09vk7InULOQ-01LnwijTAgKU7PPxs,3150
44
+ openmetadata_managed_apis/workflows/ingestion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ openmetadata_managed_apis/workflows/ingestion/application.py,sha256=QE-Dx6D6JZ8wlY6vNpbCR9WB-tYEQweICP9rHIjvui8,3627
46
+ openmetadata_managed_apis/workflows/ingestion/auto_classification.py,sha256=wZjx2wWatJqVbOoW8ssvmtmw9BWoX5Dk8Jm9QBIcNP4,3086
47
+ openmetadata_managed_apis/workflows/ingestion/common.py,sha256=psM-UTAcZd537mb95jm6kTkXdYmSdA8DIzhYB3djGq0,14611
48
+ openmetadata_managed_apis/workflows/ingestion/dbt.py,sha256=nuQ1xAaQL1oulpkzGxviXblRZp1h_d5eVnSwOJhv_p0,2161
49
+ openmetadata_managed_apis/workflows/ingestion/elasticsearch_sink.py,sha256=blXh5m4mlTNGkshXP-5sWZXlU9aDPutWWEoaG51SWqU,2049
50
+ openmetadata_managed_apis/workflows/ingestion/es_reindex.py,sha256=xi1sCAeFKgW7_Wci1bt6KIjbAGGMDRx6zJ8XHV7t_gw,3423
51
+ openmetadata_managed_apis/workflows/ingestion/lineage.py,sha256=dvMMlSGNi-5h5ZUP92VJxQ4Eefl3P30dHDE26RbkfrI,2147
52
+ openmetadata_managed_apis/workflows/ingestion/metadata.py,sha256=HE0OZSMF_w8Nh0FhvVg9m-X8tAVpe4pkBysEi3XyHMo,2058
53
+ openmetadata_managed_apis/workflows/ingestion/profiler.py,sha256=_ihyaohXEZc7c7Pz0IdOMZ-0Qjn7_Q00g24HWaumvgc,2972
54
+ openmetadata_managed_apis/workflows/ingestion/registry.py,sha256=xbB6NdHrxEYUdBHxyrcJkyVGYKhuSI1WoLVvWeWCdz0,2356
55
+ openmetadata_managed_apis/workflows/ingestion/test_suite.py,sha256=ma0qxL7b4Uc_b7l1CG21BDWPTYHqYBu0YkKhwYHtKrc,2979
56
+ openmetadata_managed_apis/workflows/ingestion/usage.py,sha256=7ib_vPMMuICcQo_enRGINR3M7NsLcOmFTCYkO-wnJpY,3747
57
+ openmetadata_managed_apis-1.7.0.1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
58
+ openmetadata_managed_apis-1.7.0.1.dist-info/METADATA,sha256=mOslsP9Fs-PYqP9oXcPVd1_Iig0SFMZXDNi8KFk9m_I,21758
59
+ openmetadata_managed_apis-1.7.0.1.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
60
+ openmetadata_managed_apis-1.7.0.1.dist-info/entry_points.txt,sha256=zknKSL_4J9dZRwSySrmb5sPnSMpmIpZ4_k-Aa4uwUHQ,93
61
+ openmetadata_managed_apis-1.7.0.1.dist-info/top_level.txt,sha256=GygnYc036LyoClYqtk72V3gk7sX5fAKAr9fggnvxNgA,26
62
+ openmetadata_managed_apis-1.7.0.1.dist-info/RECORD,,
@@ -1,62 +0,0 @@
1
- openmetadata_managed_apis/__init__.py,sha256=-OYTiH9BoZuLRVfZEyuQpdWdbTUkluUQzC1SDH59WNA,597
2
- openmetadata_managed_apis/plugin.py,sha256=gQlqt23mMHPmvHoUqfMDTHHLhBEj7rVBSP6SqWv3As0,1619
3
- openmetadata_managed_apis/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- openmetadata_managed_apis/api/apis_metadata.py,sha256=ONZZi9k4N5WEOEwRrkY1WrFLCnHYaDqLiELmUmFfC2s,4584
5
- openmetadata_managed_apis/api/app.py,sha256=PEDp8X100wp1Z3myu5x6zPjo8BS5gjFMcmAxM5nUTP8,1364
6
- openmetadata_managed_apis/api/config.py,sha256=8O7ArdCvBS5OLIov_wiMvYVHn_VFjDIHh3m3sjsEr8w,1350
7
- openmetadata_managed_apis/api/error_handlers.py,sha256=S02xkMBCgR8OAJ5CQyI5rS-O3KxHfJXTbyw9Y3Iw808,1361
8
- openmetadata_managed_apis/api/response.py,sha256=B89vT5wjVjpc0vNv1yd3kWnRNQYTe22gQKodTQtzjCs,2726
9
- openmetadata_managed_apis/api/utils.py,sha256=Yc4aHUowSemmb489OLwyP_ju6HTA-YHM8PWdPoGZGwo,4711
10
- openmetadata_managed_apis/api/routes/__init__.py,sha256=Fx0Abo8-NkK39Y3Xw2XzLnphDM_TiSniZfVL29zHTxw,217
11
- openmetadata_managed_apis/api/routes/delete.py,sha256=QECCpD0dHQGVGvRyoIAlRZ3yqLUIUokZQKTwByuzViA,2484
12
- openmetadata_managed_apis/api/routes/deploy.py,sha256=mvtxT40-6RNAasTD5XGkTvNJM9d9hzjuVroU51io1IY,3201
13
- openmetadata_managed_apis/api/routes/disable.py,sha256=Wc84hpOdpR1iNzqUeTghkwlsFWIqdEjZIyEIkd5u32g,2100
14
- openmetadata_managed_apis/api/routes/enable.py,sha256=X_6WFRk5f61C1M4WOlf93KXnBCvfhoKEDNt6koAg_d0,2095
15
- openmetadata_managed_apis/api/routes/health.py,sha256=WCqF9yD8oGro85nVnB73wOSGNEDEWfAaoapDfu-knAc,1420
16
- openmetadata_managed_apis/api/routes/health_auth.py,sha256=9-XkWQKN5GUJ3XjZvxbyQBAMlvHNR8FRAFJjZGpx1og,1637
17
- openmetadata_managed_apis/api/routes/ip.py,sha256=jCVWfHqXHB_54qKGcX7xbZVGmMhHKUkpmaTwagvsJbc,2927
18
- openmetadata_managed_apis/api/routes/kill.py,sha256=wvWwQcCCLIYGmk45_FF0ZN4tl2GSd1UmFK24StXMYPc,2136
19
- openmetadata_managed_apis/api/routes/last_dag_logs.py,sha256=-YcizJ50W1Bb2icqFOO4aJtmqY4SK2lFFn4yLpDykmo,2345
20
- openmetadata_managed_apis/api/routes/run_automation.py,sha256=faWWRALRtBNCqZRHVDyhImeL3fRucx3MucDoz98HrfE,3302
21
- openmetadata_managed_apis/api/routes/status.py,sha256=xjyXj5m707aK4fdywVNKRJ3gl08_9RNvWfwX3ci-KXY,2185
22
- openmetadata_managed_apis/api/routes/trigger.py,sha256=8wzRDT8QsdrElN0yZE3cbZQa4Hs6AhZIG3GRe-2Cl2w,2210
23
- openmetadata_managed_apis/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- openmetadata_managed_apis/operations/delete.py,sha256=Bq66J7CdMrYRKw6wWkT1sRB4-8HoFRMxJELJXONdbh4,2251
25
- openmetadata_managed_apis/operations/deploy.py,sha256=4yrO97R9e56PLl31mWhDcR7sETuYPfg-jA5SMPpniQo,7075
26
- openmetadata_managed_apis/operations/health.py,sha256=840Sdb5n5X8IY_76ahERdFpGJNzQkT9tAoTkunBx5QQ,1376
27
- openmetadata_managed_apis/operations/kill_all.py,sha256=Pu7VMqYRnQwCFeA6N9kl4I9CEJZh9k4J-PHOaeV0qf4,2298
28
- openmetadata_managed_apis/operations/last_dag_logs.py,sha256=q2Q3dXgRsRFUFCgsCG-kYjAWxv38qsO0vJPIHzToRds,4018
29
- openmetadata_managed_apis/operations/state.py,sha256=EtXksdHrPPPGzf_kmt2DErXLcyDK7BeLFr5uHc8Egoo,2007
30
- openmetadata_managed_apis/operations/status.py,sha256=oYYahoOh5RdljQzNw04Ay433OmizHXkNc2RAfTrSec0,1816
31
- openmetadata_managed_apis/operations/trigger.py,sha256=LUJ2S7Prp1EfKwCh8wqv4uHXzPUJCG0SirfWEt3Gdow,1248
32
- openmetadata_managed_apis/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- openmetadata_managed_apis/resources/dag_runner.j2,sha256=DdNQEjqtn1hwBPLo6rqQ2Srsc1PhiHKlqUvYaB4AcmU,285
34
- openmetadata_managed_apis/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- openmetadata_managed_apis/utils/logger.py,sha256=C6JYCI-8oBHZHF4cDebIQLvMIiRE-I7gkJNbUDEqn4g,2033
36
- openmetadata_managed_apis/utils/parser.py,sha256=4E53Jg1A4MRLU9CjM4uQ1-B6-dbARjC4gaTG_BjuN4M,3843
37
- openmetadata_managed_apis/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- openmetadata_managed_apis/views/rest_api.py,sha256=3mAQFYnaBvFmBWHfj1Ewk02padD5W9LLbct7dy8xA20,1638
39
- openmetadata_managed_apis/views/templates/rest_api/index.html,sha256=h6MONxll2wmG_-uRO1h13TtNwLlqhFpZp4zNaXUiA_E,6004
40
- openmetadata_managed_apis/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- openmetadata_managed_apis/workflows/config.py,sha256=BRUGDLybVppg4c-VyPiFG3ZKZFMbDfJkaIGmcVGe8Ns,1080
42
- openmetadata_managed_apis/workflows/workflow_builder.py,sha256=CZ_kzQbRpXWyfOrSCZq0PbNH7hMK5tjtQSBFzq-w_Do,2038
43
- openmetadata_managed_apis/workflows/workflow_factory.py,sha256=X3sG_WIYs1FyFc7bs-jCs_wjdIeDO3S3wlnd_D10moA,3108
44
- openmetadata_managed_apis/workflows/ingestion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- openmetadata_managed_apis/workflows/ingestion/application.py,sha256=QHA7pM9SmwaG9aLSGiJ29Y115ciA2o4rBjEQc_-9oPc,3585
46
- openmetadata_managed_apis/workflows/ingestion/auto_classification.py,sha256=goDQbHi4nftx-7crWoymeGW98LtPO0uyu-Ua_5BCjHI,3044
47
- openmetadata_managed_apis/workflows/ingestion/common.py,sha256=mgrS_4-GUaRp5G0PcNIeLDB38r5e6FFc-lJTCRenQwo,14569
48
- openmetadata_managed_apis/workflows/ingestion/dbt.py,sha256=kq1aCUGA08n0d1r9jcjNlnhhleMsT0Pc5LgHcCsiFKY,2119
49
- openmetadata_managed_apis/workflows/ingestion/elasticsearch_sink.py,sha256=hYczNsKEzlxT-qV6lr12AjVzijH6I9k-vgU08n9zT4A,2007
50
- openmetadata_managed_apis/workflows/ingestion/es_reindex.py,sha256=uYF2YjburBgoNgvorsuD7PHllpGjSUvwFTxxWnxs2mg,3381
51
- openmetadata_managed_apis/workflows/ingestion/lineage.py,sha256=jFLaF7rGT-8UVIkqczLvS-18DY2GZgRg3gn6WLTYQ1Y,2105
52
- openmetadata_managed_apis/workflows/ingestion/metadata.py,sha256=9ZWhSBUzuOlVdyYofvmY4EKLgRV5UAAA3-MEK2WStnk,2016
53
- openmetadata_managed_apis/workflows/ingestion/profiler.py,sha256=AzN5nAVrEBuNUNrmn9rx4yp4d5zD2yv0NbK4FRmVkz4,2930
54
- openmetadata_managed_apis/workflows/ingestion/registry.py,sha256=VBg5opRBigkEQUMJk4WIWEUtgPVM6W1wxFyxt3jIQbA,2314
55
- openmetadata_managed_apis/workflows/ingestion/test_suite.py,sha256=jCJ-w8TwtagA1uZv2Z3tAo160dj80CFTK0Qdn7ZbJ2Y,2937
56
- openmetadata_managed_apis/workflows/ingestion/usage.py,sha256=xYs6bm1_l2EfaQvI5ytyP9tpPZNGGh7t-NtO73xdZpA,3705
57
- openmetadata_managed_apis-1.7.0.0rc1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
58
- openmetadata_managed_apis-1.7.0.0rc1.dist-info/METADATA,sha256=SkTOUrtnUoU5Kh6pnJWl4r274f3TsHAHeg-rp0UEWQk,21761
59
- openmetadata_managed_apis-1.7.0.0rc1.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
60
- openmetadata_managed_apis-1.7.0.0rc1.dist-info/entry_points.txt,sha256=zknKSL_4J9dZRwSySrmb5sPnSMpmIpZ4_k-Aa4uwUHQ,93
61
- openmetadata_managed_apis-1.7.0.0rc1.dist-info/top_level.txt,sha256=GygnYc036LyoClYqtk72V3gk7sX5fAKAr9fggnvxNgA,26
62
- openmetadata_managed_apis-1.7.0.0rc1.dist-info/RECORD,,