acryl-datahub-cloud 0.3.12rc1__py3-none-any.whl → 0.3.12rc4__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 +559 -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 +24861 -24050
- 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 +40 -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 +29 -0
- acryl_datahub_cloud/{_sdk_extras → sdk}/assertion.py +501 -193
- acryl_datahub_cloud/sdk/assertion_input/__init__.py +0 -0
- acryl_datahub_cloud/{_sdk_extras → sdk/assertion_input}/assertion_input.py +733 -189
- acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +261 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +947 -0
- acryl_datahub_cloud/sdk/assertions_client.py +1639 -0
- acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
- acryl_datahub_cloud/{_sdk_extras → sdk}/entities/assertion.py +5 -2
- acryl_datahub_cloud/{_sdk_extras → sdk}/subscription_client.py +146 -33
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc4.dist-info}/METADATA +48 -43
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc4.dist-info}/RECORD +72 -54
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc4.dist-info}/entry_points.txt +1 -0
- acryl_datahub_cloud/_sdk_extras/__init__.py +0 -19
- acryl_datahub_cloud/_sdk_extras/assertions_client.py +0 -717
- /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.12rc4.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc4.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
|
+
}
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
{
|
|
54
54
|
"Searchable": {
|
|
55
55
|
"/*": {
|
|
56
|
+
"addToFilters": true,
|
|
56
57
|
"fieldType": "URN",
|
|
57
58
|
"hasValuesFieldName": "hasAsserteeDomain"
|
|
58
59
|
}
|
|
@@ -72,6 +73,7 @@
|
|
|
72
73
|
{
|
|
73
74
|
"Searchable": {
|
|
74
75
|
"/*": {
|
|
76
|
+
"addToFilters": true,
|
|
75
77
|
"fieldType": "URN",
|
|
76
78
|
"hasValuesFieldName": "hasAsserteeDataProduct"
|
|
77
79
|
}
|
|
@@ -91,6 +93,7 @@
|
|
|
91
93
|
{
|
|
92
94
|
"Searchable": {
|
|
93
95
|
"/*": {
|
|
96
|
+
"addToFilters": true,
|
|
94
97
|
"fieldType": "URN",
|
|
95
98
|
"hasValuesFieldName": "hasAsserteeTags"
|
|
96
99
|
}
|
|
@@ -109,6 +112,7 @@
|
|
|
109
112
|
{
|
|
110
113
|
"Searchable": {
|
|
111
114
|
"/*": {
|
|
115
|
+
"addToFilters": true,
|
|
112
116
|
"fieldType": "URN",
|
|
113
117
|
"hasValuesFieldName": "hasAsserteeGlossaryTerms"
|
|
114
118
|
}
|
|
@@ -128,6 +132,7 @@
|
|
|
128
132
|
{
|
|
129
133
|
"Searchable": {
|
|
130
134
|
"/*": {
|
|
135
|
+
"addToFilters": true,
|
|
131
136
|
"fieldType": "URN",
|
|
132
137
|
"hasValuesFieldName": "hasAsserteeOwners"
|
|
133
138
|
}
|
|
@@ -146,6 +151,7 @@
|
|
|
146
151
|
},
|
|
147
152
|
{
|
|
148
153
|
"Searchable": {
|
|
154
|
+
"addToFilters": true,
|
|
149
155
|
"fieldType": "URN"
|
|
150
156
|
},
|
|
151
157
|
"TimeseriesField": {},
|
|
@@ -163,6 +169,7 @@
|
|
|
163
169
|
},
|
|
164
170
|
{
|
|
165
171
|
"Searchable": {
|
|
172
|
+
"addToFilters": true,
|
|
166
173
|
"fieldType": "URN"
|
|
167
174
|
},
|
|
168
175
|
"TimeseriesField": {},
|
|
@@ -181,6 +188,7 @@
|
|
|
181
188
|
{
|
|
182
189
|
"Searchable": {
|
|
183
190
|
"/*": {
|
|
191
|
+
"addToFilters": true,
|
|
184
192
|
"fieldType": "URN",
|
|
185
193
|
"hasValuesFieldName": "hasAsserteeSchemaFieldGlossaryTerms"
|
|
186
194
|
}
|
|
@@ -200,6 +208,7 @@
|
|
|
200
208
|
{
|
|
201
209
|
"Searchable": {
|
|
202
210
|
"/*": {
|
|
211
|
+
"addToFilters": true,
|
|
203
212
|
"fieldType": "URN",
|
|
204
213
|
"hasValuesFieldName": "hasAsserteeSchemaFieldTags"
|
|
205
214
|
}
|
|
@@ -343,7 +352,10 @@
|
|
|
343
352
|
"doc": "URL where the reference exist"
|
|
344
353
|
},
|
|
345
354
|
{
|
|
346
|
-
"Searchable": {
|
|
355
|
+
"Searchable": {
|
|
356
|
+
"fieldName": "assertionType",
|
|
357
|
+
"fieldType": "KEYWORD"
|
|
358
|
+
},
|
|
347
359
|
"type": "com.linkedin.pegasus2avro.assertion.AssertionType",
|
|
348
360
|
"name": "type",
|
|
349
361
|
"doc": "Type of assertion."
|
|
@@ -650,7 +662,10 @@
|
|
|
650
662
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
651
663
|
"fields": [
|
|
652
664
|
{
|
|
653
|
-
"Searchable": {
|
|
665
|
+
"Searchable": {
|
|
666
|
+
"fieldName": "freshnessAssertionType",
|
|
667
|
+
"fieldType": "KEYWORD"
|
|
668
|
+
},
|
|
654
669
|
"type": {
|
|
655
670
|
"type": "enum",
|
|
656
671
|
"symbolDocs": {
|
|
@@ -1037,7 +1052,10 @@
|
|
|
1037
1052
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1038
1053
|
"fields": [
|
|
1039
1054
|
{
|
|
1040
|
-
"Searchable": {
|
|
1055
|
+
"Searchable": {
|
|
1056
|
+
"fieldName": "volumeAssertionType",
|
|
1057
|
+
"fieldType": "KEYWORD"
|
|
1058
|
+
},
|
|
1041
1059
|
"type": {
|
|
1042
1060
|
"type": "enum",
|
|
1043
1061
|
"symbolDocs": {
|
|
@@ -1330,7 +1348,10 @@
|
|
|
1330
1348
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1331
1349
|
"fields": [
|
|
1332
1350
|
{
|
|
1333
|
-
"Searchable": {
|
|
1351
|
+
"Searchable": {
|
|
1352
|
+
"fieldName": "sqlAssertionType",
|
|
1353
|
+
"fieldType": "KEYWORD"
|
|
1354
|
+
},
|
|
1334
1355
|
"type": {
|
|
1335
1356
|
"type": "enum",
|
|
1336
1357
|
"symbolDocs": {
|
|
@@ -1409,7 +1430,10 @@
|
|
|
1409
1430
|
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
1410
1431
|
"fields": [
|
|
1411
1432
|
{
|
|
1412
|
-
"Searchable": {
|
|
1433
|
+
"Searchable": {
|
|
1434
|
+
"fieldName": "fieldAssertionType",
|
|
1435
|
+
"fieldType": "KEYWORD"
|
|
1436
|
+
},
|
|
1413
1437
|
"type": {
|
|
1414
1438
|
"type": "enum",
|
|
1415
1439
|
"symbolDocs": {
|
|
@@ -2796,7 +2820,8 @@
|
|
|
2796
2820
|
"fields": [
|
|
2797
2821
|
{
|
|
2798
2822
|
"Searchable": {
|
|
2799
|
-
"fieldName": "customType"
|
|
2823
|
+
"fieldName": "customType",
|
|
2824
|
+
"fieldType": "KEYWORD"
|
|
2800
2825
|
},
|
|
2801
2826
|
"type": "string",
|
|
2802
2827
|
"name": "type",
|
|
@@ -2923,6 +2948,11 @@
|
|
|
2923
2948
|
"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
2949
|
},
|
|
2925
2950
|
{
|
|
2951
|
+
"Searchable": {
|
|
2952
|
+
"fieldName": "assertionDescription",
|
|
2953
|
+
"fieldType": "TEXT",
|
|
2954
|
+
"hasValuesFieldName": "hasAssertionDescription"
|
|
2955
|
+
},
|
|
2926
2956
|
"type": [
|
|
2927
2957
|
"null",
|
|
2928
2958
|
"string"
|
|
@@ -2980,7 +3010,10 @@
|
|
|
2980
3010
|
"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
3011
|
},
|
|
2982
3012
|
{
|
|
2983
|
-
"Searchable": {
|
|
3013
|
+
"Searchable": {
|
|
3014
|
+
"fieldName": "lastResultType",
|
|
3015
|
+
"fieldType": "KEYWORD"
|
|
3016
|
+
},
|
|
2984
3017
|
"TimeseriesField": {},
|
|
2985
3018
|
"type": {
|
|
2986
3019
|
"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."
|