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
|
@@ -100,13 +100,15 @@
|
|
|
100
100
|
"type": "enum",
|
|
101
101
|
"symbolDocs": {
|
|
102
102
|
"EQUALS": "Whether the field matches the value",
|
|
103
|
+
"NOT_EQUALS": "Whether the field does not match the value",
|
|
103
104
|
"STARTS_WITH": "Whether the field value starts with the value"
|
|
104
105
|
},
|
|
105
106
|
"name": "PolicyMatchCondition",
|
|
106
107
|
"namespace": "com.linkedin.pegasus2avro.policy",
|
|
107
108
|
"symbols": [
|
|
108
109
|
"EQUALS",
|
|
109
|
-
"STARTS_WITH"
|
|
110
|
+
"STARTS_WITH",
|
|
111
|
+
"NOT_EQUALS"
|
|
110
112
|
],
|
|
111
113
|
"doc": "The matching condition in a filter criterion"
|
|
112
114
|
},
|
|
@@ -128,6 +130,15 @@
|
|
|
128
130
|
"name": "filter",
|
|
129
131
|
"default": null,
|
|
130
132
|
"doc": "Filter to apply privileges to"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"type": [
|
|
136
|
+
"null",
|
|
137
|
+
"com.linkedin.pegasus2avro.policy.PolicyMatchFilter"
|
|
138
|
+
],
|
|
139
|
+
"name": "privilegeConstraints",
|
|
140
|
+
"default": null,
|
|
141
|
+
"doc": "Constraints around what sub-resources operations are allowed to modify, i.e. NOT_EQUALS - cannot modify a particular defined tag, EQUALS - can only modify a particular defined tag, STARTS_WITH - can only modify a tag starting with xyz"
|
|
131
142
|
}
|
|
132
143
|
],
|
|
133
144
|
"doc": "Information used to filter DataHub resource."
|
|
@@ -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": "name",
|
|
@@ -54,7 +56,9 @@
|
|
|
54
56
|
"Searchable": {
|
|
55
57
|
"boostScore": 10.0,
|
|
56
58
|
"enableAutocomplete": true,
|
|
57
|
-
"fieldType": "WORD_GRAM"
|
|
59
|
+
"fieldType": "WORD_GRAM",
|
|
60
|
+
"searchLabel": "qualifiedName",
|
|
61
|
+
"searchTier": 1
|
|
58
62
|
},
|
|
59
63
|
"type": [
|
|
60
64
|
"null",
|
|
@@ -67,7 +71,8 @@
|
|
|
67
71
|
{
|
|
68
72
|
"Searchable": {
|
|
69
73
|
"fieldType": "TEXT",
|
|
70
|
-
"hasValuesFieldName": "hasDescription"
|
|
74
|
+
"hasValuesFieldName": "hasDescription",
|
|
75
|
+
"searchTier": 2
|
|
71
76
|
},
|
|
72
77
|
"type": [
|
|
73
78
|
"null",
|
|
@@ -99,6 +104,8 @@
|
|
|
99
104
|
"QA": "Designates quality assurance fabrics",
|
|
100
105
|
"RVW": "Designates review fabrics",
|
|
101
106
|
"SANDBOX": "Designates sandbox fabrics",
|
|
107
|
+
"SBX": "Alternative spelling for sandbox",
|
|
108
|
+
"SIT": "System Integration Testing",
|
|
102
109
|
"STG": "Designates staging fabrics",
|
|
103
110
|
"TEST": "Designates testing fabrics",
|
|
104
111
|
"TST": "Alternative Test spelling",
|
|
@@ -120,6 +127,8 @@
|
|
|
120
127
|
"RVW",
|
|
121
128
|
"PRD",
|
|
122
129
|
"TST",
|
|
130
|
+
"SIT",
|
|
131
|
+
"SBX",
|
|
123
132
|
"SANDBOX"
|
|
124
133
|
],
|
|
125
134
|
"doc": "Fabric group type"
|
|
@@ -133,7 +142,8 @@
|
|
|
133
142
|
"Searchable": {
|
|
134
143
|
"/time": {
|
|
135
144
|
"fieldName": "createdAt",
|
|
136
|
-
"fieldType": "DATETIME"
|
|
145
|
+
"fieldType": "DATETIME",
|
|
146
|
+
"searchLabel": "createdAt"
|
|
137
147
|
}
|
|
138
148
|
},
|
|
139
149
|
"type": [
|
|
@@ -173,7 +183,8 @@
|
|
|
173
183
|
"Searchable": {
|
|
174
184
|
"/time": {
|
|
175
185
|
"fieldName": "lastModifiedAt",
|
|
176
|
-
"fieldType": "DATETIME"
|
|
186
|
+
"fieldType": "DATETIME",
|
|
187
|
+
"searchLabel": "lastModifiedAt"
|
|
177
188
|
}
|
|
178
189
|
},
|
|
179
190
|
"type": [
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"_entityName"
|
|
18
18
|
],
|
|
19
19
|
"fieldType": "TEXT_PARTIAL",
|
|
20
|
-
"queryByDefault": true
|
|
20
|
+
"queryByDefault": true,
|
|
21
|
+
"searchLabel": "entityName",
|
|
22
|
+
"searchTier": 1
|
|
21
23
|
},
|
|
22
24
|
"type": [
|
|
23
25
|
"null",
|
|
@@ -95,7 +97,8 @@
|
|
|
95
97
|
},
|
|
96
98
|
{
|
|
97
99
|
"Searchable": {
|
|
98
|
-
"fieldType": "TEXT_PARTIAL"
|
|
100
|
+
"fieldType": "TEXT_PARTIAL",
|
|
101
|
+
"searchTier": 2
|
|
99
102
|
},
|
|
100
103
|
"type": [
|
|
101
104
|
"null",
|
|
@@ -118,7 +121,8 @@
|
|
|
118
121
|
"Searchable": {
|
|
119
122
|
"/time": {
|
|
120
123
|
"fieldName": "createdTime",
|
|
121
|
-
"fieldType": "DATETIME"
|
|
124
|
+
"fieldType": "DATETIME",
|
|
125
|
+
"searchLabel": "createdAt"
|
|
122
126
|
}
|
|
123
127
|
},
|
|
124
128
|
"type": [
|
|
@@ -21,13 +21,15 @@
|
|
|
21
21
|
"type": "enum",
|
|
22
22
|
"symbolDocs": {
|
|
23
23
|
"EMAIL": "Email target type.",
|
|
24
|
-
"SLACK": "Slack target type."
|
|
24
|
+
"SLACK": "Slack target type.",
|
|
25
|
+
"TEAMS": "Microsoft Teams target type."
|
|
25
26
|
},
|
|
26
27
|
"name": "NotificationSinkType",
|
|
27
28
|
"namespace": "com.linkedin.pegasus2avro.event.notification",
|
|
28
29
|
"symbols": [
|
|
29
30
|
"SLACK",
|
|
30
|
-
"EMAIL"
|
|
31
|
+
"EMAIL",
|
|
32
|
+
"TEAMS"
|
|
31
33
|
],
|
|
32
34
|
"doc": "A type of sink / platform to send a notification to."
|
|
33
35
|
}
|
|
@@ -93,6 +95,129 @@
|
|
|
93
95
|
"default": null,
|
|
94
96
|
"doc": "Email Notification Settings"
|
|
95
97
|
},
|
|
98
|
+
{
|
|
99
|
+
"type": [
|
|
100
|
+
"null",
|
|
101
|
+
{
|
|
102
|
+
"type": "record",
|
|
103
|
+
"name": "TeamsNotificationSettings",
|
|
104
|
+
"namespace": "com.linkedin.pegasus2avro.event.notification.settings",
|
|
105
|
+
"fields": [
|
|
106
|
+
{
|
|
107
|
+
"type": [
|
|
108
|
+
"null",
|
|
109
|
+
{
|
|
110
|
+
"type": "record",
|
|
111
|
+
"name": "TeamsUser",
|
|
112
|
+
"namespace": "com.linkedin.pegasus2avro.settings.global",
|
|
113
|
+
"fields": [
|
|
114
|
+
{
|
|
115
|
+
"type": [
|
|
116
|
+
"null",
|
|
117
|
+
"string"
|
|
118
|
+
],
|
|
119
|
+
"name": "teamsUserId",
|
|
120
|
+
"default": null,
|
|
121
|
+
"doc": "The Teams user ID (internal Teams identifier).\nThis is the primary identifier used for Teams messaging."
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"Searchable": {
|
|
125
|
+
"fieldType": "KEYWORD",
|
|
126
|
+
"queryByDefault": false
|
|
127
|
+
},
|
|
128
|
+
"type": [
|
|
129
|
+
"null",
|
|
130
|
+
"string"
|
|
131
|
+
],
|
|
132
|
+
"name": "azureUserId",
|
|
133
|
+
"default": null,
|
|
134
|
+
"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."
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"type": [
|
|
138
|
+
"null",
|
|
139
|
+
"string"
|
|
140
|
+
],
|
|
141
|
+
"name": "email",
|
|
142
|
+
"default": null,
|
|
143
|
+
"doc": "The user's email address (fallback identifier).\nUsed when other IDs are not available or for email-based user resolution."
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"type": [
|
|
147
|
+
"null",
|
|
148
|
+
"string"
|
|
149
|
+
],
|
|
150
|
+
"name": "displayName",
|
|
151
|
+
"default": null,
|
|
152
|
+
"doc": "The user's display name (cached value, may be stale).\nRetrieved from Microsoft Graph API and cached for performance."
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"type": [
|
|
156
|
+
"null",
|
|
157
|
+
"long"
|
|
158
|
+
],
|
|
159
|
+
"name": "lastUpdated",
|
|
160
|
+
"default": null,
|
|
161
|
+
"doc": "The timestamp when the cached display name was last updated.\nUsed for TTL-based cache invalidation (milliseconds since epoch)."
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
"doc": "Teams user information with cached display name and multiple ID support.\nFollows the same caching pattern as TeamsChannel for consistency."
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"name": "user",
|
|
168
|
+
"default": null,
|
|
169
|
+
"doc": "Optional structured user information with cached metadata.\nSupports both Azure AD user ID and Teams user ID with cached display name."
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"type": [
|
|
173
|
+
"null",
|
|
174
|
+
{
|
|
175
|
+
"type": "array",
|
|
176
|
+
"items": {
|
|
177
|
+
"type": "record",
|
|
178
|
+
"name": "TeamsChannel",
|
|
179
|
+
"namespace": "com.linkedin.pegasus2avro.settings.global",
|
|
180
|
+
"fields": [
|
|
181
|
+
{
|
|
182
|
+
"type": "string",
|
|
183
|
+
"name": "id",
|
|
184
|
+
"doc": "The Teams channel ID (internal Teams identifier)."
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"type": [
|
|
188
|
+
"null",
|
|
189
|
+
"string"
|
|
190
|
+
],
|
|
191
|
+
"name": "name",
|
|
192
|
+
"default": null,
|
|
193
|
+
"doc": "The Teams channel display name (cached value, may be stale)."
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"type": [
|
|
197
|
+
"null",
|
|
198
|
+
"long"
|
|
199
|
+
],
|
|
200
|
+
"name": "lastUpdated",
|
|
201
|
+
"default": null,
|
|
202
|
+
"doc": "The timestamp when the cached name was last updated.\nUsed for TTL-based cache invalidation."
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"doc": "Teams channel information with cached display name."
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
],
|
|
209
|
+
"name": "channels",
|
|
210
|
+
"default": null,
|
|
211
|
+
"doc": "Optional list of structured channels with cached metadata"
|
|
212
|
+
}
|
|
213
|
+
],
|
|
214
|
+
"doc": "Microsoft Teams Notification settings for an actor."
|
|
215
|
+
}
|
|
216
|
+
],
|
|
217
|
+
"name": "teamsSettings",
|
|
218
|
+
"default": null,
|
|
219
|
+
"doc": "Microsoft Teams Notification Settings"
|
|
220
|
+
},
|
|
96
221
|
{
|
|
97
222
|
"type": [
|
|
98
223
|
"null",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"type": "string",
|
|
55
55
|
"name": "pictureLink",
|
|
56
|
-
"default": "
|
|
56
|
+
"default": "assets/platforms/default_avatar.png",
|
|
57
57
|
"doc": "A URL which points to a picture which user wants to set as a profile photo"
|
|
58
58
|
},
|
|
59
59
|
{
|
|
@@ -43,7 +43,9 @@
|
|
|
43
43
|
"_entityName"
|
|
44
44
|
],
|
|
45
45
|
"fieldType": "WORD_GRAM",
|
|
46
|
-
"queryByDefault": true
|
|
46
|
+
"queryByDefault": true,
|
|
47
|
+
"searchLabel": "entityName",
|
|
48
|
+
"searchTier": 1
|
|
47
49
|
},
|
|
48
50
|
"type": [
|
|
49
51
|
"null",
|
|
@@ -56,7 +58,8 @@
|
|
|
56
58
|
{
|
|
57
59
|
"Searchable": {
|
|
58
60
|
"fieldType": "KEYWORD",
|
|
59
|
-
"queryByDefault": true
|
|
61
|
+
"queryByDefault": true,
|
|
62
|
+
"searchTier": 1
|
|
60
63
|
},
|
|
61
64
|
"type": [
|
|
62
65
|
"null",
|
|
@@ -178,6 +181,19 @@
|
|
|
178
181
|
"name": "system",
|
|
179
182
|
"default": false,
|
|
180
183
|
"doc": "Whether the corpUser is a system user."
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"Searchable": {
|
|
187
|
+
"fieldType": "BOOLEAN",
|
|
188
|
+
"queryByDefault": false
|
|
189
|
+
},
|
|
190
|
+
"type": [
|
|
191
|
+
"null",
|
|
192
|
+
"boolean"
|
|
193
|
+
],
|
|
194
|
+
"name": "isSupportUser",
|
|
195
|
+
"default": null,
|
|
196
|
+
"doc": "Whether the corpUser is a support user authenticated through the support OIDC flow."
|
|
181
197
|
}
|
|
182
198
|
],
|
|
183
199
|
"doc": "Linkedin corp user information"
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "corpUserInvitationStatus"
|
|
5
|
+
},
|
|
6
|
+
"name": "CorpUserInvitationStatus",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.identity",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"Searchable": {
|
|
11
|
+
"fieldType": "URN",
|
|
12
|
+
"hasValuesFieldName": "hasRole",
|
|
13
|
+
"queryByDefault": false
|
|
14
|
+
},
|
|
15
|
+
"java": {
|
|
16
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
17
|
+
},
|
|
18
|
+
"type": [
|
|
19
|
+
"null",
|
|
20
|
+
"string"
|
|
21
|
+
],
|
|
22
|
+
"name": "role",
|
|
23
|
+
"default": null,
|
|
24
|
+
"doc": "Role will only work in non-sso environments today.",
|
|
25
|
+
"Urn": "Urn"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"type": {
|
|
29
|
+
"type": "record",
|
|
30
|
+
"name": "AuditStamp",
|
|
31
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
32
|
+
"fields": [
|
|
33
|
+
{
|
|
34
|
+
"type": "long",
|
|
35
|
+
"name": "time",
|
|
36
|
+
"doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"java": {
|
|
40
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
41
|
+
},
|
|
42
|
+
"type": "string",
|
|
43
|
+
"name": "actor",
|
|
44
|
+
"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.",
|
|
45
|
+
"Urn": "Urn"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"java": {
|
|
49
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
50
|
+
},
|
|
51
|
+
"type": [
|
|
52
|
+
"null",
|
|
53
|
+
"string"
|
|
54
|
+
],
|
|
55
|
+
"name": "impersonator",
|
|
56
|
+
"default": null,
|
|
57
|
+
"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.",
|
|
58
|
+
"Urn": "Urn"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"type": [
|
|
62
|
+
"null",
|
|
63
|
+
"string"
|
|
64
|
+
],
|
|
65
|
+
"name": "message",
|
|
66
|
+
"default": null,
|
|
67
|
+
"doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"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."
|
|
71
|
+
},
|
|
72
|
+
"name": "created",
|
|
73
|
+
"doc": "Created Audit"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"Searchable": {
|
|
77
|
+
"fieldName": "invitationStatus",
|
|
78
|
+
"fieldType": "KEYWORD",
|
|
79
|
+
"queryByDefault": false
|
|
80
|
+
},
|
|
81
|
+
"type": {
|
|
82
|
+
"type": "enum",
|
|
83
|
+
"name": "InvitationStatus",
|
|
84
|
+
"namespace": "com.linkedin.pegasus2avro.identity",
|
|
85
|
+
"symbols": [
|
|
86
|
+
"SENT",
|
|
87
|
+
"ACCEPTED",
|
|
88
|
+
"REVOKED",
|
|
89
|
+
"SUGGESTION_DISMISSED"
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
"name": "status",
|
|
93
|
+
"doc": "The status of the invitation"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"type": "com.linkedin.pegasus2avro.common.AuditStamp",
|
|
97
|
+
"name": "lastUpdated",
|
|
98
|
+
"doc": "Last Status Change Audit"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"type": "string",
|
|
102
|
+
"name": "invitationToken",
|
|
103
|
+
"doc": "Unique token for the invitation URL - hashed via SecretService "
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
}
|
|
@@ -21,7 +21,10 @@
|
|
|
21
21
|
"testResults",
|
|
22
22
|
"subTypes",
|
|
23
23
|
"slackUserInfo",
|
|
24
|
-
"
|
|
24
|
+
"corpUserUsageFeatures",
|
|
25
|
+
"corpUserInvitationStatus",
|
|
26
|
+
"share",
|
|
27
|
+
"formNotifications"
|
|
25
28
|
],
|
|
26
29
|
"entityDoc": "CorpUser represents an identity of a person (or an account) in the enterprise."
|
|
27
30
|
},
|