acryl-datahub-cloud 0.3.8.3rc1__py3-none-any.whl → 0.3.9__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/action_request/__init__.py +0 -0
- acryl_datahub_cloud/action_request/action_request_owner_source.py +174 -0
- acryl_datahub_cloud/api/__init__.py +1 -1
- acryl_datahub_cloud/api/client.py +2 -2
- acryl_datahub_cloud/datahub_reporting/datahub_dataset.py +6 -6
- acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +69 -35
- acryl_datahub_cloud/datahub_reporting/extract_sql.py +4 -4
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_patch_builder.py +21 -21
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +14 -13
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +1130 -484
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionrequest/__init__.py +6 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/dataplatforminstance/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/dataset/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executorglobalconfig/__init__.py +15 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executorpool/__init__.py +4 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +4 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metric/__init__.py +29 -0
- acryl_datahub_cloud/metadata/schema.avsc +839 -49
- acryl_datahub_cloud/metadata/schema_classes.py +1286 -63
- acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +422 -12
- acryl_datahub_cloud/metadata/schemas/ActionRequestStatus.avsc +12 -0
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +5 -3
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +5 -3
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +5 -3
- acryl_datahub_cloud/metadata/schemas/BusinessAttributeInfo.avsc +6 -2
- acryl_datahub_cloud/metadata/schemas/BusinessAttributes.avsc +6 -0
- acryl_datahub_cloud/metadata/schemas/ChartInfo.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/DataHubActionInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/DataHubConnectionKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceInfo.avsc +9 -4
- acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeDefinition.avsc +185 -0
- acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeEvent.avsc +184 -0
- acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeKey.avsc +22 -0
- acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +4 -4
- acryl_datahub_cloud/metadata/schemas/DataPlatformInstanceKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataProcessInstanceInput.avsc +132 -2
- acryl_datahub_cloud/metadata/schemas/DataProcessInstanceOutput.avsc +131 -1
- acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +14 -13
- acryl_datahub_cloud/metadata/schemas/EditableSchemaMetadata.avsc +6 -2
- acryl_datahub_cloud/metadata/schemas/ExecutionRequestInput.avsc +6 -1
- acryl_datahub_cloud/metadata/schemas/ExecutionRequestSignal.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +5 -0
- acryl_datahub_cloud/metadata/schemas/GlossaryTerms.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/IcebergCatalogInfo.avsc +28 -0
- acryl_datahub_cloud/metadata/schemas/IcebergWarehouseInfo.avsc +96 -0
- acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/InputFields.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +399 -176
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +6 -4
- acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/Operation.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorGlobalConfigKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolGlobalConfig.avsc +16 -0
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolInfo.avsc +85 -0
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorStatus.avsc +5 -5
- acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +2 -2
- acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc +18 -0
- acryl_datahub_cloud/metadata/schemas/VersionSetProperties.avsc +5 -0
- {acryl_datahub_cloud-0.3.8.3rc1.dist-info → acryl_datahub_cloud-0.3.9.dist-info}/METADATA +35 -35
- {acryl_datahub_cloud-0.3.8.3rc1.dist-info → acryl_datahub_cloud-0.3.9.dist-info}/RECORD +78 -68
- {acryl_datahub_cloud-0.3.8.3rc1.dist-info → acryl_datahub_cloud-0.3.9.dist-info}/entry_points.txt +1 -0
- acryl_datahub_cloud/api/entity_versioning.py +0 -167
- {acryl_datahub_cloud-0.3.8.3rc1.dist-info → acryl_datahub_cloud-0.3.9.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.8.3rc1.dist-info → acryl_datahub_cloud-0.3.9.dist-info}/top_level.txt +0 -0
|
@@ -159,6 +159,18 @@
|
|
|
159
159
|
"default": null,
|
|
160
160
|
"doc": "Optional result of the action request, e.g. APPROVE or DENY in case of request approvals."
|
|
161
161
|
},
|
|
162
|
+
{
|
|
163
|
+
"Searchable": {
|
|
164
|
+
"fieldType": "KEYWORD"
|
|
165
|
+
},
|
|
166
|
+
"type": [
|
|
167
|
+
"null",
|
|
168
|
+
"string"
|
|
169
|
+
],
|
|
170
|
+
"name": "note",
|
|
171
|
+
"default": null,
|
|
172
|
+
"doc": "Optional note associated with the status.\nE.g. if the request is rejected, the reason for rejection. If the request is approved, the reason for approval."
|
|
173
|
+
},
|
|
162
174
|
{
|
|
163
175
|
"Searchable": {
|
|
164
176
|
"/time": {
|
|
@@ -245,7 +257,7 @@
|
|
|
245
257
|
"items": "string"
|
|
246
258
|
},
|
|
247
259
|
"name": "assignedUsers",
|
|
248
|
-
"doc": "The users this action request is assigned to",
|
|
260
|
+
"doc": "The users this action request is assigned to.\nBy default, action requests are assigned to Dataset Owners\nand with anyone who has the View Proposals platform privilege.",
|
|
249
261
|
"Urn": "Urn",
|
|
250
262
|
"urn_is_array": true
|
|
251
263
|
},
|
|
@@ -261,7 +273,7 @@
|
|
|
261
273
|
"items": "string"
|
|
262
274
|
},
|
|
263
275
|
"name": "assignedGroups",
|
|
264
|
-
"doc": "The groups this action request is assigned to",
|
|
276
|
+
"doc": "The groups this action request is assigned to\nBy default, action requests are assigned to Dataset Owners\nand with anyone who has the View Proposals platform privilege.",
|
|
265
277
|
"Urn": "Urn",
|
|
266
278
|
"urn_is_array": true
|
|
267
279
|
},
|
|
@@ -281,7 +293,7 @@
|
|
|
281
293
|
],
|
|
282
294
|
"name": "assignedRoles",
|
|
283
295
|
"default": null,
|
|
284
|
-
"doc": "The roles this action request is assigned to",
|
|
296
|
+
"doc": "The roles this action request is assigned to\nBy default, action requests are assigned any roles that have the View Proposals platform privilege.",
|
|
285
297
|
"Urn": "Urn",
|
|
286
298
|
"urn_is_array": true
|
|
287
299
|
},
|
|
@@ -325,7 +337,7 @@
|
|
|
325
337
|
],
|
|
326
338
|
"name": "subResource",
|
|
327
339
|
"default": null,
|
|
328
|
-
"doc": "The sub-resource identifier that the action is associated with, for example 'fieldName'"
|
|
340
|
+
"doc": "The sub-resource identifier that the action is associated with, for example 'fieldName'.\nCurrently, this is only used for Field Paths & schema fields."
|
|
329
341
|
},
|
|
330
342
|
{
|
|
331
343
|
"type": [
|
|
@@ -345,22 +357,48 @@
|
|
|
345
357
|
"fields": [
|
|
346
358
|
{
|
|
347
359
|
"Searchable": {
|
|
348
|
-
"addToFilters": true
|
|
360
|
+
"addToFilters": true,
|
|
361
|
+
"fieldName": "glossaryTerms"
|
|
349
362
|
},
|
|
363
|
+
"deprecated": true,
|
|
350
364
|
"java": {
|
|
351
365
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
352
366
|
},
|
|
353
|
-
"type":
|
|
367
|
+
"type": [
|
|
368
|
+
"null",
|
|
369
|
+
"string"
|
|
370
|
+
],
|
|
354
371
|
"name": "glossaryTerm",
|
|
355
|
-
"
|
|
372
|
+
"default": null,
|
|
373
|
+
"doc": "This field is deprecated and will be removed in a future version. Use glossaryTerms instead.\nThe urn of the glossary term being proposed.",
|
|
356
374
|
"Urn": "Urn"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"Searchable": {
|
|
378
|
+
"/*": {
|
|
379
|
+
"addToFilters": true,
|
|
380
|
+
"fieldName": "glossaryTerms"
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
"type": [
|
|
384
|
+
"null",
|
|
385
|
+
{
|
|
386
|
+
"type": "array",
|
|
387
|
+
"items": "string"
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"name": "glossaryTerms",
|
|
391
|
+
"default": null,
|
|
392
|
+
"doc": "The urns of the glossary terms being proposed.\nUse this field over glossaryTerm.",
|
|
393
|
+
"Urn": "Urn",
|
|
394
|
+
"urn_is_array": true
|
|
357
395
|
}
|
|
358
396
|
]
|
|
359
397
|
}
|
|
360
398
|
],
|
|
361
399
|
"name": "glossaryTermProposal",
|
|
362
400
|
"default": null,
|
|
363
|
-
"doc": "An optional set of information specific to term proposals."
|
|
401
|
+
"doc": "An optional set of information specific to term proposals.\nTODO: Add validation that ensures that glossaryTerm or glossaryTerms field is provided, but not both."
|
|
364
402
|
},
|
|
365
403
|
{
|
|
366
404
|
"type": [
|
|
@@ -372,22 +410,354 @@
|
|
|
372
410
|
"fields": [
|
|
373
411
|
{
|
|
374
412
|
"Searchable": {
|
|
375
|
-
"addToFilters": true
|
|
413
|
+
"addToFilters": true,
|
|
414
|
+
"fieldName": "tags"
|
|
376
415
|
},
|
|
416
|
+
"deprecated": true,
|
|
377
417
|
"java": {
|
|
378
418
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
379
419
|
},
|
|
380
|
-
"type":
|
|
420
|
+
"type": [
|
|
421
|
+
"null",
|
|
422
|
+
"string"
|
|
423
|
+
],
|
|
381
424
|
"name": "tag",
|
|
382
|
-
"
|
|
425
|
+
"default": null,
|
|
426
|
+
"doc": "This field is deprecated and will be removed in a future version. Use tags instead.\nThe urn of the tag being proposed.",
|
|
383
427
|
"Urn": "Urn"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"Searchable": {
|
|
431
|
+
"/*": {
|
|
432
|
+
"addToFilters": true,
|
|
433
|
+
"fieldName": "tags"
|
|
434
|
+
}
|
|
435
|
+
},
|
|
436
|
+
"type": [
|
|
437
|
+
"null",
|
|
438
|
+
{
|
|
439
|
+
"type": "array",
|
|
440
|
+
"items": "string"
|
|
441
|
+
}
|
|
442
|
+
],
|
|
443
|
+
"name": "tags",
|
|
444
|
+
"default": null,
|
|
445
|
+
"doc": "The urns of the glossary terms being proposed.\nUse this field over glossaryTerm.",
|
|
446
|
+
"Urn": "Urn",
|
|
447
|
+
"urn_is_array": true
|
|
384
448
|
}
|
|
385
449
|
]
|
|
386
450
|
}
|
|
387
451
|
],
|
|
388
452
|
"name": "tagProposal",
|
|
389
453
|
"default": null,
|
|
390
|
-
"doc": "An optional set of information specific to tag proposals."
|
|
454
|
+
"doc": "An optional set of information specific to tag proposals.\nTODO: Add validation that ensures that tag or tagUrns field is provided, but not both."
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"type": [
|
|
458
|
+
"null",
|
|
459
|
+
{
|
|
460
|
+
"type": "record",
|
|
461
|
+
"name": "DomainProposal",
|
|
462
|
+
"namespace": "com.linkedin.pegasus2avro.actionrequest",
|
|
463
|
+
"fields": [
|
|
464
|
+
{
|
|
465
|
+
"Searchable": {
|
|
466
|
+
"/*": {
|
|
467
|
+
"addToFilters": true,
|
|
468
|
+
"fieldName": "domains"
|
|
469
|
+
}
|
|
470
|
+
},
|
|
471
|
+
"type": {
|
|
472
|
+
"type": "array",
|
|
473
|
+
"items": "string"
|
|
474
|
+
},
|
|
475
|
+
"name": "domains",
|
|
476
|
+
"doc": "The urns of the domain(s) being proposed. Currently, only 1 domain is supported per asset.\nIf this changes in the future, this data modeling will suffice.",
|
|
477
|
+
"Urn": "Urn",
|
|
478
|
+
"urn_is_array": true
|
|
479
|
+
}
|
|
480
|
+
]
|
|
481
|
+
}
|
|
482
|
+
],
|
|
483
|
+
"name": "domainProposal",
|
|
484
|
+
"default": null,
|
|
485
|
+
"doc": "An optional set of information specific to domain proposals."
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"type": [
|
|
489
|
+
"null",
|
|
490
|
+
{
|
|
491
|
+
"type": "record",
|
|
492
|
+
"name": "OwnerProposal",
|
|
493
|
+
"namespace": "com.linkedin.pegasus2avro.actionrequest",
|
|
494
|
+
"fields": [
|
|
495
|
+
{
|
|
496
|
+
"Searchable": {
|
|
497
|
+
"/*/owner": {
|
|
498
|
+
"addToFilters": true,
|
|
499
|
+
"fieldName": "owners"
|
|
500
|
+
},
|
|
501
|
+
"/*/typeUrn": {
|
|
502
|
+
"addToFilters": true,
|
|
503
|
+
"fieldName": "ownershipTypes"
|
|
504
|
+
}
|
|
505
|
+
},
|
|
506
|
+
"type": [
|
|
507
|
+
"null",
|
|
508
|
+
{
|
|
509
|
+
"type": "array",
|
|
510
|
+
"items": {
|
|
511
|
+
"type": "record",
|
|
512
|
+
"name": "Owner",
|
|
513
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
514
|
+
"fields": [
|
|
515
|
+
{
|
|
516
|
+
"Relationship": {
|
|
517
|
+
"entityTypes": [
|
|
518
|
+
"corpuser",
|
|
519
|
+
"corpGroup"
|
|
520
|
+
],
|
|
521
|
+
"name": "OwnedBy"
|
|
522
|
+
},
|
|
523
|
+
"Searchable": {
|
|
524
|
+
"addToFilters": true,
|
|
525
|
+
"fieldName": "owners",
|
|
526
|
+
"fieldType": "URN",
|
|
527
|
+
"filterNameOverride": "Owned By",
|
|
528
|
+
"hasValuesFieldName": "hasOwners",
|
|
529
|
+
"queryByDefault": false
|
|
530
|
+
},
|
|
531
|
+
"java": {
|
|
532
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
533
|
+
},
|
|
534
|
+
"type": "string",
|
|
535
|
+
"name": "owner",
|
|
536
|
+
"doc": "Owner URN, e.g. urn:li:corpuser:ldap, urn:li:corpGroup:group_name, and urn:li:multiProduct:mp_name\n(Caveat: only corpuser is currently supported in the frontend.)",
|
|
537
|
+
"Urn": "Urn",
|
|
538
|
+
"entityTypes": [
|
|
539
|
+
"corpuser",
|
|
540
|
+
"corpGroup"
|
|
541
|
+
]
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"deprecated": true,
|
|
545
|
+
"type": {
|
|
546
|
+
"type": "enum",
|
|
547
|
+
"symbolDocs": {
|
|
548
|
+
"BUSINESS_OWNER": "A person or group who is responsible for logical, or business related, aspects of the asset.",
|
|
549
|
+
"CONSUMER": "A person, group, or service that consumes the data\nDeprecated! Use TECHNICAL_OWNER or BUSINESS_OWNER instead.",
|
|
550
|
+
"CUSTOM": "Set when ownership type is unknown or a when new one is specified as an ownership type entity for which we have no\nenum value for. This is used for backwards compatibility",
|
|
551
|
+
"DATAOWNER": "A person or group that is owning the data\nDeprecated! Use TECHNICAL_OWNER instead.",
|
|
552
|
+
"DATA_STEWARD": "A steward, expert, or delegate responsible for the asset.",
|
|
553
|
+
"DELEGATE": "A person or a group that overseas the operation, e.g. a DBA or SRE.\nDeprecated! Use TECHNICAL_OWNER instead.",
|
|
554
|
+
"DEVELOPER": "A person or group that is in charge of developing the code\nDeprecated! Use TECHNICAL_OWNER instead.",
|
|
555
|
+
"NONE": "No specific type associated to the owner.",
|
|
556
|
+
"PRODUCER": "A person, group, or service that produces/generates the data\nDeprecated! Use TECHNICAL_OWNER instead.",
|
|
557
|
+
"STAKEHOLDER": "A person or a group that has direct business interest\nDeprecated! Use TECHNICAL_OWNER, BUSINESS_OWNER, or STEWARD instead.",
|
|
558
|
+
"TECHNICAL_OWNER": "person or group who is responsible for technical aspects of the asset."
|
|
559
|
+
},
|
|
560
|
+
"deprecatedSymbols": {
|
|
561
|
+
"CONSUMER": true,
|
|
562
|
+
"DATAOWNER": true,
|
|
563
|
+
"DELEGATE": true,
|
|
564
|
+
"DEVELOPER": true,
|
|
565
|
+
"PRODUCER": true,
|
|
566
|
+
"STAKEHOLDER": true
|
|
567
|
+
},
|
|
568
|
+
"name": "OwnershipType",
|
|
569
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
570
|
+
"symbols": [
|
|
571
|
+
"CUSTOM",
|
|
572
|
+
"TECHNICAL_OWNER",
|
|
573
|
+
"BUSINESS_OWNER",
|
|
574
|
+
"DATA_STEWARD",
|
|
575
|
+
"NONE",
|
|
576
|
+
"DEVELOPER",
|
|
577
|
+
"DATAOWNER",
|
|
578
|
+
"DELEGATE",
|
|
579
|
+
"PRODUCER",
|
|
580
|
+
"CONSUMER",
|
|
581
|
+
"STAKEHOLDER"
|
|
582
|
+
],
|
|
583
|
+
"doc": "Asset owner types"
|
|
584
|
+
},
|
|
585
|
+
"name": "type",
|
|
586
|
+
"doc": "The type of the ownership"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"Relationship": {
|
|
590
|
+
"entityTypes": [
|
|
591
|
+
"ownershipType"
|
|
592
|
+
],
|
|
593
|
+
"name": "ownershipType"
|
|
594
|
+
},
|
|
595
|
+
"Searchable": {
|
|
596
|
+
"fieldName": "ownershipTypeUrn",
|
|
597
|
+
"fieldType": "URN",
|
|
598
|
+
"queryByDefault": false
|
|
599
|
+
},
|
|
600
|
+
"java": {
|
|
601
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
602
|
+
},
|
|
603
|
+
"type": [
|
|
604
|
+
"null",
|
|
605
|
+
"string"
|
|
606
|
+
],
|
|
607
|
+
"name": "typeUrn",
|
|
608
|
+
"default": null,
|
|
609
|
+
"doc": "The type of the ownership\nUrn of type O",
|
|
610
|
+
"Urn": "Urn",
|
|
611
|
+
"entityTypes": [
|
|
612
|
+
"ownershipType"
|
|
613
|
+
]
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"type": [
|
|
617
|
+
"null",
|
|
618
|
+
{
|
|
619
|
+
"type": "record",
|
|
620
|
+
"name": "OwnershipSource",
|
|
621
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
622
|
+
"fields": [
|
|
623
|
+
{
|
|
624
|
+
"type": {
|
|
625
|
+
"type": "enum",
|
|
626
|
+
"symbolDocs": {
|
|
627
|
+
"AUDIT": "Auditing system or audit logs",
|
|
628
|
+
"DATABASE": "Database, e.g. GRANTS table",
|
|
629
|
+
"FILE_SYSTEM": "File system, e.g. file/directory owner",
|
|
630
|
+
"ISSUE_TRACKING_SYSTEM": "Issue tracking system, e.g. Jira",
|
|
631
|
+
"MANUAL": "Manually provided by a user",
|
|
632
|
+
"OTHER": "Other sources",
|
|
633
|
+
"SERVICE": "Other ownership-like service, e.g. Nuage, ACL service etc",
|
|
634
|
+
"SOURCE_CONTROL": "SCM system, e.g. GIT, SVN"
|
|
635
|
+
},
|
|
636
|
+
"name": "OwnershipSourceType",
|
|
637
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
638
|
+
"symbols": [
|
|
639
|
+
"AUDIT",
|
|
640
|
+
"DATABASE",
|
|
641
|
+
"FILE_SYSTEM",
|
|
642
|
+
"ISSUE_TRACKING_SYSTEM",
|
|
643
|
+
"MANUAL",
|
|
644
|
+
"SERVICE",
|
|
645
|
+
"SOURCE_CONTROL",
|
|
646
|
+
"OTHER"
|
|
647
|
+
]
|
|
648
|
+
},
|
|
649
|
+
"name": "type",
|
|
650
|
+
"doc": "The type of the source"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"type": [
|
|
654
|
+
"null",
|
|
655
|
+
"string"
|
|
656
|
+
],
|
|
657
|
+
"name": "url",
|
|
658
|
+
"default": null,
|
|
659
|
+
"doc": "A reference URL for the source"
|
|
660
|
+
}
|
|
661
|
+
],
|
|
662
|
+
"doc": "Source/provider of the ownership information"
|
|
663
|
+
}
|
|
664
|
+
],
|
|
665
|
+
"name": "source",
|
|
666
|
+
"default": null,
|
|
667
|
+
"doc": "Source information for the ownership"
|
|
668
|
+
}
|
|
669
|
+
],
|
|
670
|
+
"doc": "Ownership information"
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
],
|
|
674
|
+
"name": "owners",
|
|
675
|
+
"default": null,
|
|
676
|
+
"doc": "The urns of the owner(s) being proposed."
|
|
677
|
+
}
|
|
678
|
+
]
|
|
679
|
+
}
|
|
680
|
+
],
|
|
681
|
+
"name": "ownerProposal",
|
|
682
|
+
"default": null,
|
|
683
|
+
"doc": "An optional set of information specific to ownership proposals."
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"type": [
|
|
687
|
+
"null",
|
|
688
|
+
{
|
|
689
|
+
"type": "record",
|
|
690
|
+
"name": "StructuredPropertyProposal",
|
|
691
|
+
"namespace": "com.linkedin.pegasus2avro.actionrequest",
|
|
692
|
+
"fields": [
|
|
693
|
+
{
|
|
694
|
+
"Searchable": {
|
|
695
|
+
"/*/propertyUrn": {
|
|
696
|
+
"addToFilters": true,
|
|
697
|
+
"fieldName": "structuredPropertyUrns"
|
|
698
|
+
}
|
|
699
|
+
},
|
|
700
|
+
"type": [
|
|
701
|
+
"null",
|
|
702
|
+
{
|
|
703
|
+
"type": "array",
|
|
704
|
+
"items": {
|
|
705
|
+
"type": "record",
|
|
706
|
+
"name": "StructuredPropertyValueAssignment",
|
|
707
|
+
"namespace": "com.linkedin.pegasus2avro.structured",
|
|
708
|
+
"fields": [
|
|
709
|
+
{
|
|
710
|
+
"java": {
|
|
711
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
712
|
+
},
|
|
713
|
+
"type": "string",
|
|
714
|
+
"name": "propertyUrn",
|
|
715
|
+
"doc": "The property that is being assigned a value.",
|
|
716
|
+
"Urn": "Urn"
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"type": {
|
|
720
|
+
"type": "array",
|
|
721
|
+
"items": [
|
|
722
|
+
"string",
|
|
723
|
+
"double"
|
|
724
|
+
]
|
|
725
|
+
},
|
|
726
|
+
"name": "values",
|
|
727
|
+
"doc": "The value assigned to the property."
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
"type": [
|
|
731
|
+
"null",
|
|
732
|
+
"com.linkedin.pegasus2avro.common.AuditStamp"
|
|
733
|
+
],
|
|
734
|
+
"name": "created",
|
|
735
|
+
"default": null,
|
|
736
|
+
"doc": "Audit stamp containing who created this relationship edge and when"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"type": [
|
|
740
|
+
"null",
|
|
741
|
+
"com.linkedin.pegasus2avro.common.AuditStamp"
|
|
742
|
+
],
|
|
743
|
+
"name": "lastModified",
|
|
744
|
+
"default": null,
|
|
745
|
+
"doc": "Audit stamp containing who last modified this relationship edge and when"
|
|
746
|
+
}
|
|
747
|
+
]
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
],
|
|
751
|
+
"name": "structuredPropertyValues",
|
|
752
|
+
"default": null,
|
|
753
|
+
"doc": "The urns of the domain(s) being proposed. Currently, only 1 domain is supported per asset.\nIf this changes in the future, the data model will be ready.\nTODO: Decide if indexing the value would also be useful."
|
|
754
|
+
}
|
|
755
|
+
]
|
|
756
|
+
}
|
|
757
|
+
],
|
|
758
|
+
"name": "structuredPropertyProposal",
|
|
759
|
+
"default": null,
|
|
760
|
+
"doc": "An optional set of information specific to structured property proposals."
|
|
391
761
|
},
|
|
392
762
|
{
|
|
393
763
|
"type": [
|
|
@@ -659,6 +1029,15 @@
|
|
|
659
1029
|
"doc": "Who the action request was created by",
|
|
660
1030
|
"Urn": "Urn"
|
|
661
1031
|
},
|
|
1032
|
+
{
|
|
1033
|
+
"type": [
|
|
1034
|
+
"null",
|
|
1035
|
+
"string"
|
|
1036
|
+
],
|
|
1037
|
+
"name": "description",
|
|
1038
|
+
"default": null,
|
|
1039
|
+
"doc": "An optional description that can be added to the action request\nto explain the intention behind it."
|
|
1040
|
+
},
|
|
662
1041
|
{
|
|
663
1042
|
"type": [
|
|
664
1043
|
"null",
|
|
@@ -836,6 +1215,7 @@
|
|
|
836
1215
|
},
|
|
837
1216
|
{
|
|
838
1217
|
"Searchable": {
|
|
1218
|
+
"boostScore": 10.0,
|
|
839
1219
|
"enableAutocomplete": true,
|
|
840
1220
|
"fieldNameAliases": [
|
|
841
1221
|
"_entityName"
|
|
@@ -1203,168 +1583,7 @@
|
|
|
1203
1583
|
{
|
|
1204
1584
|
"type": {
|
|
1205
1585
|
"type": "array",
|
|
1206
|
-
"items":
|
|
1207
|
-
"type": "record",
|
|
1208
|
-
"name": "Owner",
|
|
1209
|
-
"namespace": "com.linkedin.pegasus2avro.common",
|
|
1210
|
-
"fields": [
|
|
1211
|
-
{
|
|
1212
|
-
"Relationship": {
|
|
1213
|
-
"entityTypes": [
|
|
1214
|
-
"corpuser",
|
|
1215
|
-
"corpGroup"
|
|
1216
|
-
],
|
|
1217
|
-
"name": "OwnedBy"
|
|
1218
|
-
},
|
|
1219
|
-
"Searchable": {
|
|
1220
|
-
"addToFilters": true,
|
|
1221
|
-
"fieldName": "owners",
|
|
1222
|
-
"fieldType": "URN",
|
|
1223
|
-
"filterNameOverride": "Owned By",
|
|
1224
|
-
"hasValuesFieldName": "hasOwners",
|
|
1225
|
-
"queryByDefault": false
|
|
1226
|
-
},
|
|
1227
|
-
"java": {
|
|
1228
|
-
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
1229
|
-
},
|
|
1230
|
-
"type": "string",
|
|
1231
|
-
"name": "owner",
|
|
1232
|
-
"doc": "Owner URN, e.g. urn:li:corpuser:ldap, urn:li:corpGroup:group_name, and urn:li:multiProduct:mp_name\n(Caveat: only corpuser is currently supported in the frontend.)",
|
|
1233
|
-
"Urn": "Urn",
|
|
1234
|
-
"entityTypes": [
|
|
1235
|
-
"corpuser",
|
|
1236
|
-
"corpGroup"
|
|
1237
|
-
]
|
|
1238
|
-
},
|
|
1239
|
-
{
|
|
1240
|
-
"deprecated": true,
|
|
1241
|
-
"type": {
|
|
1242
|
-
"type": "enum",
|
|
1243
|
-
"symbolDocs": {
|
|
1244
|
-
"BUSINESS_OWNER": "A person or group who is responsible for logical, or business related, aspects of the asset.",
|
|
1245
|
-
"CONSUMER": "A person, group, or service that consumes the data\nDeprecated! Use TECHNICAL_OWNER or BUSINESS_OWNER instead.",
|
|
1246
|
-
"CUSTOM": "Set when ownership type is unknown or a when new one is specified as an ownership type entity for which we have no\nenum value for. This is used for backwards compatibility",
|
|
1247
|
-
"DATAOWNER": "A person or group that is owning the data\nDeprecated! Use TECHNICAL_OWNER instead.",
|
|
1248
|
-
"DATA_STEWARD": "A steward, expert, or delegate responsible for the asset.",
|
|
1249
|
-
"DELEGATE": "A person or a group that overseas the operation, e.g. a DBA or SRE.\nDeprecated! Use TECHNICAL_OWNER instead.",
|
|
1250
|
-
"DEVELOPER": "A person or group that is in charge of developing the code\nDeprecated! Use TECHNICAL_OWNER instead.",
|
|
1251
|
-
"NONE": "No specific type associated to the owner.",
|
|
1252
|
-
"PRODUCER": "A person, group, or service that produces/generates the data\nDeprecated! Use TECHNICAL_OWNER instead.",
|
|
1253
|
-
"STAKEHOLDER": "A person or a group that has direct business interest\nDeprecated! Use TECHNICAL_OWNER, BUSINESS_OWNER, or STEWARD instead.",
|
|
1254
|
-
"TECHNICAL_OWNER": "person or group who is responsible for technical aspects of the asset."
|
|
1255
|
-
},
|
|
1256
|
-
"deprecatedSymbols": {
|
|
1257
|
-
"CONSUMER": true,
|
|
1258
|
-
"DATAOWNER": true,
|
|
1259
|
-
"DELEGATE": true,
|
|
1260
|
-
"DEVELOPER": true,
|
|
1261
|
-
"PRODUCER": true,
|
|
1262
|
-
"STAKEHOLDER": true
|
|
1263
|
-
},
|
|
1264
|
-
"name": "OwnershipType",
|
|
1265
|
-
"namespace": "com.linkedin.pegasus2avro.common",
|
|
1266
|
-
"symbols": [
|
|
1267
|
-
"CUSTOM",
|
|
1268
|
-
"TECHNICAL_OWNER",
|
|
1269
|
-
"BUSINESS_OWNER",
|
|
1270
|
-
"DATA_STEWARD",
|
|
1271
|
-
"NONE",
|
|
1272
|
-
"DEVELOPER",
|
|
1273
|
-
"DATAOWNER",
|
|
1274
|
-
"DELEGATE",
|
|
1275
|
-
"PRODUCER",
|
|
1276
|
-
"CONSUMER",
|
|
1277
|
-
"STAKEHOLDER"
|
|
1278
|
-
],
|
|
1279
|
-
"doc": "Asset owner types"
|
|
1280
|
-
},
|
|
1281
|
-
"name": "type",
|
|
1282
|
-
"doc": "The type of the ownership"
|
|
1283
|
-
},
|
|
1284
|
-
{
|
|
1285
|
-
"Relationship": {
|
|
1286
|
-
"entityTypes": [
|
|
1287
|
-
"ownershipType"
|
|
1288
|
-
],
|
|
1289
|
-
"name": "ownershipType"
|
|
1290
|
-
},
|
|
1291
|
-
"Searchable": {
|
|
1292
|
-
"fieldName": "ownershipTypeUrn",
|
|
1293
|
-
"fieldType": "URN",
|
|
1294
|
-
"queryByDefault": false
|
|
1295
|
-
},
|
|
1296
|
-
"java": {
|
|
1297
|
-
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
1298
|
-
},
|
|
1299
|
-
"type": [
|
|
1300
|
-
"null",
|
|
1301
|
-
"string"
|
|
1302
|
-
],
|
|
1303
|
-
"name": "typeUrn",
|
|
1304
|
-
"default": null,
|
|
1305
|
-
"doc": "The type of the ownership\nUrn of type O",
|
|
1306
|
-
"Urn": "Urn",
|
|
1307
|
-
"entityTypes": [
|
|
1308
|
-
"ownershipType"
|
|
1309
|
-
]
|
|
1310
|
-
},
|
|
1311
|
-
{
|
|
1312
|
-
"type": [
|
|
1313
|
-
"null",
|
|
1314
|
-
{
|
|
1315
|
-
"type": "record",
|
|
1316
|
-
"name": "OwnershipSource",
|
|
1317
|
-
"namespace": "com.linkedin.pegasus2avro.common",
|
|
1318
|
-
"fields": [
|
|
1319
|
-
{
|
|
1320
|
-
"type": {
|
|
1321
|
-
"type": "enum",
|
|
1322
|
-
"symbolDocs": {
|
|
1323
|
-
"AUDIT": "Auditing system or audit logs",
|
|
1324
|
-
"DATABASE": "Database, e.g. GRANTS table",
|
|
1325
|
-
"FILE_SYSTEM": "File system, e.g. file/directory owner",
|
|
1326
|
-
"ISSUE_TRACKING_SYSTEM": "Issue tracking system, e.g. Jira",
|
|
1327
|
-
"MANUAL": "Manually provided by a user",
|
|
1328
|
-
"OTHER": "Other sources",
|
|
1329
|
-
"SERVICE": "Other ownership-like service, e.g. Nuage, ACL service etc",
|
|
1330
|
-
"SOURCE_CONTROL": "SCM system, e.g. GIT, SVN"
|
|
1331
|
-
},
|
|
1332
|
-
"name": "OwnershipSourceType",
|
|
1333
|
-
"namespace": "com.linkedin.pegasus2avro.common",
|
|
1334
|
-
"symbols": [
|
|
1335
|
-
"AUDIT",
|
|
1336
|
-
"DATABASE",
|
|
1337
|
-
"FILE_SYSTEM",
|
|
1338
|
-
"ISSUE_TRACKING_SYSTEM",
|
|
1339
|
-
"MANUAL",
|
|
1340
|
-
"SERVICE",
|
|
1341
|
-
"SOURCE_CONTROL",
|
|
1342
|
-
"OTHER"
|
|
1343
|
-
]
|
|
1344
|
-
},
|
|
1345
|
-
"name": "type",
|
|
1346
|
-
"doc": "The type of the source"
|
|
1347
|
-
},
|
|
1348
|
-
{
|
|
1349
|
-
"type": [
|
|
1350
|
-
"null",
|
|
1351
|
-
"string"
|
|
1352
|
-
],
|
|
1353
|
-
"name": "url",
|
|
1354
|
-
"default": null,
|
|
1355
|
-
"doc": "A reference URL for the source"
|
|
1356
|
-
}
|
|
1357
|
-
],
|
|
1358
|
-
"doc": "Source/provider of the ownership information"
|
|
1359
|
-
}
|
|
1360
|
-
],
|
|
1361
|
-
"name": "source",
|
|
1362
|
-
"default": null,
|
|
1363
|
-
"doc": "Source information for the ownership"
|
|
1364
|
-
}
|
|
1365
|
-
],
|
|
1366
|
-
"doc": "Ownership information"
|
|
1367
|
-
}
|
|
1586
|
+
"items": "com.linkedin.pegasus2avro.common.Owner"
|
|
1368
1587
|
},
|
|
1369
1588
|
"name": "owners",
|
|
1370
1589
|
"doc": "List of owners of the entity."
|
|
@@ -1609,7 +1828,9 @@
|
|
|
1609
1828
|
"fieldName": "glossaryTerms",
|
|
1610
1829
|
"fieldType": "URN",
|
|
1611
1830
|
"filterNameOverride": "Glossary Term Applied",
|
|
1612
|
-
"hasValuesFieldName": "hasGlossaryTerms"
|
|
1831
|
+
"hasValuesFieldName": "hasGlossaryTerms",
|
|
1832
|
+
"includeSystemModifiedAt": true,
|
|
1833
|
+
"systemModifiedAtFieldName": "termsModifiedAt"
|
|
1613
1834
|
},
|
|
1614
1835
|
"java": {
|
|
1615
1836
|
"class": "com.linkedin.pegasus2avro.common.urn.GlossaryTermUrn"
|
|
@@ -5317,7 +5538,9 @@
|
|
|
5317
5538
|
"/terms/*/urn": {
|
|
5318
5539
|
"boostScore": 0.5,
|
|
5319
5540
|
"fieldName": "editedFieldGlossaryTerms",
|
|
5320
|
-
"fieldType": "URN"
|
|
5541
|
+
"fieldType": "URN",
|
|
5542
|
+
"includeSystemModifiedAt": true,
|
|
5543
|
+
"systemModifiedAtFieldName": "schemaFieldTermsModifiedAt"
|
|
5321
5544
|
}
|
|
5322
5545
|
},
|
|
5323
5546
|
"type": [
|