openmetadata-ingestion 1.2.3.1__tar.gz → 1.2.3.2__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 openmetadata-ingestion might be problematic. Click here for more details.
- openmetadata-ingestion-1.2.3.2/PKG-INFO +96 -0
- openmetadata-ingestion-1.2.3.2/setup.py +358 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/basic.py +41 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/reportData.py +46 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/reportDataType/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/reportDataType/aggregatedCostAnalysisReportData.py +61 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/reportDataType/entityReportData.py +35 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/reportDataType/rawCostAnalysisReportData.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/reportDataType/webAnalyticEntityViewReportData.py +29 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/reportDataType/webAnalyticUserActivityReportData.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/webAnalyticEvent.py +55 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/webAnalyticEventData.py +27 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/webAnalyticEventType/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/webAnalyticEventType/customEvent.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/analytics/webAnalyticEventType/pageViewEvent.py +34 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/addGlossaryToAssetsRequest.py +37 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/analytics/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/analytics/createWebAnalyticEvent.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/automations/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/automations/createWorkflow.py +41 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/bulkAssets.py +21 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/classification/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/classification/createClassification.py +30 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/classification/createTag.py +41 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/classification/loadTags.py +19 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/createBot.py +29 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/createEventPublisherJob.py +40 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/createType.py +36 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createChart.py +53 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createContainer.py +77 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createDashboard.py +72 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createDashboardDataModel.py +66 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createDatabase.py +66 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createDatabaseSchema.py +63 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createGlossary.py +48 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createGlossaryTerm.py +64 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createMlModel.py +80 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createPipeline.py +71 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createQuery.py +67 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createSearchIndex.py +62 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createStoredProcedure.py +61 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createTable.py +74 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createTableProfile.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/createTopic.py +88 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/loadGlossary.py +21 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/data/restoreEntity.py +18 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/dataInsight/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/dataInsight/createDataInsightChart.py +39 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/dataInsight/kpi/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/dataInsight/kpi/createKpiRequest.py +35 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/docStore/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/docStore/createDocument.py +28 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/domains/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/domains/createDataProduct.py +43 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/domains/createDomain.py +39 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/feed/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/feed/closeTask.py +16 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/feed/createPost.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/feed/createThread.py +51 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/feed/resolveTask.py +17 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/feed/threadCount.py +29 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/lineage/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/lineage/addLineage.py +16 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/openMetadataServerVersion.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/policies/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/policies/createPolicy.py +32 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/services/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/services/createDashboardService.py +43 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/services/createDatabaseService.py +43 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/services/createMessagingService.py +44 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/services/createMetadataService.py +35 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/services/createMlModelService.py +43 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/services/createPipelineService.py +49 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/services/createSearchService.py +44 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/services/createStorageService.py +44 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/services/ingestionPipelines/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/services/ingestionPipelines/createIngestionPipeline.py +41 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/setOwner.py +21 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/teams/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/teams/createPersona.py +28 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/teams/createRole.py +30 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/teams/createTeam.py +59 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/teams/createUser.py +68 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/tests/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/tests/createCustomMetric.py +36 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/tests/createLogicalTestCases.py +23 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/tests/createTestCase.py +38 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/tests/createTestDefinition.py +35 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/tests/createTestSuite.py +40 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/api/voteRequest.py +18 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/basicAuth.py +14 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/basicLoginRequest.py +17 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/changePasswordRequest.py +30 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/createPersonalToken.py +17 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/emailRequest.py +16 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/emailVerificationToken.py +39 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/generateToken.py +16 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/jwtAuth.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/loginRequest.py +15 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/logoutRequest.py +21 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/passwordResetRequest.py +23 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/passwordResetToken.py +32 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/personalAccessToken.py +30 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/refreshToken.py +30 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/registrationRequest.py +21 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/revokePersonalToken.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/revokeToken.py +16 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/serviceTokenEnum.py +13 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/ssoAuth.py +46 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/auth/tokenRefreshRequest.py +14 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/authConfig.py +42 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/authenticationConfiguration.py +46 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/authorizerConfiguration.py +44 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/changeEventConfiguration.py +16 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/elasticSearchConfiguration.py +49 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/eventHandlerConfiguration.py +18 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/fernetConfiguration.py +14 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/jwtTokenConfiguration.py +23 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/kafkaEventConfiguration.py +53 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/ldapConfiguration.py +52 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/ldapTrustStoreConfig/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/ldapTrustStoreConfig/customTrustManagerConfig.py +28 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/ldapTrustStoreConfig/hostNameConfig.py +19 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/ldapTrustStoreConfig/jvmDefaultConfig.py +18 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/ldapTrustStoreConfig/trustAllConfig.py +18 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/ldapTrustStoreConfig/truststoreConfig.py +29 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/loginConfiguration.py +25 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/logoConfiguration.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/pipelineServiceClientConfiguration.py +68 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/slackAppConfiguration.py +21 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/taskNotificationConfiguration.py +16 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/configuration/testResultNotificationConfiguration.py +28 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/dataInsightChart.py +98 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/dataInsightChartResult.py +82 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/kpi/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/kpi/basic.py +57 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/kpi/kpi.py +65 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/aggregatedUnusedAssetsCount.py +25 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/aggregatedUnusedAssetsSize.py +25 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/aggregatedUsedVsUnusedAssetsCount.py +32 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/aggregatedUsedVsUnusedAssetsSize.py +31 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/dailyActiveUsers.py +21 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/mostActiveUsers.py +32 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/mostViewedEntities.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/pageViewsByEntities.py +22 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/percentageOfEntitiesWithDescriptionByType.py +30 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/percentageOfEntitiesWithOwnerByType.py +30 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/percentageOfServicesWithDescription.py +30 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/percentageOfServicesWithOwner.py +30 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/totalEntitiesByTier.py +27 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/totalEntitiesByType.py +27 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/dataInsight/type/unusedAssets.py +22 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/email/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/email/emailRequest.py +41 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/email/smtpSettings.py +39 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/app.py +133 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/appConfig.py +21 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/appRunRecord.py +62 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/configuration/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/configuration/dataInsightsApp.py +17 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/configuration/externalAppIngestionConfig.py +38 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/configuration/searchIndexingApp.py +32 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/createAppRequest.py +37 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/jobStatus.py +19 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/liveExecutionContext.py +16 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/marketplace/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/marketplace/appMarketPlaceDefinition.py +86 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/marketplace/createAppMarketPlaceDefinitionReq.py +65 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/applications/scheduledExecutionContext.py +13 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/automations/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/automations/testServiceConnection.py +54 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/automations/workflow.py +78 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/bot.py +52 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/classification/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/classification/classification.py +65 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/classification/tag.py +74 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/chart.py +109 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/container.py +155 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/dashboard.py +118 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/dashboardDataModel.py +111 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/database.py +138 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/databaseSchema.py +134 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/glossary.py +76 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/glossaryTerm.py +134 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/metrics.py +67 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/mlmodel.py +203 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/pipeline.py +191 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/query.py +99 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/report.py +61 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/searchIndex.py +199 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/storedProcedure.py +125 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/table.py +675 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/data/topic.py +148 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/docStore/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/docStore/document.py +49 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/domains/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/domains/dataProduct.py +57 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/domains/domain.py +63 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/events/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/events/webhook.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/feed/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/feed/thread.py +154 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/policies/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/policies/accessControl/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/policies/accessControl/resourceDescriptor.py +58 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/policies/accessControl/resourcePermission.py +54 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/policies/accessControl/rule.py +44 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/policies/filters.py +32 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/policies/policy.py +83 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/common/__init__.py +5 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/common/sslCertPaths.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/common/sslCertValues.py +31 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/common/sslConfig.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/connectionBasicType.py +91 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/customDashboardConnection.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/domoDashboardConnection.py +49 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/lightdashConnection.py +55 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/lookerConnection.py +60 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/metabaseConnection.py +43 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/modeConnection.py +46 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/powerBIConnection.py +60 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/qlikSenseConnection.py +72 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/quickSightConnection.py +48 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/redashConnection.py +40 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/supersetConnection.py +42 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/dashboard/tableauConnection.py +57 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/athenaConnection.py +76 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/azureSQLConnection.py +87 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/bigQueryConnection.py +86 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/clickhouseConnection.py +103 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/common/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/common/basicAuth.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/common/iamAuthConfig.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/common/jwtAuth.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/couchbaseConnection.py +50 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/customDatabaseConnection.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/databricksConnection.py +95 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/datalake/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/datalake/azureConfig.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/datalake/gcsConfig.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/datalake/s3Config.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/datalakeConnection.py +66 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/db2Connection.py +72 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/deltaLakeConnection.py +104 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/domoDatabaseConnection.py +52 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/druidConnection.py +71 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/dynamoDBConnection.py +43 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/glueConnection.py +44 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/greenplumConnection.py +96 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/hiveConnection.py +114 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/impalaConnection.py +100 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/mariaDBConnection.py +76 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/mongoDB/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/mongoDB/mongoDBValues.py +44 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/mongoDBConnection.py +49 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/mssqlConnection.py +89 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/mysqlConnection.py +90 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/oracleConnection.py +113 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/pinotDBConnection.py +78 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/postgresConnection.py +108 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/prestoConnection.py +75 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/redshiftConnection.py +101 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/salesforceConnection.py +63 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/sapHanaConnection.py +96 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/singleStoreConnection.py +78 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/snowflakeConnection.py +109 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/sqliteConnection.py +80 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/trinoConnection.py +87 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/database/verticaConnection.py +80 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/messaging/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/messaging/customMessagingConnection.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/messaging/kafkaConnection.py +71 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/messaging/kinesisConnection.py +32 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/messaging/pulsarConnection.py +28 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/messaging/redpandaConnection.py +69 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/messaging/saslMechanismType.py +15 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/metadata/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/metadata/amundsenConnection.py +50 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/metadata/atlasConnection.py +51 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/metadata/metadataESConnection.py +64 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/metadata/openMetadataConnection.py +147 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/mlmodel/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/mlmodel/customMlModelConnection.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/mlmodel/mlflowConnection.py +38 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/mlmodel/sageMakerConnection.py +32 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/mlmodel/sklearnConnection.py +28 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/pipeline/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/pipeline/airbyteConnection.py +37 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/pipeline/airflowConnection.py +52 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/pipeline/backendConnection.py +23 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/pipeline/customPipelineConnection.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/pipeline/dagsterConnection.py +39 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/pipeline/databricksPipelineConnection.py +46 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/pipeline/domoPipelineConnection.py +47 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/pipeline/fivetranConnection.py +46 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/pipeline/gluePipelineConnection.py +32 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/pipeline/nifiConnection.py +72 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/pipeline/splineConnection.py +36 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/search/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/search/customSearchConnection.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/search/elasticSearch/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/search/elasticSearch/apiAuth.py +27 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/search/elasticSearch/basicAuth.py +23 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/search/elasticSearchConnection.py +51 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/search/openSearchConnection.py +53 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/serviceConnection.py +45 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/storage/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/storage/adlsConection.py +38 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/storage/customStorageConnection.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/storage/gcsConnection.py +38 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/storage/s3Connection.py +38 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/testConnectionDefinition.py +73 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/connections/testConnectionResult.py +50 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/dashboardService.py +125 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/databaseService.py +191 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/ingestionPipelines/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/ingestionPipelines/ingestionPipeline.py +165 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/ingestionPipelines/pipelineServiceClientResponse.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/messagingService.py +110 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/metadataService.py +97 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/mlmodelService.py +102 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/pipelineService.py +120 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/searchService.py +98 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/serviceType.py +18 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/services/storageService.py +94 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/teams/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/teams/persona.py +47 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/teams/role.py +69 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/teams/team.py +103 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/teams/teamHierarchy.py +53 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/teams/user.py +120 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/type.py +84 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/utils/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/utils/entitiesCount.py +29 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/utils/servicesCount.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/entity/utils/supersetApiConnection.py +36 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/events/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/events/api/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/events/api/createEventSubscription.py +48 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/events/dataInsightAlertConfig.py +17 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/events/emailAlertConfig.py +23 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/events/entitySpelFilters.py +19 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/events/eventFilterRule.py +36 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/events/eventSubscription.py +187 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/events/subscriptionResourceDescriptor.py +35 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/applicationPipeline.py +25 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/dashboardServiceMetadataPipeline.py +75 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/dataInsightPipeline.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/databaseServiceMetadataPipeline.py +85 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/databaseServiceProfilerPipeline.py +82 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/databaseServiceQueryLineagePipeline.py +65 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/databaseServiceQueryUsagePipeline.py +48 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/dbtPipeline.py +79 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/dbtconfig/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtAzureConfig.py +38 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtBucketDetails.py +25 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtCloudConfig.py +38 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtGCSConfig.py +38 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtHttpConfig.py +30 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtLocalConfig.py +30 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtS3Config.py +38 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/messagingServiceMetadataPipeline.py +40 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/metadataToElasticSearchPipeline.py +61 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/mlmodelServiceMetadataPipeline.py +35 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/pipelineServiceMetadataPipeline.py +53 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/searchServiceMetadataPipeline.py +45 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/storage/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/storage/containerMetadataConfig.py +49 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/storage/manifestMetadataConfig.py +54 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/storage/storageBucketDetails.py +25 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/storage/storageMetadataADLSConfig.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/storage/storageMetadataHttpConfig.py +18 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/storage/storageMetadataLocalConfig.py +18 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/storage/storageMetadataS3Config.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/storageServiceMetadataPipeline.py +50 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/testSuitePipeline.py +35 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/metadataIngestion/workflow.py +158 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/monitoring/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/monitoring/eventMonitorProvider.py +12 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/client/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/client/auth0SSOClientConfig.py +18 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/client/azureSSOClientConfig.py +23 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/client/customOidcSSOClientConfig.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/client/googleSSOClientConfig.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/client/oktaSSOClientConfig.py +22 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/client/openMetadataJWTClientConfig.py +18 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/client/samlSSOClientConfig.py +92 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/credentials/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/credentials/accessTokenAuth.py +23 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/credentials/awsCredentials.py +50 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/credentials/azureCredentials.py +29 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/credentials/basicAuth.py +21 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/credentials/bitbucketCredentials.py +35 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/credentials/gcpCredentials.py +48 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/credentials/gcpValues.py +65 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/credentials/gitCredentials.py +37 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/credentials/githubCredentials.py +28 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/secrets/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/secrets/secretsManagerClientLoader.py +13 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/secrets/secretsManagerConfiguration.py +27 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/secrets/secretsManagerProvider.py +16 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/securityConfiguration.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/ssl/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/ssl/validateSSLClientConfig.py +20 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/security/ssl/verifySSLConfig.py +35 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/settings/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/settings/settings.py +63 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/system/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/system/eventPublisherJob.py +97 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/system/ui/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/system/ui/knowledgePanel.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/system/ui/page.py +53 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/tests/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/tests/basic.py +101 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/tests/customMetric.py +39 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/tests/testCase.py +72 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/tests/testDefinition.py +104 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/tests/testSuite.py +102 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/__init__.py +3 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/auditLog.py +41 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/basic.py +181 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/bulkOperationResult.py +55 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/changeEvent.py +123 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/collectionDescriptor.py +33 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/csvDocumentation.py +21 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/csvErrorType.py +16 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/csvFile.py +38 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/csvImportResult.py +42 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/dailyCount.py +19 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/databaseConnectionConfig.py +53 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/entityHistory.py +69 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/entityLineage.py +99 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/entityReference.py +39 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/entityReferenceList.py +19 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/entityRelationship.py +78 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/entityUsage.py +23 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/filterPattern.py +27 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/function.py +44 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/include.py +13 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/jdbcConnection.py +36 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/lifeCycle.py +43 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/paging.py +29 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/profile.py +42 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/queryParserData.py +46 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/reaction.py +35 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/schedule.py +24 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/schema.py +96 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/tableQuery.py +56 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/tableUsageCount.py +53 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/tagLabel.py +58 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/usageDetails.py +41 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/usageRequest.py +15 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/generated/schema/type/votes.py +32 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/ingestion/api/topology_runner.py +451 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/ingestion/source/dashboard/superset/api_source.py +228 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/ingestion/source/dashboard/superset/db_source.py +248 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/ingestion/source/dashboard/superset/mixin.py +239 -0
- openmetadata-ingestion-1.2.3.2/src/metadata/ingestion/source/pipeline/airflow/metadata.py +493 -0
- openmetadata-ingestion-1.2.3.2/src/openmetadata_ingestion.egg-info/PKG-INFO +96 -0
- openmetadata-ingestion-1.2.3.2/src/openmetadata_ingestion.egg-info/requires.txt +467 -0
- openmetadata-ingestion-1.2.3.1/PKG-INFO +0 -96
- openmetadata-ingestion-1.2.3.1/setup.py +0 -358
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/basic.py +0 -41
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/reportData.py +0 -46
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/reportDataType/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/reportDataType/aggregatedCostAnalysisReportData.py +0 -61
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/reportDataType/entityReportData.py +0 -35
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/reportDataType/rawCostAnalysisReportData.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/reportDataType/webAnalyticEntityViewReportData.py +0 -29
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/reportDataType/webAnalyticUserActivityReportData.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/webAnalyticEvent.py +0 -55
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/webAnalyticEventData.py +0 -27
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/webAnalyticEventType/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/webAnalyticEventType/customEvent.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/analytics/webAnalyticEventType/pageViewEvent.py +0 -34
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/addGlossaryToAssetsRequest.py +0 -37
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/analytics/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/analytics/createWebAnalyticEvent.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/automations/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/automations/createWorkflow.py +0 -41
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/bulkAssets.py +0 -21
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/classification/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/classification/createClassification.py +0 -30
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/classification/createTag.py +0 -41
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/classification/loadTags.py +0 -19
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/createBot.py +0 -29
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/createEventPublisherJob.py +0 -40
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/createType.py +0 -36
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createChart.py +0 -53
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createContainer.py +0 -77
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createDashboard.py +0 -72
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createDashboardDataModel.py +0 -66
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createDatabase.py +0 -66
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createDatabaseSchema.py +0 -63
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createGlossary.py +0 -48
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createGlossaryTerm.py +0 -64
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createMlModel.py +0 -80
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createPipeline.py +0 -71
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createQuery.py +0 -67
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createSearchIndex.py +0 -62
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createStoredProcedure.py +0 -61
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createTable.py +0 -74
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createTableProfile.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/createTopic.py +0 -88
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/loadGlossary.py +0 -21
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/data/restoreEntity.py +0 -18
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/dataInsight/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/dataInsight/createDataInsightChart.py +0 -39
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/dataInsight/kpi/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/dataInsight/kpi/createKpiRequest.py +0 -35
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/docStore/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/docStore/createDocument.py +0 -28
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/domains/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/domains/createDataProduct.py +0 -43
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/domains/createDomain.py +0 -39
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/feed/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/feed/closeTask.py +0 -16
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/feed/createPost.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/feed/createThread.py +0 -51
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/feed/resolveTask.py +0 -17
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/feed/threadCount.py +0 -29
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/lineage/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/lineage/addLineage.py +0 -16
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/openMetadataServerVersion.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/policies/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/policies/createPolicy.py +0 -32
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/services/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/services/createDashboardService.py +0 -43
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/services/createDatabaseService.py +0 -43
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/services/createMessagingService.py +0 -44
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/services/createMetadataService.py +0 -35
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/services/createMlModelService.py +0 -43
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/services/createPipelineService.py +0 -49
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/services/createSearchService.py +0 -44
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/services/createStorageService.py +0 -44
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/services/ingestionPipelines/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/services/ingestionPipelines/createIngestionPipeline.py +0 -41
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/setOwner.py +0 -21
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/teams/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/teams/createPersona.py +0 -28
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/teams/createRole.py +0 -30
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/teams/createTeam.py +0 -59
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/teams/createUser.py +0 -68
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/tests/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/tests/createCustomMetric.py +0 -36
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/tests/createLogicalTestCases.py +0 -23
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/tests/createTestCase.py +0 -38
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/tests/createTestDefinition.py +0 -35
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/tests/createTestSuite.py +0 -40
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/api/voteRequest.py +0 -18
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/basicAuth.py +0 -14
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/basicLoginRequest.py +0 -17
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/changePasswordRequest.py +0 -30
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/createPersonalToken.py +0 -17
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/emailRequest.py +0 -16
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/emailVerificationToken.py +0 -39
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/generateToken.py +0 -16
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/jwtAuth.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/loginRequest.py +0 -15
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/logoutRequest.py +0 -21
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/passwordResetRequest.py +0 -23
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/passwordResetToken.py +0 -32
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/personalAccessToken.py +0 -30
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/refreshToken.py +0 -30
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/registrationRequest.py +0 -21
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/revokePersonalToken.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/revokeToken.py +0 -16
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/serviceTokenEnum.py +0 -13
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/ssoAuth.py +0 -46
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/auth/tokenRefreshRequest.py +0 -14
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/authConfig.py +0 -42
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/authenticationConfiguration.py +0 -46
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/authorizerConfiguration.py +0 -44
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/changeEventConfiguration.py +0 -16
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/elasticSearchConfiguration.py +0 -49
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/eventHandlerConfiguration.py +0 -18
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/fernetConfiguration.py +0 -14
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/jwtTokenConfiguration.py +0 -23
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/kafkaEventConfiguration.py +0 -53
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/ldapConfiguration.py +0 -52
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/ldapTrustStoreConfig/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/ldapTrustStoreConfig/customTrustManagerConfig.py +0 -28
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/ldapTrustStoreConfig/hostNameConfig.py +0 -19
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/ldapTrustStoreConfig/jvmDefaultConfig.py +0 -18
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/ldapTrustStoreConfig/trustAllConfig.py +0 -18
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/ldapTrustStoreConfig/truststoreConfig.py +0 -29
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/loginConfiguration.py +0 -25
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/logoConfiguration.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/pipelineServiceClientConfiguration.py +0 -68
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/slackAppConfiguration.py +0 -21
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/taskNotificationConfiguration.py +0 -16
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/configuration/testResultNotificationConfiguration.py +0 -28
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/dataInsightChart.py +0 -98
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/dataInsightChartResult.py +0 -82
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/kpi/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/kpi/basic.py +0 -57
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/kpi/kpi.py +0 -65
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/aggregatedUnusedAssetsCount.py +0 -25
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/aggregatedUnusedAssetsSize.py +0 -25
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/aggregatedUsedVsUnusedAssetsCount.py +0 -32
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/aggregatedUsedVsUnusedAssetsSize.py +0 -31
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/dailyActiveUsers.py +0 -21
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/mostActiveUsers.py +0 -32
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/mostViewedEntities.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/pageViewsByEntities.py +0 -22
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/percentageOfEntitiesWithDescriptionByType.py +0 -30
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/percentageOfEntitiesWithOwnerByType.py +0 -30
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/percentageOfServicesWithDescription.py +0 -30
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/percentageOfServicesWithOwner.py +0 -30
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/totalEntitiesByTier.py +0 -27
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/totalEntitiesByType.py +0 -27
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/dataInsight/type/unusedAssets.py +0 -22
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/email/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/email/emailRequest.py +0 -41
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/email/smtpSettings.py +0 -39
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/app.py +0 -133
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/appConfig.py +0 -21
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/appRunRecord.py +0 -62
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/configuration/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/configuration/dataInsightsApp.py +0 -17
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/configuration/externalAppIngestionConfig.py +0 -38
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/configuration/searchIndexingApp.py +0 -32
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/createAppRequest.py +0 -37
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/jobStatus.py +0 -19
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/liveExecutionContext.py +0 -16
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/marketplace/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/marketplace/appMarketPlaceDefinition.py +0 -86
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/marketplace/createAppMarketPlaceDefinitionReq.py +0 -65
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/applications/scheduledExecutionContext.py +0 -13
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/automations/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/automations/testServiceConnection.py +0 -54
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/automations/workflow.py +0 -78
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/bot.py +0 -52
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/classification/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/classification/classification.py +0 -65
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/classification/tag.py +0 -74
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/chart.py +0 -109
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/container.py +0 -155
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/dashboard.py +0 -118
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/dashboardDataModel.py +0 -111
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/database.py +0 -138
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/databaseSchema.py +0 -134
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/glossary.py +0 -76
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/glossaryTerm.py +0 -134
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/metrics.py +0 -67
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/mlmodel.py +0 -203
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/pipeline.py +0 -191
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/query.py +0 -99
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/report.py +0 -61
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/searchIndex.py +0 -199
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/storedProcedure.py +0 -125
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/table.py +0 -675
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/data/topic.py +0 -148
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/docStore/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/docStore/document.py +0 -49
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/domains/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/domains/dataProduct.py +0 -57
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/domains/domain.py +0 -63
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/events/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/events/webhook.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/feed/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/feed/thread.py +0 -154
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/policies/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/policies/accessControl/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/policies/accessControl/resourceDescriptor.py +0 -58
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/policies/accessControl/resourcePermission.py +0 -54
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/policies/accessControl/rule.py +0 -44
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/policies/filters.py +0 -32
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/policies/policy.py +0 -83
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/common/__init__.py +0 -5
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/common/sslCertPaths.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/common/sslCertValues.py +0 -31
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/common/sslConfig.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/connectionBasicType.py +0 -91
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/customDashboardConnection.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/domoDashboardConnection.py +0 -49
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/lightdashConnection.py +0 -55
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/lookerConnection.py +0 -60
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/metabaseConnection.py +0 -43
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/modeConnection.py +0 -46
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/powerBIConnection.py +0 -60
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/qlikSenseConnection.py +0 -72
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/quickSightConnection.py +0 -48
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/redashConnection.py +0 -40
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/supersetConnection.py +0 -42
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/dashboard/tableauConnection.py +0 -57
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/athenaConnection.py +0 -76
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/azureSQLConnection.py +0 -87
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/bigQueryConnection.py +0 -86
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/clickhouseConnection.py +0 -103
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/common/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/common/basicAuth.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/common/iamAuthConfig.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/common/jwtAuth.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/couchbaseConnection.py +0 -50
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/customDatabaseConnection.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/databricksConnection.py +0 -95
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/datalake/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/datalake/azureConfig.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/datalake/gcsConfig.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/datalake/s3Config.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/datalakeConnection.py +0 -66
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/db2Connection.py +0 -72
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/deltaLakeConnection.py +0 -104
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/domoDatabaseConnection.py +0 -52
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/druidConnection.py +0 -71
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/dynamoDBConnection.py +0 -43
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/glueConnection.py +0 -44
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/greenplumConnection.py +0 -96
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/hiveConnection.py +0 -114
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/impalaConnection.py +0 -100
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/mariaDBConnection.py +0 -76
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/mongoDB/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/mongoDB/mongoDBValues.py +0 -44
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/mongoDBConnection.py +0 -49
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/mssqlConnection.py +0 -89
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/mysqlConnection.py +0 -90
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/oracleConnection.py +0 -113
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/pinotDBConnection.py +0 -78
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/postgresConnection.py +0 -108
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/prestoConnection.py +0 -75
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/redshiftConnection.py +0 -101
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/salesforceConnection.py +0 -63
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/sapHanaConnection.py +0 -96
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/singleStoreConnection.py +0 -78
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/snowflakeConnection.py +0 -109
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/sqliteConnection.py +0 -80
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/trinoConnection.py +0 -87
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/database/verticaConnection.py +0 -80
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/messaging/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/messaging/customMessagingConnection.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/messaging/kafkaConnection.py +0 -71
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/messaging/kinesisConnection.py +0 -32
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/messaging/pulsarConnection.py +0 -28
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/messaging/redpandaConnection.py +0 -69
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/messaging/saslMechanismType.py +0 -15
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/metadata/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/metadata/amundsenConnection.py +0 -50
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/metadata/atlasConnection.py +0 -51
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/metadata/metadataESConnection.py +0 -64
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/metadata/openMetadataConnection.py +0 -147
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/mlmodel/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/mlmodel/customMlModelConnection.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/mlmodel/mlflowConnection.py +0 -38
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/mlmodel/sageMakerConnection.py +0 -32
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/mlmodel/sklearnConnection.py +0 -28
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/pipeline/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/pipeline/airbyteConnection.py +0 -37
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/pipeline/airflowConnection.py +0 -52
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/pipeline/backendConnection.py +0 -23
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/pipeline/customPipelineConnection.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/pipeline/dagsterConnection.py +0 -39
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/pipeline/databricksPipelineConnection.py +0 -46
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/pipeline/domoPipelineConnection.py +0 -47
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/pipeline/fivetranConnection.py +0 -46
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/pipeline/gluePipelineConnection.py +0 -32
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/pipeline/nifiConnection.py +0 -72
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/pipeline/splineConnection.py +0 -36
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/search/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/search/customSearchConnection.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/search/elasticSearch/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/search/elasticSearch/apiAuth.py +0 -27
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/search/elasticSearch/basicAuth.py +0 -23
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/search/elasticSearchConnection.py +0 -51
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/search/openSearchConnection.py +0 -53
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/serviceConnection.py +0 -45
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/storage/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/storage/adlsConection.py +0 -38
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/storage/customStorageConnection.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/storage/gcsConnection.py +0 -38
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/storage/s3Connection.py +0 -38
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/testConnectionDefinition.py +0 -73
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/connections/testConnectionResult.py +0 -50
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/dashboardService.py +0 -125
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/databaseService.py +0 -191
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/ingestionPipelines/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/ingestionPipelines/ingestionPipeline.py +0 -165
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/ingestionPipelines/pipelineServiceClientResponse.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/messagingService.py +0 -110
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/metadataService.py +0 -97
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/mlmodelService.py +0 -102
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/pipelineService.py +0 -120
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/searchService.py +0 -98
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/serviceType.py +0 -18
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/services/storageService.py +0 -94
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/teams/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/teams/persona.py +0 -47
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/teams/role.py +0 -69
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/teams/team.py +0 -103
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/teams/teamHierarchy.py +0 -53
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/teams/user.py +0 -120
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/type.py +0 -84
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/utils/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/utils/entitiesCount.py +0 -29
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/utils/servicesCount.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/entity/utils/supersetApiConnection.py +0 -36
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/events/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/events/api/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/events/api/createEventSubscription.py +0 -48
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/events/dataInsightAlertConfig.py +0 -17
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/events/emailAlertConfig.py +0 -23
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/events/entitySpelFilters.py +0 -19
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/events/eventFilterRule.py +0 -36
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/events/eventSubscription.py +0 -187
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/events/subscriptionResourceDescriptor.py +0 -35
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/applicationPipeline.py +0 -25
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/dashboardServiceMetadataPipeline.py +0 -75
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/dataInsightPipeline.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/databaseServiceMetadataPipeline.py +0 -85
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/databaseServiceProfilerPipeline.py +0 -82
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/databaseServiceQueryLineagePipeline.py +0 -65
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/databaseServiceQueryUsagePipeline.py +0 -48
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/dbtPipeline.py +0 -79
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/dbtconfig/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtAzureConfig.py +0 -38
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtBucketDetails.py +0 -25
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtCloudConfig.py +0 -38
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtGCSConfig.py +0 -38
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtHttpConfig.py +0 -30
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtLocalConfig.py +0 -30
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/dbtconfig/dbtS3Config.py +0 -38
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/messagingServiceMetadataPipeline.py +0 -40
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/metadataToElasticSearchPipeline.py +0 -61
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/mlmodelServiceMetadataPipeline.py +0 -35
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/pipelineServiceMetadataPipeline.py +0 -53
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/searchServiceMetadataPipeline.py +0 -45
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/storage/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/storage/containerMetadataConfig.py +0 -49
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/storage/manifestMetadataConfig.py +0 -54
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/storage/storageBucketDetails.py +0 -25
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/storage/storageMetadataADLSConfig.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/storage/storageMetadataHttpConfig.py +0 -18
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/storage/storageMetadataLocalConfig.py +0 -18
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/storage/storageMetadataS3Config.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/storageServiceMetadataPipeline.py +0 -50
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/testSuitePipeline.py +0 -35
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/metadataIngestion/workflow.py +0 -158
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/monitoring/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/monitoring/eventMonitorProvider.py +0 -12
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/client/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/client/auth0SSOClientConfig.py +0 -18
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/client/azureSSOClientConfig.py +0 -23
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/client/customOidcSSOClientConfig.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/client/googleSSOClientConfig.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/client/oktaSSOClientConfig.py +0 -22
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/client/openMetadataJWTClientConfig.py +0 -18
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/client/samlSSOClientConfig.py +0 -92
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/credentials/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/credentials/accessTokenAuth.py +0 -23
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/credentials/awsCredentials.py +0 -50
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/credentials/azureCredentials.py +0 -29
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/credentials/basicAuth.py +0 -21
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/credentials/bitbucketCredentials.py +0 -35
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/credentials/gcpCredentials.py +0 -48
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/credentials/gcpValues.py +0 -65
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/credentials/gitCredentials.py +0 -37
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/credentials/githubCredentials.py +0 -28
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/secrets/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/secrets/secretsManagerClientLoader.py +0 -13
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/secrets/secretsManagerConfiguration.py +0 -27
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/secrets/secretsManagerProvider.py +0 -16
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/securityConfiguration.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/ssl/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/ssl/validateSSLClientConfig.py +0 -20
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/security/ssl/verifySSLConfig.py +0 -35
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/settings/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/settings/settings.py +0 -63
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/system/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/system/eventPublisherJob.py +0 -97
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/system/ui/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/system/ui/knowledgePanel.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/system/ui/page.py +0 -53
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/tests/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/tests/basic.py +0 -101
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/tests/customMetric.py +0 -39
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/tests/testCase.py +0 -72
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/tests/testDefinition.py +0 -104
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/tests/testSuite.py +0 -102
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/__init__.py +0 -3
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/auditLog.py +0 -41
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/basic.py +0 -181
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/bulkOperationResult.py +0 -55
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/changeEvent.py +0 -123
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/collectionDescriptor.py +0 -33
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/csvDocumentation.py +0 -21
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/csvErrorType.py +0 -16
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/csvFile.py +0 -38
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/csvImportResult.py +0 -42
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/dailyCount.py +0 -19
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/databaseConnectionConfig.py +0 -53
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/entityHistory.py +0 -69
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/entityLineage.py +0 -99
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/entityReference.py +0 -39
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/entityReferenceList.py +0 -19
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/entityRelationship.py +0 -78
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/entityUsage.py +0 -23
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/filterPattern.py +0 -27
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/function.py +0 -44
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/include.py +0 -13
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/jdbcConnection.py +0 -36
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/lifeCycle.py +0 -43
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/paging.py +0 -29
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/profile.py +0 -42
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/queryParserData.py +0 -46
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/reaction.py +0 -35
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/schedule.py +0 -24
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/schema.py +0 -96
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/tableQuery.py +0 -56
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/tableUsageCount.py +0 -53
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/tagLabel.py +0 -58
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/usageDetails.py +0 -41
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/usageRequest.py +0 -15
- openmetadata-ingestion-1.2.3.1/src/metadata/generated/schema/type/votes.py +0 -32
- openmetadata-ingestion-1.2.3.1/src/metadata/ingestion/api/topology_runner.py +0 -451
- openmetadata-ingestion-1.2.3.1/src/metadata/ingestion/source/dashboard/superset/api_source.py +0 -217
- openmetadata-ingestion-1.2.3.1/src/metadata/ingestion/source/dashboard/superset/db_source.py +0 -212
- openmetadata-ingestion-1.2.3.1/src/metadata/ingestion/source/dashboard/superset/mixin.py +0 -233
- openmetadata-ingestion-1.2.3.1/src/metadata/ingestion/source/pipeline/airflow/metadata.py +0 -486
- openmetadata-ingestion-1.2.3.1/src/openmetadata_ingestion.egg-info/PKG-INFO +0 -96
- openmetadata-ingestion-1.2.3.1/src/openmetadata_ingestion.egg-info/requires.txt +0 -467
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/LICENSE +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/README.md +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/setup.cfg +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/airflow_provider_openmetadata/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/airflow_provider_openmetadata/hooks/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/airflow_provider_openmetadata/hooks/openmetadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/airflow_provider_openmetadata/lineage/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/airflow_provider_openmetadata/lineage/backend.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/airflow_provider_openmetadata/lineage/callback.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/airflow_provider_openmetadata/lineage/config/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/airflow_provider_openmetadata/lineage/config/commons.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/airflow_provider_openmetadata/lineage/config/loader.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/airflow_provider_openmetadata/lineage/operator.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/airflow_provider_openmetadata/lineage/runner.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/airflow_provider_openmetadata/lineage/status.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/__main__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/__version__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/antlr/split_listener.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/automations/runner.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/backup.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/dataquality.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/db_dump.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/docker.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/ingest.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/insight.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/openmetadata_dag_config_migration.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/openmetadata_imports_migration.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/profile.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/restore.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cli/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/clients/aws_client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/clients/domo_client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/cmd.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/config/common.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/processor/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/processor/kpi/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/processor/kpi/kpi_runner.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/processor/kpi/run_result_registry.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/processor/reports/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/processor/reports/cost_analysis_report_data_processor.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/processor/reports/data_processor.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/processor/reports/entity_report_data_processor.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/processor/reports/web_analytic_report_data_processor.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/producer/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/producer/cost_analysis_producer.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/producer/entity_producer.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/producer/producer_factory.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/producer/producer_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/producer/web_analytics_producer.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/source/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_insight/source/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/api/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/interface/pandas/pandas_test_suite_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/interface/sqlalchemy/sqa_test_suite_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/interface/test_suite_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/interface/test_suite_interface_factory.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/processor/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/processor/test_case_runner.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/runner/base_test_suite_source.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/runner/core.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/runner/test_suite_source_factory.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/source/test_suite.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/base_test_handler.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValueLengthsToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValueMaxToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValueMeanToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValueMedianToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValueMinToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValueStdDevToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValuesMissingCount.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValuesSumToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValuesToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValuesToBeInSet.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValuesToBeNotInSet.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValuesToBeNotNull.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValuesToBeUnique.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValuesToMatchRegex.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/base/columnValuesToNotMatchRegex.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValueLengthsToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValueMaxToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValueMeanToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValueMedianToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValueMinToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValueStdDevToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValuesMissingCount.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValuesSumToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValuesToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValuesToBeInSet.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValuesToBeNotInSet.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValuesToBeNotNull.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValuesToBeUnique.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValuesToMatchRegex.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/pandas/columnValuesToNotMatchRegex.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValueLengthsToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValueMaxToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValueMeanToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValueMedianToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValueMinToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValueStdDevToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValuesMissingCount.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValuesSumToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValuesToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValuesToBeInSet.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValuesToBeNotInSet.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValuesToBeNotNull.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValuesToBeUnique.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValuesToMatchRegex.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/column/sqlalchemy/columnValuesToNotMatchRegex.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/mixins/pandas_validator_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/mixins/sqa_validator_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/base/tableColumnCountToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/base/tableColumnCountToEqual.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/base/tableColumnNameToExist.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/base/tableColumnToMatchSet.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/base/tableCustomSQLQuery.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/base/tableRowCountToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/base/tableRowCountToEqual.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/base/tableRowInsertedCountToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/pandas/tableColumnCountToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/pandas/tableColumnCountToEqual.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/pandas/tableColumnNameToExist.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/pandas/tableColumnToMatchSet.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/pandas/tableCustomSQLQuery.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/pandas/tableRowCountToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/pandas/tableRowCountToEqual.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/pandas/tableRowInsertedCountToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/sqlalchemy/tableColumnCountToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/sqlalchemy/tableColumnCountToEqual.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/sqlalchemy/tableColumnNameToExist.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/sqlalchemy/tableColumnToMatchSet.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/sqlalchemy/tableCustomSQLQuery.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/sqlalchemy/tableRowCountToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/sqlalchemy/tableRowCountToEqual.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/table/sqlalchemy/tableRowInsertedCountToBeBetween.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/data_quality/validations/validator.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/airbyte.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/airflow.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/airflow_backend.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/airflow_postgres.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/amundsen.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/athena.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/athena_lineage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/athena_usage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/atlas.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/azuresql.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/azuresql_lineage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/azuresql_usage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/bigquery.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/bigquery_lineage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/bigquery_profiler.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/bigquery_usage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/clickhouse.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/clickhouse_lineage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/clickhouse_usage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/couchbase.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/dagster.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/data_insight.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/databricks.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/databricks_lineage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/databricks_pipeline.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/databricks_usage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/datalake_azure.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/datalake_gcs.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/datalake_profiler.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/datalake_s3.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/db2.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/db2_profiler.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/dbt.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/deltalake.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/domodashboard.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/dynamodb.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/elasticsearch.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/fivetran.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/glue.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/gluepipeline.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/hive.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/impala.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/kafka.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/kinesis.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/lightdash.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/looker.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/mariadb.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/metabase.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/mlflow.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/mode.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/mongodb.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/mssql.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/mssql_lineage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/mssql_usage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/mysql.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/mysql_profiler.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/openmetadata.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/oracle.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/oracle_lineage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/oracle_usage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/pinotdb.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/postgres.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/postgres_lineage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/postgres_usage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/powerbi.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/presto.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/qlik_sense.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/query_log_usage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/quicksight.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/redash.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/redpanda.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/redshift.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/redshift_lineage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/redshift_profiler.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/redshift_usage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/sagemaker.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/salesforce.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/singlestore.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/snowflake.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/snowflake_lineage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/snowflake_usage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/spline.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/sqlite.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/superset.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/tableau.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/test_suite.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/trino.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/trino_lineage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/trino_usage.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/examples/workflows/vertica.yaml +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/generated/antlr/EntityLinkLexer.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/generated/antlr/EntityLinkListener.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/generated/antlr/EntityLinkParser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/generated/antlr/FqnLexer.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/generated/antlr/FqnListener.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/generated/antlr/FqnParser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/generated/antlr/JdbcUriLexer.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/generated/antlr/JdbcUriListener.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/generated/antlr/JdbcUriParser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/great_expectations/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/great_expectations/action.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/great_expectations/utils/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/great_expectations/utils/ometa_config_handler.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/api/closeable.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/api/common.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/api/delete.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/api/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/api/parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/api/status.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/api/step.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/api/steps.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/bulksink/metadata_usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/connections/builders.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/connections/headers.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/connections/secrets.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/connections/session.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/connections/test_connections.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/lineage/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/lineage/parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/lineage/sql_lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/custom_pydantic.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/custom_types.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/data_insight.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/delete_entity.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/encoders.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/es_documents.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/life_cycle.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/ometa_classification.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/ometa_topic_data.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/patch_request.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/pipeline_status.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/profile_data.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/search_index_data.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/table_metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/tests_data.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/topology.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/models/user.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/auth_provider.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/client_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/credentials.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/dashboard_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/data_insight_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/es_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/glossary_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/ingestion_pipeline_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/lineage_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/mlmodel_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/patch_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/patch_mixin_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/pipeline_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/query_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/role_policy_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/search_index_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/server_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/service_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/table_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/tests_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/topic_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/user_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/mixins/version_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/ometa_api.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/provider_registry.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/routes.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/ometa/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/processor/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/sink/file.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/sink/metadata_rest.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/connections.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/dashboard_service.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/domodashboard/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/domodashboard/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/domodashboard/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/lightdash/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/lightdash/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/lightdash/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/lightdash/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/lightdash/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/looker/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/looker/bulk_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/looker/columns.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/looker/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/looker/links.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/looker/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/looker/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/looker/parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/looker/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/metabase/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/metabase/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/metabase/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/metabase/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/metabase/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/mode/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/mode/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/mode/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/mode/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/powerbi/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/powerbi/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/powerbi/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/powerbi/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/powerbi/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/qliksense/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/qliksense/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/qliksense/constants.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/qliksense/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/qliksense/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/quicksight/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/quicksight/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/quicksight/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/quicksight/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/redash/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/redash/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/redash/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/redash/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/superset/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/superset/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/superset/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/superset/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/superset/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/superset/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/tableau/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/tableau/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/tableau/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/tableau/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/tableau/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/dashboard/tableau/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/athena/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/athena/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/athena/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/athena/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/athena/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/athena/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/athena/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/azuresql/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/azuresql/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/azuresql/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/azuresql/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/azuresql/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/azuresql/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/azuresql/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/bigquery/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/bigquery/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/bigquery/helper.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/bigquery/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/bigquery/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/bigquery/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/bigquery/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/bigquery/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/bigquery/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/clickhouse/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/clickhouse/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/clickhouse/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/clickhouse/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/clickhouse/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/clickhouse/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/clickhouse/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/clickhouse/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/column_helpers.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/column_type_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/common_db_source.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/common_nosql_source.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/couchbase/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/couchbase/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/couchbase/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/couchbase/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/database_service.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/legacy/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/legacy/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/legacy/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/unity_catalog/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/unity_catalog/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/unity_catalog/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/databricks/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/datalake/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/datalake/columns.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/datalake/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/datalake/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/db2/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/db2/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/db2/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/dbt/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/dbt/constants.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/dbt/dbt_config.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/dbt/dbt_service.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/dbt/dbt_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/dbt/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/dbt/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/deltalake/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/deltalake/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/deltalake/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/domodatabase/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/domodatabase/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/domodatabase/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/domodatabase/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/druid/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/druid/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/druid/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/dynamodb/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/dynamodb/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/dynamodb/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/dynamodb/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/glue/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/glue/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/glue/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/glue/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/greenplum/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/greenplum/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/greenplum/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/greenplum/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/greenplum/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/hive/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/hive/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/hive/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/hive/metastore_dialects/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/hive/metastore_dialects/mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/hive/metastore_dialects/mysql/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/hive/metastore_dialects/mysql/dialect.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/hive/metastore_dialects/postgres/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/hive/metastore_dialects/postgres/dialect.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/hive/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/hive/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/impala/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/impala/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/impala/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/impala/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/life_cycle_query_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/lineage_source.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mariadb/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mariadb/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mariadb/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mongodb/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mongodb/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mongodb/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mssql/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mssql/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mssql/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mssql/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mssql/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mssql/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mssql/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mssql/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/multi_db_source.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mysql/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mysql/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mysql/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/mysql/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/oracle/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/oracle/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/oracle/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/oracle/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/oracle/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/oracle/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/oracle/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/oracle/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/pinotdb/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/pinotdb/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/pinotdb/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/postgres/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/postgres/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/postgres/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/postgres/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/postgres/pgspider/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/postgres/pgspider/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/postgres/pgspider/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/postgres/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/postgres/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/postgres/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/postgres/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/presto/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/presto/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/presto/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/presto/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/query/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/query/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/query/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/query_parser_source.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/redshift/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/redshift/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/redshift/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/redshift/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/redshift/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/redshift/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/redshift/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/redshift/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/redshift/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/salesforce/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/salesforce/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/salesforce/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/sample_data.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/sample_usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/saphana/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/saphana/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/saphana/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/singlestore/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/singlestore/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/singlestore/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/snowflake/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/snowflake/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/snowflake/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/snowflake/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/snowflake/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/snowflake/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/snowflake/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/snowflake/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/snowflake/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/sql_column_handler.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/sqlalchemy_source.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/sqlite/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/sqlite/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/sqlite/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/stored_procedures_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/trino/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/trino/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/trino/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/trino/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/trino/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/trino/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/trino/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/usage_source.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/vertica/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/vertica/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/vertica/lineage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/vertica/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/vertica/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/vertica/query_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/database/vertica/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/messaging/common_broker_source.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/messaging/kafka/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/messaging/kafka/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/messaging/kafka/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/messaging/kinesis/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/messaging/kinesis/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/messaging/kinesis/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/messaging/kinesis/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/messaging/messaging_service.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/messaging/redpanda/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/messaging/redpanda/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/messaging/redpanda/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/metadata/amundsen/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/metadata/amundsen/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/metadata/amundsen/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/metadata/amundsen/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/metadata/amundsen/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/metadata/atlas/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/metadata/atlas/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/metadata/atlas/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/metadata/atlas/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/metadata/metadata_elasticsearch/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/metadata/metadata_elasticsearch/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/mlmodel/mlflow/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/mlmodel/mlflow/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/mlmodel/mlflow/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/mlmodel/mlmodel_service.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/mlmodel/sagemaker/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/mlmodel/sagemaker/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/mlmodel/sagemaker/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/airbyte/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/airbyte/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/airbyte/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/airbyte/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/airflow/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/airflow/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/airflow/lineage_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/airflow/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/airflow/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/dagster/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/dagster/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/dagster/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/dagster/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/dagster/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/dagster/queries.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/databrickspipeline/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/databrickspipeline/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/databrickspipeline/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/domopipeline/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/domopipeline/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/domopipeline/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/fivetran/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/fivetran/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/fivetran/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/fivetran/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/gluepipeline/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/gluepipeline/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/gluepipeline/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/nifi/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/nifi/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/nifi/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/nifi/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/pipeline_service.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/spline/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/spline/client.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/spline/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/spline/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/spline/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/pipeline/spline/utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/search/elasticsearch/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/search/elasticsearch/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/search/elasticsearch/parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/search/search_service.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/sqa_types.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/storage/s3/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/storage/s3/connection.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/storage/s3/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/storage/s3/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/source/storage/storage_service.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/ingestion/stage/table_usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/mixins/pandas/pandas_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/mixins/sqalchemy/sqa_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/parsers/avro_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/parsers/json_schema_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/parsers/protobuf_parser.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/parsers/schema_parsers.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/pii/constants.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/pii/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/pii/ner.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/pii/processor.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/pii/scanners/column_name_scanner.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/pii/scanners/ner_scanner.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/api/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/interface/pandas/profiler_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/interface/profiler_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/interface/profiler_interface_factory.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/interface/sqlalchemy/bigquery/profiler_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/interface/sqlalchemy/profiler_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/interface/sqlalchemy/single_store/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/interface/sqlalchemy/single_store/profiler_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/interface/sqlalchemy/snowflake/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/interface/sqlalchemy/snowflake/profiler_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/interface/sqlalchemy/trino/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/interface/sqlalchemy/trino/profiler_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/composed/distinct_ratio.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/composed/duplicate_count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/composed/ilike_ratio.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/composed/iqr.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/composed/like_ratio.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/composed/non_parametric_skew.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/composed/null_ratio.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/composed/unique_ratio.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/core.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/hybrid/histogram.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/registry.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/column_count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/column_names.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/count_in_set.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/distinct_count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/ilike_count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/like_count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/max.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/max_length.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/mean.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/min.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/min_length.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/not_like_count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/not_regexp_match_count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/null_count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/regexp_match_count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/row_count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/stddev.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/sum.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/static/unique_count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/system/dml_operation.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/system/queries/bigquery.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/system/queries/redshift.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/system/queries/snowflake.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/system/system.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/window/first_quartile.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/window/median.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/window/percentille_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/metrics/window/third_quartile.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/converter/base.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/converter/bigquery/converter.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/converter/common.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/converter/converter_registry.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/converter/mssql/converter.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/converter/snowflake/converter.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/functions/concat.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/functions/conn_test.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/functions/count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/functions/datetime.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/functions/length.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/functions/median.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/functions/modulo.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/functions/random_num.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/functions/sum.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/functions/table_metric_construct.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/functions/unique_count.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/registry.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/types/bytea_to_string.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/types/custom_array.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/types/custom_datetimerange.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/types/custom_hex_byte_string.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/types/custom_image.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/types/custom_ip.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/types/custom_timestamp.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/orm/types/uuid.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/core.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/default.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/handle_partition.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/processor.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/runner.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/sample_data_handler.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/sampler/pandas/sampler.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/sampler/sampler_factory.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/sampler/sampler_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/sampler/sqlalchemy/bigquery/sampler.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/sampler/sqlalchemy/sampler.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/processor/sampler/sqlalchemy/trino/sampler.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/registry.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/source/base/profiler_source.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/source/bigquery/profiler_source.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/source/bigquery/type_mapper.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/source/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/source/metadata_ext.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/source/profiler_source_factory.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/source/profiler_source_interface.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/source/single_store/functions/median.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/source/single_store/metrics/window/first_quartile.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/source/single_store/metrics/window/median.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/profiler/source/single_store/metrics/window/third_quartile.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/dataframe/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/dataframe/avro.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/dataframe/base.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/dataframe/common.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/dataframe/dsv.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/dataframe/json.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/dataframe/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/dataframe/parquet.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/dataframe/reader_factory.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/file/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/file/adls.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/file/api_reader.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/file/base.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/file/bitbucket.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/file/config_source_factory.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/file/credentials.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/file/gcs.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/file/github.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/file/local.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/file/s3.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/readers/models.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/timer/repeated_timer.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/bigquery_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/class_helper.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/client_version.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/constants.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/credentials.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/custom_thread_pool.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/datalake/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/datalake/datalake_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/db_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/deprecation.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/dispatch.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/elasticsearch.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/entity_link.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/filters.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/fqn.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/helpers.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/importer.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/life_cycle_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/logger.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/lru_cache.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/metadata_service_helper.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/partition.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/profiler_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/s3_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/secrets/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/secrets/aws_based_secrets_manager.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/secrets/aws_secrets_manager.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/secrets/aws_ssm_secrets_manager.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/secrets/client/__init__.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/secrets/client/loader.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/secrets/external_secrets_manager.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/secrets/noop_secrets_manager.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/secrets/secrets_manager.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/secrets/secrets_manager_factory.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/singleton.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/source_hash_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/sqa_like_column.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/sqa_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/sqlalchemy_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/ssl_registry.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/storage_metadata_config.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/stored_procedures.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/tag_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/test_suite.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/time_utils.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/timeout.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/utils/uuid_encoder.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/workflow/base.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/workflow/data_insight.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/workflow/data_quality.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/workflow/metadata.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/workflow/profiler.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/workflow/usage.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/workflow/workflow_output_handler.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/metadata/workflow/workflow_status_mixin.py +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/openmetadata_ingestion.egg-info/SOURCES.txt +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/openmetadata_ingestion.egg-info/dependency_links.txt +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/openmetadata_ingestion.egg-info/entry_points.txt +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/openmetadata_ingestion.egg-info/not-zip-safe +0 -0
- {openmetadata-ingestion-1.2.3.1 → openmetadata-ingestion-1.2.3.2}/src/openmetadata_ingestion.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: openmetadata-ingestion
|
|
3
|
+
Version: 1.2.3.2
|
|
4
|
+
Summary: Ingestion Framework for OpenMetadata
|
|
5
|
+
Home-page: https://open-metadata.org/
|
|
6
|
+
Author: OpenMetadata Committers
|
|
7
|
+
License: Apache License 2.0
|
|
8
|
+
Project-URL: Documentation, https://docs.open-metadata.org/
|
|
9
|
+
Project-URL: Source, https://github.com/open-metadata/OpenMetadata
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Provides-Extra: base
|
|
13
|
+
Provides-Extra: dev
|
|
14
|
+
Provides-Extra: test
|
|
15
|
+
Provides-Extra: e2e_test
|
|
16
|
+
Provides-Extra: data-insight
|
|
17
|
+
Provides-Extra: airflow
|
|
18
|
+
Provides-Extra: amundsen
|
|
19
|
+
Provides-Extra: athena
|
|
20
|
+
Provides-Extra: atlas
|
|
21
|
+
Provides-Extra: azuresql
|
|
22
|
+
Provides-Extra: azure-sso
|
|
23
|
+
Provides-Extra: backup
|
|
24
|
+
Provides-Extra: bigquery
|
|
25
|
+
Provides-Extra: clickhouse
|
|
26
|
+
Provides-Extra: dagster
|
|
27
|
+
Provides-Extra: dbt
|
|
28
|
+
Provides-Extra: db2
|
|
29
|
+
Provides-Extra: databricks
|
|
30
|
+
Provides-Extra: datalake-azure
|
|
31
|
+
Provides-Extra: datalake-gcs
|
|
32
|
+
Provides-Extra: datalake-s3
|
|
33
|
+
Provides-Extra: deltalake
|
|
34
|
+
Provides-Extra: docker
|
|
35
|
+
Provides-Extra: domo
|
|
36
|
+
Provides-Extra: druid
|
|
37
|
+
Provides-Extra: dynamodb
|
|
38
|
+
Provides-Extra: elasticsearch
|
|
39
|
+
Provides-Extra: glue
|
|
40
|
+
Provides-Extra: great-expectations
|
|
41
|
+
Provides-Extra: hive
|
|
42
|
+
Provides-Extra: impala
|
|
43
|
+
Provides-Extra: kafka
|
|
44
|
+
Provides-Extra: kinesis
|
|
45
|
+
Provides-Extra: ldap-users
|
|
46
|
+
Provides-Extra: looker
|
|
47
|
+
Provides-Extra: mlflow
|
|
48
|
+
Provides-Extra: mongo
|
|
49
|
+
Provides-Extra: couchbase
|
|
50
|
+
Provides-Extra: mssql
|
|
51
|
+
Provides-Extra: mssql-odbc
|
|
52
|
+
Provides-Extra: mysql
|
|
53
|
+
Provides-Extra: nifi
|
|
54
|
+
Provides-Extra: okta
|
|
55
|
+
Provides-Extra: oracle
|
|
56
|
+
Provides-Extra: pgspider
|
|
57
|
+
Provides-Extra: pinotdb
|
|
58
|
+
Provides-Extra: postgres
|
|
59
|
+
Provides-Extra: powerbi
|
|
60
|
+
Provides-Extra: qliksense
|
|
61
|
+
Provides-Extra: presto
|
|
62
|
+
Provides-Extra: pymssql
|
|
63
|
+
Provides-Extra: quicksight
|
|
64
|
+
Provides-Extra: redash
|
|
65
|
+
Provides-Extra: redpanda
|
|
66
|
+
Provides-Extra: redshift
|
|
67
|
+
Provides-Extra: sagemaker
|
|
68
|
+
Provides-Extra: salesforce
|
|
69
|
+
Provides-Extra: sap-hana
|
|
70
|
+
Provides-Extra: singlestore
|
|
71
|
+
Provides-Extra: sklearn
|
|
72
|
+
Provides-Extra: snowflake
|
|
73
|
+
Provides-Extra: superset
|
|
74
|
+
Provides-Extra: tableau
|
|
75
|
+
Provides-Extra: trino
|
|
76
|
+
Provides-Extra: vertica
|
|
77
|
+
Provides-Extra: pii-processor
|
|
78
|
+
Provides-Extra: all
|
|
79
|
+
License-File: LICENSE
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
This guide will help you setup the Ingestion framework and connectors
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+

|
|
86
|
+
|
|
87
|
+
OpenMetadata Ingestion is a simple framework to build connectors and ingest metadata of various systems through OpenMetadata APIs. It could be used in an orchestration framework(e.g. Apache Airflow) to ingest metadata.
|
|
88
|
+
**Prerequisites**
|
|
89
|
+
|
|
90
|
+
- Python >= 3.7.x
|
|
91
|
+
|
|
92
|
+
### Docs
|
|
93
|
+
|
|
94
|
+
Please refer to the documentation here https://docs.open-metadata.org/connectors
|
|
95
|
+
|
|
96
|
+
<img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=c1a30c7c-6dc7-4928-95bf-6ee08ca6aa6a" />
|
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
# Copyright 2021 Collate
|
|
2
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
3
|
+
# you may not use this file except in compliance with the License.
|
|
4
|
+
# You may obtain a copy of the License at
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
7
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
8
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
9
|
+
# See the License for the specific language governing permissions and
|
|
10
|
+
# limitations under the License.
|
|
11
|
+
|
|
12
|
+
"""
|
|
13
|
+
Python Dependencies
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
import os
|
|
17
|
+
from typing import Dict, Set
|
|
18
|
+
|
|
19
|
+
from setuptools import find_namespace_packages, setup
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def get_long_description():
|
|
23
|
+
root = os.path.dirname(__file__)
|
|
24
|
+
with open(os.path.join(root, "README.md"), encoding="UTF-8") as file:
|
|
25
|
+
description = file.read()
|
|
26
|
+
return description
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
# Add here versions required for multiple plugins
|
|
30
|
+
VERSIONS = {
|
|
31
|
+
"airflow": "apache-airflow==2.6.3",
|
|
32
|
+
"avro": "avro~=1.11",
|
|
33
|
+
"boto3": "boto3>=1.20,<2.0", # No need to add botocore separately. It's a dep from boto3
|
|
34
|
+
"geoalchemy2": "GeoAlchemy2~=0.12",
|
|
35
|
+
"google-cloud-storage": "google-cloud-storage==1.43.0",
|
|
36
|
+
"great-expectations": "great-expectations~=0.17.0",
|
|
37
|
+
"grpc-tools": "grpcio-tools>=1.47.2",
|
|
38
|
+
"msal": "msal~=1.2",
|
|
39
|
+
"neo4j": "neo4j~=5.3.0",
|
|
40
|
+
"pandas": "pandas==1.3.5",
|
|
41
|
+
"pyarrow": "pyarrow~=10.0",
|
|
42
|
+
"pydomo": "pydomo~=0.3",
|
|
43
|
+
"pymysql": "pymysql>=1.0.2",
|
|
44
|
+
"pyodbc": "pyodbc>=4.0.35,<5",
|
|
45
|
+
"scikit-learn": "scikit-learn~=1.0", # Python 3.7 only goes up to 1.0.2
|
|
46
|
+
"packaging": "packaging==21.3",
|
|
47
|
+
"azure-storage-blob": "azure-storage-blob~=12.14",
|
|
48
|
+
"azure-identity": "azure-identity~=1.12",
|
|
49
|
+
"sqlalchemy-databricks": "sqlalchemy-databricks~=0.1",
|
|
50
|
+
"databricks-sdk": "databricks-sdk~=0.1",
|
|
51
|
+
"google": "google>=3.0.0",
|
|
52
|
+
"trino": "trino[sqlalchemy]",
|
|
53
|
+
"spacy": "spacy==3.5.0",
|
|
54
|
+
"looker-sdk": "looker-sdk>=22.20.0",
|
|
55
|
+
"lkml": "lkml~=1.3",
|
|
56
|
+
"tableau": "tableau-api-lib~=0.1",
|
|
57
|
+
"pyhive": "pyhive~=0.7",
|
|
58
|
+
"mongo": "pymongo~=4.3",
|
|
59
|
+
"redshift": "sqlalchemy-redshift==0.8.12",
|
|
60
|
+
"snowflake": "snowflake-sqlalchemy~=1.4",
|
|
61
|
+
"elasticsearch8": "elasticsearch8~=8.9.0",
|
|
62
|
+
"giturlparse": "giturlparse",
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
COMMONS = {
|
|
66
|
+
"datalake": {
|
|
67
|
+
VERSIONS["boto3"],
|
|
68
|
+
VERSIONS["pandas"],
|
|
69
|
+
VERSIONS["pyarrow"],
|
|
70
|
+
"python-snappy~=0.6.1",
|
|
71
|
+
},
|
|
72
|
+
"hive": {
|
|
73
|
+
"presto-types-parser>=0.0.2",
|
|
74
|
+
VERSIONS["pyhive"],
|
|
75
|
+
},
|
|
76
|
+
"kafka": {
|
|
77
|
+
VERSIONS["avro"],
|
|
78
|
+
"confluent_kafka==2.1.1",
|
|
79
|
+
"fastavro>=1.2.0",
|
|
80
|
+
# Due to https://github.com/grpc/grpc/issues/30843#issuecomment-1303816925
|
|
81
|
+
# use >= v1.47.2 https://github.com/grpc/grpc/blob/v1.47.2/tools/distrib/python/grpcio_tools/grpc_version.py#L17
|
|
82
|
+
VERSIONS[
|
|
83
|
+
"grpc-tools"
|
|
84
|
+
], # grpcio-tools already depends on grpcio. No need to add separately
|
|
85
|
+
"protobuf",
|
|
86
|
+
},
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
# required library for pii tagging
|
|
90
|
+
pii_requirements = {
|
|
91
|
+
VERSIONS["spacy"],
|
|
92
|
+
VERSIONS["pandas"],
|
|
93
|
+
"presidio-analyzer==2.2.32",
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
base_requirements = {
|
|
97
|
+
"antlr4-python3-runtime==4.9.2",
|
|
98
|
+
VERSIONS["avro"], # Used in sample data
|
|
99
|
+
VERSIONS["boto3"], # Required in base for the secrets manager
|
|
100
|
+
"cached-property==1.5.2",
|
|
101
|
+
"chardet==4.0.0",
|
|
102
|
+
"croniter~=1.3.0",
|
|
103
|
+
"cryptography",
|
|
104
|
+
"email-validator>=1.0.3",
|
|
105
|
+
VERSIONS["google"],
|
|
106
|
+
"google-auth>=1.33.0",
|
|
107
|
+
VERSIONS["grpc-tools"], # Used in sample data
|
|
108
|
+
"idna<3,>=2.5",
|
|
109
|
+
"importlib-metadata>=4.13.0", # From airflow constraints
|
|
110
|
+
"Jinja2>=2.11.3",
|
|
111
|
+
"jsonpatch==1.32",
|
|
112
|
+
"jsonschema",
|
|
113
|
+
"memory-profiler",
|
|
114
|
+
"mypy_extensions>=0.4.3",
|
|
115
|
+
"pydantic~=1.10",
|
|
116
|
+
VERSIONS["pymysql"],
|
|
117
|
+
"python-dateutil>=2.8.1",
|
|
118
|
+
"python-jose~=3.3",
|
|
119
|
+
"PyYAML~=6.0",
|
|
120
|
+
"requests>=2.23",
|
|
121
|
+
"requests-aws4auth~=1.1", # Only depends on requests as external package. Leaving as base.
|
|
122
|
+
"setuptools~=66.0.0",
|
|
123
|
+
"sqlalchemy>=1.4.0,<2",
|
|
124
|
+
"collate-sqllineage>=1.0.4",
|
|
125
|
+
"tabulate==0.9.0",
|
|
126
|
+
"typing-compat~=0.1.0", # compatibility requirements for 3.7
|
|
127
|
+
"typing_extensions>=4.8.0",
|
|
128
|
+
"typing-inspect",
|
|
129
|
+
"wheel~=0.38.4",
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
plugins: Dict[str, Set[str]] = {
|
|
134
|
+
"airflow": {
|
|
135
|
+
VERSIONS["airflow"],
|
|
136
|
+
"attrs",
|
|
137
|
+
}, # Same as ingestion container. For development.
|
|
138
|
+
"amundsen": {VERSIONS["neo4j"]},
|
|
139
|
+
"athena": {"pyathena==3.0.8"},
|
|
140
|
+
"atlas": {},
|
|
141
|
+
"azuresql": {VERSIONS["pyodbc"]},
|
|
142
|
+
"azure-sso": {VERSIONS["msal"]},
|
|
143
|
+
"backup": {VERSIONS["boto3"], "azure-identity", "azure-storage-blob"},
|
|
144
|
+
"bigquery": {
|
|
145
|
+
"cachetools",
|
|
146
|
+
"google-cloud-datacatalog>=3.6.2",
|
|
147
|
+
"google-cloud-logging",
|
|
148
|
+
VERSIONS["pyarrow"],
|
|
149
|
+
"sqlalchemy-bigquery>=1.2.2",
|
|
150
|
+
},
|
|
151
|
+
"clickhouse": {"clickhouse-driver~=0.2", "clickhouse-sqlalchemy~=0.2"},
|
|
152
|
+
"dagster": {
|
|
153
|
+
VERSIONS["pymysql"],
|
|
154
|
+
"psycopg2-binary",
|
|
155
|
+
VERSIONS["geoalchemy2"],
|
|
156
|
+
"dagster_graphql~=1.1",
|
|
157
|
+
},
|
|
158
|
+
"dbt": {
|
|
159
|
+
"google-cloud",
|
|
160
|
+
VERSIONS["boto3"],
|
|
161
|
+
VERSIONS["google-cloud-storage"],
|
|
162
|
+
"dbt-artifacts-parser",
|
|
163
|
+
VERSIONS["azure-storage-blob"],
|
|
164
|
+
VERSIONS["azure-identity"],
|
|
165
|
+
},
|
|
166
|
+
"db2": {"ibm-db-sa~=0.3"},
|
|
167
|
+
"databricks": {VERSIONS["sqlalchemy-databricks"], VERSIONS["databricks-sdk"]},
|
|
168
|
+
"datalake-azure": {
|
|
169
|
+
VERSIONS["azure-storage-blob"],
|
|
170
|
+
VERSIONS["azure-identity"],
|
|
171
|
+
"adlfs>=2022.2.0", # Python 3.7 does only support up to 2022.2.0
|
|
172
|
+
*COMMONS["datalake"],
|
|
173
|
+
},
|
|
174
|
+
"datalake-gcs": {
|
|
175
|
+
VERSIONS["google-cloud-storage"],
|
|
176
|
+
"gcsfs==2022.11.0",
|
|
177
|
+
*COMMONS["datalake"],
|
|
178
|
+
},
|
|
179
|
+
"datalake-s3": {
|
|
180
|
+
# requires aiobotocore
|
|
181
|
+
# https://github.com/fsspec/s3fs/blob/9bf99f763edaf7026318e150c4bd3a8d18bb3a00/requirements.txt#L1
|
|
182
|
+
# however, the latest version of `s3fs` conflicts its `aiobotocore` dep with `boto3`'s dep on `botocore`.
|
|
183
|
+
# Leaving this marked to the automatic resolution to speed up installation.
|
|
184
|
+
"s3fs==0.4.2",
|
|
185
|
+
*COMMONS["datalake"],
|
|
186
|
+
},
|
|
187
|
+
"deltalake": {"delta-spark<=2.3.0"},
|
|
188
|
+
"docker": {"python_on_whales==0.55.0"},
|
|
189
|
+
"domo": {VERSIONS["pydomo"]},
|
|
190
|
+
"druid": {"pydruid>=0.6.5"},
|
|
191
|
+
"dynamodb": {VERSIONS["boto3"]},
|
|
192
|
+
"elasticsearch": {
|
|
193
|
+
"elasticsearch==7.13.1",
|
|
194
|
+
VERSIONS["elasticsearch8"],
|
|
195
|
+
}, # also requires requests-aws4auth which is in base
|
|
196
|
+
"glue": {VERSIONS["boto3"]},
|
|
197
|
+
"great-expectations": {VERSIONS["great-expectations"]},
|
|
198
|
+
"hive": {
|
|
199
|
+
*COMMONS["hive"],
|
|
200
|
+
"thrift>=0.13,<1",
|
|
201
|
+
"sasl~=0.3",
|
|
202
|
+
"thrift-sasl~=0.4",
|
|
203
|
+
"impyla~=0.18.0",
|
|
204
|
+
},
|
|
205
|
+
"impala": {
|
|
206
|
+
"presto-types-parser>=0.0.2",
|
|
207
|
+
"impyla[kerberos]~=0.18.0",
|
|
208
|
+
"thrift>=0.13,<1",
|
|
209
|
+
"sasl~=0.3",
|
|
210
|
+
"thrift-sasl~=0.4",
|
|
211
|
+
},
|
|
212
|
+
"kafka": {*COMMONS["kafka"]},
|
|
213
|
+
"kinesis": {VERSIONS["boto3"]},
|
|
214
|
+
"ldap-users": {"ldap3==2.9.1"},
|
|
215
|
+
"looker": {
|
|
216
|
+
VERSIONS["looker-sdk"],
|
|
217
|
+
VERSIONS["lkml"],
|
|
218
|
+
"gitpython~=3.1.34",
|
|
219
|
+
VERSIONS["giturlparse"],
|
|
220
|
+
},
|
|
221
|
+
"mlflow": {"mlflow-skinny>=2.3.0", "alembic~=1.10.2"},
|
|
222
|
+
"mongo": {VERSIONS["mongo"], VERSIONS["pandas"]},
|
|
223
|
+
"couchbase": {"couchbase~=4.1"},
|
|
224
|
+
"mssql": {"sqlalchemy-pytds~=0.3"},
|
|
225
|
+
"mssql-odbc": {VERSIONS["pyodbc"]},
|
|
226
|
+
"mysql": {VERSIONS["pymysql"]},
|
|
227
|
+
"nifi": {}, # uses requests
|
|
228
|
+
"okta": {"okta~=2.3"},
|
|
229
|
+
"oracle": {"cx_Oracle>=8.3.0,<9", "oracledb~=1.2"},
|
|
230
|
+
"pgspider": {"psycopg2-binary", "sqlalchemy-pgspider"},
|
|
231
|
+
"pinotdb": {"pinotdb~=0.3"},
|
|
232
|
+
"postgres": {
|
|
233
|
+
VERSIONS["pymysql"],
|
|
234
|
+
"psycopg2-binary",
|
|
235
|
+
VERSIONS["geoalchemy2"],
|
|
236
|
+
VERSIONS["packaging"],
|
|
237
|
+
},
|
|
238
|
+
"powerbi": {VERSIONS["msal"]},
|
|
239
|
+
"qliksense": {"websocket-client~=1.6.1"},
|
|
240
|
+
"presto": {*COMMONS["hive"]},
|
|
241
|
+
"pymssql": {"pymssql~=2.2.0"},
|
|
242
|
+
"quicksight": {VERSIONS["boto3"]},
|
|
243
|
+
"redash": {VERSIONS["packaging"]},
|
|
244
|
+
"redpanda": {*COMMONS["kafka"]},
|
|
245
|
+
"redshift": {
|
|
246
|
+
# Going higher has memory and performance issues
|
|
247
|
+
VERSIONS["redshift"],
|
|
248
|
+
"psycopg2-binary",
|
|
249
|
+
VERSIONS["geoalchemy2"],
|
|
250
|
+
},
|
|
251
|
+
"sagemaker": {VERSIONS["boto3"]},
|
|
252
|
+
"salesforce": {"simple_salesforce==1.11.4"},
|
|
253
|
+
"sap-hana": {"hdbcli", "sqlalchemy-hana"},
|
|
254
|
+
"singlestore": {VERSIONS["pymysql"]},
|
|
255
|
+
"sklearn": {VERSIONS["scikit-learn"]},
|
|
256
|
+
"snowflake": {VERSIONS["snowflake"]},
|
|
257
|
+
"superset": {}, # uses requests
|
|
258
|
+
"tableau": {VERSIONS["tableau"]},
|
|
259
|
+
"trino": {VERSIONS["trino"]},
|
|
260
|
+
"vertica": {"sqlalchemy-vertica[vertica-python]>=0.0.5"},
|
|
261
|
+
"pii-processor": pii_requirements,
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
dev = {
|
|
265
|
+
"black==22.3.0",
|
|
266
|
+
"datamodel-code-generator==0.22.0",
|
|
267
|
+
"docker",
|
|
268
|
+
"isort",
|
|
269
|
+
"pre-commit",
|
|
270
|
+
"pycln",
|
|
271
|
+
"pylint~=3.0.0",
|
|
272
|
+
"twine",
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
test = {
|
|
276
|
+
# Install Airflow as it's not part of `all` plugin
|
|
277
|
+
VERSIONS["airflow"],
|
|
278
|
+
"coverage",
|
|
279
|
+
# Install GE because it's not in the `all` plugin
|
|
280
|
+
VERSIONS["great-expectations"],
|
|
281
|
+
"moto==4.0.8",
|
|
282
|
+
"pytest==7.0.0",
|
|
283
|
+
"pytest-cov",
|
|
284
|
+
"pytest-order",
|
|
285
|
+
# install dbt dependency
|
|
286
|
+
"dbt-artifacts-parser",
|
|
287
|
+
VERSIONS["sqlalchemy-databricks"],
|
|
288
|
+
VERSIONS["databricks-sdk"],
|
|
289
|
+
VERSIONS["google"],
|
|
290
|
+
VERSIONS["scikit-learn"],
|
|
291
|
+
VERSIONS["pyarrow"],
|
|
292
|
+
VERSIONS["trino"],
|
|
293
|
+
VERSIONS["spacy"],
|
|
294
|
+
VERSIONS["pydomo"],
|
|
295
|
+
VERSIONS["looker-sdk"],
|
|
296
|
+
VERSIONS["lkml"],
|
|
297
|
+
VERSIONS["tableau"],
|
|
298
|
+
VERSIONS["pyhive"],
|
|
299
|
+
VERSIONS["mongo"],
|
|
300
|
+
VERSIONS["redshift"],
|
|
301
|
+
VERSIONS["snowflake"],
|
|
302
|
+
VERSIONS["elasticsearch8"],
|
|
303
|
+
VERSIONS["giturlparse"],
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
e2e_test = {
|
|
307
|
+
# playwright dependencies
|
|
308
|
+
"pytest-playwright",
|
|
309
|
+
"pytest-base-url",
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
build_options = {"includes": ["_cffi_backend"]}
|
|
313
|
+
setup(
|
|
314
|
+
name="openmetadata-ingestion",
|
|
315
|
+
version="1.2.3.2",
|
|
316
|
+
url="https://open-metadata.org/",
|
|
317
|
+
author="OpenMetadata Committers",
|
|
318
|
+
license="Apache License 2.0",
|
|
319
|
+
description="Ingestion Framework for OpenMetadata",
|
|
320
|
+
long_description=get_long_description(),
|
|
321
|
+
long_description_content_type="text/markdown",
|
|
322
|
+
python_requires=">=3.8",
|
|
323
|
+
options={"build_exe": build_options},
|
|
324
|
+
package_dir={"": "src"},
|
|
325
|
+
package_data={"metadata.examples": ["workflows/*.yaml"]},
|
|
326
|
+
zip_safe=False,
|
|
327
|
+
dependency_links=[],
|
|
328
|
+
project_urls={
|
|
329
|
+
"Documentation": "https://docs.open-metadata.org/",
|
|
330
|
+
"Source": "https://github.com/open-metadata/OpenMetadata",
|
|
331
|
+
},
|
|
332
|
+
packages=find_namespace_packages(where="./src", exclude=["tests*"]),
|
|
333
|
+
namespace_package=["metadata"],
|
|
334
|
+
entry_points={
|
|
335
|
+
"console_scripts": ["metadata = metadata.cmd:metadata"],
|
|
336
|
+
"apache_airflow_provider": [
|
|
337
|
+
"provider_info = airflow_provider_openmetadata:get_provider_config"
|
|
338
|
+
],
|
|
339
|
+
},
|
|
340
|
+
install_requires=list(base_requirements),
|
|
341
|
+
extras_require={
|
|
342
|
+
"base": list(base_requirements),
|
|
343
|
+
"dev": list(dev),
|
|
344
|
+
"test": list(test),
|
|
345
|
+
"e2e_test": list(e2e_test),
|
|
346
|
+
"data-insight": list(plugins["elasticsearch"]),
|
|
347
|
+
**{plugin: list(dependencies) for (plugin, dependencies) in plugins.items()},
|
|
348
|
+
"all": list(
|
|
349
|
+
base_requirements.union(
|
|
350
|
+
*[
|
|
351
|
+
requirements
|
|
352
|
+
for plugin, requirements in plugins.items()
|
|
353
|
+
if plugin not in {"airflow", "db2", "great-expectations"}
|
|
354
|
+
]
|
|
355
|
+
)
|
|
356
|
+
),
|
|
357
|
+
},
|
|
358
|
+
)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# generated by datamodel-codegen:
|
|
2
|
+
# filename: analytics/basic.json
|
|
3
|
+
# timestamp: 2023-12-14T08:36:17+00:00
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
|
|
7
|
+
from enum import Enum
|
|
8
|
+
from typing import Any
|
|
9
|
+
|
|
10
|
+
from pydantic import BaseModel, Field
|
|
11
|
+
|
|
12
|
+
from ..type import basic
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class Basic(BaseModel):
|
|
16
|
+
__root__: Any = Field(
|
|
17
|
+
...,
|
|
18
|
+
description='This schema defines basic types that are used by analytics classes',
|
|
19
|
+
title='Basic',
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class WebAnalyticEventType(Enum):
|
|
24
|
+
PageView = 'PageView'
|
|
25
|
+
CustomEvent = 'CustomEvent'
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class FullUrl(BaseModel):
|
|
29
|
+
__root__: str = Field(..., description='complete URL of the page')
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class Url(BaseModel):
|
|
33
|
+
__root__: str = Field(..., description='url part after the domain specification')
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class Hostname(BaseModel):
|
|
37
|
+
__root__: str = Field(..., description='domain name')
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class SessionId(BaseModel):
|
|
41
|
+
__root__: basic.Uuid = Field(..., description='Unique ID identifying a session')
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# generated by datamodel-codegen:
|
|
2
|
+
# filename: analytics/reportData.json
|
|
3
|
+
# timestamp: 2023-12-14T08:36:17+00:00
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
|
|
7
|
+
from enum import Enum
|
|
8
|
+
from typing import Optional, Union
|
|
9
|
+
|
|
10
|
+
from pydantic import BaseModel, Field
|
|
11
|
+
|
|
12
|
+
from ..type import basic
|
|
13
|
+
from .reportDataType import (
|
|
14
|
+
aggregatedCostAnalysisReportData,
|
|
15
|
+
entityReportData,
|
|
16
|
+
rawCostAnalysisReportData,
|
|
17
|
+
webAnalyticEntityViewReportData,
|
|
18
|
+
webAnalyticUserActivityReportData,
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class ReportDataType(Enum):
|
|
23
|
+
entityReportData = 'entityReportData'
|
|
24
|
+
webAnalyticUserActivityReportData = 'webAnalyticUserActivityReportData'
|
|
25
|
+
webAnalyticEntityViewReportData = 'webAnalyticEntityViewReportData'
|
|
26
|
+
rawCostAnalysisReportData = 'rawCostAnalysisReportData'
|
|
27
|
+
aggregatedCostAnalysisReportData = 'aggregatedCostAnalysisReportData'
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class ReportData(BaseModel):
|
|
31
|
+
id: Optional[basic.Uuid] = Field(
|
|
32
|
+
None, description='Unique identifier for a result.'
|
|
33
|
+
)
|
|
34
|
+
timestamp: basic.Timestamp = Field(
|
|
35
|
+
..., description='timestamp for of a result ingestion.'
|
|
36
|
+
)
|
|
37
|
+
reportDataType: Optional[ReportDataType] = Field(None, description='Type of data')
|
|
38
|
+
data: Optional[
|
|
39
|
+
Union[
|
|
40
|
+
entityReportData.EntityReportData,
|
|
41
|
+
webAnalyticUserActivityReportData.WebAnalyticUserActivityReportData,
|
|
42
|
+
webAnalyticEntityViewReportData.WebAnalyticEntityViewReportData,
|
|
43
|
+
rawCostAnalysisReportData.RawCostAnalysisReportData,
|
|
44
|
+
aggregatedCostAnalysisReportData.AggregatedCostAnalysisReportData,
|
|
45
|
+
]
|
|
46
|
+
] = Field(None, description='Data captured')
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# generated by datamodel-codegen:
|
|
2
|
+
# filename: analytics/reportDataType/aggregatedCostAnalysisReportData.json
|
|
3
|
+
# timestamp: 2023-12-14T08:36:17+00:00
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
|
|
7
|
+
from typing import Optional
|
|
8
|
+
|
|
9
|
+
from pydantic import BaseModel, Extra, Field
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class DataAssetValues(BaseModel):
|
|
13
|
+
class Config:
|
|
14
|
+
extra = Extra.forbid
|
|
15
|
+
|
|
16
|
+
threeDays: Optional[float] = Field(
|
|
17
|
+
None, description='Data Asset Count or Size for 3 days'
|
|
18
|
+
)
|
|
19
|
+
sevenDays: Optional[float] = Field(
|
|
20
|
+
None, description='Data Asset Count or Size for 7 days'
|
|
21
|
+
)
|
|
22
|
+
fourteenDays: Optional[float] = Field(
|
|
23
|
+
None, description='Data Asset Count or Size for 14 days'
|
|
24
|
+
)
|
|
25
|
+
thirtyDays: Optional[float] = Field(
|
|
26
|
+
None, description='Data Asset Count or Size for 30 days'
|
|
27
|
+
)
|
|
28
|
+
sixtyDays: Optional[float] = Field(
|
|
29
|
+
None, description='Data Asset Count or Size for 60 days'
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class DataAssetMetrics(BaseModel):
|
|
34
|
+
size: Optional[DataAssetValues] = Field(
|
|
35
|
+
None, description='Size of the Data Assets over a period of time'
|
|
36
|
+
)
|
|
37
|
+
count: Optional[DataAssetValues] = Field(
|
|
38
|
+
None, description='Count of the Data Assets over a period of time'
|
|
39
|
+
)
|
|
40
|
+
totalSize: Optional[float] = Field(None, description='Total Size based in Bytes')
|
|
41
|
+
totalCount: Optional[float] = Field(None, description='Total Count')
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class AggregatedCostAnalysisReportData(BaseModel):
|
|
45
|
+
class Config:
|
|
46
|
+
extra = Extra.forbid
|
|
47
|
+
|
|
48
|
+
unusedDataAssets: Optional[DataAssetMetrics] = Field(
|
|
49
|
+
None,
|
|
50
|
+
description='Count and Size of the unused Data Assets over a period of time',
|
|
51
|
+
)
|
|
52
|
+
frequentlyUsedDataAssets: Optional[DataAssetMetrics] = Field(
|
|
53
|
+
None,
|
|
54
|
+
description='Count and Size of the frequently used Data Assets over a period of time',
|
|
55
|
+
)
|
|
56
|
+
totalSize: Optional[float] = Field(None, description='Total Size based in Bytes')
|
|
57
|
+
totalCount: Optional[float] = Field(None, description='Total Count')
|
|
58
|
+
serviceName: Optional[str] = Field(None, description='Name of the service')
|
|
59
|
+
serviceType: Optional[str] = Field(None, description='Type of the service')
|
|
60
|
+
entityType: Optional[str] = Field(None, description='Type of the entity')
|
|
61
|
+
serviceOwner: Optional[str] = Field(None, description='Name of the service owner')
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# generated by datamodel-codegen:
|
|
2
|
+
# filename: analytics/reportDataType/entityReportData.json
|
|
3
|
+
# timestamp: 2023-12-14T08:36:17+00:00
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
|
|
7
|
+
from typing import Optional
|
|
8
|
+
|
|
9
|
+
from pydantic import BaseModel, Extra, Field
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class EntityReportData(BaseModel):
|
|
13
|
+
class Config:
|
|
14
|
+
extra = Extra.forbid
|
|
15
|
+
|
|
16
|
+
serviceName: Optional[str] = Field(None, description='Name of the service')
|
|
17
|
+
entityType: Optional[str] = Field(None, description='type of the entity')
|
|
18
|
+
entityTier: Optional[str] = Field(None, description='Tier for the entity')
|
|
19
|
+
team: Optional[str] = Field(
|
|
20
|
+
None, description='Team associated with the entity (i.e. owner)'
|
|
21
|
+
)
|
|
22
|
+
organization: Optional[str] = Field(
|
|
23
|
+
None, description='Organization associated with the entity (i.e. owner)'
|
|
24
|
+
)
|
|
25
|
+
completedDescriptions: Optional[int] = Field(
|
|
26
|
+
None, description='Number of completed description for the entity'
|
|
27
|
+
)
|
|
28
|
+
missingDescriptions: Optional[int] = Field(
|
|
29
|
+
None, description='Number of missing description for the entity'
|
|
30
|
+
)
|
|
31
|
+
hasOwner: Optional[int] = Field(None, description='number of entities with owner')
|
|
32
|
+
missingOwner: Optional[int] = Field(
|
|
33
|
+
None, description='number of entities missing owners'
|
|
34
|
+
)
|
|
35
|
+
entityCount: Optional[int] = Field(None, description='number of entities')
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# generated by datamodel-codegen:
|
|
2
|
+
# filename: analytics/reportDataType/rawCostAnalysisReportData.json
|
|
3
|
+
# timestamp: 2023-12-14T08:36:17+00:00
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
|
|
7
|
+
from typing import Optional
|
|
8
|
+
|
|
9
|
+
from pydantic import BaseModel, Extra, Field
|
|
10
|
+
|
|
11
|
+
from ...type import entityReference, lifeCycle
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class RawCostAnalysisReportData(BaseModel):
|
|
15
|
+
class Config:
|
|
16
|
+
extra = Extra.forbid
|
|
17
|
+
|
|
18
|
+
entity: entityReference.EntityReference = Field(
|
|
19
|
+
..., description='Entity of the life cycle data'
|
|
20
|
+
)
|
|
21
|
+
lifeCycle: Optional[lifeCycle.LifeCycle] = Field(
|
|
22
|
+
None, description='Life Cycle data related to the entity'
|
|
23
|
+
)
|
|
24
|
+
sizeInByte: Optional[float] = Field(None, description='Entity size in bytes')
|