acryl-datahub-cloud 0.3.11rc0__py3-none-any.whl → 0.3.16.1rc0__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.

Potentially problematic release.


This version of acryl-datahub-cloud might be problematic. Click here for more details.

Files changed (238) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/acryl_cs_issues/models.py +5 -3
  3. acryl_datahub_cloud/action_request/action_request_owner_source.py +36 -6
  4. acryl_datahub_cloud/datahub_forms_notifications/__init__.py +0 -0
  5. acryl_datahub_cloud/datahub_forms_notifications/forms_notifications_source.py +569 -0
  6. acryl_datahub_cloud/datahub_forms_notifications/get_feature_flag.gql +7 -0
  7. acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql +14 -0
  8. acryl_datahub_cloud/datahub_forms_notifications/query.py +17 -0
  9. acryl_datahub_cloud/datahub_forms_notifications/scroll_forms_for_notification.gql +29 -0
  10. acryl_datahub_cloud/datahub_forms_notifications/send_form_notification_request.gql +5 -0
  11. acryl_datahub_cloud/datahub_reporting/datahub_dataset.py +37 -13
  12. acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +55 -24
  13. acryl_datahub_cloud/datahub_reporting/extract_graph.py +4 -3
  14. acryl_datahub_cloud/datahub_reporting/extract_sql.py +242 -51
  15. acryl_datahub_cloud/datahub_reporting/forms.py +1 -1
  16. acryl_datahub_cloud/datahub_reporting/forms_config.py +3 -2
  17. acryl_datahub_cloud/datahub_restore/source.py +3 -2
  18. acryl_datahub_cloud/datahub_usage_reporting/excluded.py +94 -0
  19. acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +48 -8
  20. acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +518 -77
  21. acryl_datahub_cloud/elasticsearch/graph_service.py +76 -14
  22. acryl_datahub_cloud/graphql_utils.py +64 -0
  23. acryl_datahub_cloud/lineage_features/source.py +555 -49
  24. acryl_datahub_cloud/metadata/_urns/urn_defs.py +2296 -1900
  25. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionworkflow/__init__.py +53 -0
  26. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/anomaly/__init__.py +2 -0
  27. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
  28. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +4 -2
  29. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py +6 -0
  30. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/conversation/__init__.py +29 -0
  31. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/event/notification/settings/__init__.py +2 -0
  32. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/execution/__init__.py +2 -0
  33. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/file/__init__.py +19 -0
  34. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +8 -0
  35. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py +8 -0
  36. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/knowledge/__init__.py +33 -0
  37. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
  38. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +12 -0
  39. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/search/features/__init__.py +2 -0
  40. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +31 -0
  41. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notification/__init__.py +19 -0
  42. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/platform/event/v1/__init__.py +4 -0
  43. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/role/__init__.py +2 -0
  44. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/asset/__init__.py +19 -0
  45. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +28 -0
  46. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/template/__init__.py +31 -0
  47. acryl_datahub_cloud/metadata/schema.avsc +25091 -20557
  48. acryl_datahub_cloud/metadata/schema_classes.py +29269 -23863
  49. acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +235 -2
  50. acryl_datahub_cloud/metadata/schemas/ActionWorkflowInfo.avsc +683 -0
  51. acryl_datahub_cloud/metadata/schemas/ActionWorkflowKey.avsc +21 -0
  52. acryl_datahub_cloud/metadata/schemas/Actors.avsc +38 -1
  53. acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc +31 -0
  54. acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc +75 -0
  55. acryl_datahub_cloud/metadata/schemas/Applications.avsc +38 -0
  56. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +353 -215
  57. acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +147 -20
  58. acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
  59. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +166 -21
  60. acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +15 -2
  61. acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +54 -0
  62. acryl_datahub_cloud/metadata/schemas/AssetSettings.avsc +63 -0
  63. acryl_datahub_cloud/metadata/schemas/BusinessAttributeInfo.avsc +7 -3
  64. acryl_datahub_cloud/metadata/schemas/ChartInfo.avsc +20 -6
  65. acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +1 -0
  66. acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +12 -1
  67. acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
  68. acryl_datahub_cloud/metadata/schemas/ContainerProperties.avsc +16 -5
  69. acryl_datahub_cloud/metadata/schemas/CorpGroupEditableInfo.avsc +2 -1
  70. acryl_datahub_cloud/metadata/schemas/CorpGroupInfo.avsc +7 -3
  71. acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +2 -1
  72. acryl_datahub_cloud/metadata/schemas/CorpGroupSettings.avsc +127 -2
  73. acryl_datahub_cloud/metadata/schemas/CorpUserEditableInfo.avsc +1 -1
  74. acryl_datahub_cloud/metadata/schemas/CorpUserInfo.avsc +18 -2
  75. acryl_datahub_cloud/metadata/schemas/CorpUserInvitationStatus.avsc +106 -0
  76. acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +4 -1
  77. acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +304 -2
  78. acryl_datahub_cloud/metadata/schemas/CorpUserUsageFeatures.avsc +86 -0
  79. acryl_datahub_cloud/metadata/schemas/DashboardInfo.avsc +11 -5
  80. acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +1 -0
  81. acryl_datahub_cloud/metadata/schemas/DataFlowInfo.avsc +15 -5
  82. acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -0
  83. acryl_datahub_cloud/metadata/schemas/DataHubAiConversationInfo.avsc +256 -0
  84. acryl_datahub_cloud/metadata/schemas/DataHubAiConversationKey.avsc +22 -0
  85. acryl_datahub_cloud/metadata/schemas/DataHubFileInfo.avsc +234 -0
  86. acryl_datahub_cloud/metadata/schemas/DataHubFileKey.avsc +22 -0
  87. acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
  88. acryl_datahub_cloud/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
  89. acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +308 -0
  90. acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
  91. acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateProperties.avsc +251 -0
  92. acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
  93. acryl_datahub_cloud/metadata/schemas/DataJobInfo.avsc +13 -4
  94. acryl_datahub_cloud/metadata/schemas/DataJobInputOutput.avsc +8 -0
  95. acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +1 -0
  96. acryl_datahub_cloud/metadata/schemas/DataPlatformInfo.avsc +3 -1
  97. acryl_datahub_cloud/metadata/schemas/DataPlatformInstanceProperties.avsc +5 -2
  98. acryl_datahub_cloud/metadata/schemas/DataProcessKey.avsc +4 -0
  99. acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +2 -0
  100. acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc +6 -3
  101. acryl_datahub_cloud/metadata/schemas/DataTypeInfo.avsc +5 -0
  102. acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +10 -2
  103. acryl_datahub_cloud/metadata/schemas/DatasetProperties.avsc +12 -5
  104. acryl_datahub_cloud/metadata/schemas/DatasetUsageStatistics.avsc +8 -0
  105. acryl_datahub_cloud/metadata/schemas/DocumentInfo.avsc +407 -0
  106. acryl_datahub_cloud/metadata/schemas/DocumentKey.avsc +35 -0
  107. acryl_datahub_cloud/metadata/schemas/DocumentSettings.avsc +79 -0
  108. acryl_datahub_cloud/metadata/schemas/DomainKey.avsc +2 -0
  109. acryl_datahub_cloud/metadata/schemas/DomainProperties.avsc +7 -3
  110. acryl_datahub_cloud/metadata/schemas/EditableContainerProperties.avsc +2 -1
  111. acryl_datahub_cloud/metadata/schemas/EditableDashboardProperties.avsc +2 -1
  112. acryl_datahub_cloud/metadata/schemas/EditableDataFlowProperties.avsc +2 -1
  113. acryl_datahub_cloud/metadata/schemas/EditableDataJobProperties.avsc +2 -1
  114. acryl_datahub_cloud/metadata/schemas/EditableDatasetProperties.avsc +2 -1
  115. acryl_datahub_cloud/metadata/schemas/EditableERModelRelationshipProperties.avsc +2 -1
  116. acryl_datahub_cloud/metadata/schemas/EditableMLFeatureProperties.avsc +2 -1
  117. acryl_datahub_cloud/metadata/schemas/EditableMLFeatureTableProperties.avsc +2 -1
  118. acryl_datahub_cloud/metadata/schemas/EditableMLModelGroupProperties.avsc +2 -1
  119. acryl_datahub_cloud/metadata/schemas/EditableMLModelProperties.avsc +2 -1
  120. acryl_datahub_cloud/metadata/schemas/EditableNotebookProperties.avsc +2 -1
  121. acryl_datahub_cloud/metadata/schemas/EditableSchemaMetadata.avsc +4 -2
  122. acryl_datahub_cloud/metadata/schemas/EntityTypeInfo.avsc +5 -0
  123. acryl_datahub_cloud/metadata/schemas/ExecutionRequestArtifactsLocation.avsc +16 -0
  124. acryl_datahub_cloud/metadata/schemas/ExecutionRequestKey.avsc +2 -1
  125. acryl_datahub_cloud/metadata/schemas/FormAssignmentStatus.avsc +36 -0
  126. acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +6 -0
  127. acryl_datahub_cloud/metadata/schemas/FormKey.avsc +3 -1
  128. acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc +69 -0
  129. acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +30 -0
  130. acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +416 -0
  131. acryl_datahub_cloud/metadata/schemas/GlobalTags.avsc +2 -1
  132. acryl_datahub_cloud/metadata/schemas/GlossaryNodeInfo.avsc +3 -1
  133. acryl_datahub_cloud/metadata/schemas/GlossaryNodeKey.avsc +1 -0
  134. acryl_datahub_cloud/metadata/schemas/GlossaryTermInfo.avsc +3 -1
  135. acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +2 -0
  136. acryl_datahub_cloud/metadata/schemas/IcebergWarehouseInfo.avsc +4 -0
  137. acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc +3 -3
  138. acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc +3 -3
  139. acryl_datahub_cloud/metadata/schemas/InferredMetadata.avsc +71 -1
  140. acryl_datahub_cloud/metadata/schemas/InputFields.avsc +2 -1
  141. acryl_datahub_cloud/metadata/schemas/InviteToken.avsc +26 -0
  142. acryl_datahub_cloud/metadata/schemas/LineageFeatures.avsc +67 -42
  143. acryl_datahub_cloud/metadata/schemas/LogicalParent.avsc +145 -0
  144. acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +4 -1
  145. acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +4 -1
  146. acryl_datahub_cloud/metadata/schemas/MLModelDeploymentKey.avsc +7 -1
  147. acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +9 -1
  148. acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +9 -1
  149. acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc +4 -2
  150. acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +4 -1
  151. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +418 -97
  152. acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +62 -44
  153. acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +61 -0
  154. acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +54 -9
  155. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +163 -23
  156. acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc +9 -1
  157. acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +128 -3
  158. acryl_datahub_cloud/metadata/schemas/NotebookInfo.avsc +5 -2
  159. acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
  160. acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +91 -4
  161. acryl_datahub_cloud/metadata/schemas/Operation.avsc +17 -0
  162. acryl_datahub_cloud/metadata/schemas/Ownership.avsc +71 -1
  163. acryl_datahub_cloud/metadata/schemas/QuerySubjects.avsc +2 -13
  164. acryl_datahub_cloud/metadata/schemas/RelationshipChangeEvent.avsc +215 -0
  165. acryl_datahub_cloud/metadata/schemas/RoleProperties.avsc +3 -1
  166. acryl_datahub_cloud/metadata/schemas/SchemaFieldInfo.avsc +3 -1
  167. acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +3 -0
  168. acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc +2 -1
  169. acryl_datahub_cloud/metadata/schemas/SemanticContent.avsc +123 -0
  170. acryl_datahub_cloud/metadata/schemas/StructuredProperties.avsc +69 -0
  171. acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc +15 -4
  172. acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc +9 -0
  173. acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +136 -5
  174. acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc +2 -1
  175. acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +61 -0
  176. acryl_datahub_cloud/metadata/schemas/TagProperties.avsc +3 -1
  177. acryl_datahub_cloud/metadata/schemas/TestInfo.avsc +2 -1
  178. acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc +9 -0
  179. acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc +10 -0
  180. acryl_datahub_cloud/notifications/__init__.py +0 -0
  181. acryl_datahub_cloud/notifications/notification_recipient_builder.py +399 -0
  182. acryl_datahub_cloud/sdk/__init__.py +69 -0
  183. acryl_datahub_cloud/sdk/assertion/__init__.py +58 -0
  184. acryl_datahub_cloud/sdk/assertion/assertion_base.py +779 -0
  185. acryl_datahub_cloud/sdk/assertion/column_metric_assertion.py +191 -0
  186. acryl_datahub_cloud/sdk/assertion/column_value_assertion.py +431 -0
  187. acryl_datahub_cloud/sdk/assertion/freshness_assertion.py +201 -0
  188. acryl_datahub_cloud/sdk/assertion/schema_assertion.py +268 -0
  189. acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py +212 -0
  190. acryl_datahub_cloud/sdk/assertion/smart_freshness_assertion.py +165 -0
  191. acryl_datahub_cloud/sdk/assertion/smart_sql_assertion.py +156 -0
  192. acryl_datahub_cloud/sdk/assertion/smart_volume_assertion.py +162 -0
  193. acryl_datahub_cloud/sdk/assertion/sql_assertion.py +273 -0
  194. acryl_datahub_cloud/sdk/assertion/types.py +20 -0
  195. acryl_datahub_cloud/sdk/assertion/volume_assertion.py +156 -0
  196. acryl_datahub_cloud/sdk/assertion_client/__init__.py +0 -0
  197. acryl_datahub_cloud/sdk/assertion_client/column_metric.py +545 -0
  198. acryl_datahub_cloud/sdk/assertion_client/column_value.py +617 -0
  199. acryl_datahub_cloud/sdk/assertion_client/freshness.py +371 -0
  200. acryl_datahub_cloud/sdk/assertion_client/helpers.py +166 -0
  201. acryl_datahub_cloud/sdk/assertion_client/schema.py +358 -0
  202. acryl_datahub_cloud/sdk/assertion_client/smart_column_metric.py +540 -0
  203. acryl_datahub_cloud/sdk/assertion_client/smart_freshness.py +373 -0
  204. acryl_datahub_cloud/sdk/assertion_client/smart_sql.py +411 -0
  205. acryl_datahub_cloud/sdk/assertion_client/smart_volume.py +380 -0
  206. acryl_datahub_cloud/sdk/assertion_client/sql.py +410 -0
  207. acryl_datahub_cloud/sdk/assertion_client/volume.py +446 -0
  208. acryl_datahub_cloud/sdk/assertion_input/__init__.py +0 -0
  209. acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +1470 -0
  210. acryl_datahub_cloud/sdk/assertion_input/column_assertion_constants.py +114 -0
  211. acryl_datahub_cloud/sdk/assertion_input/column_assertion_utils.py +284 -0
  212. acryl_datahub_cloud/sdk/assertion_input/column_metric_assertion_input.py +759 -0
  213. acryl_datahub_cloud/sdk/assertion_input/column_metric_constants.py +109 -0
  214. acryl_datahub_cloud/sdk/assertion_input/column_value_assertion_input.py +810 -0
  215. acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +305 -0
  216. acryl_datahub_cloud/sdk/assertion_input/schema_assertion_input.py +413 -0
  217. acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +793 -0
  218. acryl_datahub_cloud/sdk/assertion_input/smart_freshness_assertion_input.py +218 -0
  219. acryl_datahub_cloud/sdk/assertion_input/smart_sql_assertion_input.py +181 -0
  220. acryl_datahub_cloud/sdk/assertion_input/smart_volume_assertion_input.py +189 -0
  221. acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +320 -0
  222. acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py +635 -0
  223. acryl_datahub_cloud/sdk/assertions_client.py +1074 -0
  224. acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
  225. acryl_datahub_cloud/sdk/entities/assertion.py +439 -0
  226. acryl_datahub_cloud/sdk/entities/monitor.py +291 -0
  227. acryl_datahub_cloud/sdk/entities/subscription.py +100 -0
  228. acryl_datahub_cloud/sdk/errors.py +34 -0
  229. acryl_datahub_cloud/sdk/resolver_client.py +42 -0
  230. acryl_datahub_cloud/sdk/subscription_client.py +737 -0
  231. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/METADATA +55 -49
  232. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/RECORD +235 -142
  233. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/WHEEL +1 -1
  234. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/entry_points.txt +1 -0
  235. acryl_datahub_cloud/_sdk_extras/__init__.py +0 -4
  236. acryl_datahub_cloud/_sdk_extras/assertion.py +0 -15
  237. acryl_datahub_cloud/_sdk_extras/assertions_client.py +0 -23
  238. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/top_level.txt +0 -0
@@ -47,6 +47,15 @@
47
47
  "name": "defaultChannelName",
48
48
  "default": null,
49
49
  "doc": "A default slack channel to use."
50
+ },
51
+ {
52
+ "type": [
53
+ "null",
54
+ "boolean"
55
+ ],
56
+ "name": "datahubAtMentionEnabled",
57
+ "default": null,
58
+ "doc": "Whether the Slack @DataHub bot mention functionality is enabled.\nIf null, use the default value from feature flags."
50
59
  }
51
60
  ],
52
61
  "doc": "Slack integration settings."
@@ -80,6 +89,88 @@
80
89
  "name": "emailSettings",
81
90
  "default": null,
82
91
  "doc": "Email integration settings."
92
+ },
93
+ {
94
+ "type": [
95
+ "null",
96
+ {
97
+ "type": "record",
98
+ "name": "TeamsIntegrationSettings",
99
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
100
+ "fields": [
101
+ {
102
+ "deprecated": true,
103
+ "type": "boolean",
104
+ "name": "enabled",
105
+ "default": true,
106
+ "doc": "Whether the Teams integration is enabled or not.\nDeprecated! This is no longer used in favor of using the connections abstraction.\nIf a connection is present, then this is enabled."
107
+ },
108
+ {
109
+ "deprecated": true,
110
+ "type": [
111
+ "null",
112
+ "string"
113
+ ],
114
+ "name": "encryptedBotToken",
115
+ "default": null,
116
+ "doc": "An encrypted bot token.\nDeprecated! This is no longer used in favor of using the connections abstraction."
117
+ },
118
+ {
119
+ "deprecated": true,
120
+ "type": [
121
+ "null",
122
+ "string"
123
+ ],
124
+ "name": "defaultChannelName",
125
+ "default": null,
126
+ "doc": "A default Teams channel to use.\nDeprecated! Use defaultChannel instead."
127
+ },
128
+ {
129
+ "type": [
130
+ "null",
131
+ {
132
+ "type": "record",
133
+ "name": "TeamsChannel",
134
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
135
+ "fields": [
136
+ {
137
+ "type": "string",
138
+ "name": "id",
139
+ "doc": "The Teams channel ID (internal Teams identifier)."
140
+ },
141
+ {
142
+ "type": [
143
+ "null",
144
+ "string"
145
+ ],
146
+ "name": "name",
147
+ "default": null,
148
+ "doc": "The Teams channel display name (cached value, may be stale)."
149
+ },
150
+ {
151
+ "type": [
152
+ "null",
153
+ "long"
154
+ ],
155
+ "name": "lastUpdated",
156
+ "default": null,
157
+ "doc": "The timestamp when the cached name was last updated.\nUsed for TTL-based cache invalidation."
158
+ }
159
+ ],
160
+ "doc": "Teams channel information with cached display name."
161
+ }
162
+ ],
163
+ "name": "defaultChannel",
164
+ "default": null,
165
+ "doc": "A default Teams channel to route notifications to."
166
+ }
167
+ ],
168
+ "doc": "Teams integration settings."
169
+ }
170
+ ],
171
+ "name": "teamsSettings",
172
+ "default": null,
173
+ "doc": "Teams integration settings."
83
174
  }
84
175
  ],
85
176
  "doc": "Native DataHub Integrations, supported on the UI."
@@ -369,6 +460,78 @@
369
460
  "default": null,
370
461
  "doc": "SSO integrations between DataHub and identity providers"
371
462
  },
463
+ {
464
+ "type": [
465
+ "null",
466
+ {
467
+ "type": "record",
468
+ "name": "OAuthSettings",
469
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
470
+ "fields": [
471
+ {
472
+ "type": {
473
+ "type": "array",
474
+ "items": {
475
+ "type": "record",
476
+ "name": "OAuthProvider",
477
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
478
+ "fields": [
479
+ {
480
+ "type": "boolean",
481
+ "name": "enabled",
482
+ "doc": "Whether this OAuth provider is enabled."
483
+ },
484
+ {
485
+ "type": "string",
486
+ "name": "name",
487
+ "doc": "The name of this OAuth provider. This is used for display purposes only."
488
+ },
489
+ {
490
+ "type": [
491
+ "null",
492
+ "string"
493
+ ],
494
+ "name": "jwksUri",
495
+ "default": null,
496
+ "doc": "The URI of the JSON Web Key Set (JWKS) endpoint for this OAuth provider."
497
+ },
498
+ {
499
+ "type": "string",
500
+ "name": "issuer",
501
+ "doc": "The expected issuer (iss) claim in the JWTs issued by this OAuth provider."
502
+ },
503
+ {
504
+ "type": "string",
505
+ "name": "audience",
506
+ "doc": "The expected audience (aud) claim in the JWTs issued by this OAuth provider."
507
+ },
508
+ {
509
+ "type": "string",
510
+ "name": "algorithm",
511
+ "default": "RS256",
512
+ "doc": "The JWT signing algorithm required for this provider.\nPrevents algorithm confusion attacks. Common values: RS256, RS384, RS512, PS256, ES256"
513
+ },
514
+ {
515
+ "type": "string",
516
+ "name": "userIdClaim",
517
+ "default": "sub",
518
+ "doc": "The JWT claim to use as the user identifier for this provider.\nDifferent providers use different claims (sub, email, preferred_username, etc.)"
519
+ }
520
+ ],
521
+ "doc": "An OAuth Provider. This provides information required to validate inbound\nrequests with OAuth 2.0 bearer tokens."
522
+ }
523
+ },
524
+ "name": "providers",
525
+ "doc": "Trusted OAuth Providers"
526
+ }
527
+ ],
528
+ "doc": "Trust oauth providers to use for authentication."
529
+ }
530
+ ],
531
+ "name": "oauth",
532
+ "default": null,
533
+ "doc": "Settings related to the oauth authentication provider"
534
+ },
372
535
  {
373
536
  "type": [
374
537
  "null",
@@ -454,6 +617,226 @@
454
617
  },
455
618
  "doc": "Settings related to the documentation propagation feature"
456
619
  },
620
+ {
621
+ "type": [
622
+ "null",
623
+ {
624
+ "type": "record",
625
+ "name": "GlobalHomePageSettings",
626
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
627
+ "fields": [
628
+ {
629
+ "java": {
630
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
631
+ },
632
+ "type": "string",
633
+ "name": "defaultTemplate",
634
+ "doc": "The urn that will be rendered in the UI by default for all users",
635
+ "Urn": "Urn"
636
+ }
637
+ ],
638
+ "doc": "Global settings related to the home page for an instance"
639
+ }
640
+ ],
641
+ "name": "homePage",
642
+ "default": null,
643
+ "doc": "Global settings related to the home page for an instance"
644
+ },
645
+ {
646
+ "type": [
647
+ "null",
648
+ {
649
+ "type": "record",
650
+ "name": "ApplicationsSettings",
651
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
652
+ "fields": [
653
+ {
654
+ "type": "boolean",
655
+ "name": "enabled"
656
+ },
657
+ {
658
+ "type": [
659
+ "null",
660
+ "string"
661
+ ],
662
+ "name": "config",
663
+ "default": null,
664
+ "doc": "The configuration for the feature, in JSON format."
665
+ },
666
+ {
667
+ "type": [
668
+ "null",
669
+ "string"
670
+ ],
671
+ "name": "configVersion",
672
+ "default": null,
673
+ "doc": "The version of the configuration schema that has been used to serialize\n the config.\nIf not provided, the version is assumed to be the latest version."
674
+ }
675
+ ]
676
+ }
677
+ ],
678
+ "name": "applications",
679
+ "default": null,
680
+ "doc": "Settings related to applications. If not enabled, applications won't show up in navigation"
681
+ },
682
+ {
683
+ "type": [
684
+ "null",
685
+ {
686
+ "type": "record",
687
+ "name": "DocumentationAiSettings",
688
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
689
+ "fields": [
690
+ {
691
+ "type": "boolean",
692
+ "name": "enabled",
693
+ "default": true,
694
+ "doc": "Whether or not AI-generated documentation is enabled."
695
+ },
696
+ {
697
+ "type": {
698
+ "type": "array",
699
+ "items": {
700
+ "type": "record",
701
+ "name": "AiInstruction",
702
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
703
+ "fields": [
704
+ {
705
+ "type": "string",
706
+ "name": "id",
707
+ "doc": "A unique identifier for this instruction.\nThis will enable users to manage multiple versions of the same instruction in the future."
708
+ },
709
+ {
710
+ "type": {
711
+ "type": "enum",
712
+ "symbolDocs": {
713
+ "GENERAL_CONTEXT": "General context to customize the AI assistant's behavior globally or personally. This is the only supported type currently."
714
+ },
715
+ "name": "AiInstructionType",
716
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
717
+ "symbols": [
718
+ "GENERAL_CONTEXT"
719
+ ]
720
+ },
721
+ "name": "type",
722
+ "doc": "A unique identifier for this instruction.\nThis will enable users to manage multiple versions of the same instruction in the future."
723
+ },
724
+ {
725
+ "type": {
726
+ "type": "enum",
727
+ "symbolDocs": {
728
+ "ACTIVE": "The instruction is active and will be used by the AI assistant.",
729
+ "INACTIVE": "The instruction is inactive and will not be used by the AI assistant."
730
+ },
731
+ "name": "AiInstructionState",
732
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
733
+ "symbols": [
734
+ "ACTIVE",
735
+ "INACTIVE"
736
+ ]
737
+ },
738
+ "name": "state",
739
+ "doc": "The state of the instruction"
740
+ },
741
+ {
742
+ "type": "string",
743
+ "name": "instruction",
744
+ "doc": "Custom instruction text to be sent to the AI model."
745
+ },
746
+ {
747
+ "type": {
748
+ "type": "record",
749
+ "name": "AuditStamp",
750
+ "namespace": "com.linkedin.pegasus2avro.common",
751
+ "fields": [
752
+ {
753
+ "type": "long",
754
+ "name": "time",
755
+ "doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
756
+ },
757
+ {
758
+ "java": {
759
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
760
+ },
761
+ "type": "string",
762
+ "name": "actor",
763
+ "doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
764
+ "Urn": "Urn"
765
+ },
766
+ {
767
+ "java": {
768
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
769
+ },
770
+ "type": [
771
+ "null",
772
+ "string"
773
+ ],
774
+ "name": "impersonator",
775
+ "default": null,
776
+ "doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
777
+ "Urn": "Urn"
778
+ },
779
+ {
780
+ "type": [
781
+ "null",
782
+ "string"
783
+ ],
784
+ "name": "message",
785
+ "default": null,
786
+ "doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
787
+ }
788
+ ],
789
+ "doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
790
+ },
791
+ "name": "created",
792
+ "doc": "The actor + timestamp of when this instruction was created."
793
+ },
794
+ {
795
+ "type": "com.linkedin.pegasus2avro.common.AuditStamp",
796
+ "name": "lastModified",
797
+ "doc": "The actor + timestamp of when this instruction was last modified."
798
+ }
799
+ ],
800
+ "doc": "An object representing custom AI instructions for the AI assistant.\nGenerally, these are injected into the prompt sent to the AI model.\n\nIn the future we extend this to include positive examples, negative examples,\nand other parameters to customize the AI model's behavior."
801
+ }
802
+ },
803
+ "name": "instructions",
804
+ "default": [],
805
+ "doc": "Custom instructions to inject into the AI documentation model prompt."
806
+ }
807
+ ],
808
+ "doc": "Settings related to AI-powered documentation."
809
+ }
810
+ ],
811
+ "name": "documentationAi",
812
+ "default": null,
813
+ "doc": "Settings related to AI-powered documentation."
814
+ },
815
+ {
816
+ "type": [
817
+ "null",
818
+ {
819
+ "type": "record",
820
+ "name": "AiAssistantSettings",
821
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
822
+ "fields": [
823
+ {
824
+ "type": {
825
+ "type": "array",
826
+ "items": "com.linkedin.pegasus2avro.settings.global.AiInstruction"
827
+ },
828
+ "name": "instructions",
829
+ "default": [],
830
+ "doc": "Custom instructions to inject into the AI assistant prompt"
831
+ }
832
+ ],
833
+ "doc": "Settings related to the AI assistant (Ask DataHub) feature"
834
+ }
835
+ ],
836
+ "name": "aiAssistant",
837
+ "default": null,
838
+ "doc": "Settings related to AI-powered chat assistant (Ask DataHub)."
839
+ },
457
840
  {
458
841
  "type": [
459
842
  "null",
@@ -510,6 +893,39 @@
510
893
  "name": "customOrgName",
511
894
  "default": null,
512
895
  "doc": "A customized name for organization display preferences"
896
+ },
897
+ {
898
+ "type": [
899
+ "null",
900
+ {
901
+ "type": "record",
902
+ "name": "SampleDataSettings",
903
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
904
+ "fields": [
905
+ {
906
+ "type": {
907
+ "type": "enum",
908
+ "symbolDocs": {
909
+ "DISABLED": "Sample data is disabled and hidden from the platform.",
910
+ "ENABLED": "Sample data is enabled and visible throughout the platform."
911
+ },
912
+ "name": "SampleDataStatus",
913
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
914
+ "symbols": [
915
+ "ENABLED",
916
+ "DISABLED"
917
+ ]
918
+ },
919
+ "name": "sampleDataStatus",
920
+ "doc": "Status of sample data visibility in the platform.\nControls which types of sample data entities are visible.\nOnly applicable for free trial instances."
921
+ }
922
+ ],
923
+ "doc": "Settings related to sample data, used to aid in initial onboarding."
924
+ }
925
+ ],
926
+ "name": "sampleDataSettings",
927
+ "default": null,
928
+ "doc": "Settings related to sample data, used to aid in initial onboarding."
513
929
  }
514
930
  ],
515
931
  "doc": "Global settings for the UI"
@@ -23,7 +23,8 @@
23
23
  "fieldType": "URN",
24
24
  "filterNameOverride": "Tagged With",
25
25
  "hasValuesFieldName": "hasTags",
26
- "queryByDefault": true
26
+ "queryByDefault": true,
27
+ "searchTier": 2
27
28
  }
28
29
  },
29
30
  "type": {
@@ -62,7 +62,9 @@
62
62
  "fieldNameAliases": [
63
63
  "_entityName"
64
64
  ],
65
- "fieldType": "WORD_GRAM"
65
+ "fieldType": "WORD_GRAM",
66
+ "searchLabel": "entityName",
67
+ "searchTier": 1
66
68
  },
67
69
  "type": [
68
70
  "null",
@@ -14,6 +14,7 @@
14
14
  "testResults",
15
15
  "subTypes",
16
16
  "displayProperties",
17
+ "assetSettings",
17
18
  "share",
18
19
  "origin"
19
20
  ]
@@ -40,7 +40,9 @@
40
40
  "fieldNameAliases": [
41
41
  "_entityName"
42
42
  ],
43
- "fieldType": "WORD_GRAM"
43
+ "fieldType": "WORD_GRAM",
44
+ "searchLabel": "entityName",
45
+ "searchTier": 1
44
46
  },
45
47
  "type": [
46
48
  "null",
@@ -12,12 +12,14 @@
12
12
  "ownership",
13
13
  "deprecation",
14
14
  "domains",
15
+ "applications",
15
16
  "status",
16
17
  "browsePaths",
17
18
  "structuredProperties",
18
19
  "forms",
19
20
  "testResults",
20
21
  "subTypes",
22
+ "assetSettings",
21
23
  "share",
22
24
  "origin"
23
25
  ]
@@ -64,6 +64,8 @@
64
64
  "QA": "Designates quality assurance fabrics",
65
65
  "RVW": "Designates review fabrics",
66
66
  "SANDBOX": "Designates sandbox fabrics",
67
+ "SBX": "Alternative spelling for sandbox",
68
+ "SIT": "System Integration Testing",
67
69
  "STG": "Designates staging fabrics",
68
70
  "TEST": "Designates testing fabrics",
69
71
  "TST": "Alternative Test spelling",
@@ -85,6 +87,8 @@
85
87
  "RVW",
86
88
  "PRD",
87
89
  "TST",
90
+ "SIT",
91
+ "SBX",
88
92
  "SANDBOX"
89
93
  ],
90
94
  "doc": "Fabric group type"
@@ -309,11 +309,11 @@
309
309
  "filterNameOverride": "Priority"
310
310
  },
311
311
  "type": [
312
- "int",
313
- "null"
312
+ "null",
313
+ "int"
314
314
  ],
315
315
  "name": "priority",
316
- "default": 0,
316
+ "default": null,
317
317
  "doc": "A numeric severity or priority for the incident. On the UI we will translate this into something easy to understand.\nCurrently supported: 0 - CRITICAL, 1 - HIGH, 2 - MED, 3 - LOW\n(We probably should have modeled as an enum)"
318
318
  },
319
319
  {
@@ -120,11 +120,11 @@
120
120
  "filterNameOverride": "Priority"
121
121
  },
122
122
  "type": [
123
- "int",
124
- "null"
123
+ "null",
124
+ "int"
125
125
  ],
126
126
  "name": "priority",
127
- "default": 0,
127
+ "default": null,
128
128
  "doc": "A numeric severity or priority for the incident. On the UI we will translate this into something easy to understand.\nCurrently supported: 0 - CRITICAL, 1 - HIGH, 2 - MED, 3 - LOW\n(We probably should have modeled as an enum)"
129
129
  },
130
130
  {
@@ -232,7 +232,8 @@
232
232
  "fieldType": "URN",
233
233
  "filterNameOverride": "Owned By",
234
234
  "hasValuesFieldName": "hasOwners",
235
- "queryByDefault": false
235
+ "queryByDefault": false,
236
+ "searchTier": 2
236
237
  },
237
238
  "java": {
238
239
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
@@ -371,6 +372,75 @@
371
372
  "name": "source",
372
373
  "default": null,
373
374
  "doc": "Source information for the ownership"
375
+ },
376
+ {
377
+ "Searchable": {
378
+ "/actor": {
379
+ "fieldName": "ownerAttributionActors",
380
+ "fieldType": "URN",
381
+ "queryByDefault": false
382
+ },
383
+ "/source": {
384
+ "fieldName": "ownerAttributionSources",
385
+ "fieldType": "URN",
386
+ "queryByDefault": false
387
+ },
388
+ "/time": {
389
+ "fieldName": "ownerAttributionDates",
390
+ "fieldType": "DATETIME",
391
+ "queryByDefault": false
392
+ }
393
+ },
394
+ "type": [
395
+ "null",
396
+ {
397
+ "type": "record",
398
+ "name": "MetadataAttribution",
399
+ "namespace": "com.linkedin.pegasus2avro.common",
400
+ "fields": [
401
+ {
402
+ "type": "long",
403
+ "name": "time",
404
+ "doc": "When this metadata was updated."
405
+ },
406
+ {
407
+ "java": {
408
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
409
+ },
410
+ "type": "string",
411
+ "name": "actor",
412
+ "doc": "The entity (e.g. a member URN) responsible for applying the assocated metadata. This can\neither be a user (in case of UI edits) or the datahub system for automation.",
413
+ "Urn": "Urn"
414
+ },
415
+ {
416
+ "java": {
417
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
418
+ },
419
+ "type": [
420
+ "null",
421
+ "string"
422
+ ],
423
+ "name": "source",
424
+ "default": null,
425
+ "doc": "The DataHub source responsible for applying the associated metadata. This will only be filled out\nwhen a DataHub source is responsible. This includes the specific metadata test urn, the automation urn.",
426
+ "Urn": "Urn"
427
+ },
428
+ {
429
+ "type": {
430
+ "type": "map",
431
+ "values": "string"
432
+ },
433
+ "name": "sourceDetail",
434
+ "default": {},
435
+ "doc": "The details associated with why this metadata was applied. For example, this could include\nthe actual regex rule, sql statement, ingestion pipeline ID, etc.\nAlso can include flags like 'propagated'=true or 'inferred'=true."
436
+ }
437
+ ],
438
+ "doc": "Information about who, why, and how this metadata was applied"
439
+ }
440
+ ],
441
+ "name": "attribution",
442
+ "default": null,
443
+ "doc": "Information about who, why, and how this metadata was applied"
374
444
  }
375
445
  ],
376
446
  "doc": "Ownership information"
@@ -380,7 +380,8 @@
380
380
  "fieldType": "URN",
381
381
  "filterNameOverride": "Tagged With",
382
382
  "hasValuesFieldName": "hasTags",
383
- "queryByDefault": true
383
+ "queryByDefault": true,
384
+ "searchTier": 2
384
385
  }
385
386
  },
386
387
  "type": {