acryl-datahub-cloud 0.3.7.7rc6__py3-none-any.whl → 0.3.7.7rc8__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_usage_reporting/query_builder.py +163 -0
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +24 -126
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +1507 -1507
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/structured/__init__.py +2 -0
- acryl_datahub_cloud/metadata/schema.avsc +24528 -24891
- acryl_datahub_cloud/metadata/schema_classes.py +611 -490
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc +114 -0
- {acryl_datahub_cloud-0.3.7.7rc6.dist-info → acryl_datahub_cloud-0.3.7.7rc8.dist-info}/METADATA +37 -37
- {acryl_datahub_cloud-0.3.7.7rc6.dist-info → acryl_datahub_cloud-0.3.7.7rc8.dist-info}/RECORD +15 -13
- {acryl_datahub_cloud-0.3.7.7rc6.dist-info → acryl_datahub_cloud-0.3.7.7rc8.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.7.7rc6.dist-info → acryl_datahub_cloud-0.3.7.7rc8.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.7.7rc6.dist-info → acryl_datahub_cloud-0.3.7.7rc8.dist-info}/top_level.txt +0 -0
|
@@ -13,6 +13,7 @@ from .....schema_classes import StructuredPropertiesClass
|
|
|
13
13
|
from .....schema_classes import StructuredPropertyDefinitionClass
|
|
14
14
|
from .....schema_classes import StructuredPropertyFilterStatusClass
|
|
15
15
|
from .....schema_classes import StructuredPropertyKeyClass
|
|
16
|
+
from .....schema_classes import StructuredPropertySettingsClass
|
|
16
17
|
from .....schema_classes import StructuredPropertyValueAssignmentClass
|
|
17
18
|
|
|
18
19
|
|
|
@@ -22,6 +23,7 @@ StructuredProperties = StructuredPropertiesClass
|
|
|
22
23
|
StructuredPropertyDefinition = StructuredPropertyDefinitionClass
|
|
23
24
|
StructuredPropertyFilterStatus = StructuredPropertyFilterStatusClass
|
|
24
25
|
StructuredPropertyKey = StructuredPropertyKeyClass
|
|
26
|
+
StructuredPropertySettings = StructuredPropertySettingsClass
|
|
25
27
|
StructuredPropertyValueAssignment = StructuredPropertyValueAssignmentClass
|
|
26
28
|
|
|
27
29
|
# fmt: on
|