acryl-datahub-cloud 0.3.12rc1__py3-none-any.whl → 0.3.12rc3__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/datahub_forms_notifications/forms_notifications_source.py +524 -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_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 +1842 -1786
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +4 -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 +24747 -23945
- acryl_datahub_cloud/metadata/schema_classes.py +1031 -631
- 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 +31 -7
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +27 -6
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +31 -7
- 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/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 +2 -1
- acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc +69 -0
- acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +3 -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/MonitorInfo.avsc +27 -6
- acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +1 -0
- acryl_datahub_cloud/notifications/__init__.py +0 -0
- acryl_datahub_cloud/notifications/notification_recipient_builder.py +399 -0
- acryl_datahub_cloud/sdk/__init__.py +25 -0
- acryl_datahub_cloud/{_sdk_extras → sdk}/assertion.py +202 -45
- acryl_datahub_cloud/{_sdk_extras → sdk}/assertion_input.py +344 -83
- acryl_datahub_cloud/{_sdk_extras → sdk}/assertions_client.py +635 -199
- acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
- acryl_datahub_cloud/{_sdk_extras → sdk}/entities/assertion.py +1 -1
- acryl_datahub_cloud/{_sdk_extras → sdk}/subscription_client.py +146 -33
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/METADATA +48 -43
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/RECORD +69 -54
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/entry_points.txt +1 -0
- acryl_datahub_cloud/_sdk_extras/__init__.py +0 -19
- /acryl_datahub_cloud/{_sdk_extras/entities → datahub_forms_notifications}/__init__.py +0 -0
- /acryl_datahub_cloud/{_sdk_extras → sdk}/entities/monitor.py +0 -0
- /acryl_datahub_cloud/{_sdk_extras → sdk}/entities/subscription.py +0 -0
- /acryl_datahub_cloud/{_sdk_extras → sdk}/errors.py +0 -0
- /acryl_datahub_cloud/{_sdk_extras → sdk}/resolver_client.py +0 -0
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc3.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
|
+
}
|
|
@@ -343,7 +343,10 @@
|
|
|
343
343
|
"doc": "URL where the reference exist"
|
|
344
344
|
},
|
|
345
345
|
{
|
|
346
|
-
"Searchable": {
|
|
346
|
+
"Searchable": {
|
|
347
|
+
"fieldName": "assertionType",
|
|
348
|
+
"fieldType": "KEYWORD"
|
|
349
|
+
},
|
|
347
350
|
"type": "com.linkedin.pegasus2avro.assertion.AssertionType",
|
|
348
351
|
"name": "type",
|
|
349
352
|
"doc": "Type of assertion."
|
|
@@ -650,7 +653,10 @@
|
|
|
650
653
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
651
654
|
"fields": [
|
|
652
655
|
{
|
|
653
|
-
"Searchable": {
|
|
656
|
+
"Searchable": {
|
|
657
|
+
"fieldName": "freshnessAssertionType",
|
|
658
|
+
"fieldType": "KEYWORD"
|
|
659
|
+
},
|
|
654
660
|
"type": {
|
|
655
661
|
"type": "enum",
|
|
656
662
|
"symbolDocs": {
|
|
@@ -1037,7 +1043,10 @@
|
|
|
1037
1043
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1038
1044
|
"fields": [
|
|
1039
1045
|
{
|
|
1040
|
-
"Searchable": {
|
|
1046
|
+
"Searchable": {
|
|
1047
|
+
"fieldName": "volumeAssertionType",
|
|
1048
|
+
"fieldType": "KEYWORD"
|
|
1049
|
+
},
|
|
1041
1050
|
"type": {
|
|
1042
1051
|
"type": "enum",
|
|
1043
1052
|
"symbolDocs": {
|
|
@@ -1330,7 +1339,10 @@
|
|
|
1330
1339
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1331
1340
|
"fields": [
|
|
1332
1341
|
{
|
|
1333
|
-
"Searchable": {
|
|
1342
|
+
"Searchable": {
|
|
1343
|
+
"fieldName": "sqlAssertionType",
|
|
1344
|
+
"fieldType": "KEYWORD"
|
|
1345
|
+
},
|
|
1334
1346
|
"type": {
|
|
1335
1347
|
"type": "enum",
|
|
1336
1348
|
"symbolDocs": {
|
|
@@ -1409,7 +1421,10 @@
|
|
|
1409
1421
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1410
1422
|
"fields": [
|
|
1411
1423
|
{
|
|
1412
|
-
"Searchable": {
|
|
1424
|
+
"Searchable": {
|
|
1425
|
+
"fieldName": "fieldAssertionType",
|
|
1426
|
+
"fieldType": "KEYWORD"
|
|
1427
|
+
},
|
|
1413
1428
|
"type": {
|
|
1414
1429
|
"type": "enum",
|
|
1415
1430
|
"symbolDocs": {
|
|
@@ -2796,7 +2811,8 @@
|
|
|
2796
2811
|
"fields": [
|
|
2797
2812
|
{
|
|
2798
2813
|
"Searchable": {
|
|
2799
|
-
"fieldName": "customType"
|
|
2814
|
+
"fieldName": "customType",
|
|
2815
|
+
"fieldType": "KEYWORD"
|
|
2800
2816
|
},
|
|
2801
2817
|
"type": "string",
|
|
2802
2818
|
"name": "type",
|
|
@@ -2923,6 +2939,11 @@
|
|
|
2923
2939
|
"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."
|
|
2924
2940
|
},
|
|
2925
2941
|
{
|
|
2942
|
+
"Searchable": {
|
|
2943
|
+
"fieldName": "assertionDescription",
|
|
2944
|
+
"fieldType": "TEXT",
|
|
2945
|
+
"hasValuesFieldName": "hasAssertionDescription"
|
|
2946
|
+
},
|
|
2926
2947
|
"type": [
|
|
2927
2948
|
"null",
|
|
2928
2949
|
"string"
|
|
@@ -2980,7 +3001,10 @@
|
|
|
2980
3001
|
"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."
|
|
2981
3002
|
},
|
|
2982
3003
|
{
|
|
2983
|
-
"Searchable": {
|
|
3004
|
+
"Searchable": {
|
|
3005
|
+
"fieldName": "lastResultType",
|
|
3006
|
+
"fieldType": "KEYWORD"
|
|
3007
|
+
},
|
|
2984
3008
|
"TimeseriesField": {},
|
|
2985
3009
|
"type": {
|
|
2986
3010
|
"type": "enum",
|
|
@@ -38,7 +38,10 @@
|
|
|
38
38
|
"doc": "URL where the reference exist"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
|
-
"Searchable": {
|
|
41
|
+
"Searchable": {
|
|
42
|
+
"fieldName": "assertionType",
|
|
43
|
+
"fieldType": "KEYWORD"
|
|
44
|
+
},
|
|
42
45
|
"type": {
|
|
43
46
|
"type": "enum",
|
|
44
47
|
"symbolDocs": {
|
|
@@ -368,7 +371,10 @@
|
|
|
368
371
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
369
372
|
"fields": [
|
|
370
373
|
{
|
|
371
|
-
"Searchable": {
|
|
374
|
+
"Searchable": {
|
|
375
|
+
"fieldName": "freshnessAssertionType",
|
|
376
|
+
"fieldType": "KEYWORD"
|
|
377
|
+
},
|
|
372
378
|
"type": {
|
|
373
379
|
"type": "enum",
|
|
374
380
|
"symbolDocs": {
|
|
@@ -755,7 +761,10 @@
|
|
|
755
761
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
756
762
|
"fields": [
|
|
757
763
|
{
|
|
758
|
-
"Searchable": {
|
|
764
|
+
"Searchable": {
|
|
765
|
+
"fieldName": "volumeAssertionType",
|
|
766
|
+
"fieldType": "KEYWORD"
|
|
767
|
+
},
|
|
759
768
|
"type": {
|
|
760
769
|
"type": "enum",
|
|
761
770
|
"symbolDocs": {
|
|
@@ -1048,7 +1057,10 @@
|
|
|
1048
1057
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1049
1058
|
"fields": [
|
|
1050
1059
|
{
|
|
1051
|
-
"Searchable": {
|
|
1060
|
+
"Searchable": {
|
|
1061
|
+
"fieldName": "sqlAssertionType",
|
|
1062
|
+
"fieldType": "KEYWORD"
|
|
1063
|
+
},
|
|
1052
1064
|
"type": {
|
|
1053
1065
|
"type": "enum",
|
|
1054
1066
|
"symbolDocs": {
|
|
@@ -1127,7 +1139,10 @@
|
|
|
1127
1139
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1128
1140
|
"fields": [
|
|
1129
1141
|
{
|
|
1130
|
-
"Searchable": {
|
|
1142
|
+
"Searchable": {
|
|
1143
|
+
"fieldName": "fieldAssertionType",
|
|
1144
|
+
"fieldType": "KEYWORD"
|
|
1145
|
+
},
|
|
1131
1146
|
"type": {
|
|
1132
1147
|
"type": "enum",
|
|
1133
1148
|
"symbolDocs": {
|
|
@@ -2514,7 +2529,8 @@
|
|
|
2514
2529
|
"fields": [
|
|
2515
2530
|
{
|
|
2516
2531
|
"Searchable": {
|
|
2517
|
-
"fieldName": "customType"
|
|
2532
|
+
"fieldName": "customType",
|
|
2533
|
+
"fieldType": "KEYWORD"
|
|
2518
2534
|
},
|
|
2519
2535
|
"type": "string",
|
|
2520
2536
|
"name": "type",
|
|
@@ -2641,6 +2657,11 @@
|
|
|
2641
2657
|
"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."
|
|
2642
2658
|
},
|
|
2643
2659
|
{
|
|
2660
|
+
"Searchable": {
|
|
2661
|
+
"fieldName": "assertionDescription",
|
|
2662
|
+
"fieldType": "TEXT",
|
|
2663
|
+
"hasValuesFieldName": "hasAssertionDescription"
|
|
2664
|
+
},
|
|
2644
2665
|
"type": [
|
|
2645
2666
|
"null",
|
|
2646
2667
|
"string"
|
|
@@ -129,7 +129,10 @@
|
|
|
129
129
|
"doc": "URL where the reference exist"
|
|
130
130
|
},
|
|
131
131
|
{
|
|
132
|
-
"Searchable": {
|
|
132
|
+
"Searchable": {
|
|
133
|
+
"fieldName": "assertionType",
|
|
134
|
+
"fieldType": "KEYWORD"
|
|
135
|
+
},
|
|
133
136
|
"type": {
|
|
134
137
|
"type": "enum",
|
|
135
138
|
"symbolDocs": {
|
|
@@ -459,7 +462,10 @@
|
|
|
459
462
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
460
463
|
"fields": [
|
|
461
464
|
{
|
|
462
|
-
"Searchable": {
|
|
465
|
+
"Searchable": {
|
|
466
|
+
"fieldName": "freshnessAssertionType",
|
|
467
|
+
"fieldType": "KEYWORD"
|
|
468
|
+
},
|
|
463
469
|
"type": {
|
|
464
470
|
"type": "enum",
|
|
465
471
|
"symbolDocs": {
|
|
@@ -846,7 +852,10 @@
|
|
|
846
852
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
847
853
|
"fields": [
|
|
848
854
|
{
|
|
849
|
-
"Searchable": {
|
|
855
|
+
"Searchable": {
|
|
856
|
+
"fieldName": "volumeAssertionType",
|
|
857
|
+
"fieldType": "KEYWORD"
|
|
858
|
+
},
|
|
850
859
|
"type": {
|
|
851
860
|
"type": "enum",
|
|
852
861
|
"symbolDocs": {
|
|
@@ -1139,7 +1148,10 @@
|
|
|
1139
1148
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1140
1149
|
"fields": [
|
|
1141
1150
|
{
|
|
1142
|
-
"Searchable": {
|
|
1151
|
+
"Searchable": {
|
|
1152
|
+
"fieldName": "sqlAssertionType",
|
|
1153
|
+
"fieldType": "KEYWORD"
|
|
1154
|
+
},
|
|
1143
1155
|
"type": {
|
|
1144
1156
|
"type": "enum",
|
|
1145
1157
|
"symbolDocs": {
|
|
@@ -1218,7 +1230,10 @@
|
|
|
1218
1230
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1219
1231
|
"fields": [
|
|
1220
1232
|
{
|
|
1221
|
-
"Searchable": {
|
|
1233
|
+
"Searchable": {
|
|
1234
|
+
"fieldName": "fieldAssertionType",
|
|
1235
|
+
"fieldType": "KEYWORD"
|
|
1236
|
+
},
|
|
1222
1237
|
"type": {
|
|
1223
1238
|
"type": "enum",
|
|
1224
1239
|
"symbolDocs": {
|
|
@@ -2605,7 +2620,8 @@
|
|
|
2605
2620
|
"fields": [
|
|
2606
2621
|
{
|
|
2607
2622
|
"Searchable": {
|
|
2608
|
-
"fieldName": "customType"
|
|
2623
|
+
"fieldName": "customType",
|
|
2624
|
+
"fieldType": "KEYWORD"
|
|
2609
2625
|
},
|
|
2610
2626
|
"type": "string",
|
|
2611
2627
|
"name": "type",
|
|
@@ -2732,6 +2748,11 @@
|
|
|
2732
2748
|
"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."
|
|
2733
2749
|
},
|
|
2734
2750
|
{
|
|
2751
|
+
"Searchable": {
|
|
2752
|
+
"fieldName": "assertionDescription",
|
|
2753
|
+
"fieldType": "TEXT",
|
|
2754
|
+
"hasValuesFieldName": "hasAssertionDescription"
|
|
2755
|
+
},
|
|
2735
2756
|
"type": [
|
|
2736
2757
|
"null",
|
|
2737
2758
|
"string"
|
|
@@ -2789,7 +2810,10 @@
|
|
|
2789
2810
|
"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."
|
|
2790
2811
|
},
|
|
2791
2812
|
{
|
|
2792
|
-
"Searchable": {
|
|
2813
|
+
"Searchable": {
|
|
2814
|
+
"fieldName": "lastResultType",
|
|
2815
|
+
"fieldType": "KEYWORD"
|
|
2816
|
+
},
|
|
2793
2817
|
"TimeseriesField": {},
|
|
2794
2818
|
"type": {
|
|
2795
2819
|
"type": "enum",
|
|
@@ -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": {
|
|
@@ -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": "policyConstraints",
|
|
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."
|
|
@@ -110,13 +110,15 @@
|
|
|
110
110
|
"type": "enum",
|
|
111
111
|
"symbolDocs": {
|
|
112
112
|
"EQUALS": "Whether the field matches the value",
|
|
113
|
+
"NOT_EQUALS": "Whether the field does not match the value",
|
|
113
114
|
"STARTS_WITH": "Whether the field value starts with the value"
|
|
114
115
|
},
|
|
115
116
|
"name": "PolicyMatchCondition",
|
|
116
117
|
"namespace": "com.linkedin.pegasus2avro.policy",
|
|
117
118
|
"symbols": [
|
|
118
119
|
"EQUALS",
|
|
119
|
-
"STARTS_WITH"
|
|
120
|
+
"STARTS_WITH",
|
|
121
|
+
"NOT_EQUALS"
|
|
120
122
|
],
|
|
121
123
|
"doc": "The matching condition in a filter criterion"
|
|
122
124
|
},
|
|
@@ -138,6 +140,15 @@
|
|
|
138
140
|
"name": "filter",
|
|
139
141
|
"default": null,
|
|
140
142
|
"doc": "Filter to apply privileges to"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"type": [
|
|
146
|
+
"null",
|
|
147
|
+
"com.linkedin.pegasus2avro.policy.PolicyMatchFilter"
|
|
148
|
+
],
|
|
149
|
+
"name": "policyConstraints",
|
|
150
|
+
"default": null,
|
|
151
|
+
"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"
|
|
141
152
|
}
|
|
142
153
|
],
|
|
143
154
|
"doc": "Information used to filter DataHub resource."
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "formAssignmentStatus"
|
|
5
|
+
},
|
|
6
|
+
"name": "FormAssignmentStatus",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.form",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"type": {
|
|
11
|
+
"type": "enum",
|
|
12
|
+
"symbolDocs": {
|
|
13
|
+
"COMPLETE": "Assets assignment is complete",
|
|
14
|
+
"IN_PROGRESS": "Assets are currently being assigned"
|
|
15
|
+
},
|
|
16
|
+
"name": "AssignmentStatus",
|
|
17
|
+
"namespace": "com.linkedin.pegasus2avro.form",
|
|
18
|
+
"symbols": [
|
|
19
|
+
"IN_PROGRESS",
|
|
20
|
+
"COMPLETE"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"name": "status",
|
|
24
|
+
"doc": "Notification settings for a form"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"type": [
|
|
28
|
+
"null",
|
|
29
|
+
"long"
|
|
30
|
+
],
|
|
31
|
+
"name": "timestamp",
|
|
32
|
+
"default": null,
|
|
33
|
+
"doc": "Timestamp this aspect was last updated at"
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}
|
|
@@ -398,6 +398,12 @@
|
|
|
398
398
|
"doc": "Who the form is assigned to, e.g. who should see the form when visiting the entity page or governance center"
|
|
399
399
|
},
|
|
400
400
|
{
|
|
401
|
+
"Searchable": {
|
|
402
|
+
"/state": {
|
|
403
|
+
"fieldName": "formStatus",
|
|
404
|
+
"fieldType": "KEYWORD"
|
|
405
|
+
}
|
|
406
|
+
},
|
|
401
407
|
"type": {
|
|
402
408
|
"type": "record",
|
|
403
409
|
"name": "FormStatus",
|