truthound-dashboard 1.3.1__py3-none-any.whl → 1.4.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. truthound_dashboard/api/alerts.py +258 -0
  2. truthound_dashboard/api/anomaly.py +1302 -0
  3. truthound_dashboard/api/cross_alerts.py +352 -0
  4. truthound_dashboard/api/deps.py +143 -0
  5. truthound_dashboard/api/drift_monitor.py +540 -0
  6. truthound_dashboard/api/lineage.py +1151 -0
  7. truthound_dashboard/api/maintenance.py +363 -0
  8. truthound_dashboard/api/middleware.py +373 -1
  9. truthound_dashboard/api/model_monitoring.py +805 -0
  10. truthound_dashboard/api/notifications_advanced.py +2452 -0
  11. truthound_dashboard/api/plugins.py +2096 -0
  12. truthound_dashboard/api/profile.py +211 -14
  13. truthound_dashboard/api/reports.py +853 -0
  14. truthound_dashboard/api/router.py +147 -0
  15. truthound_dashboard/api/rule_suggestions.py +310 -0
  16. truthound_dashboard/api/schema_evolution.py +231 -0
  17. truthound_dashboard/api/sources.py +47 -3
  18. truthound_dashboard/api/triggers.py +190 -0
  19. truthound_dashboard/api/validations.py +13 -0
  20. truthound_dashboard/api/validators.py +333 -4
  21. truthound_dashboard/api/versioning.py +309 -0
  22. truthound_dashboard/api/websocket.py +301 -0
  23. truthound_dashboard/core/__init__.py +27 -0
  24. truthound_dashboard/core/anomaly.py +1395 -0
  25. truthound_dashboard/core/anomaly_explainer.py +633 -0
  26. truthound_dashboard/core/cache.py +206 -0
  27. truthound_dashboard/core/cached_services.py +422 -0
  28. truthound_dashboard/core/charts.py +352 -0
  29. truthound_dashboard/core/connections.py +1069 -42
  30. truthound_dashboard/core/cross_alerts.py +837 -0
  31. truthound_dashboard/core/drift_monitor.py +1477 -0
  32. truthound_dashboard/core/drift_sampling.py +669 -0
  33. truthound_dashboard/core/i18n/__init__.py +42 -0
  34. truthound_dashboard/core/i18n/detector.py +173 -0
  35. truthound_dashboard/core/i18n/messages.py +564 -0
  36. truthound_dashboard/core/lineage.py +971 -0
  37. truthound_dashboard/core/maintenance.py +443 -5
  38. truthound_dashboard/core/model_monitoring.py +1043 -0
  39. truthound_dashboard/core/notifications/channels.py +1020 -1
  40. truthound_dashboard/core/notifications/deduplication/__init__.py +143 -0
  41. truthound_dashboard/core/notifications/deduplication/policies.py +274 -0
  42. truthound_dashboard/core/notifications/deduplication/service.py +400 -0
  43. truthound_dashboard/core/notifications/deduplication/stores.py +2365 -0
  44. truthound_dashboard/core/notifications/deduplication/strategies.py +422 -0
  45. truthound_dashboard/core/notifications/dispatcher.py +43 -0
  46. truthound_dashboard/core/notifications/escalation/__init__.py +149 -0
  47. truthound_dashboard/core/notifications/escalation/backends.py +1384 -0
  48. truthound_dashboard/core/notifications/escalation/engine.py +429 -0
  49. truthound_dashboard/core/notifications/escalation/models.py +336 -0
  50. truthound_dashboard/core/notifications/escalation/scheduler.py +1187 -0
  51. truthound_dashboard/core/notifications/escalation/state_machine.py +330 -0
  52. truthound_dashboard/core/notifications/escalation/stores.py +2896 -0
  53. truthound_dashboard/core/notifications/events.py +49 -0
  54. truthound_dashboard/core/notifications/metrics/__init__.py +115 -0
  55. truthound_dashboard/core/notifications/metrics/base.py +528 -0
  56. truthound_dashboard/core/notifications/metrics/collectors.py +583 -0
  57. truthound_dashboard/core/notifications/routing/__init__.py +169 -0
  58. truthound_dashboard/core/notifications/routing/combinators.py +184 -0
  59. truthound_dashboard/core/notifications/routing/config.py +375 -0
  60. truthound_dashboard/core/notifications/routing/config_parser.py +867 -0
  61. truthound_dashboard/core/notifications/routing/engine.py +382 -0
  62. truthound_dashboard/core/notifications/routing/expression_engine.py +1269 -0
  63. truthound_dashboard/core/notifications/routing/jinja2_engine.py +774 -0
  64. truthound_dashboard/core/notifications/routing/rules.py +625 -0
  65. truthound_dashboard/core/notifications/routing/validator.py +678 -0
  66. truthound_dashboard/core/notifications/service.py +2 -0
  67. truthound_dashboard/core/notifications/stats_aggregator.py +850 -0
  68. truthound_dashboard/core/notifications/throttling/__init__.py +83 -0
  69. truthound_dashboard/core/notifications/throttling/builder.py +311 -0
  70. truthound_dashboard/core/notifications/throttling/stores.py +1859 -0
  71. truthound_dashboard/core/notifications/throttling/throttlers.py +633 -0
  72. truthound_dashboard/core/openlineage.py +1028 -0
  73. truthound_dashboard/core/plugins/__init__.py +39 -0
  74. truthound_dashboard/core/plugins/docs/__init__.py +39 -0
  75. truthound_dashboard/core/plugins/docs/extractor.py +703 -0
  76. truthound_dashboard/core/plugins/docs/renderers.py +804 -0
  77. truthound_dashboard/core/plugins/hooks/__init__.py +63 -0
  78. truthound_dashboard/core/plugins/hooks/decorators.py +367 -0
  79. truthound_dashboard/core/plugins/hooks/manager.py +403 -0
  80. truthound_dashboard/core/plugins/hooks/protocols.py +265 -0
  81. truthound_dashboard/core/plugins/lifecycle/__init__.py +41 -0
  82. truthound_dashboard/core/plugins/lifecycle/hot_reload.py +584 -0
  83. truthound_dashboard/core/plugins/lifecycle/machine.py +419 -0
  84. truthound_dashboard/core/plugins/lifecycle/states.py +266 -0
  85. truthound_dashboard/core/plugins/loader.py +504 -0
  86. truthound_dashboard/core/plugins/registry.py +810 -0
  87. truthound_dashboard/core/plugins/reporter_executor.py +588 -0
  88. truthound_dashboard/core/plugins/sandbox/__init__.py +59 -0
  89. truthound_dashboard/core/plugins/sandbox/code_validator.py +243 -0
  90. truthound_dashboard/core/plugins/sandbox/engines.py +770 -0
  91. truthound_dashboard/core/plugins/sandbox/protocols.py +194 -0
  92. truthound_dashboard/core/plugins/sandbox.py +617 -0
  93. truthound_dashboard/core/plugins/security/__init__.py +68 -0
  94. truthound_dashboard/core/plugins/security/analyzer.py +535 -0
  95. truthound_dashboard/core/plugins/security/policies.py +311 -0
  96. truthound_dashboard/core/plugins/security/protocols.py +296 -0
  97. truthound_dashboard/core/plugins/security/signing.py +842 -0
  98. truthound_dashboard/core/plugins/security.py +446 -0
  99. truthound_dashboard/core/plugins/validator_executor.py +401 -0
  100. truthound_dashboard/core/plugins/versioning/__init__.py +51 -0
  101. truthound_dashboard/core/plugins/versioning/constraints.py +377 -0
  102. truthound_dashboard/core/plugins/versioning/dependencies.py +541 -0
  103. truthound_dashboard/core/plugins/versioning/semver.py +266 -0
  104. truthound_dashboard/core/profile_comparison.py +601 -0
  105. truthound_dashboard/core/report_history.py +570 -0
  106. truthound_dashboard/core/reporters/__init__.py +57 -0
  107. truthound_dashboard/core/reporters/base.py +296 -0
  108. truthound_dashboard/core/reporters/csv_reporter.py +155 -0
  109. truthound_dashboard/core/reporters/html_reporter.py +598 -0
  110. truthound_dashboard/core/reporters/i18n/__init__.py +65 -0
  111. truthound_dashboard/core/reporters/i18n/base.py +494 -0
  112. truthound_dashboard/core/reporters/i18n/catalogs.py +930 -0
  113. truthound_dashboard/core/reporters/json_reporter.py +160 -0
  114. truthound_dashboard/core/reporters/junit_reporter.py +233 -0
  115. truthound_dashboard/core/reporters/markdown_reporter.py +207 -0
  116. truthound_dashboard/core/reporters/pdf_reporter.py +209 -0
  117. truthound_dashboard/core/reporters/registry.py +272 -0
  118. truthound_dashboard/core/rule_generator.py +2088 -0
  119. truthound_dashboard/core/scheduler.py +822 -12
  120. truthound_dashboard/core/schema_evolution.py +858 -0
  121. truthound_dashboard/core/services.py +152 -9
  122. truthound_dashboard/core/statistics.py +718 -0
  123. truthound_dashboard/core/streaming_anomaly.py +883 -0
  124. truthound_dashboard/core/triggers/__init__.py +45 -0
  125. truthound_dashboard/core/triggers/base.py +226 -0
  126. truthound_dashboard/core/triggers/evaluators.py +609 -0
  127. truthound_dashboard/core/triggers/factory.py +363 -0
  128. truthound_dashboard/core/unified_alerts.py +870 -0
  129. truthound_dashboard/core/validation_limits.py +509 -0
  130. truthound_dashboard/core/versioning.py +709 -0
  131. truthound_dashboard/core/websocket/__init__.py +59 -0
  132. truthound_dashboard/core/websocket/manager.py +512 -0
  133. truthound_dashboard/core/websocket/messages.py +130 -0
  134. truthound_dashboard/db/__init__.py +30 -0
  135. truthound_dashboard/db/models.py +3375 -3
  136. truthound_dashboard/main.py +22 -0
  137. truthound_dashboard/schemas/__init__.py +396 -1
  138. truthound_dashboard/schemas/anomaly.py +1258 -0
  139. truthound_dashboard/schemas/base.py +4 -0
  140. truthound_dashboard/schemas/cross_alerts.py +334 -0
  141. truthound_dashboard/schemas/drift_monitor.py +890 -0
  142. truthound_dashboard/schemas/lineage.py +428 -0
  143. truthound_dashboard/schemas/maintenance.py +154 -0
  144. truthound_dashboard/schemas/model_monitoring.py +374 -0
  145. truthound_dashboard/schemas/notifications_advanced.py +1363 -0
  146. truthound_dashboard/schemas/openlineage.py +704 -0
  147. truthound_dashboard/schemas/plugins.py +1293 -0
  148. truthound_dashboard/schemas/profile.py +420 -34
  149. truthound_dashboard/schemas/profile_comparison.py +242 -0
  150. truthound_dashboard/schemas/reports.py +285 -0
  151. truthound_dashboard/schemas/rule_suggestion.py +434 -0
  152. truthound_dashboard/schemas/schema_evolution.py +164 -0
  153. truthound_dashboard/schemas/source.py +117 -2
  154. truthound_dashboard/schemas/triggers.py +511 -0
  155. truthound_dashboard/schemas/unified_alerts.py +223 -0
  156. truthound_dashboard/schemas/validation.py +25 -1
  157. truthound_dashboard/schemas/validators/__init__.py +11 -0
  158. truthound_dashboard/schemas/validators/base.py +151 -0
  159. truthound_dashboard/schemas/versioning.py +152 -0
  160. truthound_dashboard/static/index.html +2 -2
  161. {truthound_dashboard-1.3.1.dist-info → truthound_dashboard-1.4.1.dist-info}/METADATA +147 -23
  162. truthound_dashboard-1.4.1.dist-info/RECORD +239 -0
  163. truthound_dashboard/static/assets/index-BZG20KuF.js +0 -586
  164. truthound_dashboard/static/assets/index-D_HyZ3pb.css +0 -1
  165. truthound_dashboard/static/assets/unmerged_dictionaries-CtpqQBm0.js +0 -1
  166. truthound_dashboard-1.3.1.dist-info/RECORD +0 -110
  167. {truthound_dashboard-1.3.1.dist-info → truthound_dashboard-1.4.1.dist-info}/WHEEL +0 -0
  168. {truthound_dashboard-1.3.1.dist-info → truthound_dashboard-1.4.1.dist-info}/entry_points.txt +0 -0
  169. {truthound_dashboard-1.3.1.dist-info → truthound_dashboard-1.4.1.dist-info}/licenses/LICENSE +0 -0
@@ -46,7 +46,11 @@ from truthound_dashboard.config import get_settings
46
46
  from truthound_dashboard.core.cache import get_cache
47
47
  from truthound_dashboard.core.logging import setup_logging
48
48
  from truthound_dashboard.core.maintenance import get_maintenance_manager
49
+ from truthound_dashboard.core.notifications.escalation.scheduler import (
50
+ get_escalation_scheduler,
51
+ )
49
52
  from truthound_dashboard.core.scheduler import get_scheduler
53
+ from truthound_dashboard.core.websocket import get_websocket_manager
50
54
  from truthound_dashboard.db import init_db
51
55
 
52
56
  logger = logging.getLogger(__name__)
@@ -94,6 +98,16 @@ async def lifespan(_app: FastAPI) -> AsyncGenerator[None, None]:
94
98
  await scheduler.start()
95
99
  logger.info("Validation scheduler started")
96
100
 
101
+ # Start escalation scheduler
102
+ escalation_scheduler = get_escalation_scheduler()
103
+ await escalation_scheduler.start()
104
+ logger.info("Escalation scheduler started")
105
+
106
+ # Start WebSocket manager
107
+ ws_manager = get_websocket_manager()
108
+ await ws_manager.start()
109
+ logger.info("WebSocket manager started")
110
+
97
111
  # Register maintenance tasks with scheduler
98
112
  _register_maintenance_tasks()
99
113
 
@@ -102,6 +116,14 @@ async def lifespan(_app: FastAPI) -> AsyncGenerator[None, None]:
102
116
  # Shutdown
103
117
  logger.info("Shutting down Truthound Dashboard")
104
118
 
119
+ # Stop WebSocket manager
120
+ await ws_manager.stop()
121
+ logger.info("WebSocket manager stopped")
122
+
123
+ # Stop escalation scheduler
124
+ await escalation_scheduler.stop()
125
+ logger.info("Escalation scheduler stopped")
126
+
105
127
  # Stop scheduler
106
128
  await scheduler.stop()
107
129
  logger.info("Scheduler stopped")
@@ -41,7 +41,19 @@ from .history import (
41
41
  RecentValidation,
42
42
  TrendDataPoint,
43
43
  )
44
- from .profile import ColumnProfile, ProfileRequest, ProfileResponse
44
+ from .profile import (
45
+ ColumnProfile,
46
+ DetectedPattern,
47
+ HistogramBucket,
48
+ PatternDetectionConfig,
49
+ PatternType,
50
+ ProfileRequest,
51
+ ProfileResponse,
52
+ SamplingConfig,
53
+ SamplingMetadata,
54
+ SamplingStrategy,
55
+ SamplingStrategyType,
56
+ )
45
57
  from .rule import (
46
58
  RuleBase,
47
59
  RuleCreate,
@@ -148,13 +160,22 @@ from .schema import (
148
160
  SchemaUpdateRequest,
149
161
  )
150
162
  from .source import (
163
+ FieldDefinitionSchema,
164
+ FieldOption,
165
+ FieldType,
151
166
  SourceBase,
167
+ SourceCategory,
152
168
  SourceCreate,
153
169
  SourceListResponse,
154
170
  SourceResponse,
155
171
  SourceSummary,
156
172
  SourceType,
173
+ SourceTypeCategorySchema,
174
+ SourceTypeDefinitionSchema,
175
+ SourceTypesResponse,
157
176
  SourceUpdate,
177
+ TestConnectionRequest,
178
+ TestConnectionResponse,
158
179
  )
159
180
  from .validation import (
160
181
  IssueSeverity,
@@ -166,6 +187,194 @@ from .validation import (
166
187
  ValidationStatus,
167
188
  ValidationSummary,
168
189
  )
190
+ # Reports
191
+ from .reports import (
192
+ AvailableFormatsResponse,
193
+ ReportFormatType,
194
+ ReportGenerateRequest,
195
+ ReportMetadataResponse,
196
+ ReportResponse,
197
+ ReportThemeType,
198
+ )
199
+ # Maintenance
200
+ from .maintenance import (
201
+ CacheClearRequest,
202
+ CacheStatsResponse,
203
+ CleanupResultItem,
204
+ CleanupTriggerRequest,
205
+ MaintenanceReportResponse,
206
+ MaintenanceStatusResponse,
207
+ RetentionPolicyConfig,
208
+ RetentionPolicyResponse,
209
+ )
210
+ # Schema Evolution
211
+ from .schema_evolution import (
212
+ SchemaChangeListResponse,
213
+ SchemaChangeResponse,
214
+ SchemaChangeSeverity,
215
+ SchemaChangeType,
216
+ SchemaEvolutionRequest,
217
+ SchemaEvolutionResponse,
218
+ SchemaEvolutionSummary,
219
+ SchemaVersionListResponse,
220
+ SchemaVersionResponse,
221
+ SchemaVersionSummary,
222
+ )
223
+ # Rule Suggestion
224
+ from .rule_suggestion import (
225
+ ApplyRulesRequest,
226
+ ApplyRulesResponse,
227
+ CrossColumnRuleSuggestion,
228
+ CrossColumnRuleType,
229
+ ExportRulesRequest,
230
+ ExportRulesResponse,
231
+ PresetInfo,
232
+ PresetsResponse,
233
+ RuleCategory,
234
+ RuleExportFormat,
235
+ RulePreset,
236
+ RuleSuggestionRequest,
237
+ RuleSuggestionResponse,
238
+ StrictnessLevel,
239
+ SuggestedRule,
240
+ SuggestionStats,
241
+ )
242
+ # Profile Comparison
243
+ from .profile_comparison import (
244
+ ColumnComparison,
245
+ ColumnComparisonSummary,
246
+ ColumnTrend,
247
+ LatestComparisonResponse,
248
+ ProfileComparisonRequest,
249
+ ProfileComparisonResponse,
250
+ ProfileListResponse,
251
+ ProfileSummary,
252
+ ProfileTrendPoint,
253
+ ProfileTrendRequest,
254
+ ProfileTrendResponse,
255
+ TrendDirection,
256
+ )
257
+ # Advanced Notifications
258
+ from .notifications_advanced import (
259
+ AcknowledgeRequest,
260
+ AdvancedNotificationStats,
261
+ DeduplicationConfigCreate,
262
+ DeduplicationConfigListResponse,
263
+ DeduplicationConfigResponse,
264
+ DeduplicationConfigUpdate,
265
+ DeduplicationPolicy,
266
+ DeduplicationStats,
267
+ DeduplicationStrategy,
268
+ EscalationEventBase,
269
+ EscalationIncidentBase,
270
+ EscalationIncidentListResponse,
271
+ EscalationIncidentResponse,
272
+ EscalationLevelBase,
273
+ EscalationPolicyBase,
274
+ EscalationPolicyCreate,
275
+ EscalationPolicyListResponse,
276
+ EscalationPolicyResponse,
277
+ EscalationPolicyUpdate,
278
+ EscalationState,
279
+ EscalationStats,
280
+ EscalationTargetBase,
281
+ ResolveRequest,
282
+ RoutingRuleCreate,
283
+ RoutingRuleListResponse,
284
+ RoutingRuleResponse,
285
+ RoutingRuleUpdate,
286
+ RuleConfig,
287
+ RuleType,
288
+ RuleTypeInfo,
289
+ RuleTypesResponse,
290
+ TargetType,
291
+ ThrottlingConfigCreate,
292
+ ThrottlingConfigListResponse,
293
+ ThrottlingConfigResponse,
294
+ ThrottlingConfigUpdate,
295
+ ThrottlingStats,
296
+ )
297
+ # OpenLineage Export
298
+ from .openlineage import (
299
+ OpenLineageDataset,
300
+ OpenLineageEmitRequest,
301
+ OpenLineageEmitResponse,
302
+ OpenLineageEvent,
303
+ OpenLineageExportFormat,
304
+ OpenLineageExportRequest,
305
+ OpenLineageExportResponse,
306
+ OpenLineageJob,
307
+ OpenLineageRun,
308
+ OpenLineageWebhookConfig,
309
+ RunState,
310
+ build_dataset_namespace,
311
+ )
312
+ # Cross-Alerts
313
+ from .cross_alerts import (
314
+ AlertType,
315
+ AutoTriggerConfig,
316
+ AutoTriggerConfigCreate,
317
+ AutoTriggerConfigUpdate,
318
+ AutoTriggerEvent,
319
+ AutoTriggerEventListResponse,
320
+ AutoTriggerThresholds,
321
+ CorrelatedAlert,
322
+ CorrelationStrength,
323
+ CrossAlertCorrelation,
324
+ CrossAlertCorrelationListResponse,
325
+ CrossAlertSummary,
326
+ TriggerDirection,
327
+ )
328
+ # Triggers
329
+ from .triggers import (
330
+ CompositeTriggerConfig,
331
+ CronTriggerConfig,
332
+ DataChangeTriggerConfig,
333
+ EventTriggerConfig,
334
+ IntervalTriggerConfig,
335
+ ManualTriggerConfig,
336
+ TriggerConfig,
337
+ TriggerConfigCreate,
338
+ TriggerEvaluationResult,
339
+ TriggerOperator,
340
+ TriggerResponse,
341
+ TriggerState,
342
+ TriggerType,
343
+ parse_trigger_config,
344
+ )
345
+ # Plugins
346
+ from .plugins import (
347
+ CustomReporterCreate,
348
+ CustomReporterListResponse,
349
+ CustomReporterResponse,
350
+ CustomReporterUpdate,
351
+ CustomValidatorCreate,
352
+ CustomValidatorListResponse,
353
+ CustomValidatorResponse,
354
+ CustomValidatorUpdate,
355
+ MarketplaceSearchRequest,
356
+ MarketplaceStats,
357
+ PluginCreate,
358
+ PluginInstallRequest,
359
+ PluginInstallResponse,
360
+ PluginListResponse,
361
+ PluginPermission,
362
+ PluginResponse,
363
+ PluginSource,
364
+ PluginStatus,
365
+ PluginSummary,
366
+ PluginType,
367
+ PluginUninstallRequest,
368
+ PluginUninstallResponse,
369
+ PluginUpdate,
370
+ PluginUpdateCheckResponse,
371
+ ReporterGenerateRequest,
372
+ ReporterGenerateResponse,
373
+ ReporterOutputFormat,
374
+ SecurityLevel,
375
+ ValidatorTestRequest,
376
+ ValidatorTestResponse,
377
+ )
169
378
 
170
379
  __all__ = [
171
380
  # Base
@@ -178,12 +387,22 @@ __all__ = [
178
387
  "MessageResponse",
179
388
  # Source
180
389
  "SourceType",
390
+ "SourceCategory",
391
+ "FieldType",
181
392
  "SourceBase",
182
393
  "SourceCreate",
183
394
  "SourceUpdate",
184
395
  "SourceResponse",
185
396
  "SourceListResponse",
186
397
  "SourceSummary",
398
+ # Source Type Definitions (dynamic forms)
399
+ "FieldOption",
400
+ "FieldDefinitionSchema",
401
+ "SourceTypeDefinitionSchema",
402
+ "SourceTypeCategorySchema",
403
+ "SourceTypesResponse",
404
+ "TestConnectionRequest",
405
+ "TestConnectionResponse",
187
406
  # Rule
188
407
  "RuleBase",
189
408
  "RuleCreate",
@@ -211,6 +430,14 @@ __all__ = [
211
430
  "ProfileRequest",
212
431
  "ColumnProfile",
213
432
  "ProfileResponse",
433
+ "DetectedPattern",
434
+ "HistogramBucket",
435
+ "PatternDetectionConfig",
436
+ "PatternType",
437
+ "SamplingConfig",
438
+ "SamplingMetadata",
439
+ "SamplingStrategy",
440
+ "SamplingStrategyType",
214
441
  # Data Masking
215
442
  "MaskingStrategy",
216
443
  "MaskingStrategyLiteral",
@@ -312,4 +539,172 @@ __all__ = [
312
539
  "ActivityResponse",
313
540
  "ActivityListResponse",
314
541
  "ActivityCreate",
542
+ # Reports
543
+ "ReportFormatType",
544
+ "ReportThemeType",
545
+ "ReportGenerateRequest",
546
+ "ReportMetadataResponse",
547
+ "ReportResponse",
548
+ "AvailableFormatsResponse",
549
+ # Maintenance
550
+ "RetentionPolicyConfig",
551
+ "RetentionPolicyResponse",
552
+ "CleanupResultItem",
553
+ "MaintenanceReportResponse",
554
+ "CleanupTriggerRequest",
555
+ "MaintenanceStatusResponse",
556
+ "CacheStatsResponse",
557
+ "CacheClearRequest",
558
+ # Schema Evolution
559
+ "SchemaChangeType",
560
+ "SchemaChangeSeverity",
561
+ "SchemaVersionResponse",
562
+ "SchemaVersionSummary",
563
+ "SchemaVersionListResponse",
564
+ "SchemaChangeResponse",
565
+ "SchemaChangeListResponse",
566
+ "SchemaEvolutionRequest",
567
+ "SchemaEvolutionResponse",
568
+ "SchemaEvolutionSummary",
569
+ # Rule Suggestion
570
+ "SuggestedRule",
571
+ "CrossColumnRuleSuggestion",
572
+ "CrossColumnRuleType",
573
+ "RuleSuggestionRequest",
574
+ "RuleSuggestionResponse",
575
+ "ApplyRulesRequest",
576
+ "ApplyRulesResponse",
577
+ "SuggestionStats",
578
+ "RuleCategory",
579
+ "RulePreset",
580
+ "StrictnessLevel",
581
+ "RuleExportFormat",
582
+ "ExportRulesRequest",
583
+ "ExportRulesResponse",
584
+ "PresetInfo",
585
+ "PresetsResponse",
586
+ # Profile Comparison
587
+ "TrendDirection",
588
+ "ProfileSummary",
589
+ "ProfileListResponse",
590
+ "ColumnComparison",
591
+ "ColumnComparisonSummary",
592
+ "ProfileComparisonRequest",
593
+ "ProfileComparisonResponse",
594
+ "ProfileTrendPoint",
595
+ "ColumnTrend",
596
+ "ProfileTrendRequest",
597
+ "ProfileTrendResponse",
598
+ "LatestComparisonResponse",
599
+ # Advanced Notifications
600
+ "RuleType",
601
+ "DeduplicationStrategy",
602
+ "DeduplicationPolicy",
603
+ "EscalationState",
604
+ "TargetType",
605
+ "RuleConfig",
606
+ "RoutingRuleCreate",
607
+ "RoutingRuleUpdate",
608
+ "RoutingRuleResponse",
609
+ "RoutingRuleListResponse",
610
+ "RuleTypeInfo",
611
+ "RuleTypesResponse",
612
+ "DeduplicationConfigCreate",
613
+ "DeduplicationConfigUpdate",
614
+ "DeduplicationConfigResponse",
615
+ "DeduplicationConfigListResponse",
616
+ "DeduplicationStats",
617
+ "ThrottlingConfigCreate",
618
+ "ThrottlingConfigUpdate",
619
+ "ThrottlingConfigResponse",
620
+ "ThrottlingConfigListResponse",
621
+ "ThrottlingStats",
622
+ "EscalationTargetBase",
623
+ "EscalationLevelBase",
624
+ "EscalationPolicyBase",
625
+ "EscalationPolicyCreate",
626
+ "EscalationPolicyUpdate",
627
+ "EscalationPolicyResponse",
628
+ "EscalationPolicyListResponse",
629
+ "EscalationEventBase",
630
+ "EscalationIncidentBase",
631
+ "EscalationIncidentResponse",
632
+ "EscalationIncidentListResponse",
633
+ "AcknowledgeRequest",
634
+ "ResolveRequest",
635
+ "EscalationStats",
636
+ "AdvancedNotificationStats",
637
+ # OpenLineage Export
638
+ "RunState",
639
+ "OpenLineageDataset",
640
+ "OpenLineageJob",
641
+ "OpenLineageRun",
642
+ "OpenLineageEvent",
643
+ "OpenLineageExportFormat",
644
+ "OpenLineageExportRequest",
645
+ "OpenLineageExportResponse",
646
+ "OpenLineageWebhookConfig",
647
+ "OpenLineageEmitRequest",
648
+ "OpenLineageEmitResponse",
649
+ "build_dataset_namespace",
650
+ # Cross-Alerts
651
+ "AlertType",
652
+ "CorrelationStrength",
653
+ "TriggerDirection",
654
+ "CorrelatedAlert",
655
+ "CrossAlertCorrelation",
656
+ "CrossAlertCorrelationListResponse",
657
+ "AutoTriggerThresholds",
658
+ "AutoTriggerConfig",
659
+ "AutoTriggerConfigCreate",
660
+ "AutoTriggerConfigUpdate",
661
+ "AutoTriggerEvent",
662
+ "AutoTriggerEventListResponse",
663
+ "CrossAlertSummary",
664
+ # Triggers
665
+ "TriggerType",
666
+ "TriggerOperator",
667
+ "CronTriggerConfig",
668
+ "IntervalTriggerConfig",
669
+ "DataChangeTriggerConfig",
670
+ "EventTriggerConfig",
671
+ "CompositeTriggerConfig",
672
+ "ManualTriggerConfig",
673
+ "TriggerConfig",
674
+ "TriggerState",
675
+ "TriggerEvaluationResult",
676
+ "TriggerConfigCreate",
677
+ "TriggerResponse",
678
+ "parse_trigger_config",
679
+ # Plugins
680
+ "PluginType",
681
+ "PluginStatus",
682
+ "PluginSource",
683
+ "SecurityLevel",
684
+ "PluginPermission",
685
+ "ReporterOutputFormat",
686
+ "PluginCreate",
687
+ "PluginUpdate",
688
+ "PluginResponse",
689
+ "PluginListResponse",
690
+ "PluginSummary",
691
+ "PluginInstallRequest",
692
+ "PluginInstallResponse",
693
+ "PluginUninstallRequest",
694
+ "PluginUninstallResponse",
695
+ "PluginUpdateCheckResponse",
696
+ "CustomValidatorCreate",
697
+ "CustomValidatorUpdate",
698
+ "CustomValidatorResponse",
699
+ "CustomValidatorListResponse",
700
+ "ValidatorTestRequest",
701
+ "ValidatorTestResponse",
702
+ "CustomReporterCreate",
703
+ "CustomReporterUpdate",
704
+ "CustomReporterResponse",
705
+ "CustomReporterListResponse",
706
+ "ReporterGenerateRequest",
707
+ "ReporterGenerateResponse",
708
+ "MarketplaceSearchRequest",
709
+ "MarketplaceStats",
315
710
  ]