App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Public Member Functions | Static Public Attributes | List of all members
google.appengine.api.datastore._BaseIndex Class Reference
Inheritance diagram for google.appengine.api.datastore._BaseIndex:
google.appengine.api.datastore.Index

Public Member Functions

def __init__
 
def __eq__
 
def __ne__
 
def __hash__
 

Static Public Attributes

 ASCENDING = datastore_query.PropertyOrder.ASCENDING
 
 DESCENDING = datastore_query.PropertyOrder.DESCENDING
 

Constructor & Destructor Documentation

def google.appengine.api.datastore._BaseIndex.__init__ (   self,
  index_id,
  kind,
  has_ancestor,
  properties 
)
Construct a datastore index instance.

Args:
  index_id: Required long; Uniquely identifies the index
  kind: Required string; Specifies the kind of the entities to index
  has_ancestor: Required boolean; indicates if the index supports a query
that filters entities by the entity group parent
  properties: Required list of (string, int) tuples; The entity properties
to index. First item in a tuple is the property name and the second
item is the sorting direction (ASCENDING|DESCENDING).
The order of the properties is based on the order in the index.

The documentation for this class was generated from the following file: