acryl-datahub-cloud 0.3.11.1rc7__py3-none-any.whl → 0.3.12__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/action_request/action_request_owner_source.py +36 -6
- 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_form_reporting.py +29 -13
- acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +48 -8
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +49 -40
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +2011 -1955
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +2 -2
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +8 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notification/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +2 -0
- acryl_datahub_cloud/metadata/schema.avsc +25413 -25425
- acryl_datahub_cloud/metadata/schema_classes.py +1316 -791
- acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc +31 -0
- acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc +72 -0
- acryl_datahub_cloud/metadata/schemas/Applications.avsc +38 -0
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +223 -202
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +36 -7
- acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +40 -8
- acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +2 -2
- acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +14 -0
- 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/CorpGroupKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +1 -0
- 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 +22 -0
- acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +21 -9
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +39 -10
- acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/Operation.avsc +17 -0
- acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc +2 -1
- 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 +39 -0
- acryl_datahub_cloud/sdk/assertion/__init__.py +0 -0
- acryl_datahub_cloud/sdk/assertion/assertion_base.py +1467 -0
- acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py +224 -0
- acryl_datahub_cloud/sdk/assertion/types.py +20 -0
- acryl_datahub_cloud/sdk/assertion_input/__init__.py +0 -0
- acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +1648 -0
- acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +258 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +914 -0
- acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +272 -0
- acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py +648 -0
- acryl_datahub_cloud/sdk/assertions_client.py +3206 -0
- acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
- acryl_datahub_cloud/sdk/entities/assertion.py +432 -0
- acryl_datahub_cloud/sdk/entities/monitor.py +291 -0
- acryl_datahub_cloud/sdk/entities/subscription.py +84 -0
- acryl_datahub_cloud/sdk/errors.py +34 -0
- acryl_datahub_cloud/sdk/resolver_client.py +39 -0
- acryl_datahub_cloud/sdk/subscription_client.py +714 -0
- {acryl_datahub_cloud-0.3.11.1rc7.dist-info → acryl_datahub_cloud-0.3.12.dist-info}/METADATA +47 -42
- {acryl_datahub_cloud-0.3.11.1rc7.dist-info → acryl_datahub_cloud-0.3.12.dist-info}/RECORD +91 -58
- {acryl_datahub_cloud-0.3.11.1rc7.dist-info → acryl_datahub_cloud-0.3.12.dist-info}/WHEEL +1 -1
- {acryl_datahub_cloud-0.3.11.1rc7.dist-info → acryl_datahub_cloud-0.3.12.dist-info}/entry_points.txt +1 -0
- acryl_datahub_cloud/_sdk_extras/__init__.py +0 -4
- acryl_datahub_cloud/_sdk_extras/assertion.py +0 -15
- acryl_datahub_cloud/_sdk_extras/assertions_client.py +0 -23
- {acryl_datahub_cloud-0.3.11.1rc7.dist-info → acryl_datahub_cloud-0.3.12.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "applicationKey",
|
|
5
|
+
"keyForEntity": "application",
|
|
6
|
+
"entityCategory": "core",
|
|
7
|
+
"entityAspects": [
|
|
8
|
+
"applicationProperties",
|
|
9
|
+
"ownership",
|
|
10
|
+
"glossaryTerms",
|
|
11
|
+
"globalTags",
|
|
12
|
+
"domains",
|
|
13
|
+
"institutionalMemory",
|
|
14
|
+
"status",
|
|
15
|
+
"structuredProperties",
|
|
16
|
+
"forms",
|
|
17
|
+
"testResults",
|
|
18
|
+
"subTypes"
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
"name": "ApplicationKey",
|
|
22
|
+
"namespace": "com.linkedin.pegasus2avro.application",
|
|
23
|
+
"fields": [
|
|
24
|
+
{
|
|
25
|
+
"type": "string",
|
|
26
|
+
"name": "id",
|
|
27
|
+
"doc": "A unique id for the Application."
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"doc": "Key for a Query"
|
|
31
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "applicationProperties"
|
|
5
|
+
},
|
|
6
|
+
"name": "ApplicationProperties",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.application",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"Searchable": {
|
|
11
|
+
"/*": {
|
|
12
|
+
"fieldType": "TEXT",
|
|
13
|
+
"queryByDefault": true
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"type": {
|
|
17
|
+
"type": "map",
|
|
18
|
+
"values": "string"
|
|
19
|
+
},
|
|
20
|
+
"name": "customProperties",
|
|
21
|
+
"default": {},
|
|
22
|
+
"doc": "Custom property bag."
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"Searchable": {
|
|
26
|
+
"fieldType": "KEYWORD"
|
|
27
|
+
},
|
|
28
|
+
"java": {
|
|
29
|
+
"class": "com.linkedin.pegasus2avro.common.url.Url",
|
|
30
|
+
"coercerClass": "com.linkedin.pegasus2avro.common.url.UrlCoercer"
|
|
31
|
+
},
|
|
32
|
+
"type": [
|
|
33
|
+
"null",
|
|
34
|
+
"string"
|
|
35
|
+
],
|
|
36
|
+
"name": "externalUrl",
|
|
37
|
+
"default": null,
|
|
38
|
+
"doc": "URL where the reference exist"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"Searchable": {
|
|
42
|
+
"boostScore": 10.0,
|
|
43
|
+
"enableAutocomplete": true,
|
|
44
|
+
"fieldNameAliases": [
|
|
45
|
+
"_entityName"
|
|
46
|
+
],
|
|
47
|
+
"fieldType": "WORD_GRAM"
|
|
48
|
+
},
|
|
49
|
+
"type": [
|
|
50
|
+
"null",
|
|
51
|
+
"string"
|
|
52
|
+
],
|
|
53
|
+
"name": "name",
|
|
54
|
+
"default": null,
|
|
55
|
+
"doc": "Display name of the Application"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"Searchable": {
|
|
59
|
+
"fieldType": "TEXT",
|
|
60
|
+
"hasValuesFieldName": "hasDescription"
|
|
61
|
+
},
|
|
62
|
+
"type": [
|
|
63
|
+
"null",
|
|
64
|
+
"string"
|
|
65
|
+
],
|
|
66
|
+
"name": "description",
|
|
67
|
+
"default": null,
|
|
68
|
+
"doc": "Documentation of the application"
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"doc": "The main properties of an Application"
|
|
72
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "applications"
|
|
5
|
+
},
|
|
6
|
+
"name": "Applications",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.application",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"Relationship": {
|
|
11
|
+
"/*": {
|
|
12
|
+
"entityTypes": [
|
|
13
|
+
"application"
|
|
14
|
+
],
|
|
15
|
+
"name": "AssociatedWith"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"Searchable": {
|
|
19
|
+
"/*": {
|
|
20
|
+
"addToFilters": true,
|
|
21
|
+
"fieldName": "applications",
|
|
22
|
+
"fieldType": "URN",
|
|
23
|
+
"filterNameOverride": "Application",
|
|
24
|
+
"hasValuesFieldName": "hasApplication"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"type": {
|
|
28
|
+
"type": "array",
|
|
29
|
+
"items": "string"
|
|
30
|
+
},
|
|
31
|
+
"name": "applications",
|
|
32
|
+
"doc": "The Applications attached to an Asset",
|
|
33
|
+
"Urn": "Urn",
|
|
34
|
+
"urn_is_array": true
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"doc": "Links from an Asset to its Applications"
|
|
38
|
+
}
|