Hello,
I want to ask about branch versioning support in geodatabase connections.
I tried to use arcpy CreateDatabaseConnection function from Python 2 included with ArcGIS Server 10.8.
ArcMap 10.8 documentation states that version_type parameter supports value BRANCH, allowing to use branch versioning.
https://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/create-database-connection.htm
Despite this, function throws error below when passed "BRANCH" as version_type.
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Program Files\ArcGIS\Server\ArcPy\arcpy\management.py", line 19862, in CreateDatabaseConnection
raise e
arcgisscripting.ExecuteError: Failed to execute. Parameters are not valid.
ERROR 000800: The value is not a member of TRANSACTIONAL | HISTORICAL | POINT_IN_TIME.
Failed to execute (CreateDatabaseConnection).
I am aware that ArcMap application doesn't support branch versioning and only ArcGIS Pro does.
But if this also applies to Python scripting, then toolboxes documentation is wrong and should be appropriately updated.