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.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +1981 -1981
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +8 -0
- acryl_datahub_cloud/metadata/schema.avsc +25682 -26064
- acryl_datahub_cloud/metadata/schema_classes.py +865 -667
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +127 -0
- acryl_datahub_cloud/metadata/schemas/CorpUserUsageFeatures.avsc +0 -7
- acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +136 -0
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/__init__.py +3 -3
- {acryl_datahub_cloud-0.3.14.1rc1.dist-info → acryl_datahub_cloud-0.3.14.1rc3.dist-info}/METADATA +48 -48
- {acryl_datahub_cloud-0.3.14.1rc1.dist-info → acryl_datahub_cloud-0.3.14.1rc3.dist-info}/RECORD +18 -18
- {acryl_datahub_cloud-0.3.14.1rc1.dist-info → acryl_datahub_cloud-0.3.14.1rc3.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.14.1rc1.dist-info → acryl_datahub_cloud-0.3.14.1rc3.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.14.1rc1.dist-info → acryl_datahub_cloud-0.3.14.1rc3.dist-info}/top_level.txt +0 -0
|
@@ -7,6 +7,10 @@
|
|
|
7
7
|
# pylint: skip-file
|
|
8
8
|
# fmt: off
|
|
9
9
|
# isort: skip_file
|
|
10
|
+
from ......schema_classes import AiAssistantSettingsClass
|
|
11
|
+
from ......schema_classes import AiInstructionClass
|
|
12
|
+
from ......schema_classes import AiInstructionStateClass
|
|
13
|
+
from ......schema_classes import AiInstructionTypeClass
|
|
10
14
|
from ......schema_classes import ApplicationsSettingsClass
|
|
11
15
|
from ......schema_classes import DocPropagationFeatureSettingsClass
|
|
12
16
|
from ......schema_classes import DocumentationAiSettingsClass
|
|
@@ -27,6 +31,10 @@ from ......schema_classes import TeamsIntegrationSettingsClass
|
|
|
27
31
|
from ......schema_classes import TeamsUserClass
|
|
28
32
|
|
|
29
33
|
|
|
34
|
+
AiAssistantSettings = AiAssistantSettingsClass
|
|
35
|
+
AiInstruction = AiInstructionClass
|
|
36
|
+
AiInstructionState = AiInstructionStateClass
|
|
37
|
+
AiInstructionType = AiInstructionTypeClass
|
|
30
38
|
ApplicationsSettings = ApplicationsSettingsClass
|
|
31
39
|
DocPropagationFeatureSettings = DocPropagationFeatureSettingsClass
|
|
32
40
|
DocumentationAiSettings = DocumentationAiSettingsClass
|