openmetadata-managed-apis 1.6.10.0__py3-none-any.whl → 1.10.12.0__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 +17 -5
  16. openmetadata_managed_apis/api/routes/run_automation.py +4 -4
  17. openmetadata_managed_apis/api/routes/status.py +3 -3
  18. openmetadata_managed_apis/api/routes/trigger.py +11 -6
  19. openmetadata_managed_apis/api/utils.py +23 -3
  20. openmetadata_managed_apis/operations/delete.py +3 -3
  21. openmetadata_managed_apis/operations/deploy.py +5 -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 +150 -35
  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 +8 -5
  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 +19 -10
  33. openmetadata_managed_apis/workflows/ingestion/auto_classification.py +16 -11
  34. openmetadata_managed_apis/workflows/ingestion/common.py +46 -15
  35. openmetadata_managed_apis/workflows/ingestion/dbt.py +4 -3
  36. openmetadata_managed_apis/workflows/ingestion/elasticsearch_sink.py +3 -3
  37. openmetadata_managed_apis/workflows/ingestion/es_reindex.py +4 -3
  38. openmetadata_managed_apis/workflows/ingestion/lineage.py +4 -3
  39. openmetadata_managed_apis/workflows/ingestion/metadata.py +4 -3
  40. openmetadata_managed_apis/workflows/ingestion/profiler.py +16 -11
  41. openmetadata_managed_apis/workflows/ingestion/registry.py +3 -3
  42. openmetadata_managed_apis/workflows/ingestion/test_suite.py +16 -11
  43. openmetadata_managed_apis/workflows/ingestion/usage.py +12 -10
  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.6.10.0.dist-info → openmetadata_managed_apis-1.10.12.0.dist-info}/METADATA +10 -6
  47. openmetadata_managed_apis-1.10.12.0.dist-info/RECORD +62 -0
  48. openmetadata_managed_apis-1.6.10.0.dist-info/RECORD +0 -62
  49. {openmetadata_managed_apis-1.6.10.0.dist-info → openmetadata_managed_apis-1.10.12.0.dist-info}/LICENSE +0 -0
  50. {openmetadata_managed_apis-1.6.10.0.dist-info → openmetadata_managed_apis-1.10.12.0.dist-info}/WHEEL +0 -0
  51. {openmetadata_managed_apis-1.6.10.0.dist-info → openmetadata_managed_apis-1.10.12.0.dist-info}/entry_points.txt +0 -0
  52. {openmetadata_managed_apis-1.6.10.0.dist-info → openmetadata_managed_apis-1.10.12.0.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.
@@ -74,6 +74,7 @@ def build_es_reindex_workflow_config(
74
74
  openMetadataServerConfig=ingestion_pipeline.openMetadataServerConnection,
75
75
  ),
76
76
  ingestionPipelineFQN=ingestion_pipeline.fullyQualifiedName.root,
77
+ enableStreamableLogs=ingestion_pipeline.enableStreamableLogs,
77
78
  )
78
79
 
79
80
  return workflow_config
@@ -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.
@@ -47,6 +47,7 @@ def build_lineage_workflow_config(
47
47
  ),
48
48
  workflowConfig=build_workflow_config_property(ingestion_pipeline),
49
49
  ingestionPipelineFQN=ingestion_pipeline.fullyQualifiedName.root,
50
+ enableStreamableLogs=ingestion_pipeline.enableStreamableLogs,
50
51
  )
51
52
 
52
53
  return workflow_config
@@ -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.
@@ -44,6 +44,7 @@ def build_metadata_workflow_config(
44
44
  ),
45
45
  workflowConfig=build_workflow_config_property(ingestion_pipeline),
46
46
  ingestionPipelineFQN=ingestion_pipeline.fullyQualifiedName.root,
47
+ enableStreamableLogs=ingestion_pipeline.enableStreamableLogs,
47
48
  )
48
49
 
49
50
  return workflow_config
@@ -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.
@@ -15,7 +15,11 @@ import json
15
15
 
16
16
  from airflow import DAG
17
17
  from openmetadata_managed_apis.utils.logger import set_operator_logger
18
- from openmetadata_managed_apis.workflows.ingestion.common import build_dag, build_source
18
+ from openmetadata_managed_apis.workflows.ingestion.common import (
19
+ build_dag,
20
+ build_source,
21
+ execute_workflow,
22
+ )
19
23
 
20
24
  from metadata.generated.schema.entity.services.ingestionPipelines.ingestionPipeline import (
21
25
  IngestionPipeline,
@@ -30,7 +34,9 @@ from metadata.generated.schema.metadataIngestion.workflow import (
30
34
  from metadata.workflow.profiler import ProfilerWorkflow
31
35
 
32
36
 
33
- def profiler_workflow(workflow_config: OpenMetadataWorkflowConfig):
37
+ def profiler_workflow(
38
+ workflow_config: OpenMetadataWorkflowConfig,
39
+ ):
34
40
  """
35
41
  Task that creates and runs the profiler workflow.
36
42
 
@@ -42,13 +48,11 @@ def profiler_workflow(workflow_config: OpenMetadataWorkflowConfig):
42
48
 
43
49
  set_operator_logger(workflow_config)
44
50
 
45
- config = json.loads(workflow_config.model_dump_json(exclude_defaults=False))
51
+ config = json.loads(
52
+ workflow_config.model_dump_json(exclude_defaults=False, mask_secrets=False)
53
+ )
46
54
  workflow = ProfilerWorkflow.create(config)
47
-
48
- workflow.execute()
49
- workflow.raise_from_status()
50
- workflow.print_status()
51
- workflow.stop()
55
+ execute_workflow(workflow, workflow_config)
52
56
 
53
57
 
54
58
  def build_profiler_workflow_config(
@@ -72,6 +76,7 @@ def build_profiler_workflow_config(
72
76
  openMetadataServerConfig=ingestion_pipeline.openMetadataServerConnection,
73
77
  ),
74
78
  ingestionPipelineFQN=ingestion_pipeline.fullyQualifiedName.root,
79
+ enableStreamableLogs=ingestion_pipeline.enableStreamableLogs,
75
80
  )
76
81
 
77
82
  return workflow_config
@@ -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.
@@ -15,7 +15,11 @@ import json
15
15
 
16
16
  from airflow import DAG
17
17
  from openmetadata_managed_apis.utils.logger import set_operator_logger
18
- from openmetadata_managed_apis.workflows.ingestion.common import build_dag, build_source
18
+ from openmetadata_managed_apis.workflows.ingestion.common import (
19
+ build_dag,
20
+ build_source,
21
+ execute_workflow,
22
+ )
19
23
 
20
24
  from metadata.generated.schema.entity.services.ingestionPipelines.ingestionPipeline import (
21
25
  IngestionPipeline,
@@ -30,7 +34,9 @@ from metadata.generated.schema.metadataIngestion.workflow import (
30
34
  from metadata.workflow.data_quality import TestSuiteWorkflow
31
35
 
32
36
 
33
- def test_suite_workflow(workflow_config: OpenMetadataWorkflowConfig):
37
+ def test_suite_workflow(
38
+ workflow_config: OpenMetadataWorkflowConfig,
39
+ ):
34
40
  """
35
41
  Task that creates and runs the test suite workflow.
36
42
 
@@ -42,13 +48,11 @@ def test_suite_workflow(workflow_config: OpenMetadataWorkflowConfig):
42
48
 
43
49
  set_operator_logger(workflow_config)
44
50
 
45
- config = json.loads(workflow_config.model_dump_json(exclude_defaults=False))
51
+ config = json.loads(
52
+ workflow_config.model_dump_json(exclude_defaults=False, mask_secrets=False)
53
+ )
46
54
  workflow = TestSuiteWorkflow.create(config)
47
-
48
- workflow.execute()
49
- workflow.raise_from_status()
50
- workflow.print_status()
51
- workflow.stop()
55
+ execute_workflow(workflow, workflow_config)
52
56
 
53
57
 
54
58
  def build_test_suite_workflow_config(
@@ -73,6 +77,7 @@ def build_test_suite_workflow_config(
73
77
  openMetadataServerConfig=ingestion_pipeline.openMetadataServerConnection,
74
78
  ),
75
79
  ingestionPipelineFQN=ingestion_pipeline.fullyQualifiedName.root,
80
+ enableStreamableLogs=ingestion_pipeline.enableStreamableLogs,
76
81
  )
77
82
 
78
83
  return workflow_config
@@ -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.
@@ -20,6 +20,7 @@ from openmetadata_managed_apis.workflows.ingestion.common import (
20
20
  build_dag,
21
21
  build_source,
22
22
  build_workflow_config_property,
23
+ execute_workflow,
23
24
  )
24
25
 
25
26
  from metadata.generated.schema.entity.services.ingestionPipelines.ingestionPipeline import (
@@ -34,7 +35,9 @@ from metadata.generated.schema.metadataIngestion.workflow import (
34
35
  from metadata.workflow.usage import UsageWorkflow
35
36
 
36
37
 
37
- def usage_workflow(workflow_config: OpenMetadataWorkflowConfig):
38
+ def usage_workflow(
39
+ workflow_config: OpenMetadataWorkflowConfig,
40
+ ):
38
41
  """
39
42
  Task that creates and runs the ingestion workflow.
40
43
 
@@ -46,13 +49,11 @@ def usage_workflow(workflow_config: OpenMetadataWorkflowConfig):
46
49
 
47
50
  set_operator_logger(workflow_config)
48
51
 
49
- config = json.loads(workflow_config.model_dump_json(exclude_defaults=False))
52
+ config = json.loads(
53
+ workflow_config.model_dump_json(exclude_defaults=False, mask_secrets=False)
54
+ )
50
55
  workflow = UsageWorkflow.create(config)
51
-
52
- workflow.execute()
53
- workflow.raise_from_status()
54
- workflow.print_status()
55
- workflow.stop()
56
+ execute_workflow(workflow, workflow_config)
56
57
 
57
58
 
58
59
  def build_usage_config_from_file(
@@ -82,6 +83,7 @@ def build_usage_config_from_file(
82
83
  ),
83
84
  workflowConfig=build_workflow_config_property(ingestion_pipeline),
84
85
  ingestionPipelineFQN=ingestion_pipeline.fullyQualifiedName.root,
86
+ enableStreamableLogs=ingestion_pipeline.enableStreamableLogs,
85
87
  )
86
88
 
87
89
 
@@ -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.6.10.0
3
+ Version: 1.10.12.0
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
@@ -229,11 +229,15 @@ OpenMetadata workflow definition and manage DAGS and tasks.
229
229
 
230
230
  ## Development
231
231
 
232
- You can run `make branch=issue-3659-v2 test_up` and specify any branch from OpenMetadata that you'd
233
- need to test the changes in the APIs. This will prepare a separated airflow container.
232
+ The file [`development/airflow/airflow.cfg`](./development/airflow/airflow.cfg) contains configuration which runs based on
233
+ the airflow server deployed by the quick-start and development compose files.
234
234
 
235
- The command will build the image by downloading the branch changes inside the container. This helps us
236
- test the REST APIs using some ongoing changes on OpenMetadata as well.
235
+ You ca run the following command to start the development environment:
236
+
237
+ ```bash
238
+ export AIRFLOW_HOME=$(pwd)/openmetadata-airflow-managed-api/development/airflow
239
+ airflow webserver
240
+ ```
237
241
 
238
242
  ## Requirements
239
243
 
@@ -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=qePHXsFS8IuRYgA1G_ewW1VJQtdE-TvbsbBOVtxBWcw,5397
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=v_81JaH626xBK_tRonZmB8i1Lf23E8cumSwMjWrRBd8,2673
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=objSIrDpUcKtJLdqwR1PMwRm1LzHGeQpxe4T-0HJhGw,2364
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=6g4rqsSDgKSh9rb-xxTTkELxbNT383XKeaEX1MuhH7g,7235
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=8vaQuHFmHvMJXjeLV6Icy7oJ_cQmhzn-3b98g-fWPSE,8467
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=KAl6qF6vKpwdAtvns9KXyBQ-DfSb02BLc2_-mly-4FM,1326
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=xLfAZE2wwg-I9KyamLCcLOR_mk14bcfC5dgDB5HA1o0,3995
46
+ openmetadata_managed_apis/workflows/ingestion/auto_classification.py,sha256=h9k0MwQCZ1tKQAKv1lcxJeEPfJV4J6K1PAahuXg89AU,3141
47
+ openmetadata_managed_apis/workflows/ingestion/common.py,sha256=-wqRvL5bJid94ITkNDrEdfNlqJtNiMF5jHfFT3QSeqM,15318
48
+ openmetadata_managed_apis/workflows/ingestion/dbt.py,sha256=fBi2WiXwxNzma0gKpXXbqcP-Me9tSIZNYWjE-j76CSs,2230
49
+ openmetadata_managed_apis/workflows/ingestion/elasticsearch_sink.py,sha256=blXh5m4mlTNGkshXP-5sWZXlU9aDPutWWEoaG51SWqU,2049
50
+ openmetadata_managed_apis/workflows/ingestion/es_reindex.py,sha256=-fCbq7dHA2KW2Fe_9HX8vaYS7odIYMpvZFwaxBuw9LY,3493
51
+ openmetadata_managed_apis/workflows/ingestion/lineage.py,sha256=Vgp1THnBniFMiqlwEtfgAYuy11kjZPuNBCFwjRkvQuU,2217
52
+ openmetadata_managed_apis/workflows/ingestion/metadata.py,sha256=-m7duehwM99WWrsnnxkCKeFFz0n1Ofo5UKudFWVtn84,2128
53
+ openmetadata_managed_apis/workflows/ingestion/profiler.py,sha256=-_h73OgZyKum3r0iUbvoP0MtuvwVbbTrY2G1qFiYDAk,3027
54
+ openmetadata_managed_apis/workflows/ingestion/registry.py,sha256=xbB6NdHrxEYUdBHxyrcJkyVGYKhuSI1WoLVvWeWCdz0,2356
55
+ openmetadata_managed_apis/workflows/ingestion/test_suite.py,sha256=mDir-Oz1RgTpQRAeFcwb2rWUlc3tddWO8uQWPv9soe0,3034
56
+ openmetadata_managed_apis/workflows/ingestion/usage.py,sha256=Ate2K4OE0yoa9a8oW3DMivGI09YdHWYk8m2n0f2RucI,3789
57
+ openmetadata_managed_apis-1.10.12.0.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
58
+ openmetadata_managed_apis-1.10.12.0.dist-info/METADATA,sha256=bxAeAkebJH3FPk9MJpjy29HqKxK-UIuXuNk2CZZLWe4,21782
59
+ openmetadata_managed_apis-1.10.12.0.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
60
+ openmetadata_managed_apis-1.10.12.0.dist-info/entry_points.txt,sha256=zknKSL_4J9dZRwSySrmb5sPnSMpmIpZ4_k-Aa4uwUHQ,93
61
+ openmetadata_managed_apis-1.10.12.0.dist-info/top_level.txt,sha256=GygnYc036LyoClYqtk72V3gk7sX5fAKAr9fggnvxNgA,26
62
+ openmetadata_managed_apis-1.10.12.0.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=MNXnHnUTDFVdE6bfAwzaYJ_XMVtHGAeKfLUeZ1VTL2o,3294
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=zDrk9CzyNKKPFVycPb-27puLm6mLyCYw1xCSpXwvn-Q,3551
46
- openmetadata_managed_apis/workflows/ingestion/auto_classification.py,sha256=Xcb_x-IDpmgKu2gC8-2yZx2_2n52kCLYrNAM4ZRsGy0,3010
47
- openmetadata_managed_apis/workflows/ingestion/common.py,sha256=lHPXkTY5adv5pZbG1rlMWZXJm7L3KPVa6eNgQIOlOVM,14219
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=-eVJqQkiLNCDYeXzmpkwZa7PWk5HvLEq0TAHsZDrsvc,2896
54
- openmetadata_managed_apis/workflows/ingestion/registry.py,sha256=VBg5opRBigkEQUMJk4WIWEUtgPVM6W1wxFyxt3jIQbA,2314
55
- openmetadata_managed_apis/workflows/ingestion/test_suite.py,sha256=-CtbKi3K_Q5zGXPyjh8R00lUEFNZSvOzhEWqj8HlN2w,2903
56
- openmetadata_managed_apis/workflows/ingestion/usage.py,sha256=aK09MqpE2DkRwj3bwcSD5Ub_3n8SFnCt2FkWmjRf-MY,3671
57
- openmetadata_managed_apis-1.6.10.0.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
58
- openmetadata_managed_apis-1.6.10.0.dist-info/METADATA,sha256=hfc-bZ88idniwl4a31Q5etD3mQ0PszmqMx2evnEFFm8,21759
59
- openmetadata_managed_apis-1.6.10.0.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
60
- openmetadata_managed_apis-1.6.10.0.dist-info/entry_points.txt,sha256=zknKSL_4J9dZRwSySrmb5sPnSMpmIpZ4_k-Aa4uwUHQ,93
61
- openmetadata_managed_apis-1.6.10.0.dist-info/top_level.txt,sha256=GygnYc036LyoClYqtk72V3gk7sX5fAKAr9fggnvxNgA,26
62
- openmetadata_managed_apis-1.6.10.0.dist-info/RECORD,,