Version

Summary

The Version object contains properties that describe a version.

Discussion

Version objects cannot be created directly. Version properties can be accessed through the arcpy.da.ListVersions function.

Properties

PropertyExplanationData Type
access
(Read Only)

The version's access permission.

  • PrivateThe version's access permission is private.
  • PublicThe version's access permission is public.
  • ProtectedThe version's access permission is protected.
String
ancestors
(Read Only)

The version's ancestors. A list of all the versions that are in the ancestral lineage for the current version. For example, the parent version, the grandparent version, and so on, all the way back to the default version.

Version
children
(Read Only)

The version's children. A list of all the versions that were created directly from the current version. It does not, for example, list the grandchildren of the version.

Version
created
(Read Only)

The date and time the version was created.

DateTime
description
(Read Only)

The version's description.

String
isOwner
(Read Only)

True if the current connected user is the owner of this version.

Boolean
lastModified
(Read Only)

The last modification of the version.

DateTime
name
(Read Only)

The name of the version.

String
parentVersionName
(Read Only)

Name of the parent version.

String

Related topics