acryl-datahub 1.0.0rc8__py3-none-any.whl → 1.0.0rc9__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 might be problematic. Click here for more details.
- {acryl_datahub-1.0.0rc8.dist-info → acryl_datahub-1.0.0rc9.dist-info}/METADATA +2445 -2445
- {acryl_datahub-1.0.0rc8.dist-info → acryl_datahub-1.0.0rc9.dist-info}/RECORD +46 -42
- datahub/_version.py +1 -1
- datahub/api/entities/dataset/dataset.py +731 -42
- datahub/api/entities/structuredproperties/structuredproperties.py +2 -2
- datahub/cli/specific/dataset_cli.py +128 -14
- datahub/ingestion/graph/client.py +15 -11
- datahub/ingestion/graph/filters.py +64 -37
- datahub/ingestion/source/cassandra/cassandra.py +1 -1
- datahub/ingestion/source/preset.py +7 -4
- datahub/ingestion/source/superset.py +158 -24
- datahub/metadata/_schema_classes.py +157 -14
- datahub/metadata/_urns/urn_defs.py +58 -58
- datahub/metadata/schema.avsc +23 -10
- datahub/metadata/schemas/CorpGroupKey.avsc +2 -1
- datahub/metadata/schemas/CorpUserKey.avsc +2 -1
- datahub/metadata/schemas/DataProcessKey.avsc +2 -1
- datahub/metadata/schemas/DataProductKey.avsc +2 -1
- datahub/metadata/schemas/GlossaryNodeKey.avsc +2 -1
- datahub/metadata/schemas/GlossaryTermKey.avsc +2 -1
- datahub/metadata/schemas/MLFeatureKey.avsc +2 -1
- datahub/metadata/schemas/MLFeatureTableKey.avsc +2 -1
- datahub/metadata/schemas/MLModelGroupKey.avsc +2 -1
- datahub/metadata/schemas/MLModelKey.avsc +2 -1
- datahub/metadata/schemas/MLPrimaryKeyKey.avsc +2 -1
- datahub/metadata/schemas/PostKey.avsc +2 -1
- datahub/metadata/schemas/SchemaFieldKey.avsc +2 -1
- datahub/metadata/schemas/VersionProperties.avsc +18 -0
- datahub/metadata/schemas/VersionSetProperties.avsc +5 -0
- datahub/pydantic/__init__.py +0 -0
- datahub/pydantic/compat.py +58 -0
- datahub/sdk/__init__.py +1 -0
- datahub/sdk/_all_entities.py +1 -1
- datahub/sdk/_shared.py +88 -3
- datahub/sdk/container.py +7 -1
- datahub/sdk/dataset.py +7 -1
- datahub/sdk/{_entity.py → entity.py} +4 -0
- datahub/sdk/entity_client.py +1 -1
- datahub/sdk/main_client.py +7 -1
- datahub/sdk/resolver_client.py +17 -29
- datahub/sdk/search_client.py +50 -0
- datahub/sdk/search_filters.py +374 -0
- {acryl_datahub-1.0.0rc8.dist-info → acryl_datahub-1.0.0rc9.dist-info}/LICENSE +0 -0
- {acryl_datahub-1.0.0rc8.dist-info → acryl_datahub-1.0.0rc9.dist-info}/WHEEL +0 -0
- {acryl_datahub-1.0.0rc8.dist-info → acryl_datahub-1.0.0rc9.dist-info}/entry_points.txt +0 -0
- {acryl_datahub-1.0.0rc8.dist-info → acryl_datahub-1.0.0rc9.dist-info}/top_level.txt +0 -0
|
@@ -6272,6 +6272,7 @@ class VersionPropertiesClass(_Aspect):
|
|
|
6272
6272
|
sortId: str,
|
|
6273
6273
|
aliases: Optional[List["VersionTagClass"]]=None,
|
|
6274
6274
|
comment: Union[None, str]=None,
|
|
6275
|
+
versioningScheme: Optional[Union[str, "VersioningSchemeClass"]]=None,
|
|
6275
6276
|
sourceCreatedTimestamp: Union[None, "AuditStampClass"]=None,
|
|
6276
6277
|
metadataCreatedTimestamp: Union[None, "AuditStampClass"]=None,
|
|
6277
6278
|
isLatest: Union[None, bool]=None,
|
|
@@ -6287,6 +6288,11 @@ class VersionPropertiesClass(_Aspect):
|
|
|
6287
6288
|
self.aliases = aliases
|
|
6288
6289
|
self.comment = comment
|
|
6289
6290
|
self.sortId = sortId
|
|
6291
|
+
if versioningScheme is None:
|
|
6292
|
+
# default: 'LEXICOGRAPHIC_STRING'
|
|
6293
|
+
self.versioningScheme = self.RECORD_SCHEMA.fields_dict["versioningScheme"].default
|
|
6294
|
+
else:
|
|
6295
|
+
self.versioningScheme = versioningScheme
|
|
6290
6296
|
self.sourceCreatedTimestamp = sourceCreatedTimestamp
|
|
6291
6297
|
self.metadataCreatedTimestamp = metadataCreatedTimestamp
|
|
6292
6298
|
self.isLatest = isLatest
|
|
@@ -6297,6 +6303,7 @@ class VersionPropertiesClass(_Aspect):
|
|
|
6297
6303
|
self.aliases = list()
|
|
6298
6304
|
self.comment = self.RECORD_SCHEMA.fields_dict["comment"].default
|
|
6299
6305
|
self.sortId = str()
|
|
6306
|
+
self.versioningScheme = self.RECORD_SCHEMA.fields_dict["versioningScheme"].default
|
|
6300
6307
|
self.sourceCreatedTimestamp = self.RECORD_SCHEMA.fields_dict["sourceCreatedTimestamp"].default
|
|
6301
6308
|
self.metadataCreatedTimestamp = self.RECORD_SCHEMA.fields_dict["metadataCreatedTimestamp"].default
|
|
6302
6309
|
self.isLatest = self.RECORD_SCHEMA.fields_dict["isLatest"].default
|
|
@@ -6353,6 +6360,17 @@ class VersionPropertiesClass(_Aspect):
|
|
|
6353
6360
|
self._inner_dict['sortId'] = value
|
|
6354
6361
|
|
|
6355
6362
|
|
|
6363
|
+
@property
|
|
6364
|
+
def versioningScheme(self) -> Union[str, "VersioningSchemeClass"]:
|
|
6365
|
+
"""What versioning scheme `sortId` belongs to.
|
|
6366
|
+
Defaults to a plain string that is lexicographically sorted."""
|
|
6367
|
+
return self._inner_dict.get('versioningScheme') # type: ignore
|
|
6368
|
+
|
|
6369
|
+
@versioningScheme.setter
|
|
6370
|
+
def versioningScheme(self, value: Union[str, "VersioningSchemeClass"]) -> None:
|
|
6371
|
+
self._inner_dict['versioningScheme'] = value
|
|
6372
|
+
|
|
6373
|
+
|
|
6356
6374
|
@property
|
|
6357
6375
|
def sourceCreatedTimestamp(self) -> Union[None, "AuditStampClass"]:
|
|
6358
6376
|
"""Timestamp reflecting when this asset version was created in the source system."""
|
|
@@ -9810,7 +9828,7 @@ class DataProductKeyClass(_Aspect):
|
|
|
9810
9828
|
|
|
9811
9829
|
|
|
9812
9830
|
ASPECT_NAME = 'dataProductKey'
|
|
9813
|
-
ASPECT_INFO = {'keyForEntity': 'dataProduct', 'entityCategory': 'core', 'entityAspects': ['ownership', 'glossaryTerms', 'globalTags', 'domains', 'dataProductProperties', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults']}
|
|
9831
|
+
ASPECT_INFO = {'keyForEntity': 'dataProduct', 'entityCategory': 'core', 'entityAspects': ['ownership', 'glossaryTerms', 'globalTags', 'domains', 'dataProductProperties', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
9814
9832
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.dataproduct.DataProductKey")
|
|
9815
9833
|
|
|
9816
9834
|
def __init__(self,
|
|
@@ -14670,7 +14688,7 @@ class CorpGroupKeyClass(_Aspect):
|
|
|
14670
14688
|
|
|
14671
14689
|
|
|
14672
14690
|
ASPECT_NAME = 'corpGroupKey'
|
|
14673
|
-
ASPECT_INFO = {'keyForEntity': 'corpGroup', 'entityCategory': '_unset_', 'entityAspects': ['corpGroupInfo', 'corpGroupEditableInfo', 'globalTags', 'ownership', 'status', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults'], 'entityDoc': 'CorpGroup represents an identity of a group of users in the enterprise.'}
|
|
14691
|
+
ASPECT_INFO = {'keyForEntity': 'corpGroup', 'entityCategory': '_unset_', 'entityAspects': ['corpGroupInfo', 'corpGroupEditableInfo', 'globalTags', 'ownership', 'status', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes'], 'entityDoc': 'CorpGroup represents an identity of a group of users in the enterprise.'}
|
|
14674
14692
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.CorpGroupKey")
|
|
14675
14693
|
|
|
14676
14694
|
def __init__(self,
|
|
@@ -14699,7 +14717,7 @@ class CorpUserKeyClass(_Aspect):
|
|
|
14699
14717
|
|
|
14700
14718
|
|
|
14701
14719
|
ASPECT_NAME = 'corpUserKey'
|
|
14702
|
-
ASPECT_INFO = {'keyForEntity': 'corpuser', 'entityCategory': '_unset_', 'entityAspects': ['corpUserInfo', 'corpUserEditableInfo', 'corpUserStatus', 'groupMembership', 'globalTags', 'status', 'corpUserCredentials', 'nativeGroupMembership', 'corpUserSettings', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults'], 'entityDoc': 'CorpUser represents an identity of a person (or an account) in the enterprise.'}
|
|
14720
|
+
ASPECT_INFO = {'keyForEntity': 'corpuser', 'entityCategory': '_unset_', 'entityAspects': ['corpUserInfo', 'corpUserEditableInfo', 'corpUserStatus', 'groupMembership', 'globalTags', 'status', 'corpUserCredentials', 'nativeGroupMembership', 'corpUserSettings', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes'], 'entityDoc': 'CorpUser represents an identity of a person (or an account) in the enterprise.'}
|
|
14703
14721
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.CorpUserKey")
|
|
14704
14722
|
|
|
14705
14723
|
def __init__(self,
|
|
@@ -15357,7 +15375,7 @@ class DataProcessKeyClass(_Aspect):
|
|
|
15357
15375
|
|
|
15358
15376
|
|
|
15359
15377
|
ASPECT_NAME = 'dataProcessKey'
|
|
15360
|
-
ASPECT_INFO = {'keyForEntity': 'dataProcess', 'entityCategory': '_unset_', 'entityAspects': ['dataProcessInfo', 'ownership', 'status', 'testResults']}
|
|
15378
|
+
ASPECT_INFO = {'keyForEntity': 'dataProcess', 'entityCategory': '_unset_', 'entityAspects': ['dataProcessInfo', 'ownership', 'status', 'testResults', 'subTypes']}
|
|
15361
15379
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataProcessKey")
|
|
15362
15380
|
|
|
15363
15381
|
def __init__(self,
|
|
@@ -15613,7 +15631,7 @@ class GlossaryNodeKeyClass(_Aspect):
|
|
|
15613
15631
|
|
|
15614
15632
|
|
|
15615
15633
|
ASPECT_NAME = 'glossaryNodeKey'
|
|
15616
|
-
ASPECT_INFO = {'keyForEntity': 'glossaryNode', 'entityCategory': 'core', 'entityAspects': ['glossaryNodeInfo', 'institutionalMemory', 'ownership', 'status', 'structuredProperties', 'forms', 'testResults']}
|
|
15634
|
+
ASPECT_INFO = {'keyForEntity': 'glossaryNode', 'entityCategory': 'core', 'entityAspects': ['glossaryNodeInfo', 'institutionalMemory', 'ownership', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
15617
15635
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.GlossaryNodeKey")
|
|
15618
15636
|
|
|
15619
15637
|
def __init__(self,
|
|
@@ -15642,7 +15660,7 @@ class GlossaryTermKeyClass(_Aspect):
|
|
|
15642
15660
|
|
|
15643
15661
|
|
|
15644
15662
|
ASPECT_NAME = 'glossaryTermKey'
|
|
15645
|
-
ASPECT_INFO = {'keyForEntity': 'glossaryTerm', 'entityCategory': 'core', 'entityAspects': ['glossaryTermInfo', 'glossaryRelatedTerms', 'institutionalMemory', 'schemaMetadata', 'ownership', 'deprecation', 'domains', 'status', 'browsePaths', 'structuredProperties', 'forms', 'testResults']}
|
|
15663
|
+
ASPECT_INFO = {'keyForEntity': 'glossaryTerm', 'entityCategory': 'core', 'entityAspects': ['glossaryTermInfo', 'glossaryRelatedTerms', 'institutionalMemory', 'schemaMetadata', 'ownership', 'deprecation', 'domains', 'status', 'browsePaths', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
15646
15664
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.GlossaryTermKey")
|
|
15647
15665
|
|
|
15648
15666
|
def __init__(self,
|
|
@@ -15729,7 +15747,7 @@ class MLFeatureKeyClass(_Aspect):
|
|
|
15729
15747
|
|
|
15730
15748
|
|
|
15731
15749
|
ASPECT_NAME = 'mlFeatureKey'
|
|
15732
|
-
ASPECT_INFO = {'keyForEntity': 'mlFeature', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureProperties', 'domains', 'mlFeatureProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults']}
|
|
15750
|
+
ASPECT_INFO = {'keyForEntity': 'mlFeature', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureProperties', 'domains', 'mlFeatureProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
15733
15751
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLFeatureKey")
|
|
15734
15752
|
|
|
15735
15753
|
def __init__(self,
|
|
@@ -15771,7 +15789,7 @@ class MLFeatureTableKeyClass(_Aspect):
|
|
|
15771
15789
|
|
|
15772
15790
|
|
|
15773
15791
|
ASPECT_NAME = 'mlFeatureTableKey'
|
|
15774
|
-
ASPECT_INFO = {'keyForEntity': 'mlFeatureTable', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureTableProperties', 'domains', 'mlFeatureTableProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults']}
|
|
15792
|
+
ASPECT_INFO = {'keyForEntity': 'mlFeatureTable', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureTableProperties', 'domains', 'mlFeatureTableProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
15775
15793
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLFeatureTableKey")
|
|
15776
15794
|
|
|
15777
15795
|
def __init__(self,
|
|
@@ -15868,7 +15886,7 @@ class MLModelGroupKeyClass(_Aspect):
|
|
|
15868
15886
|
|
|
15869
15887
|
|
|
15870
15888
|
ASPECT_NAME = 'mlModelGroupKey'
|
|
15871
|
-
ASPECT_INFO = {'keyForEntity': 'mlModelGroup', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelGroupProperties', 'domains', 'mlModelGroupProperties', 'ownership', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults']}
|
|
15889
|
+
ASPECT_INFO = {'keyForEntity': 'mlModelGroup', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelGroupProperties', 'domains', 'mlModelGroupProperties', 'ownership', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
15872
15890
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelGroupKey")
|
|
15873
15891
|
|
|
15874
15892
|
def __init__(self,
|
|
@@ -15923,7 +15941,7 @@ class MLModelKeyClass(_Aspect):
|
|
|
15923
15941
|
|
|
15924
15942
|
|
|
15925
15943
|
ASPECT_NAME = 'mlModelKey'
|
|
15926
|
-
ASPECT_INFO = {'keyForEntity': 'mlModel', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelProperties', 'domains', 'ownership', 'mlModelProperties', 'intendedUse', 'mlModelFactorPrompts', 'mlModelMetrics', 'mlModelEvaluationData', 'mlModelTrainingData', 'mlModelQuantitativeAnalyses', 'mlModelEthicalConsiderations', 'mlModelCaveatsAndRecommendations', 'institutionalMemory', 'sourceCode', 'status', 'cost', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'versionProperties']}
|
|
15944
|
+
ASPECT_INFO = {'keyForEntity': 'mlModel', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelProperties', 'domains', 'ownership', 'mlModelProperties', 'intendedUse', 'mlModelFactorPrompts', 'mlModelMetrics', 'mlModelEvaluationData', 'mlModelTrainingData', 'mlModelQuantitativeAnalyses', 'mlModelEthicalConsiderations', 'mlModelCaveatsAndRecommendations', 'institutionalMemory', 'sourceCode', 'status', 'cost', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'versionProperties', 'subTypes']}
|
|
15927
15945
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelKey")
|
|
15928
15946
|
|
|
15929
15947
|
def __init__(self,
|
|
@@ -15978,7 +15996,7 @@ class MLPrimaryKeyKeyClass(_Aspect):
|
|
|
15978
15996
|
|
|
15979
15997
|
|
|
15980
15998
|
ASPECT_NAME = 'mlPrimaryKeyKey'
|
|
15981
|
-
ASPECT_INFO = {'keyForEntity': 'mlPrimaryKey', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlPrimaryKeyProperties', 'domains', 'mlPrimaryKeyProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'structuredProperties', 'forms', 'testResults']}
|
|
15999
|
+
ASPECT_INFO = {'keyForEntity': 'mlPrimaryKey', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlPrimaryKeyProperties', 'domains', 'mlPrimaryKeyProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
15982
16000
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLPrimaryKeyKey")
|
|
15983
16001
|
|
|
15984
16002
|
def __init__(self,
|
|
@@ -16092,7 +16110,7 @@ class PostKeyClass(_Aspect):
|
|
|
16092
16110
|
|
|
16093
16111
|
|
|
16094
16112
|
ASPECT_NAME = 'postKey'
|
|
16095
|
-
ASPECT_INFO = {'keyForEntity': 'post', 'entityCategory': 'core', 'entityAspects': ['postInfo']}
|
|
16113
|
+
ASPECT_INFO = {'keyForEntity': 'post', 'entityCategory': 'core', 'entityAspects': ['postInfo', 'subTypes']}
|
|
16096
16114
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.PostKey")
|
|
16097
16115
|
|
|
16098
16116
|
def __init__(self,
|
|
@@ -16179,7 +16197,7 @@ class SchemaFieldKeyClass(_Aspect):
|
|
|
16179
16197
|
|
|
16180
16198
|
|
|
16181
16199
|
ASPECT_NAME = 'schemaFieldKey'
|
|
16182
|
-
ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'deprecation']}
|
|
16200
|
+
ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'deprecation', 'subTypes']}
|
|
16183
16201
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.SchemaFieldKey")
|
|
16184
16202
|
|
|
16185
16203
|
def __init__(self,
|
|
@@ -25170,7 +25188,7 @@ class VersionSetPropertiesClass(_Aspect):
|
|
|
25170
25188
|
def _restore_defaults(self) -> None:
|
|
25171
25189
|
self.customProperties = dict()
|
|
25172
25190
|
self.latest = str()
|
|
25173
|
-
self.versioningScheme = VersioningSchemeClass.
|
|
25191
|
+
self.versioningScheme = VersioningSchemeClass.LEXICOGRAPHIC_STRING
|
|
25174
25192
|
|
|
25175
25193
|
|
|
25176
25194
|
@property
|
|
@@ -25206,7 +25224,12 @@ class VersionSetPropertiesClass(_Aspect):
|
|
|
25206
25224
|
class VersioningSchemeClass(object):
|
|
25207
25225
|
# No docs available.
|
|
25208
25226
|
|
|
25227
|
+
LEXICOGRAPHIC_STRING = "LEXICOGRAPHIC_STRING"
|
|
25228
|
+
"""String sorted lexicographically."""
|
|
25229
|
+
|
|
25209
25230
|
ALPHANUMERIC_GENERATED_BY_DATAHUB = "ALPHANUMERIC_GENERATED_BY_DATAHUB"
|
|
25231
|
+
"""String managed by DataHub. Currently, an 8 character alphabetical string."""
|
|
25232
|
+
|
|
25210
25233
|
|
|
25211
25234
|
|
|
25212
25235
|
class DataHubViewDefinitionClass(DictWrapper):
|
|
@@ -26540,6 +26563,7 @@ ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
|
26540
26563
|
for aspect in ASPECT_CLASSES
|
|
26541
26564
|
}
|
|
26542
26565
|
|
|
26566
|
+
from typing import Literal
|
|
26543
26567
|
from typing_extensions import TypedDict
|
|
26544
26568
|
|
|
26545
26569
|
class AspectBag(TypedDict, total=False):
|
|
@@ -26816,4 +26840,123 @@ KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
|
26816
26840
|
'platformResource': PlatformResourceKeyClass
|
|
26817
26841
|
}
|
|
26818
26842
|
|
|
26843
|
+
ENTITY_TYPE_NAMES: List[str] = [
|
|
26844
|
+
'businessAttribute',
|
|
26845
|
+
'dataType',
|
|
26846
|
+
'dataProduct',
|
|
26847
|
+
'telemetry',
|
|
26848
|
+
'dataHubAccessToken',
|
|
26849
|
+
'dataHubConnection',
|
|
26850
|
+
'dataHubRole',
|
|
26851
|
+
'mlModel',
|
|
26852
|
+
'notebook',
|
|
26853
|
+
'role',
|
|
26854
|
+
'globalSettings',
|
|
26855
|
+
'dataset',
|
|
26856
|
+
'chart',
|
|
26857
|
+
'glossaryNode',
|
|
26858
|
+
'assertion',
|
|
26859
|
+
'dataHubExecutionRequest',
|
|
26860
|
+
'mlModelGroup',
|
|
26861
|
+
'mlModelDeployment',
|
|
26862
|
+
'dataFlow',
|
|
26863
|
+
'dataJob',
|
|
26864
|
+
'corpGroup',
|
|
26865
|
+
'dataPlatform',
|
|
26866
|
+
'corpuser',
|
|
26867
|
+
'dashboard',
|
|
26868
|
+
'mlPrimaryKey',
|
|
26869
|
+
'query',
|
|
26870
|
+
'ownershipType',
|
|
26871
|
+
'domain',
|
|
26872
|
+
'mlFeature',
|
|
26873
|
+
'mlFeatureTable',
|
|
26874
|
+
'dataHubView',
|
|
26875
|
+
'dataHubAction',
|
|
26876
|
+
'dataHubUpgrade',
|
|
26877
|
+
'dataHubStepState',
|
|
26878
|
+
'erModelRelationship',
|
|
26879
|
+
'dataHubPolicy',
|
|
26880
|
+
'dataHubRetention',
|
|
26881
|
+
'dataContract',
|
|
26882
|
+
'dataProcess',
|
|
26883
|
+
'dataProcessInstance',
|
|
26884
|
+
'glossaryTerm',
|
|
26885
|
+
'form',
|
|
26886
|
+
'schemaField',
|
|
26887
|
+
'tag',
|
|
26888
|
+
'post',
|
|
26889
|
+
'dataHubIngestionSource',
|
|
26890
|
+
'inviteToken',
|
|
26891
|
+
'dataHubPersona',
|
|
26892
|
+
'container',
|
|
26893
|
+
'incident',
|
|
26894
|
+
'dataPlatformInstance',
|
|
26895
|
+
'test',
|
|
26896
|
+
'versionSet',
|
|
26897
|
+
'dataHubSecret',
|
|
26898
|
+
'entityType',
|
|
26899
|
+
'structuredProperty',
|
|
26900
|
+
'platformResource'
|
|
26901
|
+
]
|
|
26902
|
+
EntityTypeName = Literal[
|
|
26903
|
+
'businessAttribute',
|
|
26904
|
+
'dataType',
|
|
26905
|
+
'dataProduct',
|
|
26906
|
+
'telemetry',
|
|
26907
|
+
'dataHubAccessToken',
|
|
26908
|
+
'dataHubConnection',
|
|
26909
|
+
'dataHubRole',
|
|
26910
|
+
'mlModel',
|
|
26911
|
+
'notebook',
|
|
26912
|
+
'role',
|
|
26913
|
+
'globalSettings',
|
|
26914
|
+
'dataset',
|
|
26915
|
+
'chart',
|
|
26916
|
+
'glossaryNode',
|
|
26917
|
+
'assertion',
|
|
26918
|
+
'dataHubExecutionRequest',
|
|
26919
|
+
'mlModelGroup',
|
|
26920
|
+
'mlModelDeployment',
|
|
26921
|
+
'dataFlow',
|
|
26922
|
+
'dataJob',
|
|
26923
|
+
'corpGroup',
|
|
26924
|
+
'dataPlatform',
|
|
26925
|
+
'corpuser',
|
|
26926
|
+
'dashboard',
|
|
26927
|
+
'mlPrimaryKey',
|
|
26928
|
+
'query',
|
|
26929
|
+
'ownershipType',
|
|
26930
|
+
'domain',
|
|
26931
|
+
'mlFeature',
|
|
26932
|
+
'mlFeatureTable',
|
|
26933
|
+
'dataHubView',
|
|
26934
|
+
'dataHubAction',
|
|
26935
|
+
'dataHubUpgrade',
|
|
26936
|
+
'dataHubStepState',
|
|
26937
|
+
'erModelRelationship',
|
|
26938
|
+
'dataHubPolicy',
|
|
26939
|
+
'dataHubRetention',
|
|
26940
|
+
'dataContract',
|
|
26941
|
+
'dataProcess',
|
|
26942
|
+
'dataProcessInstance',
|
|
26943
|
+
'glossaryTerm',
|
|
26944
|
+
'form',
|
|
26945
|
+
'schemaField',
|
|
26946
|
+
'tag',
|
|
26947
|
+
'post',
|
|
26948
|
+
'dataHubIngestionSource',
|
|
26949
|
+
'inviteToken',
|
|
26950
|
+
'dataHubPersona',
|
|
26951
|
+
'container',
|
|
26952
|
+
'incident',
|
|
26953
|
+
'dataPlatformInstance',
|
|
26954
|
+
'test',
|
|
26955
|
+
'versionSet',
|
|
26956
|
+
'dataHubSecret',
|
|
26957
|
+
'entityType',
|
|
26958
|
+
'structuredProperty',
|
|
26959
|
+
'platformResource'
|
|
26960
|
+
]
|
|
26961
|
+
|
|
26819
26962
|
# fmt: on
|