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

@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acryl-datahub-cloud",
3
- "version": "0.3.9rc1",
3
+ "version": "0.3.9rc2",
4
4
  "install_requires": [
5
5
  "avro-gen3==0.7.16",
6
6
  "acryl-datahub"
@@ -19601,6 +19601,24 @@
19601
19601
  "name": "sortId",
19602
19602
  "doc": "Sort identifier that determines where a version lives in the order of the Version Set.\nWhat this looks like depends on the Version Scheme. For sort ids generated by DataHub we use an 8 character string representation."
19603
19603
  },
19604
+ {
19605
+ "type": {
19606
+ "type": "enum",
19607
+ "symbolDocs": {
19608
+ "ALPHANUMERIC_GENERATED_BY_DATAHUB": "String managed by DataHub. Currently, an 8 character alphabetical string.",
19609
+ "LEXICOGRAPHIC_STRING": "String sorted lexicographically."
19610
+ },
19611
+ "name": "VersioningScheme",
19612
+ "namespace": "com.linkedin.pegasus2avro.versionset",
19613
+ "symbols": [
19614
+ "LEXICOGRAPHIC_STRING",
19615
+ "ALPHANUMERIC_GENERATED_BY_DATAHUB"
19616
+ ]
19617
+ },
19618
+ "name": "versioningScheme",
19619
+ "default": "LEXICOGRAPHIC_STRING",
19620
+ "doc": "What versioning scheme `sortId` belongs to.\nDefaults to a plain string that is lexicographically sorted."
19621
+ },
19604
19622
  {
19605
19623
  "type": [
19606
19624
  "null",
@@ -21520,6 +21538,11 @@
21520
21538
  "namespace": "com.linkedin.pegasus2avro.form",
21521
21539
  "fields": [
21522
21540
  {
21541
+ "Searchable": {
21542
+ "fieldName": "promptId",
21543
+ "fieldType": "KEYWORD",
21544
+ "queryByDefault": false
21545
+ },
21523
21546
  "type": "string",
21524
21547
  "name": "id",
21525
21548
  "doc": "The unique id for this prompt. This must be GLOBALLY unique."
@@ -26935,14 +26958,7 @@
26935
26958
  "doc": "The latest versioned entity linked to in this version set"
26936
26959
  },
26937
26960
  {
26938
- "type": {
26939
- "type": "enum",
26940
- "name": "VersioningScheme",
26941
- "namespace": "com.linkedin.pegasus2avro.versionset",
26942
- "symbols": [
26943
- "ALPHANUMERIC_GENERATED_BY_DATAHUB"
26944
- ]
26945
- },
26961
+ "type": "com.linkedin.pegasus2avro.versionset.VersioningScheme",
26946
26962
  "name": "versioningScheme",
26947
26963
  "doc": "What versioning scheme is being utilized for the versioned entities sort criterion. Static once set"
26948
26964
  }
@@ -10051,6 +10051,7 @@ class VersionPropertiesClass(_Aspect):
10051
10051
  sortId: str,
10052
10052
  aliases: Optional[List["VersionTagClass"]]=None,
10053
10053
  comment: Union[None, str]=None,
10054
+ versioningScheme: Optional[Union[str, "VersioningSchemeClass"]]=None,
10054
10055
  sourceCreatedTimestamp: Union[None, "AuditStampClass"]=None,
10055
10056
  metadataCreatedTimestamp: Union[None, "AuditStampClass"]=None,
10056
10057
  isLatest: Union[None, bool]=None,
@@ -10066,6 +10067,11 @@ class VersionPropertiesClass(_Aspect):
10066
10067
  self.aliases = aliases
10067
10068
  self.comment = comment
10068
10069
  self.sortId = sortId
10070
+ if versioningScheme is None:
10071
+ # default: 'LEXICOGRAPHIC_STRING'
10072
+ self.versioningScheme = self.RECORD_SCHEMA.fields_dict["versioningScheme"].default
10073
+ else:
10074
+ self.versioningScheme = versioningScheme
10069
10075
  self.sourceCreatedTimestamp = sourceCreatedTimestamp
10070
10076
  self.metadataCreatedTimestamp = metadataCreatedTimestamp
10071
10077
  self.isLatest = isLatest
@@ -10076,6 +10082,7 @@ class VersionPropertiesClass(_Aspect):
10076
10082
  self.aliases = list()
10077
10083
  self.comment = self.RECORD_SCHEMA.fields_dict["comment"].default
10078
10084
  self.sortId = str()
10085
+ self.versioningScheme = self.RECORD_SCHEMA.fields_dict["versioningScheme"].default
10079
10086
  self.sourceCreatedTimestamp = self.RECORD_SCHEMA.fields_dict["sourceCreatedTimestamp"].default
10080
10087
  self.metadataCreatedTimestamp = self.RECORD_SCHEMA.fields_dict["metadataCreatedTimestamp"].default
10081
10088
  self.isLatest = self.RECORD_SCHEMA.fields_dict["isLatest"].default
@@ -10132,6 +10139,17 @@ class VersionPropertiesClass(_Aspect):
10132
10139
  self._inner_dict['sortId'] = value
10133
10140
 
10134
10141
 
10142
+ @property
10143
+ def versioningScheme(self) -> Union[str, "VersioningSchemeClass"]:
10144
+ """What versioning scheme `sortId` belongs to.
10145
+ Defaults to a plain string that is lexicographically sorted."""
10146
+ return self._inner_dict.get('versioningScheme') # type: ignore
10147
+
10148
+ @versioningScheme.setter
10149
+ def versioningScheme(self, value: Union[str, "VersioningSchemeClass"]) -> None:
10150
+ self._inner_dict['versioningScheme'] = value
10151
+
10152
+
10135
10153
  @property
10136
10154
  def sourceCreatedTimestamp(self) -> Union[None, "AuditStampClass"]:
10137
10155
  """Timestamp reflecting when this asset version was created in the source system."""
@@ -35968,7 +35986,7 @@ class VersionSetPropertiesClass(_Aspect):
35968
35986
  def _restore_defaults(self) -> None:
35969
35987
  self.customProperties = dict()
35970
35988
  self.latest = str()
35971
- self.versioningScheme = VersioningSchemeClass.ALPHANUMERIC_GENERATED_BY_DATAHUB
35989
+ self.versioningScheme = VersioningSchemeClass.LEXICOGRAPHIC_STRING
35972
35990
 
35973
35991
 
35974
35992
  @property
@@ -36004,7 +36022,12 @@ class VersionSetPropertiesClass(_Aspect):
36004
36022
  class VersioningSchemeClass(object):
36005
36023
  # No docs available.
36006
36024
 
36025
+ LEXICOGRAPHIC_STRING = "LEXICOGRAPHIC_STRING"
36026
+ """String sorted lexicographically."""
36027
+
36007
36028
  ALPHANUMERIC_GENERATED_BY_DATAHUB = "ALPHANUMERIC_GENERATED_BY_DATAHUB"
36029
+ """String managed by DataHub. Currently, an 8 character alphabetical string."""
36030
+
36008
36031
 
36009
36032
 
36010
36033
  class DataHubViewDefinitionClass(DictWrapper):
@@ -53,6 +53,11 @@
53
53
  "namespace": "com.linkedin.pegasus2avro.form",
54
54
  "fields": [
55
55
  {
56
+ "Searchable": {
57
+ "fieldName": "promptId",
58
+ "fieldType": "KEYWORD",
59
+ "queryByDefault": false
60
+ },
56
61
  "type": "string",
57
62
  "name": "id",
58
63
  "doc": "The unique id for this prompt. This must be GLOBALLY unique."
@@ -137,6 +137,24 @@
137
137
  "name": "sortId",
138
138
  "doc": "Sort identifier that determines where a version lives in the order of the Version Set.\nWhat this looks like depends on the Version Scheme. For sort ids generated by DataHub we use an 8 character string representation."
139
139
  },
140
+ {
141
+ "type": {
142
+ "type": "enum",
143
+ "symbolDocs": {
144
+ "ALPHANUMERIC_GENERATED_BY_DATAHUB": "String managed by DataHub. Currently, an 8 character alphabetical string.",
145
+ "LEXICOGRAPHIC_STRING": "String sorted lexicographically."
146
+ },
147
+ "name": "VersioningScheme",
148
+ "namespace": "com.linkedin.pegasus2avro.versionset",
149
+ "symbols": [
150
+ "LEXICOGRAPHIC_STRING",
151
+ "ALPHANUMERIC_GENERATED_BY_DATAHUB"
152
+ ]
153
+ },
154
+ "name": "versioningScheme",
155
+ "default": "LEXICOGRAPHIC_STRING",
156
+ "doc": "What versioning scheme `sortId` belongs to.\nDefaults to a plain string that is lexicographically sorted."
157
+ },
140
158
  {
141
159
  "type": [
142
160
  "null",
@@ -36,9 +36,14 @@
36
36
  {
37
37
  "type": {
38
38
  "type": "enum",
39
+ "symbolDocs": {
40
+ "ALPHANUMERIC_GENERATED_BY_DATAHUB": "String managed by DataHub. Currently, an 8 character alphabetical string.",
41
+ "LEXICOGRAPHIC_STRING": "String sorted lexicographically."
42
+ },
39
43
  "name": "VersioningScheme",
40
44
  "namespace": "com.linkedin.pegasus2avro.versionset",
41
45
  "symbols": [
46
+ "LEXICOGRAPHIC_STRING",
42
47
  "ALPHANUMERIC_GENERATED_BY_DATAHUB"
43
48
  ]
44
49
  },
@@ -1,90 +1,90 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: acryl-datahub-cloud
3
- Version: 0.3.9rc1
3
+ Version: 0.3.9rc2
4
4
  Requires-Dist: avro-gen3==0.7.16
5
5
  Requires-Dist: acryl-datahub
6
6
  Provides-Extra: datahub-lineage-features
7
- Requires-Dist: pyarrow; extra == "datahub-lineage-features"
8
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
9
7
  Requires-Dist: duckdb; extra == "datahub-lineage-features"
8
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
9
+ Requires-Dist: pyarrow; extra == "datahub-lineage-features"
10
10
  Requires-Dist: pandas; extra == "datahub-lineage-features"
11
11
  Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
12
12
  Provides-Extra: datahub-reporting-forms
13
- Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
14
- Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
15
13
  Requires-Dist: duckdb; extra == "datahub-reporting-forms"
16
14
  Requires-Dist: boto3; extra == "datahub-reporting-forms"
15
+ Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
16
+ Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
17
17
  Requires-Dist: pandas; extra == "datahub-reporting-forms"
18
18
  Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
19
19
  Provides-Extra: datahub-reporting-extract-graph
20
- Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
21
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
22
20
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
23
21
  Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
22
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
23
+ Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
24
24
  Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
25
25
  Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
26
26
  Provides-Extra: datahub-reporting-extract-sql
27
- Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
28
27
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
29
28
  Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
29
+ Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
30
30
  Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
31
31
  Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
32
32
  Provides-Extra: datahub-usage-reporting
33
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
34
33
  Requires-Dist: duckdb; extra == "datahub-usage-reporting"
34
+ Requires-Dist: boto3; extra == "datahub-usage-reporting"
35
+ Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
36
+ Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
35
37
  Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
38
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
36
39
  Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
37
- Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
38
- Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
39
- Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
40
40
  Requires-Dist: polars==1.23.0; extra == "datahub-usage-reporting"
41
- Requires-Dist: boto3; extra == "datahub-usage-reporting"
42
41
  Requires-Dist: pandas; extra == "datahub-usage-reporting"
43
42
  Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
44
- Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
43
+ Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
44
+ Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
45
45
  Provides-Extra: datahub-metadata-sharing
46
46
  Requires-Dist: tenacity; extra == "datahub-metadata-sharing"
47
47
  Provides-Extra: acryl-cs-issues
48
48
  Requires-Dist: jinja2; extra == "acryl-cs-issues"
49
- Requires-Dist: openai; extra == "acryl-cs-issues"
50
49
  Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
51
50
  Requires-Dist: zenpy; extra == "acryl-cs-issues"
51
+ Requires-Dist: openai; extra == "acryl-cs-issues"
52
52
  Provides-Extra: all
53
- Requires-Dist: tenacity; extra == "all"
54
- Requires-Dist: duckdb; extra == "all"
55
- Requires-Dist: zenpy; extra == "all"
53
+ Requires-Dist: boto3; extra == "all"
54
+ Requires-Dist: scipy<=1.14.1; extra == "all"
56
55
  Requires-Dist: pyarrow<=18.0.0; extra == "all"
56
+ Requires-Dist: zenpy; extra == "all"
57
+ Requires-Dist: opensearch-py==2.4.2; extra == "all"
57
58
  Requires-Dist: pyarrow; extra == "all"
58
- Requires-Dist: termcolor==2.5.0; extra == "all"
59
- Requires-Dist: scipy<=1.14.1; extra == "all"
60
- Requires-Dist: elasticsearch==7.13.4; extra == "all"
61
- Requires-Dist: boto3; extra == "all"
62
59
  Requires-Dist: pandas; extra == "all"
63
- Requires-Dist: pydantic<2; extra == "all"
64
- Requires-Dist: slack-sdk; extra == "all"
65
60
  Requires-Dist: openai; extra == "all"
66
- Requires-Dist: opensearch-py==2.4.2; extra == "all"
61
+ Requires-Dist: duckdb; extra == "all"
62
+ Requires-Dist: numpy<2; extra == "all"
63
+ Requires-Dist: tenacity; extra == "all"
67
64
  Requires-Dist: jinja2; extra == "all"
65
+ Requires-Dist: slack-sdk; extra == "all"
68
66
  Requires-Dist: polars==1.23.0; extra == "all"
69
- Requires-Dist: numpy<2; extra == "all"
67
+ Requires-Dist: elasticsearch==7.13.4; extra == "all"
68
+ Requires-Dist: pydantic<2; extra == "all"
69
+ Requires-Dist: termcolor==2.5.0; extra == "all"
70
70
  Provides-Extra: dev
71
- Requires-Dist: acryl-datahub[dev]; extra == "dev"
72
- Requires-Dist: openai; extra == "dev"
73
- Requires-Dist: opensearch-py==2.4.2; extra == "dev"
74
- Requires-Dist: tenacity; extra == "dev"
75
71
  Requires-Dist: duckdb; extra == "dev"
76
- Requires-Dist: zenpy; extra == "dev"
72
+ Requires-Dist: boto3; extra == "dev"
73
+ Requires-Dist: numpy<2; extra == "dev"
74
+ Requires-Dist: scipy<=1.14.1; extra == "dev"
75
+ Requires-Dist: tenacity; extra == "dev"
77
76
  Requires-Dist: pyarrow<=18.0.0; extra == "dev"
78
77
  Requires-Dist: jinja2; extra == "dev"
78
+ Requires-Dist: slack-sdk; extra == "dev"
79
+ Requires-Dist: zenpy; extra == "dev"
80
+ Requires-Dist: opensearch-py==2.4.2; extra == "dev"
79
81
  Requires-Dist: pyarrow; extra == "dev"
80
- Requires-Dist: termcolor==2.5.0; extra == "dev"
81
- Requires-Dist: scipy<=1.14.1; extra == "dev"
82
- Requires-Dist: elasticsearch==7.13.4; extra == "dev"
83
82
  Requires-Dist: polars==1.23.0; extra == "dev"
84
- Requires-Dist: boto3; extra == "dev"
85
83
  Requires-Dist: pandas; extra == "dev"
84
+ Requires-Dist: termcolor==2.5.0; extra == "dev"
86
85
  Requires-Dist: pydantic<2; extra == "dev"
87
- Requires-Dist: numpy<2; extra == "dev"
88
- Requires-Dist: slack-sdk; extra == "dev"
86
+ Requires-Dist: elasticsearch==7.13.4; extra == "dev"
87
+ Requires-Dist: openai; extra == "dev"
88
+ Requires-Dist: acryl-datahub[dev]; extra == "dev"
89
89
  Dynamic: provides-extra
90
90
  Dynamic: requires-dist
@@ -1,5 +1,5 @@
1
1
  acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
2
- acryl_datahub_cloud/_codegen_config.json,sha256=l2OtMHuw6XDX-JqgDQehtVz2J_xzmv6Gi6aOlZq1nBs,555
2
+ acryl_datahub_cloud/_codegen_config.json,sha256=LyIHVIU5ZtKigTxo3DzY-mZ-LDg5QBx5ypjaih9EPGk,555
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=2pAA7GrRfVUvVCxPAgxi4BVgpwq9F_bvVWfjtkjAHVg,25231
@@ -37,8 +37,8 @@ acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vE
37
37
  acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
38
  acryl_datahub_cloud/lineage_features/source.py,sha256=Edve1oBoR87RTloAfjAuxgULlMI_HNSFuQfbiVjkac4,6412
39
39
  acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
40
- acryl_datahub_cloud/metadata/schema.avsc,sha256=IC5Bb4s9GyxOjGarp3bTosdk-_xTLdnVQWpoWOGGdbE,1031279
41
- acryl_datahub_cloud/metadata/schema_classes.py,sha256=lP_NDQyHqVkdHhIaKshjc0nm4yvGm95Nr5M8dRNSOIQ,1428234
40
+ acryl_datahub_cloud/metadata/schema.avsc,sha256=nXObz5zLPBlX4t7DTAReyTYmWHk8-mWm4p_YOBHBxkY,1032021
41
+ acryl_datahub_cloud/metadata/schema_classes.py,sha256=neUnuxl8qRpEwFqpJZGPDJwgTsbYScL2c1vss2PUEnI,1429283
42
42
  acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
43
43
  acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=8N3G83tOLmrlBufpIBtzVx5bPlMgney1Od_PxUc8vn4,157128
44
44
  acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
@@ -281,7 +281,7 @@ acryl_datahub_cloud/metadata/schemas/ExecutionRequestKey.avsc,sha256=SvjnlTAGYsS
281
281
  acryl_datahub_cloud/metadata/schemas/ExecutionRequestResult.avsc,sha256=BKFKf7Yy9jyyzdhvtcCDIzxajmEejRcMLSz8H-98E7c,2671
282
282
  acryl_datahub_cloud/metadata/schemas/ExecutionRequestSignal.avsc,sha256=IG3w4nplDVzUVYcVjgdG7K98oyUgTBC1s5xY31Mp-UU,2525
283
283
  acryl_datahub_cloud/metadata/schemas/Filter.avsc,sha256=HIZV9ClkSozTBEFzjS9YlLVFudrkjkMThY5Yx1EWQow,6176
284
- acryl_datahub_cloud/metadata/schemas/FormInfo.avsc,sha256=udWOBXAGvHDj-ngZr0kaz_J_jei6AqUQut6vP_uscw4,19002
284
+ acryl_datahub_cloud/metadata/schemas/FormInfo.avsc,sha256=f2CSunJE3dBp4oG0hfKixJiCs8acZjdGW5PSW51NymQ,19170
285
285
  acryl_datahub_cloud/metadata/schemas/FormKey.avsc,sha256=1-wE28B8T3WJ3JtexreNtFvP3To3n7U-jvYudCuSM9o,437
286
286
  acryl_datahub_cloud/metadata/schemas/Forms.avsc,sha256=nyQdv1BWPPO8P8ueOt7Q5GX1C-FT8ujgaFiuzzwvyeE,23076
287
287
  acryl_datahub_cloud/metadata/schemas/GenericEntityKey.avsc,sha256=5L7OgN-0JRRZsAP87_vFNLQida-Qg5SgAWtr7FQhHaY,642
@@ -403,13 +403,13 @@ acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc,sha256=iaeFRbL2aVSYFwj
403
403
  acryl_datahub_cloud/metadata/schemas/UsageAggregation.avsc,sha256=QaF6lyWGUq8IlRel2h4qIXOXCMxBhrwjoaUELsd-I6g,4538
404
404
  acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc,sha256=B7mqUWVwduvWSP9zpVwlPCVG_X68SNcQovaivnUfkAE,6512
405
405
  acryl_datahub_cloud/metadata/schemas/VersionInfo.avsc,sha256=9gMcZ8tjuhgcZiq2gOAp_EOV9q9jvuOgfph6m6v_X7c,1189
406
- acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc,sha256=2wtE0AbqkLGu6ifRoHClIfPsJxymUKuTonY5_JA7Ufk,7395
406
+ acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc,sha256=hT4BS3rSZYfJpjzv1rYzJJQjU_r_PP3h-3GSrSObf38,8089
407
407
  acryl_datahub_cloud/metadata/schemas/VersionSetKey.avsc,sha256=psjGNNcFua3Zs9Xlh4HnUHNmBEU74uYdJR5g20NhRJU,659
408
- acryl_datahub_cloud/metadata/schemas/VersionSetProperties.avsc,sha256=yrhhVNioD11nFlDO7IfUbxAQjhA9Tr-4wnAYH5I9W74,1172
408
+ acryl_datahub_cloud/metadata/schemas/VersionSetProperties.avsc,sha256=fxNxEMxGdUDi_-T0sd6KJks5BWEo5AzboQxpZYKLbiQ,1434
409
409
  acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
410
410
  acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=uvLNC3VyCkWA_v8e9FdA1leFf46NFKDD0AajCfihepI,581
411
- acryl_datahub_cloud-0.3.9rc1.dist-info/METADATA,sha256=yTCMGSFBMB6dJBoa2Z2VhTwGDA_ol1wnNiVhNNfa7UI,4430
412
- acryl_datahub_cloud-0.3.9rc1.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
413
- acryl_datahub_cloud-0.3.9rc1.dist-info/entry_points.txt,sha256=oXC4Hq3nxUKi9LR5NwsY17q6anLmYJKbapTx9Ij6vuc,1205
414
- acryl_datahub_cloud-0.3.9rc1.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
415
- acryl_datahub_cloud-0.3.9rc1.dist-info/RECORD,,
411
+ acryl_datahub_cloud-0.3.9rc2.dist-info/METADATA,sha256=WmjYjIHLRGejZ6FVjg3mrFxJyY9vR7_oVF188gONskA,4430
412
+ acryl_datahub_cloud-0.3.9rc2.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
413
+ acryl_datahub_cloud-0.3.9rc2.dist-info/entry_points.txt,sha256=oXC4Hq3nxUKi9LR5NwsY17q6anLmYJKbapTx9Ij6vuc,1205
414
+ acryl_datahub_cloud-0.3.9rc2.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
415
+ acryl_datahub_cloud-0.3.9rc2.dist-info/RECORD,,