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.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py +1 -1
- acryl_datahub_cloud/acryl_cs_issues/models.py +5 -3
- acryl_datahub_cloud/action_request/action_request_owner_source.py +37 -8
- acryl_datahub_cloud/datahub_forms_notifications/__init__.py +0 -0
- acryl_datahub_cloud/datahub_forms_notifications/forms_notifications_source.py +569 -0
- acryl_datahub_cloud/datahub_forms_notifications/get_feature_flag.gql +7 -0
- acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql +14 -0
- acryl_datahub_cloud/datahub_forms_notifications/query.py +17 -0
- acryl_datahub_cloud/datahub_forms_notifications/scroll_forms_for_notification.gql +29 -0
- acryl_datahub_cloud/datahub_forms_notifications/send_form_notification_request.gql +5 -0
- acryl_datahub_cloud/datahub_reporting/datahub_dataset.py +39 -19
- acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +60 -25
- acryl_datahub_cloud/datahub_reporting/extract_graph.py +9 -3
- acryl_datahub_cloud/datahub_reporting/extract_sql.py +248 -52
- acryl_datahub_cloud/datahub_reporting/forms.py +1 -1
- acryl_datahub_cloud/datahub_reporting/forms_config.py +3 -2
- acryl_datahub_cloud/datahub_restore/source.py +3 -2
- acryl_datahub_cloud/datahub_usage_reporting/excluded.py +94 -0
- acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +48 -8
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +532 -109
- acryl_datahub_cloud/elasticsearch/graph_service.py +76 -14
- acryl_datahub_cloud/graphql_utils.py +64 -0
- acryl_datahub_cloud/lineage_features/source.py +555 -49
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +2390 -1938
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionworkflow/__init__.py +53 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/anomaly/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +6 -2
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py +6 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/conversation/__init__.py +29 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/event/notification/settings/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/execution/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/file/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +8 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py +8 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/knowledge/__init__.py +33 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +14 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/search/features/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +31 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/monitor/__init__.py +6 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notification/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/platform/event/v1/__init__.py +4 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/role/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/asset/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +28 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/template/__init__.py +31 -0
- acryl_datahub_cloud/metadata/schema.avsc +27843 -23200
- acryl_datahub_cloud/metadata/schema_classes.py +29901 -24310
- acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +235 -2
- acryl_datahub_cloud/metadata/schemas/ActionWorkflowInfo.avsc +683 -0
- acryl_datahub_cloud/metadata/schemas/ActionWorkflowKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/Actors.avsc +38 -1
- acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc +31 -0
- acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc +75 -0
- acryl_datahub_cloud/metadata/schemas/Applications.avsc +38 -0
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +375 -212
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +147 -20
- acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +191 -21
- acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +15 -2
- acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +54 -0
- acryl_datahub_cloud/metadata/schemas/AssetSettings.avsc +63 -0
- acryl_datahub_cloud/metadata/schemas/BusinessAttributeInfo.avsc +7 -3
- acryl_datahub_cloud/metadata/schemas/ChartInfo.avsc +20 -6
- acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/ContainerProperties.avsc +16 -5
- acryl_datahub_cloud/metadata/schemas/CorpGroupEditableInfo.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/CorpGroupInfo.avsc +7 -3
- acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/CorpGroupSettings.avsc +127 -2
- acryl_datahub_cloud/metadata/schemas/CorpUserEditableInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/CorpUserInfo.avsc +18 -2
- acryl_datahub_cloud/metadata/schemas/CorpUserInvitationStatus.avsc +106 -0
- acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +304 -2
- acryl_datahub_cloud/metadata/schemas/CorpUserUsageFeatures.avsc +86 -0
- acryl_datahub_cloud/metadata/schemas/DashboardInfo.avsc +11 -5
- acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataContractKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataFlowInfo.avsc +15 -5
- acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataHubAiConversationInfo.avsc +256 -0
- acryl_datahub_cloud/metadata/schemas/DataHubAiConversationKey.avsc +22 -0
- acryl_datahub_cloud/metadata/schemas/DataHubFileInfo.avsc +234 -0
- acryl_datahub_cloud/metadata/schemas/DataHubFileKey.avsc +22 -0
- acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataHubOpenAPISchemaKey.avsc +22 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +308 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateProperties.avsc +251 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/DataJobInfo.avsc +13 -4
- acryl_datahub_cloud/metadata/schemas/DataJobInputOutput.avsc +8 -0
- acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataPlatformInfo.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/DataPlatformInstanceProperties.avsc +5 -2
- acryl_datahub_cloud/metadata/schemas/DataProcessKey.avsc +4 -0
- acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc +6 -3
- acryl_datahub_cloud/metadata/schemas/DataTransformLogic.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/DataTypeInfo.avsc +5 -0
- acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +10 -2
- acryl_datahub_cloud/metadata/schemas/DatasetProperties.avsc +12 -5
- acryl_datahub_cloud/metadata/schemas/DatasetUsageStatistics.avsc +8 -0
- acryl_datahub_cloud/metadata/schemas/DocumentInfo.avsc +407 -0
- acryl_datahub_cloud/metadata/schemas/DocumentKey.avsc +35 -0
- acryl_datahub_cloud/metadata/schemas/DocumentSettings.avsc +79 -0
- acryl_datahub_cloud/metadata/schemas/DomainKey.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/DomainProperties.avsc +7 -3
- acryl_datahub_cloud/metadata/schemas/EditableContainerProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableDashboardProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableDataFlowProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableDataJobProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableDatasetProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableERModelRelationshipProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableMLFeatureProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableMLFeatureTableProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableMLModelGroupProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableMLModelProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableNotebookProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableSchemaMetadata.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/EntityTypeInfo.avsc +5 -0
- acryl_datahub_cloud/metadata/schemas/ExecutionRequestArtifactsLocation.avsc +16 -0
- acryl_datahub_cloud/metadata/schemas/ExecutionRequestKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/FormAssignmentStatus.avsc +36 -0
- acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +6 -0
- acryl_datahub_cloud/metadata/schemas/FormKey.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc +69 -0
- acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +30 -0
- acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +416 -0
- acryl_datahub_cloud/metadata/schemas/GlobalTags.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/GlossaryNodeInfo.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/GlossaryNodeKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/GlossaryTermInfo.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/IcebergWarehouseInfo.avsc +4 -0
- acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/InferredMetadata.avsc +71 -1
- acryl_datahub_cloud/metadata/schemas/InputFields.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/InviteToken.avsc +26 -0
- acryl_datahub_cloud/metadata/schemas/LineageFeatures.avsc +67 -42
- acryl_datahub_cloud/metadata/schemas/LogicalParent.avsc +145 -0
- acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/MLModelDeploymentKey.avsc +7 -1
- acryl_datahub_cloud/metadata/schemas/MLModelDeploymentProperties.avsc +3 -0
- acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +424 -97
- acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +65 -44
- acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +64 -0
- acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +84 -29
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +221 -23
- acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +128 -3
- acryl_datahub_cloud/metadata/schemas/NotebookInfo.avsc +5 -2
- acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +91 -4
- acryl_datahub_cloud/metadata/schemas/Operation.avsc +17 -0
- acryl_datahub_cloud/metadata/schemas/Ownership.avsc +71 -1
- acryl_datahub_cloud/metadata/schemas/QueryProperties.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/QuerySubjects.avsc +2 -13
- acryl_datahub_cloud/metadata/schemas/RelationshipChangeEvent.avsc +215 -0
- acryl_datahub_cloud/metadata/schemas/RoleProperties.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/SchemaFieldInfo.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +3 -0
- acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/SemanticContent.avsc +123 -0
- acryl_datahub_cloud/metadata/schemas/StructuredProperties.avsc +69 -0
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc +15 -4
- acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc +9 -0
- acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +136 -5
- acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +147 -0
- acryl_datahub_cloud/metadata/schemas/TagProperties.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/TestInfo.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc +9 -0
- acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc +10 -0
- acryl_datahub_cloud/metadata/schemas/__init__.py +3 -3
- acryl_datahub_cloud/notifications/__init__.py +0 -0
- acryl_datahub_cloud/notifications/notification_recipient_builder.py +399 -0
- acryl_datahub_cloud/sdk/__init__.py +69 -0
- acryl_datahub_cloud/sdk/assertion/__init__.py +58 -0
- acryl_datahub_cloud/sdk/assertion/assertion_base.py +779 -0
- acryl_datahub_cloud/sdk/assertion/column_metric_assertion.py +191 -0
- acryl_datahub_cloud/sdk/assertion/column_value_assertion.py +431 -0
- acryl_datahub_cloud/sdk/assertion/freshness_assertion.py +201 -0
- acryl_datahub_cloud/sdk/assertion/schema_assertion.py +268 -0
- acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py +212 -0
- acryl_datahub_cloud/sdk/assertion/smart_freshness_assertion.py +165 -0
- acryl_datahub_cloud/sdk/assertion/smart_sql_assertion.py +156 -0
- acryl_datahub_cloud/sdk/assertion/smart_volume_assertion.py +162 -0
- acryl_datahub_cloud/sdk/assertion/sql_assertion.py +273 -0
- acryl_datahub_cloud/sdk/assertion/types.py +20 -0
- acryl_datahub_cloud/sdk/assertion/volume_assertion.py +156 -0
- acryl_datahub_cloud/sdk/assertion_client/__init__.py +0 -0
- acryl_datahub_cloud/sdk/assertion_client/column_metric.py +545 -0
- acryl_datahub_cloud/sdk/assertion_client/column_value.py +617 -0
- acryl_datahub_cloud/sdk/assertion_client/freshness.py +371 -0
- acryl_datahub_cloud/sdk/assertion_client/helpers.py +166 -0
- acryl_datahub_cloud/sdk/assertion_client/schema.py +358 -0
- acryl_datahub_cloud/sdk/assertion_client/smart_column_metric.py +540 -0
- acryl_datahub_cloud/sdk/assertion_client/smart_freshness.py +373 -0
- acryl_datahub_cloud/sdk/assertion_client/smart_sql.py +411 -0
- acryl_datahub_cloud/sdk/assertion_client/smart_volume.py +380 -0
- acryl_datahub_cloud/sdk/assertion_client/sql.py +410 -0
- acryl_datahub_cloud/sdk/assertion_client/volume.py +446 -0
- acryl_datahub_cloud/sdk/assertion_input/__init__.py +0 -0
- acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +1470 -0
- acryl_datahub_cloud/sdk/assertion_input/column_assertion_constants.py +114 -0
- acryl_datahub_cloud/sdk/assertion_input/column_assertion_utils.py +284 -0
- acryl_datahub_cloud/sdk/assertion_input/column_metric_assertion_input.py +759 -0
- acryl_datahub_cloud/sdk/assertion_input/column_metric_constants.py +109 -0
- acryl_datahub_cloud/sdk/assertion_input/column_value_assertion_input.py +810 -0
- acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +305 -0
- acryl_datahub_cloud/sdk/assertion_input/schema_assertion_input.py +413 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +793 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_freshness_assertion_input.py +218 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_sql_assertion_input.py +181 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_volume_assertion_input.py +189 -0
- acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +320 -0
- acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py +635 -0
- acryl_datahub_cloud/sdk/assertions_client.py +1074 -0
- acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
- acryl_datahub_cloud/sdk/entities/assertion.py +439 -0
- acryl_datahub_cloud/sdk/entities/monitor.py +291 -0
- acryl_datahub_cloud/sdk/entities/subscription.py +100 -0
- acryl_datahub_cloud/sdk/errors.py +34 -0
- acryl_datahub_cloud/sdk/resolver_client.py +42 -0
- acryl_datahub_cloud/sdk/subscription_client.py +737 -0
- {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/METADATA +49 -43
- {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/RECORD +243 -145
- {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/WHEEL +1 -1
- {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/entry_points.txt +1 -0
- {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/top_level.txt +0 -0
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"type": "enum",
|
|
44
44
|
"symbolDocs": {
|
|
45
45
|
"ASSERTION": "A monitor responsible for evaluating Assertions.",
|
|
46
|
-
"FRESHNESS": "A monitor responsible for evaluating system freshness monitors"
|
|
46
|
+
"FRESHNESS": "A monitor responsible for evaluating system freshness monitors - This is not used"
|
|
47
47
|
},
|
|
48
48
|
"name": "MonitorType",
|
|
49
49
|
"namespace": "com.linkedin.pegasus2avro.monitor",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"symbolDocs": {
|
|
69
69
|
"ACTIVE": "The monitor should be actively operating.",
|
|
70
70
|
"INACTIVE": "The monitor is not actively operating.",
|
|
71
|
-
"PASSIVE": "The monitor is running in passive mode.\nFor assertion monitors, this means that assertions will be run in dry mode."
|
|
71
|
+
"PASSIVE": "The monitor is running in passive mode.\nFor assertion monitors, this means that assertions will be run in dry mode.\nThis is for internal troubleshooting purposes."
|
|
72
72
|
},
|
|
73
73
|
"name": "MonitorMode",
|
|
74
74
|
"namespace": "com.linkedin.pegasus2avro.monitor",
|
|
@@ -171,6 +171,12 @@
|
|
|
171
171
|
"namespace": "com.linkedin.pegasus2avro.monitor",
|
|
172
172
|
"fields": [
|
|
173
173
|
{
|
|
174
|
+
"Searchable": {
|
|
175
|
+
"/*/assertion": {
|
|
176
|
+
"fieldName": "assertionUrn",
|
|
177
|
+
"fieldType": "URN"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
174
180
|
"type": {
|
|
175
181
|
"type": "array",
|
|
176
182
|
"items": {
|
|
@@ -185,6 +191,13 @@
|
|
|
185
191
|
],
|
|
186
192
|
"name": "Evaluates"
|
|
187
193
|
},
|
|
194
|
+
"UrnValidation": {
|
|
195
|
+
"entityTypes": [
|
|
196
|
+
"assertion"
|
|
197
|
+
],
|
|
198
|
+
"exist": false,
|
|
199
|
+
"strict": true
|
|
200
|
+
},
|
|
188
201
|
"java": {
|
|
189
202
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
190
203
|
},
|
|
@@ -627,11 +640,15 @@
|
|
|
627
640
|
"doc": "URL where the reference exist"
|
|
628
641
|
},
|
|
629
642
|
{
|
|
630
|
-
"Searchable": {
|
|
643
|
+
"Searchable": {
|
|
644
|
+
"addToFilters": true,
|
|
645
|
+
"fieldName": "assertionType",
|
|
646
|
+
"fieldType": "KEYWORD"
|
|
647
|
+
},
|
|
631
648
|
"type": {
|
|
632
649
|
"type": "enum",
|
|
633
650
|
"symbolDocs": {
|
|
634
|
-
"CUSTOM": "A custom assertion
|
|
651
|
+
"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.",
|
|
635
652
|
"DATASET": "A single-dataset assertion.\nWhen this is the value, the datasetAssertion field will be populated.",
|
|
636
653
|
"DATA_SCHEMA": "A schema or structural assertion.\n\nWould have named this SCHEMA but the codegen for PDL does not allow this (reserved word).",
|
|
637
654
|
"FIELD": "A structured assertion targeting a specific column or field of the Dataset.",
|
|
@@ -670,6 +687,13 @@
|
|
|
670
687
|
],
|
|
671
688
|
"name": "Asserts"
|
|
672
689
|
},
|
|
690
|
+
"UrnValidation": {
|
|
691
|
+
"entityTypes": [
|
|
692
|
+
"dataset"
|
|
693
|
+
],
|
|
694
|
+
"exist": false,
|
|
695
|
+
"strict": true
|
|
696
|
+
},
|
|
673
697
|
"java": {
|
|
674
698
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
675
699
|
},
|
|
@@ -719,6 +743,13 @@
|
|
|
719
743
|
"fieldType": "URN"
|
|
720
744
|
}
|
|
721
745
|
},
|
|
746
|
+
"UrnValidation": {
|
|
747
|
+
"entityTypes": [
|
|
748
|
+
"schemaField"
|
|
749
|
+
],
|
|
750
|
+
"exist": false,
|
|
751
|
+
"strict": true
|
|
752
|
+
},
|
|
722
753
|
"type": [
|
|
723
754
|
"null",
|
|
724
755
|
{
|
|
@@ -861,6 +892,7 @@
|
|
|
861
892
|
"LIST": "A list of values. When used, value should be formatted as a serialized JSON array.",
|
|
862
893
|
"NUMBER": "A numeric value",
|
|
863
894
|
"SET": "A set of values. When used, value should be formatted as a serialized JSON array.",
|
|
895
|
+
"SQL": "A SQL expression",
|
|
864
896
|
"STRING": "A string value",
|
|
865
897
|
"UNKNOWN": "A value of unknown type"
|
|
866
898
|
},
|
|
@@ -871,6 +903,7 @@
|
|
|
871
903
|
"NUMBER",
|
|
872
904
|
"LIST",
|
|
873
905
|
"SET",
|
|
906
|
+
"SQL",
|
|
874
907
|
"UNKNOWN"
|
|
875
908
|
]
|
|
876
909
|
},
|
|
@@ -957,7 +990,10 @@
|
|
|
957
990
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
958
991
|
"fields": [
|
|
959
992
|
{
|
|
960
|
-
"Searchable": {
|
|
993
|
+
"Searchable": {
|
|
994
|
+
"fieldName": "freshnessAssertionType",
|
|
995
|
+
"fieldType": "KEYWORD"
|
|
996
|
+
},
|
|
961
997
|
"type": {
|
|
962
998
|
"type": "enum",
|
|
963
999
|
"symbolDocs": {
|
|
@@ -982,8 +1018,13 @@
|
|
|
982
1018
|
],
|
|
983
1019
|
"name": "Asserts"
|
|
984
1020
|
},
|
|
985
|
-
"
|
|
986
|
-
"
|
|
1021
|
+
"UrnValidation": {
|
|
1022
|
+
"entityTypes": [
|
|
1023
|
+
"dataset",
|
|
1024
|
+
"dataJob"
|
|
1025
|
+
],
|
|
1026
|
+
"exist": false,
|
|
1027
|
+
"strict": true
|
|
987
1028
|
},
|
|
988
1029
|
"java": {
|
|
989
1030
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
@@ -1344,7 +1385,10 @@
|
|
|
1344
1385
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1345
1386
|
"fields": [
|
|
1346
1387
|
{
|
|
1347
|
-
"Searchable": {
|
|
1388
|
+
"Searchable": {
|
|
1389
|
+
"fieldName": "volumeAssertionType",
|
|
1390
|
+
"fieldType": "KEYWORD"
|
|
1391
|
+
},
|
|
1348
1392
|
"type": {
|
|
1349
1393
|
"type": "enum",
|
|
1350
1394
|
"symbolDocs": {
|
|
@@ -1372,8 +1416,12 @@
|
|
|
1372
1416
|
],
|
|
1373
1417
|
"name": "Asserts"
|
|
1374
1418
|
},
|
|
1375
|
-
"
|
|
1376
|
-
"
|
|
1419
|
+
"UrnValidation": {
|
|
1420
|
+
"entityTypes": [
|
|
1421
|
+
"dataset"
|
|
1422
|
+
],
|
|
1423
|
+
"exist": false,
|
|
1424
|
+
"strict": true
|
|
1377
1425
|
},
|
|
1378
1426
|
"java": {
|
|
1379
1427
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
@@ -1637,7 +1685,10 @@
|
|
|
1637
1685
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1638
1686
|
"fields": [
|
|
1639
1687
|
{
|
|
1640
|
-
"Searchable": {
|
|
1688
|
+
"Searchable": {
|
|
1689
|
+
"fieldName": "sqlAssertionType",
|
|
1690
|
+
"fieldType": "KEYWORD"
|
|
1691
|
+
},
|
|
1641
1692
|
"type": {
|
|
1642
1693
|
"type": "enum",
|
|
1643
1694
|
"symbolDocs": {
|
|
@@ -1661,8 +1712,12 @@
|
|
|
1661
1712
|
],
|
|
1662
1713
|
"name": "Asserts"
|
|
1663
1714
|
},
|
|
1664
|
-
"
|
|
1665
|
-
"
|
|
1715
|
+
"UrnValidation": {
|
|
1716
|
+
"entityTypes": [
|
|
1717
|
+
"dataset"
|
|
1718
|
+
],
|
|
1719
|
+
"exist": false,
|
|
1720
|
+
"strict": true
|
|
1666
1721
|
},
|
|
1667
1722
|
"java": {
|
|
1668
1723
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
@@ -1716,7 +1771,10 @@
|
|
|
1716
1771
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1717
1772
|
"fields": [
|
|
1718
1773
|
{
|
|
1719
|
-
"Searchable": {
|
|
1774
|
+
"Searchable": {
|
|
1775
|
+
"fieldName": "fieldAssertionType",
|
|
1776
|
+
"fieldType": "KEYWORD"
|
|
1777
|
+
},
|
|
1720
1778
|
"type": {
|
|
1721
1779
|
"type": "enum",
|
|
1722
1780
|
"symbolDocs": {
|
|
@@ -1740,8 +1798,12 @@
|
|
|
1740
1798
|
],
|
|
1741
1799
|
"name": "Asserts"
|
|
1742
1800
|
},
|
|
1743
|
-
"
|
|
1744
|
-
"
|
|
1801
|
+
"UrnValidation": {
|
|
1802
|
+
"entityTypes": [
|
|
1803
|
+
"dataset"
|
|
1804
|
+
],
|
|
1805
|
+
"exist": false,
|
|
1806
|
+
"strict": true
|
|
1745
1807
|
},
|
|
1746
1808
|
"java": {
|
|
1747
1809
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
@@ -1878,7 +1940,7 @@
|
|
|
1878
1940
|
},
|
|
1879
1941
|
"type": "com.linkedin.pegasus2avro.schema.SchemaFieldSpec",
|
|
1880
1942
|
"name": "field",
|
|
1881
|
-
"doc": "The field under evaluation"
|
|
1943
|
+
"doc": "The field path under evaluation"
|
|
1882
1944
|
},
|
|
1883
1945
|
{
|
|
1884
1946
|
"type": {
|
|
@@ -1983,8 +2045,13 @@
|
|
|
1983
2045
|
],
|
|
1984
2046
|
"name": "Asserts"
|
|
1985
2047
|
},
|
|
1986
|
-
"
|
|
1987
|
-
"
|
|
2048
|
+
"UrnValidation": {
|
|
2049
|
+
"entityTypes": [
|
|
2050
|
+
"dataset",
|
|
2051
|
+
"dataJob"
|
|
2052
|
+
],
|
|
2053
|
+
"exist": false,
|
|
2054
|
+
"strict": true
|
|
1988
2055
|
},
|
|
1989
2056
|
"java": {
|
|
1990
2057
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
@@ -2618,7 +2685,8 @@
|
|
|
2618
2685
|
"fieldType": "URN",
|
|
2619
2686
|
"filterNameOverride": "Tagged With",
|
|
2620
2687
|
"hasValuesFieldName": "hasTags",
|
|
2621
|
-
"queryByDefault": true
|
|
2688
|
+
"queryByDefault": true,
|
|
2689
|
+
"searchTier": 2
|
|
2622
2690
|
}
|
|
2623
2691
|
},
|
|
2624
2692
|
"type": {
|
|
@@ -3103,7 +3171,8 @@
|
|
|
3103
3171
|
"fields": [
|
|
3104
3172
|
{
|
|
3105
3173
|
"Searchable": {
|
|
3106
|
-
"fieldName": "customType"
|
|
3174
|
+
"fieldName": "customType",
|
|
3175
|
+
"fieldType": "KEYWORD"
|
|
3107
3176
|
},
|
|
3108
3177
|
"type": "string",
|
|
3109
3178
|
"name": "type",
|
|
@@ -3116,6 +3185,13 @@
|
|
|
3116
3185
|
],
|
|
3117
3186
|
"name": "Asserts"
|
|
3118
3187
|
},
|
|
3188
|
+
"UrnValidation": {
|
|
3189
|
+
"entityTypes": [
|
|
3190
|
+
"dataset"
|
|
3191
|
+
],
|
|
3192
|
+
"exist": false,
|
|
3193
|
+
"strict": true
|
|
3194
|
+
},
|
|
3119
3195
|
"java": {
|
|
3120
3196
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
3121
3197
|
},
|
|
@@ -3134,6 +3210,13 @@
|
|
|
3134
3210
|
],
|
|
3135
3211
|
"name": "Asserts"
|
|
3136
3212
|
},
|
|
3213
|
+
"UrnValidation": {
|
|
3214
|
+
"entityTypes": [
|
|
3215
|
+
"schemaField"
|
|
3216
|
+
],
|
|
3217
|
+
"exist": false,
|
|
3218
|
+
"strict": true
|
|
3219
|
+
},
|
|
3137
3220
|
"java": {
|
|
3138
3221
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
3139
3222
|
},
|
|
@@ -3166,6 +3249,14 @@
|
|
|
3166
3249
|
"doc": "A Custom Assertion definition. This field is populated when type is CUSTOM."
|
|
3167
3250
|
},
|
|
3168
3251
|
{
|
|
3252
|
+
"Searchable": {
|
|
3253
|
+
"/created/actor": {
|
|
3254
|
+
"fieldName": "creator",
|
|
3255
|
+
"fieldType": "URN",
|
|
3256
|
+
"filterNameOverride": "Created By",
|
|
3257
|
+
"hasValuesFieldName": "hasCreator"
|
|
3258
|
+
}
|
|
3259
|
+
},
|
|
3169
3260
|
"type": [
|
|
3170
3261
|
"null",
|
|
3171
3262
|
{
|
|
@@ -3175,7 +3266,9 @@
|
|
|
3175
3266
|
"fields": [
|
|
3176
3267
|
{
|
|
3177
3268
|
"Searchable": {
|
|
3178
|
-
"
|
|
3269
|
+
"addToFilters": true,
|
|
3270
|
+
"fieldName": "sourceType",
|
|
3271
|
+
"fieldType": "KEYWORD"
|
|
3179
3272
|
},
|
|
3180
3273
|
"type": {
|
|
3181
3274
|
"type": "enum",
|
|
@@ -3222,6 +3315,11 @@
|
|
|
3222
3315
|
"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."
|
|
3223
3316
|
},
|
|
3224
3317
|
{
|
|
3318
|
+
"Searchable": {
|
|
3319
|
+
"fieldName": "assertionDescription",
|
|
3320
|
+
"fieldType": "TEXT",
|
|
3321
|
+
"hasValuesFieldName": "hasAssertionDescription"
|
|
3322
|
+
},
|
|
3225
3323
|
"type": [
|
|
3226
3324
|
"null",
|
|
3227
3325
|
"string"
|
|
@@ -3229,6 +3327,48 @@
|
|
|
3229
3327
|
"name": "description",
|
|
3230
3328
|
"default": null,
|
|
3231
3329
|
"doc": "An optional human-readable description of the assertion"
|
|
3330
|
+
},
|
|
3331
|
+
{
|
|
3332
|
+
"type": [
|
|
3333
|
+
"null",
|
|
3334
|
+
{
|
|
3335
|
+
"type": "record",
|
|
3336
|
+
"name": "AssertionNote",
|
|
3337
|
+
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
3338
|
+
"fields": [
|
|
3339
|
+
{
|
|
3340
|
+
"type": "string",
|
|
3341
|
+
"name": "content",
|
|
3342
|
+
"doc": "The note to give technical owners more context about the assertion, and how to troubleshoot it."
|
|
3343
|
+
},
|
|
3344
|
+
{
|
|
3345
|
+
"type": "com.linkedin.pegasus2avro.common.AuditStamp",
|
|
3346
|
+
"name": "lastModified",
|
|
3347
|
+
"doc": "The time at which the note was last modified."
|
|
3348
|
+
}
|
|
3349
|
+
]
|
|
3350
|
+
}
|
|
3351
|
+
],
|
|
3352
|
+
"name": "note",
|
|
3353
|
+
"default": null,
|
|
3354
|
+
"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."
|
|
3355
|
+
},
|
|
3356
|
+
{
|
|
3357
|
+
"Searchable": {
|
|
3358
|
+
"fieldName": "entity",
|
|
3359
|
+
"fieldType": "URN"
|
|
3360
|
+
},
|
|
3361
|
+
"java": {
|
|
3362
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
3363
|
+
},
|
|
3364
|
+
"type": [
|
|
3365
|
+
"null",
|
|
3366
|
+
"string"
|
|
3367
|
+
],
|
|
3368
|
+
"name": "entityUrn",
|
|
3369
|
+
"default": null,
|
|
3370
|
+
"doc": "The entity targeted by this assertion. Newly added field, automatically set by mutation",
|
|
3371
|
+
"Urn": "Urn"
|
|
3232
3372
|
}
|
|
3233
3373
|
],
|
|
3234
3374
|
"doc": "Information about an assertion\n\nAcryl Only: Did you update AssertionWithoutAnnotations.pdl? If not, please update it."
|
|
@@ -3500,7 +3640,7 @@
|
|
|
3500
3640
|
}
|
|
3501
3641
|
},
|
|
3502
3642
|
"name": "assertions",
|
|
3503
|
-
"doc": "Specs for each assertion to evaluate"
|
|
3643
|
+
"doc": "Specs for each assertion to evaluate\nThis will always have 1 reference. Modelling error caused it to be an array.\nIf it is != 1 then we have data corruption."
|
|
3504
3644
|
},
|
|
3505
3645
|
{
|
|
3506
3646
|
"type": [
|
|
@@ -3553,6 +3693,64 @@
|
|
|
3553
3693
|
"name": "settings",
|
|
3554
3694
|
"default": null,
|
|
3555
3695
|
"doc": "Specific settings for an assertion monitor"
|
|
3696
|
+
},
|
|
3697
|
+
{
|
|
3698
|
+
"type": [
|
|
3699
|
+
"null",
|
|
3700
|
+
{
|
|
3701
|
+
"type": "record",
|
|
3702
|
+
"name": "AssertionMonitorBootstrapStatus",
|
|
3703
|
+
"namespace": "com.linkedin.pegasus2avro.monitor",
|
|
3704
|
+
"fields": [
|
|
3705
|
+
{
|
|
3706
|
+
"type": [
|
|
3707
|
+
"null",
|
|
3708
|
+
{
|
|
3709
|
+
"type": "record",
|
|
3710
|
+
"name": "AssertionMonitorMetricsCubeBootstrapStatus",
|
|
3711
|
+
"namespace": "com.linkedin.pegasus2avro.monitor",
|
|
3712
|
+
"fields": [
|
|
3713
|
+
{
|
|
3714
|
+
"type": {
|
|
3715
|
+
"type": "enum",
|
|
3716
|
+
"symbolDocs": {
|
|
3717
|
+
"COMPLETED": "The metrics cube for this monitor has been bootstrapped.",
|
|
3718
|
+
"FAILED": "The metrics cube for this monitor has failed to bootstrap.",
|
|
3719
|
+
"PENDING": "The metrics cube for this monitor has not been bootstrapped."
|
|
3720
|
+
},
|
|
3721
|
+
"name": "AssertionMonitorMetricsCubeBootstrapState",
|
|
3722
|
+
"namespace": "com.linkedin.pegasus2avro.monitor",
|
|
3723
|
+
"symbols": [
|
|
3724
|
+
"PENDING",
|
|
3725
|
+
"FAILED",
|
|
3726
|
+
"COMPLETED"
|
|
3727
|
+
]
|
|
3728
|
+
},
|
|
3729
|
+
"name": "state",
|
|
3730
|
+
"doc": "Whether the metrics cube for this monitor has been bootstrapped."
|
|
3731
|
+
},
|
|
3732
|
+
{
|
|
3733
|
+
"type": [
|
|
3734
|
+
"null",
|
|
3735
|
+
"string"
|
|
3736
|
+
],
|
|
3737
|
+
"name": "message",
|
|
3738
|
+
"default": null,
|
|
3739
|
+
"doc": "The message associated with the bootstrap status.\nI.e., an error message if the bootstrap failed."
|
|
3740
|
+
}
|
|
3741
|
+
]
|
|
3742
|
+
}
|
|
3743
|
+
],
|
|
3744
|
+
"name": "metricsCubeBootstrapStatus",
|
|
3745
|
+
"default": null,
|
|
3746
|
+
"doc": "Whether the metrics cube for this monitor has been bootstrapped."
|
|
3747
|
+
}
|
|
3748
|
+
]
|
|
3749
|
+
}
|
|
3750
|
+
],
|
|
3751
|
+
"name": "bootstrapStatus",
|
|
3752
|
+
"default": null,
|
|
3753
|
+
"doc": "The status of the bootstrap actions performed on the assertion."
|
|
3556
3754
|
}
|
|
3557
3755
|
],
|
|
3558
3756
|
"doc": "Information about an Assertion monitor."
|
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
"entityAspects": [
|
|
8
8
|
"monitorInfo",
|
|
9
9
|
"monitorTimeseriesState",
|
|
10
|
-
"monitorAnomalyEvent"
|
|
10
|
+
"monitorAnomalyEvent",
|
|
11
|
+
"status"
|
|
11
12
|
]
|
|
12
13
|
},
|
|
13
14
|
"name": "MonitorKey",
|
|
@@ -23,6 +24,13 @@
|
|
|
23
24
|
"Searchable": {
|
|
24
25
|
"fieldType": "URN"
|
|
25
26
|
},
|
|
27
|
+
"UrnValidation": {
|
|
28
|
+
"entityTypes": [
|
|
29
|
+
"dataset"
|
|
30
|
+
],
|
|
31
|
+
"exist": false,
|
|
32
|
+
"strict": true
|
|
33
|
+
},
|
|
26
34
|
"java": {
|
|
27
35
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
28
36
|
},
|
|
@@ -509,7 +509,7 @@
|
|
|
509
509
|
"TAG_REMOVED",
|
|
510
510
|
"TAG_PROPOSED"
|
|
511
511
|
],
|
|
512
|
-
"doc": "Enum to define change types that can trigger a subscription."
|
|
512
|
+
"doc": "Enum to define change types that can trigger a notification for a subscription."
|
|
513
513
|
},
|
|
514
514
|
"name": "entityChangeType",
|
|
515
515
|
"doc": "Change type that triggers a notification for the subscription."
|
|
@@ -572,13 +572,15 @@
|
|
|
572
572
|
"type": "enum",
|
|
573
573
|
"symbolDocs": {
|
|
574
574
|
"EMAIL": "Email target type.",
|
|
575
|
-
"SLACK": "Slack target type."
|
|
575
|
+
"SLACK": "Slack target type.",
|
|
576
|
+
"TEAMS": "Microsoft Teams target type."
|
|
576
577
|
},
|
|
577
578
|
"name": "NotificationSinkType",
|
|
578
579
|
"namespace": "com.linkedin.pegasus2avro.event.notification",
|
|
579
580
|
"symbols": [
|
|
580
581
|
"SLACK",
|
|
581
|
-
"EMAIL"
|
|
582
|
+
"EMAIL",
|
|
583
|
+
"TEAMS"
|
|
582
584
|
],
|
|
583
585
|
"doc": "A type of sink / platform to send a notification to."
|
|
584
586
|
}
|
|
@@ -644,6 +646,129 @@
|
|
|
644
646
|
"default": null,
|
|
645
647
|
"doc": "Email Notification Settings"
|
|
646
648
|
},
|
|
649
|
+
{
|
|
650
|
+
"type": [
|
|
651
|
+
"null",
|
|
652
|
+
{
|
|
653
|
+
"type": "record",
|
|
654
|
+
"name": "TeamsNotificationSettings",
|
|
655
|
+
"namespace": "com.linkedin.pegasus2avro.event.notification.settings",
|
|
656
|
+
"fields": [
|
|
657
|
+
{
|
|
658
|
+
"type": [
|
|
659
|
+
"null",
|
|
660
|
+
{
|
|
661
|
+
"type": "record",
|
|
662
|
+
"name": "TeamsUser",
|
|
663
|
+
"namespace": "com.linkedin.pegasus2avro.settings.global",
|
|
664
|
+
"fields": [
|
|
665
|
+
{
|
|
666
|
+
"type": [
|
|
667
|
+
"null",
|
|
668
|
+
"string"
|
|
669
|
+
],
|
|
670
|
+
"name": "teamsUserId",
|
|
671
|
+
"default": null,
|
|
672
|
+
"doc": "The Teams user ID (internal Teams identifier).\nThis is the primary identifier used for Teams messaging."
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"Searchable": {
|
|
676
|
+
"fieldType": "KEYWORD",
|
|
677
|
+
"queryByDefault": false
|
|
678
|
+
},
|
|
679
|
+
"type": [
|
|
680
|
+
"null",
|
|
681
|
+
"string"
|
|
682
|
+
],
|
|
683
|
+
"name": "azureUserId",
|
|
684
|
+
"default": null,
|
|
685
|
+
"doc": "The Azure AD user ID (Azure Active Directory object ID).\nThis is the primary identifier for Azure AD operations and Microsoft Graph API calls."
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"type": [
|
|
689
|
+
"null",
|
|
690
|
+
"string"
|
|
691
|
+
],
|
|
692
|
+
"name": "email",
|
|
693
|
+
"default": null,
|
|
694
|
+
"doc": "The user's email address (fallback identifier).\nUsed when other IDs are not available or for email-based user resolution."
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"type": [
|
|
698
|
+
"null",
|
|
699
|
+
"string"
|
|
700
|
+
],
|
|
701
|
+
"name": "displayName",
|
|
702
|
+
"default": null,
|
|
703
|
+
"doc": "The user's display name (cached value, may be stale).\nRetrieved from Microsoft Graph API and cached for performance."
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
"type": [
|
|
707
|
+
"null",
|
|
708
|
+
"long"
|
|
709
|
+
],
|
|
710
|
+
"name": "lastUpdated",
|
|
711
|
+
"default": null,
|
|
712
|
+
"doc": "The timestamp when the cached display name was last updated.\nUsed for TTL-based cache invalidation (milliseconds since epoch)."
|
|
713
|
+
}
|
|
714
|
+
],
|
|
715
|
+
"doc": "Teams user information with cached display name and multiple ID support.\nFollows the same caching pattern as TeamsChannel for consistency."
|
|
716
|
+
}
|
|
717
|
+
],
|
|
718
|
+
"name": "user",
|
|
719
|
+
"default": null,
|
|
720
|
+
"doc": "Optional structured user information with cached metadata.\nSupports both Azure AD user ID and Teams user ID with cached display name."
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"type": [
|
|
724
|
+
"null",
|
|
725
|
+
{
|
|
726
|
+
"type": "array",
|
|
727
|
+
"items": {
|
|
728
|
+
"type": "record",
|
|
729
|
+
"name": "TeamsChannel",
|
|
730
|
+
"namespace": "com.linkedin.pegasus2avro.settings.global",
|
|
731
|
+
"fields": [
|
|
732
|
+
{
|
|
733
|
+
"type": "string",
|
|
734
|
+
"name": "id",
|
|
735
|
+
"doc": "The Teams channel ID (internal Teams identifier)."
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"type": [
|
|
739
|
+
"null",
|
|
740
|
+
"string"
|
|
741
|
+
],
|
|
742
|
+
"name": "name",
|
|
743
|
+
"default": null,
|
|
744
|
+
"doc": "The Teams channel display name (cached value, may be stale)."
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"type": [
|
|
748
|
+
"null",
|
|
749
|
+
"long"
|
|
750
|
+
],
|
|
751
|
+
"name": "lastUpdated",
|
|
752
|
+
"default": null,
|
|
753
|
+
"doc": "The timestamp when the cached name was last updated.\nUsed for TTL-based cache invalidation."
|
|
754
|
+
}
|
|
755
|
+
],
|
|
756
|
+
"doc": "Teams channel information with cached display name."
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
],
|
|
760
|
+
"name": "channels",
|
|
761
|
+
"default": null,
|
|
762
|
+
"doc": "Optional list of structured channels with cached metadata"
|
|
763
|
+
}
|
|
764
|
+
],
|
|
765
|
+
"doc": "Microsoft Teams Notification settings for an actor."
|
|
766
|
+
}
|
|
767
|
+
],
|
|
768
|
+
"name": "teamsSettings",
|
|
769
|
+
"default": null,
|
|
770
|
+
"doc": "Microsoft Teams Notification Settings"
|
|
771
|
+
},
|
|
647
772
|
{
|
|
648
773
|
"type": [
|
|
649
774
|
"null",
|
|
@@ -44,7 +44,9 @@
|
|
|
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",
|
|
@@ -53,7 +55,8 @@
|
|
|
53
55
|
{
|
|
54
56
|
"Searchable": {
|
|
55
57
|
"fieldType": "TEXT",
|
|
56
|
-
"hasValuesFieldName": "hasDescription"
|
|
58
|
+
"hasValuesFieldName": "hasDescription",
|
|
59
|
+
"searchTier": 2
|
|
57
60
|
},
|
|
58
61
|
"type": [
|
|
59
62
|
"null",
|