@@ -50,41 +50,41 @@ def __new__(cls, value: str, attribute_type: type) -> "Attributes":
5050
5151class TermAttributes (Attributes ):
5252 CONNECTOR_NAME = ("connectorName" , AtlanConnectorType )
53- CATEGORIES = ("__categories" , StrictStr )
53+ CATEGORIES = ("__categories" , str )
5454 CREATE_TIME_AS_TIMESTAMP = ("__timestamp" , datetime )
55- CREATED_BY = ("__createdBy" , StrictStr )
56- GLOSSARY = ("__glossary" , StrictStr )
57- GUID = ("__guid" , StrictStr )
58- HAS_LINEAGE = ("__hasLineage" , StrictBool )
59- MEANINGS = ("__meanings" , StrictStr )
60- MODIFIED_BY = ("__modifiedBy" , StrictStr )
61- NAME = ("name.keyword" , StrictStr )
62- OWNER_GROUPS = ("ownerGroups" , StrictStr )
63- OWNER_USERS = ("ownerUsers" , StrictStr )
64- PARENT_CATEGORY = ("__parentCategory" , StrictStr )
55+ CREATED_BY = ("__createdBy" , str )
56+ GLOSSARY = ("__glossary" , str )
57+ GUID = ("__guid" , str )
58+ HAS_LINEAGE = ("__hasLineage" , bool )
59+ MEANINGS = ("__meanings" , str )
60+ MODIFIED_BY = ("__modifiedBy" , str )
61+ NAME = ("name.keyword" , str )
62+ OWNER_GROUPS = ("ownerGroups" , str )
63+ OWNER_USERS = ("ownerUsers" , str )
64+ PARENT_CATEGORY = ("__parentCategory" , str )
6565 POPULARITY_SCORE = ("popularityScore" , float )
66- QUALIFIED_NAME = ("qualifiedName" , StrictStr )
66+ QUALIFIED_NAME = ("qualifiedName" , str )
6767 STATE = ("__state" , Literal ["ACTIVE" , "DELETED" , "PURGED" ])
68- SUPER_TYPE_NAMES = ("__superTypeNames.keyword" , StrictStr )
69- TYPE_NAME = ("__typeName.keyword" , StrictStr )
68+ SUPER_TYPE_NAMES = ("__superTypeNames.keyword" , str )
69+ TYPE_NAME = ("__typeName.keyword" , str )
7070 UPDATE_TIME_AS_TIMESTAMP = ("__modificationTimestamp" , datetime )
7171 CERTIFICATE_STATUS = ("certificateStatus" , CertificateStatus )
7272
7373
7474class TextAttributes (Attributes ):
75- CLASSIFICATION_NAMES = ("__classificationNames" , StrictStr )
76- CLASSIFICATIONS_TEXT = ("__classificationsText" , StrictStr )
77- CREATE_TIME_AS_DATE = ("__timestamp.date" , StrictStr )
78- DESCRIPTION = ("description" , StrictStr )
79- MEANINGS_TEXT = ("__meaningsText" , StrictStr )
80- NAME = ("name" , StrictStr )
81- QUALIFIED_NAME = ("qualifiedName.text" , StrictStr )
82- PROPAGATED_CLASSIFICATION_NAMES = ("__propagatedClassificationNames" , StrictStr )
83- PROPAGATED_TRAIT_NAMES = ("__propagatedTraitNames" , StrictStr )
84- SUPER_TYPE_NAMES = ("__superTypeNames" , StrictStr )
85- TRAIT_NAMES = ("__traitNames" , StrictStr )
86- UPDATE_TIME_AS_DATE = ("__modificationTimestamp.date" , StrictStr )
87- USER_DESCRIPTION = ("userDescription" , StrictStr )
75+ CLASSIFICATION_NAMES = ("__classificationNames" , str )
76+ CLASSIFICATIONS_TEXT = ("__classificationsText" , str )
77+ CREATE_TIME_AS_DATE = ("__timestamp.date" , str )
78+ DESCRIPTION = ("description" , str )
79+ MEANINGS_TEXT = ("__meaningsText" , str )
80+ NAME = ("name" , str )
81+ QUALIFIED_NAME = ("qualifiedName.text" , str )
82+ PROPAGATED_CLASSIFICATION_NAMES = ("__propagatedClassificationNames" , str )
83+ PROPAGATED_TRAIT_NAMES = ("__propagatedTraitNames" , str )
84+ SUPER_TYPE_NAMES = ("__superTypeNames" , str )
85+ TRAIT_NAMES = ("__traitNames" , str )
86+ UPDATE_TIME_AS_DATE = ("__modificationTimestamp.date" , str )
87+ USER_DESCRIPTION = ("userDescription" , str )
8888
8989
9090def get_with_string (attribute : TermAttributes ):
0 commit comments