|
def | __init__ |
|
def | __eq__ |
|
def | __ne__ |
|
def | __hash__ |
|
|
| ASCENDING = datastore_query.PropertyOrder.ASCENDING |
|
| DESCENDING = datastore_query.PropertyOrder.DESCENDING |
|
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:
- code/googleappengine-read-only/python/google/appengine/api/datastore.py