acryl-datahub-cloud 0.3.14.1rc1__py3-none-any.whl → 0.3.14.1rc3__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.

@@ -566,6 +566,7 @@
566
566
  "LIST": "A list of values. When used, value should be formatted as a serialized JSON array.",
567
567
  "NUMBER": "A numeric value",
568
568
  "SET": "A set of values. When used, value should be formatted as a serialized JSON array.",
569
+ "SQL": "A SQL expression",
569
570
  "STRING": "A string value",
570
571
  "UNKNOWN": "A value of unknown type"
571
572
  },
@@ -576,6 +577,7 @@
576
577
  "NUMBER",
577
578
  "LIST",
578
579
  "SET",
580
+ "SQL",
579
581
  "UNKNOWN"
580
582
  ]
581
583
  },
@@ -275,6 +275,7 @@
275
275
  "LIST": "A list of values. When used, value should be formatted as a serialized JSON array.",
276
276
  "NUMBER": "A numeric value",
277
277
  "SET": "A set of values. When used, value should be formatted as a serialized JSON array.",
278
+ "SQL": "A SQL expression",
278
279
  "STRING": "A string value",
279
280
  "UNKNOWN": "A value of unknown type"
280
281
  },
@@ -285,6 +286,7 @@
285
286
  "NUMBER",
286
287
  "LIST",
287
288
  "SET",
289
+ "SQL",
288
290
  "UNKNOWN"
289
291
  ]
290
292
  },
@@ -366,6 +366,7 @@
366
366
  "LIST": "A list of values. When used, value should be formatted as a serialized JSON array.",
367
367
  "NUMBER": "A numeric value",
368
368
  "SET": "A set of values. When used, value should be formatted as a serialized JSON array.",
369
+ "SQL": "A SQL expression",
369
370
  "STRING": "A string value",
370
371
  "UNKNOWN": "A value of unknown type"
371
372
  },
@@ -376,6 +377,7 @@
376
377
  "NUMBER",
377
378
  "LIST",
378
379
  "SET",
380
+ "SQL",
379
381
  "UNKNOWN"
380
382
  ]
381
383
  },
@@ -381,6 +381,133 @@
381
381
  "name": "homePage",
382
382
  "default": null,
383
383
  "doc": "Settings related to the home page for a user"
384
+ },
385
+ {
386
+ "type": [
387
+ "null",
388
+ {
389
+ "type": "record",
390
+ "name": "AiAssistantSettings",
391
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
392
+ "fields": [
393
+ {
394
+ "type": {
395
+ "type": "array",
396
+ "items": {
397
+ "type": "record",
398
+ "name": "AiInstruction",
399
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
400
+ "fields": [
401
+ {
402
+ "type": "string",
403
+ "name": "id",
404
+ "doc": "A unique identifier for this instruction.\nThis will enable users to manage multiple versions of the same instruction in the future."
405
+ },
406
+ {
407
+ "type": {
408
+ "type": "enum",
409
+ "symbolDocs": {
410
+ "GENERAL_CONTEXT": "General context to customize the AI assistant's behavior globally or personally. This is the only supported type currently."
411
+ },
412
+ "name": "AiInstructionType",
413
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
414
+ "symbols": [
415
+ "GENERAL_CONTEXT"
416
+ ]
417
+ },
418
+ "name": "type",
419
+ "doc": "A unique identifier for this instruction.\nThis will enable users to manage multiple versions of the same instruction in the future."
420
+ },
421
+ {
422
+ "type": {
423
+ "type": "enum",
424
+ "symbolDocs": {
425
+ "ACTIVE": "The instruction is active and will be used by the AI assistant.",
426
+ "INACTIVE": "The instruction is inactive and will not be used by the AI assistant."
427
+ },
428
+ "name": "AiInstructionState",
429
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
430
+ "symbols": [
431
+ "ACTIVE",
432
+ "INACTIVE"
433
+ ]
434
+ },
435
+ "name": "state",
436
+ "doc": "The state of the instruction"
437
+ },
438
+ {
439
+ "type": "string",
440
+ "name": "instruction",
441
+ "doc": "Custom instruction text to be sent to the AI model."
442
+ },
443
+ {
444
+ "type": {
445
+ "type": "record",
446
+ "name": "AuditStamp",
447
+ "namespace": "com.linkedin.pegasus2avro.common",
448
+ "fields": [
449
+ {
450
+ "type": "long",
451
+ "name": "time",
452
+ "doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
453
+ },
454
+ {
455
+ "java": {
456
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
457
+ },
458
+ "type": "string",
459
+ "name": "actor",
460
+ "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.",
461
+ "Urn": "Urn"
462
+ },
463
+ {
464
+ "java": {
465
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
466
+ },
467
+ "type": [
468
+ "null",
469
+ "string"
470
+ ],
471
+ "name": "impersonator",
472
+ "default": null,
473
+ "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.",
474
+ "Urn": "Urn"
475
+ },
476
+ {
477
+ "type": [
478
+ "null",
479
+ "string"
480
+ ],
481
+ "name": "message",
482
+ "default": null,
483
+ "doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
484
+ }
485
+ ],
486
+ "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."
487
+ },
488
+ "name": "created",
489
+ "doc": "The actor + timestamp of when this instruction was created."
490
+ },
491
+ {
492
+ "type": "com.linkedin.pegasus2avro.common.AuditStamp",
493
+ "name": "lastModified",
494
+ "doc": "The actor + timestamp of when this instruction was last modified."
495
+ }
496
+ ],
497
+ "doc": "An object representing custom AI instructions for the AI assistant.\nGenerally, these are injected into the prompt sent to the AI model.\n\nIn the future we extend this to include positive examples, negative examples,\nand other parameters to customize the AI model's behavior."
498
+ }
499
+ },
500
+ "name": "instructions",
501
+ "default": [],
502
+ "doc": "Custom instructions to inject into the AI assistant prompt"
503
+ }
504
+ ],
505
+ "doc": "Settings related to the AI assistant (Ask DataHub) feature"
506
+ }
507
+ ],
508
+ "name": "aiAssistant",
509
+ "default": null,
510
+ "doc": "Settings related to AI-powered chat assistant (Ask DataHub)."
384
511
  }
385
512
  ],
386
513
  "doc": "Settings that a user can customize through the DataHub UI"
@@ -71,13 +71,6 @@
71
71
  "doc": "Platform usage total percentile for ranking users across all platforms"
72
72
  },
73
73
  {
74
- "Searchable": {
75
- "/*": {
76
- "fieldName": "topDatasetsByUsage",
77
- "fieldType": "OBJECT",
78
- "queryByDefault": false
79
- }
80
- },
81
74
  "type": [
82
75
  "null",
83
76
  {
@@ -620,6 +620,117 @@
620
620
  "name": "enabled",
621
621
  "default": true,
622
622
  "doc": "Whether or not AI-generated documentation is enabled."
623
+ },
624
+ {
625
+ "type": {
626
+ "type": "array",
627
+ "items": {
628
+ "type": "record",
629
+ "name": "AiInstruction",
630
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
631
+ "fields": [
632
+ {
633
+ "type": "string",
634
+ "name": "id",
635
+ "doc": "A unique identifier for this instruction.\nThis will enable users to manage multiple versions of the same instruction in the future."
636
+ },
637
+ {
638
+ "type": {
639
+ "type": "enum",
640
+ "symbolDocs": {
641
+ "GENERAL_CONTEXT": "General context to customize the AI assistant's behavior globally or personally. This is the only supported type currently."
642
+ },
643
+ "name": "AiInstructionType",
644
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
645
+ "symbols": [
646
+ "GENERAL_CONTEXT"
647
+ ]
648
+ },
649
+ "name": "type",
650
+ "doc": "A unique identifier for this instruction.\nThis will enable users to manage multiple versions of the same instruction in the future."
651
+ },
652
+ {
653
+ "type": {
654
+ "type": "enum",
655
+ "symbolDocs": {
656
+ "ACTIVE": "The instruction is active and will be used by the AI assistant.",
657
+ "INACTIVE": "The instruction is inactive and will not be used by the AI assistant."
658
+ },
659
+ "name": "AiInstructionState",
660
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
661
+ "symbols": [
662
+ "ACTIVE",
663
+ "INACTIVE"
664
+ ]
665
+ },
666
+ "name": "state",
667
+ "doc": "The state of the instruction"
668
+ },
669
+ {
670
+ "type": "string",
671
+ "name": "instruction",
672
+ "doc": "Custom instruction text to be sent to the AI model."
673
+ },
674
+ {
675
+ "type": {
676
+ "type": "record",
677
+ "name": "AuditStamp",
678
+ "namespace": "com.linkedin.pegasus2avro.common",
679
+ "fields": [
680
+ {
681
+ "type": "long",
682
+ "name": "time",
683
+ "doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
684
+ },
685
+ {
686
+ "java": {
687
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
688
+ },
689
+ "type": "string",
690
+ "name": "actor",
691
+ "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.",
692
+ "Urn": "Urn"
693
+ },
694
+ {
695
+ "java": {
696
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
697
+ },
698
+ "type": [
699
+ "null",
700
+ "string"
701
+ ],
702
+ "name": "impersonator",
703
+ "default": null,
704
+ "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.",
705
+ "Urn": "Urn"
706
+ },
707
+ {
708
+ "type": [
709
+ "null",
710
+ "string"
711
+ ],
712
+ "name": "message",
713
+ "default": null,
714
+ "doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
715
+ }
716
+ ],
717
+ "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."
718
+ },
719
+ "name": "created",
720
+ "doc": "The actor + timestamp of when this instruction was created."
721
+ },
722
+ {
723
+ "type": "com.linkedin.pegasus2avro.common.AuditStamp",
724
+ "name": "lastModified",
725
+ "doc": "The actor + timestamp of when this instruction was last modified."
726
+ }
727
+ ],
728
+ "doc": "An object representing custom AI instructions for the AI assistant.\nGenerally, these are injected into the prompt sent to the AI model.\n\nIn the future we extend this to include positive examples, negative examples,\nand other parameters to customize the AI model's behavior."
729
+ }
730
+ },
731
+ "name": "instructions",
732
+ "default": [],
733
+ "doc": "Custom instructions to inject into the AI documentation model prompt."
623
734
  }
624
735
  ],
625
736
  "doc": "Settings related to AI-powered documentation."
@@ -629,6 +740,31 @@
629
740
  "default": null,
630
741
  "doc": "Settings related to AI-powered documentation."
631
742
  },
743
+ {
744
+ "type": [
745
+ "null",
746
+ {
747
+ "type": "record",
748
+ "name": "AiAssistantSettings",
749
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
750
+ "fields": [
751
+ {
752
+ "type": {
753
+ "type": "array",
754
+ "items": "com.linkedin.pegasus2avro.settings.global.AiInstruction"
755
+ },
756
+ "name": "instructions",
757
+ "default": [],
758
+ "doc": "Custom instructions to inject into the AI assistant prompt"
759
+ }
760
+ ],
761
+ "doc": "Settings related to the AI assistant (Ask DataHub) feature"
762
+ }
763
+ ],
764
+ "name": "aiAssistant",
765
+ "default": null,
766
+ "doc": "Settings related to AI-powered chat assistant (Ask DataHub)."
767
+ },
632
768
  {
633
769
  "type": [
634
770
  "null",
@@ -864,6 +864,7 @@
864
864
  "LIST": "A list of values. When used, value should be formatted as a serialized JSON array.",
865
865
  "NUMBER": "A numeric value",
866
866
  "SET": "A set of values. When used, value should be formatted as a serialized JSON array.",
867
+ "SQL": "A SQL expression",
867
868
  "STRING": "A string value",
868
869
  "UNKNOWN": "A value of unknown type"
869
870
  },
@@ -874,6 +875,7 @@
874
875
  "NUMBER",
875
876
  "LIST",
876
877
  "SET",
878
+ "SQL",
877
879
  "UNKNOWN"
878
880
  ]
879
881
  },
@@ -15,10 +15,10 @@ import pathlib
15
15
  def _load_schema(schema_name: str) -> str:
16
16
  return (pathlib.Path(__file__).parent / f"{schema_name}.avsc").read_text()
17
17
 
18
- def getMetadataChangeEventSchema() -> str:
19
- return _load_schema("MetadataChangeEvent")
20
-
21
18
  def getMetadataChangeProposalSchema() -> str:
22
19
  return _load_schema("MetadataChangeProposal")
23
20
 
21
+ def getMetadataChangeEventSchema() -> str:
22
+ return _load_schema("MetadataChangeEvent")
23
+
24
24
  # fmt: on
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: acryl-datahub-cloud
3
- Version: 0.3.14.1rc1
3
+ Version: 0.3.14.1rc3
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: avro-gen3==0.7.16
6
6
  Requires-Dist: acryl-datahub
@@ -9,93 +9,93 @@ Requires-Dist: pytz
9
9
  Requires-Dist: types-croniter
10
10
  Requires-Dist: tzlocal
11
11
  Provides-Extra: datahub-lineage-features
12
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
12
+ Requires-Dist: pyarrow; extra == "datahub-lineage-features"
13
13
  Requires-Dist: pandas; extra == "datahub-lineage-features"
14
+ Requires-Dist: duckdb; extra == "datahub-lineage-features"
15
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
14
16
  Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
15
17
  Requires-Dist: tenacity; extra == "datahub-lineage-features"
16
- Requires-Dist: pyarrow; extra == "datahub-lineage-features"
17
- Requires-Dist: duckdb; extra == "datahub-lineage-features"
18
18
  Provides-Extra: datahub-reporting-forms
19
- Requires-Dist: boto3; extra == "datahub-reporting-forms"
20
- Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
21
- Requires-Dist: pandas; extra == "datahub-reporting-forms"
22
- Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
23
19
  Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
20
+ Requires-Dist: pandas; extra == "datahub-reporting-forms"
24
21
  Requires-Dist: duckdb; extra == "datahub-reporting-forms"
22
+ Requires-Dist: boto3; extra == "datahub-reporting-forms"
23
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
24
+ Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
25
25
  Provides-Extra: datahub-reporting-extract-graph
26
- Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
27
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
28
- Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
29
- Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
30
26
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
27
+ Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
31
28
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
29
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
30
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
31
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
32
32
  Provides-Extra: datahub-reporting-extract-sql
33
- Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
34
- Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
35
- Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
36
33
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
34
+ Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
37
35
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
36
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
37
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
38
38
  Provides-Extra: datahub-usage-reporting
39
+ Requires-Dist: duckdb; extra == "datahub-usage-reporting"
40
+ Requires-Dist: pandas; extra == "datahub-usage-reporting"
41
+ Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
39
42
  Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
43
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
44
+ Requires-Dist: boto3; extra == "datahub-usage-reporting"
45
+ Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
46
+ Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
40
47
  Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
48
+ Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
41
49
  Requires-Dist: polars==1.30.0; extra == "datahub-usage-reporting"
42
- Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
43
- Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
44
- Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
45
- Requires-Dist: duckdb; extra == "datahub-usage-reporting"
46
- Requires-Dist: boto3; extra == "datahub-usage-reporting"
47
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
48
50
  Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
49
- Requires-Dist: pandas; extra == "datahub-usage-reporting"
50
- Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
51
51
  Provides-Extra: datahub-metadata-sharing
52
52
  Requires-Dist: tenacity; extra == "datahub-metadata-sharing"
53
53
  Provides-Extra: datahub-action-request-owner
54
54
  Requires-Dist: tenacity; extra == "datahub-action-request-owner"
55
55
  Provides-Extra: acryl-cs-issues
56
- Requires-Dist: jinja2; extra == "acryl-cs-issues"
57
- Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
58
56
  Requires-Dist: openai; extra == "acryl-cs-issues"
59
57
  Requires-Dist: zenpy; extra == "acryl-cs-issues"
58
+ Requires-Dist: jinja2; extra == "acryl-cs-issues"
59
+ Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
60
60
  Provides-Extra: datahub-forms-notifications
61
61
  Requires-Dist: tenacity; extra == "datahub-forms-notifications"
62
62
  Provides-Extra: all
63
+ Requires-Dist: duckdb; extra == "all"
63
64
  Requires-Dist: scipy<=1.14.1; extra == "all"
65
+ Requires-Dist: opensearch-py==2.4.2; extra == "all"
64
66
  Requires-Dist: openai; extra == "all"
67
+ Requires-Dist: zenpy; extra == "all"
68
+ Requires-Dist: pyarrow<=18.0.0; extra == "all"
69
+ Requires-Dist: termcolor==2.5.0; extra == "all"
70
+ Requires-Dist: pyarrow; extra == "all"
65
71
  Requires-Dist: polars==1.30.0; extra == "all"
66
- Requires-Dist: pydantic<2; extra == "all"
67
- Requires-Dist: boto3; extra == "all"
72
+ Requires-Dist: slack-sdk; extra == "all"
68
73
  Requires-Dist: elasticsearch==7.13.4; extra == "all"
74
+ Requires-Dist: numpy<2; extra == "all"
69
75
  Requires-Dist: pandas; extra == "all"
70
- Requires-Dist: tenacity; extra == "all"
71
76
  Requires-Dist: jinja2; extra == "all"
72
- Requires-Dist: slack-sdk; extra == "all"
73
- Requires-Dist: termcolor==2.5.0; extra == "all"
74
- Requires-Dist: pyarrow<=18.0.0; extra == "all"
75
- Requires-Dist: numpy<2; extra == "all"
76
- Requires-Dist: duckdb; extra == "all"
77
- Requires-Dist: opensearch-py==2.4.2; extra == "all"
78
- Requires-Dist: zenpy; extra == "all"
79
- Requires-Dist: pyarrow; extra == "all"
77
+ Requires-Dist: boto3; extra == "all"
78
+ Requires-Dist: pydantic<2; extra == "all"
79
+ Requires-Dist: tenacity; extra == "all"
80
80
  Provides-Extra: dev
81
- Requires-Dist: jinja2; extra == "dev"
82
- Requires-Dist: scipy<=1.14.1; extra == "dev"
83
- Requires-Dist: slack-sdk; extra == "dev"
84
- Requires-Dist: openai; extra == "dev"
85
- Requires-Dist: termcolor==2.5.0; extra == "dev"
81
+ Requires-Dist: duckdb; extra == "dev"
82
+ Requires-Dist: pandas; extra == "dev"
86
83
  Requires-Dist: acryl-datahub[dev]; extra == "dev"
87
- Requires-Dist: polars==1.30.0; extra == "dev"
88
- Requires-Dist: pyarrow<=18.0.0; extra == "dev"
89
- Requires-Dist: pydantic<2; extra == "dev"
84
+ Requires-Dist: opensearch-py==2.4.2; extra == "dev"
90
85
  Requires-Dist: numpy<2; extra == "dev"
91
- Requires-Dist: duckdb; extra == "dev"
92
86
  Requires-Dist: boto3; extra == "dev"
93
- Requires-Dist: opensearch-py==2.4.2; extra == "dev"
94
- Requires-Dist: elasticsearch==7.13.4; extra == "dev"
87
+ Requires-Dist: scipy<=1.14.1; extra == "dev"
88
+ Requires-Dist: openai; extra == "dev"
89
+ Requires-Dist: pydantic<2; extra == "dev"
95
90
  Requires-Dist: zenpy; extra == "dev"
96
- Requires-Dist: pandas; extra == "dev"
91
+ Requires-Dist: jinja2; extra == "dev"
92
+ Requires-Dist: pyarrow<=18.0.0; extra == "dev"
93
+ Requires-Dist: termcolor==2.5.0; extra == "dev"
97
94
  Requires-Dist: tenacity; extra == "dev"
98
95
  Requires-Dist: pyarrow; extra == "dev"
96
+ Requires-Dist: polars==1.30.0; extra == "dev"
97
+ Requires-Dist: slack-sdk; extra == "dev"
98
+ Requires-Dist: elasticsearch==7.13.4; extra == "dev"
99
99
  Dynamic: provides-extra
100
100
  Dynamic: requires-dist
101
101
  Dynamic: requires-python
@@ -1,5 +1,5 @@
1
1
  acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
2
- acryl_datahub_cloud/_codegen_config.json,sha256=S7OcZeUdXhuELgA7Ubc2PLArMYDIbw-5K1kTkpHHcq4,558
2
+ acryl_datahub_cloud/_codegen_config.json,sha256=YJj0YiBGU179eA_oGBLrBRylvCtaEJZ-HAUvPusxqnE,558
3
3
  acryl_datahub_cloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  acryl_datahub_cloud/acryl_cs_issues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py,sha256=uqYPmluXYdlgyq3C09gxIU5nEkKiqHoZ53h2oN5etj0,25227
@@ -45,10 +45,10 @@ acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vE
45
45
  acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
46
  acryl_datahub_cloud/lineage_features/source.py,sha256=8je_BMcDAiiY-jV4ONYDW973vDC5AwD-DqAi64nGp_c,13800
47
47
  acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
48
- acryl_datahub_cloud/metadata/schema.avsc,sha256=4YS2a-BhmRWZpkRRU3ieAe5zgtaSxZme1TfEgAzvjUo,1076765
49
- acryl_datahub_cloud/metadata/schema_classes.py,sha256=mMYEZuLx3tW-gz2uYOd7LLZZ-zKelXcIdVnAYbfzqLw,1606046
48
+ acryl_datahub_cloud/metadata/schema.avsc,sha256=7xVE-ZEgcfQGd9l-fwzFidHPD4w-EZpebX8Pcy5RuP4,1227842
49
+ acryl_datahub_cloud/metadata/schema_classes.py,sha256=APXOZqVXrZTbn5STV_8qf3eLvW0t_VGnQl3TXsjq8Bw,1613375
50
50
  acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
51
- acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=GKx92cbzbGIKBtf2qM-Php_EAh65VJW-QVNwrFuohg4,170696
51
+ acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=itZ5NNm4gFLoywBX_xD3UzAJcQfwHwnwU0mV0ZGozVI,170696
52
52
  acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
53
53
  acryl_datahub_cloud/metadata/com/linkedin/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
54
54
  acryl_datahub_cloud/metadata/com/linkedin/events/__init__.py,sha256=s_dR0plZF-rOxxIbE8ojekJqwiHzl2WYR-Z3kW6kKS0,298
@@ -135,7 +135,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/schemafield/__init__.py,s
135
135
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/secret/__init__.py,sha256=qk61EqqVZF6k1Ct6t4Uo-pLb0WtM1EwJKn1XjVy9LHE,305
136
136
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/__init__.py,sha256=qA_voeSf0fRLEKPqaRBbxCKr55p663UNGOfxpPZh7XQ,427
137
137
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/asset/__init__.py,sha256=ASD1mi7q19HVN9QKzbu2T3GxzdDQ_LqZNTehV3SI12c,531
138
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py,sha256=72kaONqqp0SiblAHiJl3ezHUt_0ANIRu8gKlLmNSaDY,2115
138
+ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py,sha256=JRUk2hu7HssL4rIpuZvrRRPOsalMbAPnQA297ROonu0,2508
139
139
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/step/__init__.py,sha256=HLNNbqBlyhcg09eXWx_AMD_JoOtBPYEi2kv12PE0R9E,329
140
140
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/structured/__init__.py,sha256=T4RWiXIVKgPxdmrbciYL8w4kQdzvgqwcmnREeY5-aOo,1150
141
141
  acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/subscription/__init__.py,sha256=JRQ9eerz1qiTd0qe7wc1AUUgeMnnDK31ay39t-qTjiQ,852
@@ -163,12 +163,12 @@ acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc,sha256=WUKo-n1XiCy-09a2
163
163
  acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc,sha256=ZVjgnPEfi4SEvlyyIruK2sDj8xEjJeSeU3pbPINGum4,1560
164
164
  acryl_datahub_cloud/metadata/schemas/Applications.avsc,sha256=zL6yIzsS3w2463cZvTfdsTqBT7Kii8d58qc28QR_OOs,854
165
165
  acryl_datahub_cloud/metadata/schemas/AssertionActions.avsc,sha256=zrvXzX2Nv_dmK6I3ZXCVWQ1bVs1q01Gl9sDRJA8oSDU,1618
166
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc,sha256=2m0awiY6V8G1ZstkcuXFdIPqle7EbDXiCvqpAdOcreU,228096
166
+ acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc,sha256=SdSsRxnqTNeehmH3g3VNNTwXaqkPGOqC1e9lnqQzrrw,228230
167
167
  acryl_datahub_cloud/metadata/schemas/AssertionDryRunEvent.avsc,sha256=uXrBr18Nx-qFCBGRCFKmHDxrFjfkOipTkVl6W5ieXyw,10366
168
168
  acryl_datahub_cloud/metadata/schemas/AssertionInferenceDetails.avsc,sha256=H33ua52l2Jd72voNkwfHeB5V3aWWiJEAKrCFDNOm66I,13494
169
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc,sha256=K_HyzGEL1J8dUbfvUa9C78djsOEM8lP710dVECtpYN4,138074
169
+ acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc,sha256=VbOYkt485rf-3y5bnvWNteh4N3KVaQ0Vxy7Vyul24tI,138176
170
170
  acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc,sha256=lMIHiRwL_jqOg3OHUSjdc_-PSgFPvcDoOtgxqR0DOg0,793
171
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc,sha256=-dP2wkTfiYyiD1TnIscxnoD1q1l1J5G583PWcqzbn7A,225677
171
+ acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc,sha256=ajOkQ645O63eWk7_eEq7ilsamnsb5AhFYdIYjrEswcw,225811
172
172
  acryl_datahub_cloud/metadata/schemas/AssertionRunSummary.avsc,sha256=fLplWaSL9mLMSR3RG_BGAO7Kymmd1dBGBYc9VNNFRmY,1213
173
173
  acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc,sha256=_3jUAnv4iKpz-tU7WHWDFvyvAQGDThLccPv3hvuAaaI,5582
174
174
  acryl_datahub_cloud/metadata/schemas/AssetSettings.avsc,sha256=LBmSybFUBkQPVmIEF1GwQl0ePmTrXlm0kHbKRIm--lo,2004
@@ -197,9 +197,9 @@ acryl_datahub_cloud/metadata/schemas/CorpUserEditableInfo.avsc,sha256=6IrqWidbHP
197
197
  acryl_datahub_cloud/metadata/schemas/CorpUserInfo.avsc,sha256=oObOza-5FLjZyCjj0FN4MNV1DodgTwJSV4APduAggjk,3955
198
198
  acryl_datahub_cloud/metadata/schemas/CorpUserInvitationStatus.avsc,sha256=BwrHO_m4Iiob3llzrERUOyQA-XneWVjKBc_xSMU3kgM,3290
199
199
  acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc,sha256=QO4LuZlThXKZEv2eHZXZggUUOFA4v78mohfrUC4UNHQ,1132
200
- acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc,sha256=0smqbI0rcrfGnWq-asuYhYVNmklitr37bLh8J65AH3A,14892
200
+ acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc,sha256=RDnYnMczpKRXrN84kzmHn7_i5MFz2UxFgcjX2raktIo,21248
201
201
  acryl_datahub_cloud/metadata/schemas/CorpUserStatus.avsc,sha256=yqojAXEQ9CjRhY58RPyTUxzmFbHSANGGaMMbqiYZZIE,2538
202
- acryl_datahub_cloud/metadata/schemas/CorpUserUsageFeatures.avsc,sha256=OaAEBLjQlN7Y-UsZ4-2VNKmUSFJ4M-ENPbxMa_X7908,2411
202
+ acryl_datahub_cloud/metadata/schemas/CorpUserUsageFeatures.avsc,sha256=lGmspZ48dcYIyJwb_3RK0hxA81h9lNzNFXgpuz_FaeI,2242
203
203
  acryl_datahub_cloud/metadata/schemas/Cost.avsc,sha256=o4kYZSss2uEwJ6gCA9fhBUoyD5xUqcSxz78vkIXXzGQ,1494
204
204
  acryl_datahub_cloud/metadata/schemas/CostFeatures.avsc,sha256=hY9E4ZTGIUn_fGLHckv_LNNiPA0ZYeBgSx8wciVDis4,820
205
205
  acryl_datahub_cloud/metadata/schemas/DashboardInfo.avsc,sha256=wWMMqAA4aO5ZDSWyWfq9DHacid8TwXG7IEWZ-l4K-4o,13472
@@ -315,7 +315,7 @@ acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc,sha256=SQPrkAyV-EwsB
315
315
  acryl_datahub_cloud/metadata/schemas/FormSettings.avsc,sha256=25KfaLxbNuTzEVoqxfcgw-qQLBrx9npQnBY8YXrlfPE,740
316
316
  acryl_datahub_cloud/metadata/schemas/Forms.avsc,sha256=nyQdv1BWPPO8P8ueOt7Q5GX1C-FT8ujgaFiuzzwvyeE,23076
317
317
  acryl_datahub_cloud/metadata/schemas/GenericEntityKey.avsc,sha256=5L7OgN-0JRRZsAP87_vFNLQida-Qg5SgAWtr7FQhHaY,642
318
- acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc,sha256=Wnb5m5QM06MCvhsx1MvFOPv947ERFxeUKehkA0we-5Y,25599
318
+ acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc,sha256=OYk5tagEV5STCShDX19VfZuoQOPHaRczck1GhQCfbnc,32301
319
319
  acryl_datahub_cloud/metadata/schemas/GlobalSettingsKey.avsc,sha256=Yj8s5IdM9yF7xrhJcLGCPCXBWqSsrPbufBaQjlZ3JlU,563
320
320
  acryl_datahub_cloud/metadata/schemas/GlobalTags.avsc,sha256=4AXMjct3_torkAXcUXfzuBcpTZCH5F6bLYa9wzKXhhk,4699
321
321
  acryl_datahub_cloud/metadata/schemas/GlossaryNodeInfo.avsc,sha256=G1Cb-w9VxIAEhNqyiEsDL_ABRO9QxyTpUANKU6DQrFw,1888
@@ -365,7 +365,7 @@ acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc,sha256=soCmgrcEBE5yS
365
365
  acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc,sha256=pT14vUmpj7VJ8hinQ0pcCUtRKx6RAGHWh1eJixkqaE8,12647
366
366
  acryl_datahub_cloud/metadata/schemas/Metrics.avsc,sha256=O7DJGjOwmHbb1x_Zj7AuM_HaHKjBvkfJKfUsX8icXD4,690
367
367
  acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc,sha256=ctoQusjDpN-nQKJje0l453AQioRj0x74b-32lyA6414,9587
368
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc,sha256=7iyRz-lgq-xWuDZL4ThWXNjiicwnt8w89LWQAhqzIHc,305504
368
+ acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc,sha256=NUEYEJOIFkzXDszb8ssNMUyZbenYcwMYAlcaIOnAaB0,305690
369
369
  acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc,sha256=NZwKD7jLXDsXRML2jTm-vkYoe7wJiuAKBOVpvZRYIX0,898
370
370
  acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc,sha256=HCKrzhMDSM_4NEH2tSGmJ1b9BrcA1ytDO863C-Sv3M4,45612
371
371
  acryl_datahub_cloud/metadata/schemas/MonitorSuiteKey.avsc,sha256=-bpGsyeoLcsUVPaHvZBvm4ZvItc94SYttkvd6x56XuE,438
@@ -443,7 +443,7 @@ acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc,sha256=hT4BS3rSZYfJp
443
443
  acryl_datahub_cloud/metadata/schemas/VersionSetKey.avsc,sha256=psjGNNcFua3Zs9Xlh4HnUHNmBEU74uYdJR5g20NhRJU,659
444
444
  acryl_datahub_cloud/metadata/schemas/VersionSetProperties.avsc,sha256=fxNxEMxGdUDi_-T0sd6KJks5BWEo5AzboQxpZYKLbiQ,1434
445
445
  acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
446
- acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=kCcak_fBn_KyuysZTJIoipAzZ8EO44Amk4DWSEvplEY,581
446
+ acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=uvLNC3VyCkWA_v8e9FdA1leFf46NFKDD0AajCfihepI,581
447
447
  acryl_datahub_cloud/notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
448
448
  acryl_datahub_cloud/notifications/notification_recipient_builder.py,sha256=jmAh4q4OTjdYwySn-geRU23eiVWvHzABddr6yXii3E4,14573
449
449
  acryl_datahub_cloud/sdk/__init__.py,sha256=X95kEdCFf0IKh1b0zMZHc7uGpQZ9DjFdT84YQNoI1XE,1782
@@ -475,8 +475,8 @@ acryl_datahub_cloud/sdk/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
475
475
  acryl_datahub_cloud/sdk/entities/assertion.py,sha256=-OILvHyKAI4-5mS2bb_P44Fvk6rBOOcvaxSMXfEYvRw,15077
476
476
  acryl_datahub_cloud/sdk/entities/monitor.py,sha256=NMrhJrWYNPvorxA33S_5FOl8YCtSmmeAavTzFLtWcOo,9665
477
477
  acryl_datahub_cloud/sdk/entities/subscription.py,sha256=WbDZqjE4QCMBh1_0culwN5btcUPoFuUReRYMJU3uYas,2332
478
- acryl_datahub_cloud-0.3.14.1rc1.dist-info/METADATA,sha256=sA96aWhy1ALzeoc_eCKyal3cm3KyTkdJDgP3YSbiXW8,4858
479
- acryl_datahub_cloud-0.3.14.1rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
480
- acryl_datahub_cloud-0.3.14.1rc1.dist-info/entry_points.txt,sha256=veuyIaEzm7JF2q-C8Q-RcSV6V5Y9LvnVvIhTjiT5WUs,1342
481
- acryl_datahub_cloud-0.3.14.1rc1.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
482
- acryl_datahub_cloud-0.3.14.1rc1.dist-info/RECORD,,
478
+ acryl_datahub_cloud-0.3.14.1rc3.dist-info/METADATA,sha256=jm0LkIG-QyWAtUqgngXRNSete8xfSUaRCWJVCUW5EGk,4858
479
+ acryl_datahub_cloud-0.3.14.1rc3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
480
+ acryl_datahub_cloud-0.3.14.1rc3.dist-info/entry_points.txt,sha256=veuyIaEzm7JF2q-C8Q-RcSV6V5Y9LvnVvIhTjiT5WUs,1342
481
+ acryl_datahub_cloud-0.3.14.1rc3.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
482
+ acryl_datahub_cloud-0.3.14.1rc3.dist-info/RECORD,,