add_enumeration_values(type_, values, insert_before)# Add enumeration values to an enumeration type. Parameters: type_suite.NamedTypeNamed type defining the enumeration. valuesList[str]List of the enumeration values to add. insert_beforestrInsertion point of the values. When this parameter is not None and exists, the values are inserted before this value. Otherwise, the values are added at the end.