Version

Resumen

El objeto de versión contiene propiedades que describen una versión.

Debate

Los objetos de versión no se pueden crear directamente. Es posible acceder a las propiedades de versión mediante la función arcpy.da.ListVersions.

Propiedades

PropiedadExplicaciónTipo de datos
access
(Sólo lectura)

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
(Sólo lectura)

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
(Sólo lectura)

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
(Sólo lectura)

The date and time the version was created.

DateTime
description
(Sólo lectura)

The version's description.

String
isOwner
(Sólo lectura)

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

Boolean
lastModified
(Sólo lectura)

The last modification of the version.

DateTime
name
(Sólo lectura)

The name of the version.

String
parentVersionName
(Sólo lectura)

Name of the parent version.

String

Temas relacionados