![]() |
App Engine Python SDK
v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
|
Public Member Functions | |
def | ListActions |
def | RouteAction |
def | get |
def | post |
def | GetKinds |
def | GetKindsForAllNamespaces |
def | GetKindsForCurrentNamespace |
def | GetOperations |
def | GetBackups |
def | GetPendingBackups |
![]() | |
def | initialize |
def | get |
def | post |
def | head |
def | options |
def | put |
def | delete |
def | trace |
def | error |
def | redirect |
def | handle_exception |
def | new_factory |
def | get_url |
Additional Inherited Members | |
![]() | |
request | |
response | |
Route to the appropriate handler based on the action parameter.
def google.appengine.ext.datastore_admin.main.RouteByActionHandler.GetBackups | ( | self, | |
limit = 100 |
|||
) |
Obtain a list of backups.
def google.appengine.ext.datastore_admin.main.RouteByActionHandler.GetKinds | ( | self, | |
all_ns = True , |
|||
deadline = 40 |
|||
) |
Obtain a list of all kind names from the datastore. Args: all_ns: If true, list kind names for all namespaces. If false, list kind names only for the current namespace. deadline: maximum number of seconds to spend getting kinds. Returns: kinds: an alphabetized list of kinds for the specified namespace(s). more_kinds: a boolean indicating whether there may be additional kinds not included in 'kinds' (e.g. because the query deadline was reached).
def google.appengine.ext.datastore_admin.main.RouteByActionHandler.GetKindsForAllNamespaces | ( | self, | |
deadline | |||
) |
Obtain a list of all kind names from the datastore. Pulls kinds from all namespaces. The result is deduped and alphabetized. Args: deadline: maximum number of seconds to spend getting kinds. Returns: kinds: an alphabetized list of kinds for the specified namespace(s). more_kinds: a boolean indicating whether there may be additional kinds not included in 'kinds' (e.g. because the query deadline was reached).
def google.appengine.ext.datastore_admin.main.RouteByActionHandler.GetKindsForCurrentNamespace | ( | self, | |
deadline | |||
) |
Obtain a list of all kind names from the datastore. Pulls kinds from the current namespace only. The result is alphabetized. Args: deadline: maximum number of seconds to spend getting kinds. Returns: kinds: an alphabetized list of kinds for the specified namespace(s). more_kinds: a boolean indicating whether there may be additional kinds not included in 'kinds' (e.g. because the query limit was reached).
def google.appengine.ext.datastore_admin.main.RouteByActionHandler.GetOperations | ( | self, | |
active = False , |
|||
limit = 100 |
|||
) |
Obtain a list of operation, ordered by last_updated.
def google.appengine.ext.datastore_admin.main.RouteByActionHandler.GetPendingBackups | ( | self, | |
limit = 100 |
|||
) |
Obtain a list of pending backups.
def google.appengine.ext.datastore_admin.main.RouteByActionHandler.ListActions | ( | self, | |
error = None |
|||
) |
Handler for get requests to datastore_admin/confirm_delete.