acryl-datahub-cloud 0.3.10rc4__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 (243) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py +1 -1
  3. acryl_datahub_cloud/acryl_cs_issues/models.py +5 -3
  4. acryl_datahub_cloud/action_request/action_request_owner_source.py +37 -8
  5. acryl_datahub_cloud/datahub_forms_notifications/__init__.py +0 -0
  6. acryl_datahub_cloud/datahub_forms_notifications/forms_notifications_source.py +569 -0
  7. acryl_datahub_cloud/datahub_forms_notifications/get_feature_flag.gql +7 -0
  8. acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql +14 -0
  9. acryl_datahub_cloud/datahub_forms_notifications/query.py +17 -0
  10. acryl_datahub_cloud/datahub_forms_notifications/scroll_forms_for_notification.gql +29 -0
  11. acryl_datahub_cloud/datahub_forms_notifications/send_form_notification_request.gql +5 -0
  12. acryl_datahub_cloud/datahub_reporting/datahub_dataset.py +39 -19
  13. acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +60 -25
  14. acryl_datahub_cloud/datahub_reporting/extract_graph.py +9 -3
  15. acryl_datahub_cloud/datahub_reporting/extract_sql.py +248 -52
  16. acryl_datahub_cloud/datahub_reporting/forms.py +1 -1
  17. acryl_datahub_cloud/datahub_reporting/forms_config.py +3 -2
  18. acryl_datahub_cloud/datahub_restore/source.py +3 -2
  19. acryl_datahub_cloud/datahub_usage_reporting/excluded.py +94 -0
  20. acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +48 -8
  21. acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +532 -109
  22. acryl_datahub_cloud/elasticsearch/graph_service.py +76 -14
  23. acryl_datahub_cloud/graphql_utils.py +64 -0
  24. acryl_datahub_cloud/lineage_features/source.py +555 -49
  25. acryl_datahub_cloud/metadata/_urns/urn_defs.py +2390 -1938
  26. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionworkflow/__init__.py +53 -0
  27. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/anomaly/__init__.py +2 -0
  28. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
  29. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +6 -2
  30. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py +6 -0
  31. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/conversation/__init__.py +29 -0
  32. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/event/notification/settings/__init__.py +2 -0
  33. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/execution/__init__.py +2 -0
  34. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/file/__init__.py +19 -0
  35. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +8 -0
  36. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py +8 -0
  37. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/knowledge/__init__.py +33 -0
  38. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
  39. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +14 -0
  40. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/search/features/__init__.py +2 -0
  41. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +31 -0
  42. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/monitor/__init__.py +6 -0
  43. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notification/__init__.py +19 -0
  44. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/platform/event/v1/__init__.py +4 -0
  45. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/role/__init__.py +2 -0
  46. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/asset/__init__.py +19 -0
  47. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +28 -0
  48. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/template/__init__.py +31 -0
  49. acryl_datahub_cloud/metadata/schema.avsc +27843 -23200
  50. acryl_datahub_cloud/metadata/schema_classes.py +29901 -24310
  51. acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +235 -2
  52. acryl_datahub_cloud/metadata/schemas/ActionWorkflowInfo.avsc +683 -0
  53. acryl_datahub_cloud/metadata/schemas/ActionWorkflowKey.avsc +21 -0
  54. acryl_datahub_cloud/metadata/schemas/Actors.avsc +38 -1
  55. acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc +31 -0
  56. acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc +75 -0
  57. acryl_datahub_cloud/metadata/schemas/Applications.avsc +38 -0
  58. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +375 -212
  59. acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +147 -20
  60. acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
  61. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +191 -21
  62. acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +15 -2
  63. acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +54 -0
  64. acryl_datahub_cloud/metadata/schemas/AssetSettings.avsc +63 -0
  65. acryl_datahub_cloud/metadata/schemas/BusinessAttributeInfo.avsc +7 -3
  66. acryl_datahub_cloud/metadata/schemas/ChartInfo.avsc +20 -6
  67. acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +1 -0
  68. acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +12 -1
  69. acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
  70. acryl_datahub_cloud/metadata/schemas/ContainerProperties.avsc +16 -5
  71. acryl_datahub_cloud/metadata/schemas/CorpGroupEditableInfo.avsc +2 -1
  72. acryl_datahub_cloud/metadata/schemas/CorpGroupInfo.avsc +7 -3
  73. acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +2 -1
  74. acryl_datahub_cloud/metadata/schemas/CorpGroupSettings.avsc +127 -2
  75. acryl_datahub_cloud/metadata/schemas/CorpUserEditableInfo.avsc +1 -1
  76. acryl_datahub_cloud/metadata/schemas/CorpUserInfo.avsc +18 -2
  77. acryl_datahub_cloud/metadata/schemas/CorpUserInvitationStatus.avsc +106 -0
  78. acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +4 -1
  79. acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +304 -2
  80. acryl_datahub_cloud/metadata/schemas/CorpUserUsageFeatures.avsc +86 -0
  81. acryl_datahub_cloud/metadata/schemas/DashboardInfo.avsc +11 -5
  82. acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +1 -0
  83. acryl_datahub_cloud/metadata/schemas/DataContractKey.avsc +2 -1
  84. acryl_datahub_cloud/metadata/schemas/DataFlowInfo.avsc +15 -5
  85. acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -0
  86. acryl_datahub_cloud/metadata/schemas/DataHubAiConversationInfo.avsc +256 -0
  87. acryl_datahub_cloud/metadata/schemas/DataHubAiConversationKey.avsc +22 -0
  88. acryl_datahub_cloud/metadata/schemas/DataHubFileInfo.avsc +234 -0
  89. acryl_datahub_cloud/metadata/schemas/DataHubFileKey.avsc +22 -0
  90. acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
  91. acryl_datahub_cloud/metadata/schemas/DataHubOpenAPISchemaKey.avsc +22 -0
  92. acryl_datahub_cloud/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
  93. acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +308 -0
  94. acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
  95. acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateProperties.avsc +251 -0
  96. acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
  97. acryl_datahub_cloud/metadata/schemas/DataJobInfo.avsc +13 -4
  98. acryl_datahub_cloud/metadata/schemas/DataJobInputOutput.avsc +8 -0
  99. acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +1 -0
  100. acryl_datahub_cloud/metadata/schemas/DataPlatformInfo.avsc +3 -1
  101. acryl_datahub_cloud/metadata/schemas/DataPlatformInstanceProperties.avsc +5 -2
  102. acryl_datahub_cloud/metadata/schemas/DataProcessKey.avsc +4 -0
  103. acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +2 -0
  104. acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc +6 -3
  105. acryl_datahub_cloud/metadata/schemas/DataTransformLogic.avsc +4 -2
  106. acryl_datahub_cloud/metadata/schemas/DataTypeInfo.avsc +5 -0
  107. acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +10 -2
  108. acryl_datahub_cloud/metadata/schemas/DatasetProperties.avsc +12 -5
  109. acryl_datahub_cloud/metadata/schemas/DatasetUsageStatistics.avsc +8 -0
  110. acryl_datahub_cloud/metadata/schemas/DocumentInfo.avsc +407 -0
  111. acryl_datahub_cloud/metadata/schemas/DocumentKey.avsc +35 -0
  112. acryl_datahub_cloud/metadata/schemas/DocumentSettings.avsc +79 -0
  113. acryl_datahub_cloud/metadata/schemas/DomainKey.avsc +2 -0
  114. acryl_datahub_cloud/metadata/schemas/DomainProperties.avsc +7 -3
  115. acryl_datahub_cloud/metadata/schemas/EditableContainerProperties.avsc +2 -1
  116. acryl_datahub_cloud/metadata/schemas/EditableDashboardProperties.avsc +2 -1
  117. acryl_datahub_cloud/metadata/schemas/EditableDataFlowProperties.avsc +2 -1
  118. acryl_datahub_cloud/metadata/schemas/EditableDataJobProperties.avsc +2 -1
  119. acryl_datahub_cloud/metadata/schemas/EditableDatasetProperties.avsc +2 -1
  120. acryl_datahub_cloud/metadata/schemas/EditableERModelRelationshipProperties.avsc +2 -1
  121. acryl_datahub_cloud/metadata/schemas/EditableMLFeatureProperties.avsc +2 -1
  122. acryl_datahub_cloud/metadata/schemas/EditableMLFeatureTableProperties.avsc +2 -1
  123. acryl_datahub_cloud/metadata/schemas/EditableMLModelGroupProperties.avsc +2 -1
  124. acryl_datahub_cloud/metadata/schemas/EditableMLModelProperties.avsc +2 -1
  125. acryl_datahub_cloud/metadata/schemas/EditableNotebookProperties.avsc +2 -1
  126. acryl_datahub_cloud/metadata/schemas/EditableSchemaMetadata.avsc +4 -2
  127. acryl_datahub_cloud/metadata/schemas/EntityTypeInfo.avsc +5 -0
  128. acryl_datahub_cloud/metadata/schemas/ExecutionRequestArtifactsLocation.avsc +16 -0
  129. acryl_datahub_cloud/metadata/schemas/ExecutionRequestKey.avsc +2 -1
  130. acryl_datahub_cloud/metadata/schemas/FormAssignmentStatus.avsc +36 -0
  131. acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +6 -0
  132. acryl_datahub_cloud/metadata/schemas/FormKey.avsc +3 -1
  133. acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc +69 -0
  134. acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +30 -0
  135. acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +416 -0
  136. acryl_datahub_cloud/metadata/schemas/GlobalTags.avsc +2 -1
  137. acryl_datahub_cloud/metadata/schemas/GlossaryNodeInfo.avsc +3 -1
  138. acryl_datahub_cloud/metadata/schemas/GlossaryNodeKey.avsc +1 -0
  139. acryl_datahub_cloud/metadata/schemas/GlossaryTermInfo.avsc +3 -1
  140. acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +2 -0
  141. acryl_datahub_cloud/metadata/schemas/IcebergWarehouseInfo.avsc +4 -0
  142. acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc +3 -3
  143. acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc +3 -3
  144. acryl_datahub_cloud/metadata/schemas/InferredMetadata.avsc +71 -1
  145. acryl_datahub_cloud/metadata/schemas/InputFields.avsc +2 -1
  146. acryl_datahub_cloud/metadata/schemas/InviteToken.avsc +26 -0
  147. acryl_datahub_cloud/metadata/schemas/LineageFeatures.avsc +67 -42
  148. acryl_datahub_cloud/metadata/schemas/LogicalParent.avsc +145 -0
  149. acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +4 -1
  150. acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +4 -1
  151. acryl_datahub_cloud/metadata/schemas/MLModelDeploymentKey.avsc +7 -1
  152. acryl_datahub_cloud/metadata/schemas/MLModelDeploymentProperties.avsc +3 -0
  153. acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +9 -1
  154. acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +9 -1
  155. acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc +4 -2
  156. acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +4 -1
  157. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +424 -97
  158. acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +65 -44
  159. acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +64 -0
  160. acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +84 -29
  161. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +221 -23
  162. acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc +9 -1
  163. acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +128 -3
  164. acryl_datahub_cloud/metadata/schemas/NotebookInfo.avsc +5 -2
  165. acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
  166. acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +91 -4
  167. acryl_datahub_cloud/metadata/schemas/Operation.avsc +17 -0
  168. acryl_datahub_cloud/metadata/schemas/Ownership.avsc +71 -1
  169. acryl_datahub_cloud/metadata/schemas/QueryProperties.avsc +4 -2
  170. acryl_datahub_cloud/metadata/schemas/QuerySubjects.avsc +2 -13
  171. acryl_datahub_cloud/metadata/schemas/RelationshipChangeEvent.avsc +215 -0
  172. acryl_datahub_cloud/metadata/schemas/RoleProperties.avsc +3 -1
  173. acryl_datahub_cloud/metadata/schemas/SchemaFieldInfo.avsc +3 -1
  174. acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +3 -0
  175. acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc +2 -1
  176. acryl_datahub_cloud/metadata/schemas/SemanticContent.avsc +123 -0
  177. acryl_datahub_cloud/metadata/schemas/StructuredProperties.avsc +69 -0
  178. acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc +15 -4
  179. acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc +9 -0
  180. acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +136 -5
  181. acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc +2 -1
  182. acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +147 -0
  183. acryl_datahub_cloud/metadata/schemas/TagProperties.avsc +3 -1
  184. acryl_datahub_cloud/metadata/schemas/TestInfo.avsc +2 -1
  185. acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc +9 -0
  186. acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc +10 -0
  187. acryl_datahub_cloud/metadata/schemas/__init__.py +3 -3
  188. acryl_datahub_cloud/notifications/__init__.py +0 -0
  189. acryl_datahub_cloud/notifications/notification_recipient_builder.py +399 -0
  190. acryl_datahub_cloud/sdk/__init__.py +69 -0
  191. acryl_datahub_cloud/sdk/assertion/__init__.py +58 -0
  192. acryl_datahub_cloud/sdk/assertion/assertion_base.py +779 -0
  193. acryl_datahub_cloud/sdk/assertion/column_metric_assertion.py +191 -0
  194. acryl_datahub_cloud/sdk/assertion/column_value_assertion.py +431 -0
  195. acryl_datahub_cloud/sdk/assertion/freshness_assertion.py +201 -0
  196. acryl_datahub_cloud/sdk/assertion/schema_assertion.py +268 -0
  197. acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py +212 -0
  198. acryl_datahub_cloud/sdk/assertion/smart_freshness_assertion.py +165 -0
  199. acryl_datahub_cloud/sdk/assertion/smart_sql_assertion.py +156 -0
  200. acryl_datahub_cloud/sdk/assertion/smart_volume_assertion.py +162 -0
  201. acryl_datahub_cloud/sdk/assertion/sql_assertion.py +273 -0
  202. acryl_datahub_cloud/sdk/assertion/types.py +20 -0
  203. acryl_datahub_cloud/sdk/assertion/volume_assertion.py +156 -0
  204. acryl_datahub_cloud/sdk/assertion_client/__init__.py +0 -0
  205. acryl_datahub_cloud/sdk/assertion_client/column_metric.py +545 -0
  206. acryl_datahub_cloud/sdk/assertion_client/column_value.py +617 -0
  207. acryl_datahub_cloud/sdk/assertion_client/freshness.py +371 -0
  208. acryl_datahub_cloud/sdk/assertion_client/helpers.py +166 -0
  209. acryl_datahub_cloud/sdk/assertion_client/schema.py +358 -0
  210. acryl_datahub_cloud/sdk/assertion_client/smart_column_metric.py +540 -0
  211. acryl_datahub_cloud/sdk/assertion_client/smart_freshness.py +373 -0
  212. acryl_datahub_cloud/sdk/assertion_client/smart_sql.py +411 -0
  213. acryl_datahub_cloud/sdk/assertion_client/smart_volume.py +380 -0
  214. acryl_datahub_cloud/sdk/assertion_client/sql.py +410 -0
  215. acryl_datahub_cloud/sdk/assertion_client/volume.py +446 -0
  216. acryl_datahub_cloud/sdk/assertion_input/__init__.py +0 -0
  217. acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +1470 -0
  218. acryl_datahub_cloud/sdk/assertion_input/column_assertion_constants.py +114 -0
  219. acryl_datahub_cloud/sdk/assertion_input/column_assertion_utils.py +284 -0
  220. acryl_datahub_cloud/sdk/assertion_input/column_metric_assertion_input.py +759 -0
  221. acryl_datahub_cloud/sdk/assertion_input/column_metric_constants.py +109 -0
  222. acryl_datahub_cloud/sdk/assertion_input/column_value_assertion_input.py +810 -0
  223. acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +305 -0
  224. acryl_datahub_cloud/sdk/assertion_input/schema_assertion_input.py +413 -0
  225. acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +793 -0
  226. acryl_datahub_cloud/sdk/assertion_input/smart_freshness_assertion_input.py +218 -0
  227. acryl_datahub_cloud/sdk/assertion_input/smart_sql_assertion_input.py +181 -0
  228. acryl_datahub_cloud/sdk/assertion_input/smart_volume_assertion_input.py +189 -0
  229. acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +320 -0
  230. acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py +635 -0
  231. acryl_datahub_cloud/sdk/assertions_client.py +1074 -0
  232. acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
  233. acryl_datahub_cloud/sdk/entities/assertion.py +439 -0
  234. acryl_datahub_cloud/sdk/entities/monitor.py +291 -0
  235. acryl_datahub_cloud/sdk/entities/subscription.py +100 -0
  236. acryl_datahub_cloud/sdk/errors.py +34 -0
  237. acryl_datahub_cloud/sdk/resolver_client.py +42 -0
  238. acryl_datahub_cloud/sdk/subscription_client.py +737 -0
  239. {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/METADATA +49 -43
  240. {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/RECORD +243 -145
  241. {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/WHEEL +1 -1
  242. {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/entry_points.txt +1 -0
  243. {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/top_level.txt +0 -0
@@ -23,6 +23,13 @@
23
23
  },
24
24
  {
25
25
  "TimeseriesField": {},
26
+ "UrnValidation": {
27
+ "entityTypes": [
28
+ "dataset"
29
+ ],
30
+ "exist": false,
31
+ "strict": true
32
+ },
26
33
  "java": {
27
34
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
28
35
  },
@@ -129,11 +136,15 @@
129
136
  "doc": "URL where the reference exist"
130
137
  },
131
138
  {
132
- "Searchable": {},
139
+ "Searchable": {
140
+ "addToFilters": true,
141
+ "fieldName": "assertionType",
142
+ "fieldType": "KEYWORD"
143
+ },
133
144
  "type": {
134
145
  "type": "enum",
135
146
  "symbolDocs": {
136
- "CUSTOM": "A custom assertion. \nWhen this is the value, the customAssertion field will be populated.\nUse this assertion type when the exact type of assertion is not modeled in DataHub or\nas a starting point when integrating third-party data quality tools.",
147
+ "CUSTOM": "A custom assertion.\nWhen this is the value, the customAssertion field will be populated.\nUse this assertion type when the exact type of assertion is not modeled in DataHub or\nas a starting point when integrating third-party data quality tools.",
137
148
  "DATASET": "A single-dataset assertion.\nWhen this is the value, the datasetAssertion field will be populated.",
138
149
  "DATA_SCHEMA": "A schema or structural assertion.\n\nWould have named this SCHEMA but the codegen for PDL does not allow this (reserved word).",
139
150
  "FIELD": "A structured assertion targeting a specific column or field of the Dataset.",
@@ -172,6 +183,13 @@
172
183
  ],
173
184
  "name": "Asserts"
174
185
  },
186
+ "UrnValidation": {
187
+ "entityTypes": [
188
+ "dataset"
189
+ ],
190
+ "exist": false,
191
+ "strict": true
192
+ },
175
193
  "java": {
176
194
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
177
195
  },
@@ -221,6 +239,13 @@
221
239
  "fieldType": "URN"
222
240
  }
223
241
  },
242
+ "UrnValidation": {
243
+ "entityTypes": [
244
+ "schemaField"
245
+ ],
246
+ "exist": false,
247
+ "strict": true
248
+ },
224
249
  "type": [
225
250
  "null",
226
251
  {
@@ -363,6 +388,7 @@
363
388
  "LIST": "A list of values. When used, value should be formatted as a serialized JSON array.",
364
389
  "NUMBER": "A numeric value",
365
390
  "SET": "A set of values. When used, value should be formatted as a serialized JSON array.",
391
+ "SQL": "A SQL expression",
366
392
  "STRING": "A string value",
367
393
  "UNKNOWN": "A value of unknown type"
368
394
  },
@@ -373,6 +399,7 @@
373
399
  "NUMBER",
374
400
  "LIST",
375
401
  "SET",
402
+ "SQL",
376
403
  "UNKNOWN"
377
404
  ]
378
405
  },
@@ -459,7 +486,10 @@
459
486
  "namespace": "com.linkedin.pegasus2avro.assertion",
460
487
  "fields": [
461
488
  {
462
- "Searchable": {},
489
+ "Searchable": {
490
+ "fieldName": "freshnessAssertionType",
491
+ "fieldType": "KEYWORD"
492
+ },
463
493
  "type": {
464
494
  "type": "enum",
465
495
  "symbolDocs": {
@@ -484,8 +514,13 @@
484
514
  ],
485
515
  "name": "Asserts"
486
516
  },
487
- "Searchable": {
488
- "fieldType": "URN"
517
+ "UrnValidation": {
518
+ "entityTypes": [
519
+ "dataset",
520
+ "dataJob"
521
+ ],
522
+ "exist": false,
523
+ "strict": true
489
524
  },
490
525
  "java": {
491
526
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
@@ -846,7 +881,10 @@
846
881
  "namespace": "com.linkedin.pegasus2avro.assertion",
847
882
  "fields": [
848
883
  {
849
- "Searchable": {},
884
+ "Searchable": {
885
+ "fieldName": "volumeAssertionType",
886
+ "fieldType": "KEYWORD"
887
+ },
850
888
  "type": {
851
889
  "type": "enum",
852
890
  "symbolDocs": {
@@ -874,8 +912,12 @@
874
912
  ],
875
913
  "name": "Asserts"
876
914
  },
877
- "Searchable": {
878
- "fieldType": "URN"
915
+ "UrnValidation": {
916
+ "entityTypes": [
917
+ "dataset"
918
+ ],
919
+ "exist": false,
920
+ "strict": true
879
921
  },
880
922
  "java": {
881
923
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
@@ -1139,7 +1181,10 @@
1139
1181
  "namespace": "com.linkedin.pegasus2avro.assertion",
1140
1182
  "fields": [
1141
1183
  {
1142
- "Searchable": {},
1184
+ "Searchable": {
1185
+ "fieldName": "sqlAssertionType",
1186
+ "fieldType": "KEYWORD"
1187
+ },
1143
1188
  "type": {
1144
1189
  "type": "enum",
1145
1190
  "symbolDocs": {
@@ -1163,8 +1208,12 @@
1163
1208
  ],
1164
1209
  "name": "Asserts"
1165
1210
  },
1166
- "Searchable": {
1167
- "fieldType": "URN"
1211
+ "UrnValidation": {
1212
+ "entityTypes": [
1213
+ "dataset"
1214
+ ],
1215
+ "exist": false,
1216
+ "strict": true
1168
1217
  },
1169
1218
  "java": {
1170
1219
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
@@ -1218,7 +1267,10 @@
1218
1267
  "namespace": "com.linkedin.pegasus2avro.assertion",
1219
1268
  "fields": [
1220
1269
  {
1221
- "Searchable": {},
1270
+ "Searchable": {
1271
+ "fieldName": "fieldAssertionType",
1272
+ "fieldType": "KEYWORD"
1273
+ },
1222
1274
  "type": {
1223
1275
  "type": "enum",
1224
1276
  "symbolDocs": {
@@ -1242,8 +1294,12 @@
1242
1294
  ],
1243
1295
  "name": "Asserts"
1244
1296
  },
1245
- "Searchable": {
1246
- "fieldType": "URN"
1297
+ "UrnValidation": {
1298
+ "entityTypes": [
1299
+ "dataset"
1300
+ ],
1301
+ "exist": false,
1302
+ "strict": true
1247
1303
  },
1248
1304
  "java": {
1249
1305
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
@@ -1380,7 +1436,7 @@
1380
1436
  },
1381
1437
  "type": "com.linkedin.pegasus2avro.schema.SchemaFieldSpec",
1382
1438
  "name": "field",
1383
- "doc": "The field under evaluation"
1439
+ "doc": "The field path under evaluation"
1384
1440
  },
1385
1441
  {
1386
1442
  "type": {
@@ -1485,8 +1541,13 @@
1485
1541
  ],
1486
1542
  "name": "Asserts"
1487
1543
  },
1488
- "Searchable": {
1489
- "fieldType": "URN"
1544
+ "UrnValidation": {
1545
+ "entityTypes": [
1546
+ "dataset",
1547
+ "dataJob"
1548
+ ],
1549
+ "exist": false,
1550
+ "strict": true
1490
1551
  },
1491
1552
  "java": {
1492
1553
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
@@ -2120,7 +2181,8 @@
2120
2181
  "fieldType": "URN",
2121
2182
  "filterNameOverride": "Tagged With",
2122
2183
  "hasValuesFieldName": "hasTags",
2123
- "queryByDefault": true
2184
+ "queryByDefault": true,
2185
+ "searchTier": 2
2124
2186
  }
2125
2187
  },
2126
2188
  "type": {
@@ -2605,7 +2667,8 @@
2605
2667
  "fields": [
2606
2668
  {
2607
2669
  "Searchable": {
2608
- "fieldName": "customType"
2670
+ "fieldName": "customType",
2671
+ "fieldType": "KEYWORD"
2609
2672
  },
2610
2673
  "type": "string",
2611
2674
  "name": "type",
@@ -2618,6 +2681,13 @@
2618
2681
  ],
2619
2682
  "name": "Asserts"
2620
2683
  },
2684
+ "UrnValidation": {
2685
+ "entityTypes": [
2686
+ "dataset"
2687
+ ],
2688
+ "exist": false,
2689
+ "strict": true
2690
+ },
2621
2691
  "java": {
2622
2692
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
2623
2693
  },
@@ -2636,6 +2706,13 @@
2636
2706
  ],
2637
2707
  "name": "Asserts"
2638
2708
  },
2709
+ "UrnValidation": {
2710
+ "entityTypes": [
2711
+ "schemaField"
2712
+ ],
2713
+ "exist": false,
2714
+ "strict": true
2715
+ },
2639
2716
  "java": {
2640
2717
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
2641
2718
  },
@@ -2668,6 +2745,14 @@
2668
2745
  "doc": "A Custom Assertion definition. This field is populated when type is CUSTOM."
2669
2746
  },
2670
2747
  {
2748
+ "Searchable": {
2749
+ "/created/actor": {
2750
+ "fieldName": "creator",
2751
+ "fieldType": "URN",
2752
+ "filterNameOverride": "Created By",
2753
+ "hasValuesFieldName": "hasCreator"
2754
+ }
2755
+ },
2671
2756
  "type": [
2672
2757
  "null",
2673
2758
  {
@@ -2677,7 +2762,9 @@
2677
2762
  "fields": [
2678
2763
  {
2679
2764
  "Searchable": {
2680
- "fieldName": "sourceType"
2765
+ "addToFilters": true,
2766
+ "fieldName": "sourceType",
2767
+ "fieldType": "KEYWORD"
2681
2768
  },
2682
2769
  "type": {
2683
2770
  "type": "enum",
@@ -2724,6 +2811,11 @@
2724
2811
  "doc": "The time at which the assertion was last updated and the actor who updated it.\nThis field is only present for Native assertions updated after this field was introduced."
2725
2812
  },
2726
2813
  {
2814
+ "Searchable": {
2815
+ "fieldName": "assertionDescription",
2816
+ "fieldType": "TEXT",
2817
+ "hasValuesFieldName": "hasAssertionDescription"
2818
+ },
2727
2819
  "type": [
2728
2820
  "null",
2729
2821
  "string"
@@ -2731,6 +2823,48 @@
2731
2823
  "name": "description",
2732
2824
  "default": null,
2733
2825
  "doc": "An optional human-readable description of the assertion"
2826
+ },
2827
+ {
2828
+ "type": [
2829
+ "null",
2830
+ {
2831
+ "type": "record",
2832
+ "name": "AssertionNote",
2833
+ "namespace": "com.linkedin.pegasus2avro.assertion",
2834
+ "fields": [
2835
+ {
2836
+ "type": "string",
2837
+ "name": "content",
2838
+ "doc": "The note to give technical owners more context about the assertion, and how to troubleshoot it."
2839
+ },
2840
+ {
2841
+ "type": "com.linkedin.pegasus2avro.common.AuditStamp",
2842
+ "name": "lastModified",
2843
+ "doc": "The time at which the note was last modified."
2844
+ }
2845
+ ]
2846
+ }
2847
+ ],
2848
+ "name": "note",
2849
+ "default": null,
2850
+ "doc": "An optional note to give technical owners more context about the assertion, and how to troubleshoot it.\nThe UI will render this in markdown format."
2851
+ },
2852
+ {
2853
+ "Searchable": {
2854
+ "fieldName": "entity",
2855
+ "fieldType": "URN"
2856
+ },
2857
+ "java": {
2858
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
2859
+ },
2860
+ "type": [
2861
+ "null",
2862
+ "string"
2863
+ ],
2864
+ "name": "entityUrn",
2865
+ "default": null,
2866
+ "doc": "The entity targeted by this assertion. Newly added field, automatically set by mutation",
2867
+ "Urn": "Urn"
2734
2868
  }
2735
2869
  ],
2736
2870
  "doc": "Information about an assertion\n\nAcryl Only: Did you update AssertionWithoutAnnotations.pdl? If not, please update it."
@@ -2781,7 +2915,11 @@
2781
2915
  "doc": "The optional AssertionInfo which contains the original/untransformed assertion that was predicted.\nThis field is used to store the original assertion that was made before the evaluation process.\nIt is optional and may not always be present in the AssertionRunEvent record.\nWhen present, it provides additional context about the original assertion that was made.\n\nAcryl Only! An assertion without any searchable or relationship annotations."
2782
2916
  },
2783
2917
  {
2784
- "Searchable": {},
2918
+ "Searchable": {
2919
+ "addToFilters": true,
2920
+ "fieldName": "lastResultType",
2921
+ "fieldType": "KEYWORD"
2922
+ },
2785
2923
  "TimeseriesField": {},
2786
2924
  "type": {
2787
2925
  "type": "enum",
@@ -3412,6 +3550,31 @@
3412
3550
  "name": "assertionInferenceDetails",
3413
3551
  "default": null,
3414
3552
  "doc": "The optional AssertionInferenceDetails which contains the settings used for the inferred assertion.\nThis field is used to store the settings used for the smart assertion.\nIt is optional and may not always be present in the AssertionRunEvent record.\nWhen present, it provides additional context about the settings used for the smart assertion."
3553
+ },
3554
+ {
3555
+ "type": [
3556
+ "null",
3557
+ {
3558
+ "type": "record",
3559
+ "name": "AssertionMetric",
3560
+ "namespace": "com.linkedin.pegasus2avro.assertion",
3561
+ "fields": [
3562
+ {
3563
+ "type": "long",
3564
+ "name": "timestampMs",
3565
+ "doc": "The timestamp associated with the metric sampling time in milliseconds since epoch"
3566
+ },
3567
+ {
3568
+ "type": "float",
3569
+ "name": "value",
3570
+ "doc": "The value of the metric that was sampled"
3571
+ }
3572
+ ]
3573
+ }
3574
+ ],
3575
+ "name": "metric",
3576
+ "default": null,
3577
+ "doc": "Information about the metric that was sampled & used when evaluating the assertion.\n\nCurrently, this is only populated for Volume & Field Metric Assertions and used for anomaly\nlogging for Smart Assertions."
3415
3578
  }
3416
3579
  ],
3417
3580
  "doc": "The result of running an assertion"
@@ -3493,6 +3656,13 @@
3493
3656
  },
3494
3657
  {
3495
3658
  "TimeseriesField": {},
3659
+ "UrnValidation": {
3660
+ "entityTypes": [
3661
+ "assertion"
3662
+ ],
3663
+ "exist": false,
3664
+ "strict": true
3665
+ },
3496
3666
  "java": {
3497
3667
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
3498
3668
  },
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "type": "record",
3
3
  "Aspect": {
4
- "name": "assertionSummary"
4
+ "name": "assertionRunSummary"
5
5
  },
6
- "name": "AssertionSummary",
6
+ "name": "AssertionRunSummary",
7
7
  "namespace": "com.linkedin.pegasus2avro.assertion",
8
8
  "fields": [
9
9
  {
@@ -44,6 +44,19 @@
44
44
  "name": "lastPassedAtMillis",
45
45
  "default": null,
46
46
  "doc": "The last pass event timestamp field as epoch at UTC in milliseconds."
47
+ },
48
+ {
49
+ "Searchable": {
50
+ "fieldName": "lastInitializedAtMillis",
51
+ "fieldType": "DATETIME"
52
+ },
53
+ "type": [
54
+ "null",
55
+ "long"
56
+ ],
57
+ "name": "lastInitializedAtMillis",
58
+ "default": null,
59
+ "doc": "The last initialized event timestamp field as epoch at UTC in milliseconds."
47
60
  }
48
61
  ],
49
62
  "doc": "Derived.\nTracks the latest summary details of an assertion."
@@ -30,6 +30,20 @@
30
30
  "Urn": "Urn",
31
31
  "urn_is_array": true
32
32
  },
33
+ {
34
+ "Searchable": {
35
+ "fieldName": "lastAssertionResultAt",
36
+ "fieldType": "DATETIME",
37
+ "queryByDefault": false
38
+ },
39
+ "type": [
40
+ "null",
41
+ "long"
42
+ ],
43
+ "name": "lastAssertionResultAt",
44
+ "default": null,
45
+ "doc": "The last time an assertion was run."
46
+ },
33
47
  {
34
48
  "Relationship": {
35
49
  "/*/urn": {
@@ -183,6 +197,46 @@
183
197
  "name": "erroringAssertionDetails",
184
198
  "default": [],
185
199
  "doc": "Summary details about the set of erroring assertions"
200
+ },
201
+ {
202
+ "Relationship": {
203
+ "/*/urn": {
204
+ "entityTypes": [
205
+ "assertion"
206
+ ],
207
+ "name": "InitializingAssertions"
208
+ }
209
+ },
210
+ "Searchable": {
211
+ "/*/lastResultAt": {
212
+ "fieldName": "initializingAssertionResultTimes",
213
+ "fieldType": "DATETIME",
214
+ "queryByDefault": false
215
+ },
216
+ "/*/source": {
217
+ "fieldName": "initializingAssertionSources",
218
+ "queryByDefault": false
219
+ },
220
+ "/*/type": {
221
+ "fieldName": "initializingAssertionType",
222
+ "fieldType": "KEYWORD",
223
+ "queryByDefault": false
224
+ },
225
+ "/*/urn": {
226
+ "fieldName": "initializingAssertions",
227
+ "fieldType": "URN",
228
+ "hasValuesFieldName": "hasInitializingAssertions",
229
+ "numValuesFieldName": "numInitializingAssertions",
230
+ "queryByDefault": false
231
+ }
232
+ },
233
+ "type": {
234
+ "type": "array",
235
+ "items": "com.linkedin.pegasus2avro.common.AssertionSummaryDetails"
236
+ },
237
+ "name": "initializingAssertionDetails",
238
+ "default": [],
239
+ "doc": "Summary details about the set of initializing assertions"
186
240
  }
187
241
  ],
188
242
  "doc": "Summary related to entity assertions"
@@ -0,0 +1,63 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "assetSettings"
5
+ },
6
+ "name": "AssetSettings",
7
+ "namespace": "com.linkedin.pegasus2avro.settings.asset",
8
+ "fields": [
9
+ {
10
+ "type": [
11
+ "null",
12
+ {
13
+ "type": "record",
14
+ "name": "AssetSummarySettings",
15
+ "namespace": "com.linkedin.pegasus2avro.settings.asset",
16
+ "fields": [
17
+ {
18
+ "Relationship": {
19
+ "/*/template": {
20
+ "entityTypes": [
21
+ "dataHubPageTemplate"
22
+ ],
23
+ "name": "HasSummaryTemplate"
24
+ }
25
+ },
26
+ "type": [
27
+ {
28
+ "type": "array",
29
+ "items": {
30
+ "type": "record",
31
+ "name": "AssetSummarySettingsTemplate",
32
+ "namespace": "com.linkedin.pegasus2avro.settings.asset",
33
+ "fields": [
34
+ {
35
+ "java": {
36
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
37
+ },
38
+ "type": "string",
39
+ "name": "template",
40
+ "doc": "The urn of the template",
41
+ "Urn": "Urn"
42
+ }
43
+ ],
44
+ "doc": "Object containing the template and any additional info for asset summary settings"
45
+ }
46
+ },
47
+ "null"
48
+ ],
49
+ "name": "templates",
50
+ "default": [],
51
+ "doc": "The list of templates applied to this asset in order. Right now we only expect one."
52
+ }
53
+ ],
54
+ "doc": "Information related to the asset summary for this asset"
55
+ }
56
+ ],
57
+ "name": "assetSummary",
58
+ "default": null,
59
+ "doc": "Information related to the asset summary for this asset"
60
+ }
61
+ ],
62
+ "doc": "Settings associated with this asset"
63
+ }
@@ -15,7 +15,8 @@
15
15
  "Searchable": {
16
16
  "boostScore": 0.1,
17
17
  "fieldName": "editedFieldDescriptions",
18
- "fieldType": "TEXT"
18
+ "fieldType": "TEXT",
19
+ "searchTier": 2
19
20
  },
20
21
  "type": [
21
22
  "null",
@@ -83,7 +84,8 @@
83
84
  "fieldType": "URN",
84
85
  "filterNameOverride": "Tagged With",
85
86
  "hasValuesFieldName": "hasTags",
86
- "queryByDefault": true
87
+ "queryByDefault": true,
88
+ "searchTier": 2
87
89
  }
88
90
  },
89
91
  "type": {
@@ -437,7 +439,9 @@
437
439
  "fieldNameAliases": [
438
440
  "_entityName"
439
441
  ],
440
- "fieldType": "WORD_GRAM"
442
+ "fieldType": "WORD_GRAM",
443
+ "searchLabel": "entityName",
444
+ "searchTier": 1
441
445
  },
442
446
  "type": "string",
443
447
  "name": "name",
@@ -44,19 +44,29 @@
44
44
  "fieldNameAliases": [
45
45
  "_entityName"
46
46
  ],
47
- "fieldType": "WORD_GRAM"
47
+ "fieldType": "WORD_GRAM",
48
+ "searchLabel": "entityName",
49
+ "searchTier": 1
48
50
  },
49
51
  "type": "string",
50
52
  "name": "title",
51
53
  "doc": "Title of the chart"
52
54
  },
53
55
  {
54
- "Searchable": {},
56
+ "Searchable": {
57
+ "searchTier": 2
58
+ },
55
59
  "type": "string",
56
60
  "name": "description",
57
61
  "doc": "Detailed description about the chart"
58
62
  },
59
63
  {
64
+ "Searchable": {
65
+ "/lastModified/time": {
66
+ "fieldName": "lastModifiedAt",
67
+ "fieldType": "DATETIME"
68
+ }
69
+ },
60
70
  "type": {
61
71
  "type": "record",
62
72
  "name": "ChangeAuditStamps",
@@ -144,7 +154,8 @@
144
154
  },
145
155
  {
146
156
  "Searchable": {
147
- "fieldType": "KEYWORD"
157
+ "fieldType": "KEYWORD",
158
+ "searchTier": 4
148
159
  },
149
160
  "java": {
150
161
  "class": "com.linkedin.pegasus2avro.common.url.Url",
@@ -188,7 +199,8 @@
188
199
  "createdActor": "inputEdges/*/created/actor",
189
200
  "createdOn": "inputEdges/*/created/time",
190
201
  "entityTypes": [
191
- "dataset"
202
+ "dataset",
203
+ "chart"
192
204
  ],
193
205
  "isLineage": true,
194
206
  "name": "Consumes",
@@ -271,7 +283,8 @@
271
283
  "Searchable": {
272
284
  "addToFilters": true,
273
285
  "fieldType": "KEYWORD",
274
- "filterNameOverride": "Chart Type"
286
+ "filterNameOverride": "Chart Type",
287
+ "searchTier": 3
275
288
  },
276
289
  "type": [
277
290
  "null",
@@ -310,7 +323,8 @@
310
323
  "Searchable": {
311
324
  "addToFilters": true,
312
325
  "fieldType": "KEYWORD",
313
- "filterNameOverride": "Access Level"
326
+ "filterNameOverride": "Access Level",
327
+ "searchTier": 4
314
328
  },
315
329
  "type": [
316
330
  "null",
@@ -13,6 +13,7 @@
13
13
  "embed",
14
14
  "browsePaths",
15
15
  "domains",
16
+ "applications",
16
17
  "container",
17
18
  "deprecation",
18
19
  "ownership",