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.ext.datastore_admin.utils.DatastoreAdminOperation Class Reference
Inheritance diagram for google.appengine.ext.datastore_admin.utils.DatastoreAdminOperation:
google.appengine.ext.db.Model

Public Member Functions

def kind
 
- Public Member Functions inherited from google.appengine.ext.db.Model
def __new__
 
def __init__
 
def key
 
def put
 
def delete
 
def is_saved
 
def has_key
 
def dynamic_properties
 
def instance_properties
 
def parent
 
def parent_key
 
def to_xml
 
def get
 
def get_by_key_name
 
def get_by_id
 
def get_or_insert
 
def all
 
def gql
 
def from_entity
 
def kind
 
def entity_type
 
def properties
 
def fields
 

Static Public Attributes

string STATUS_CREATED = 'Created'
 
string STATUS_ACTIVE = 'Active'
 
string STATUS_COMPLETED = 'Completed'
 
string STATUS_FAILED = 'Failed'
 
string STATUS_ABORTED = 'Aborted'
 
string PARAM_DATASTORE_ADMIN_OPERATION = 'datastore_admin_operation'
 
tuple DEFAULT_LAST_UPDATED_VALUE = datetime.datetime(1970, 1, 1)
 
tuple description = db.TextProperty()
 
tuple status = db.StringProperty(default=STATUS_CREATED)
 
tuple active_jobs = db.IntegerProperty(default=0)
 
tuple active_job_ids = db.StringListProperty()
 
tuple completed_jobs = db.IntegerProperty(default=0)
 
tuple last_updated
 
tuple status_info = db.StringProperty(default='', indexed=False)
 
tuple service_job_id = db.StringProperty()
 
- Static Public Attributes inherited from google.appengine.ext.db.Model
 save = put
 

Detailed Description

An entity to keep progress and status of datastore admin operation.

Member Data Documentation

tuple google.appengine.ext.datastore_admin.utils.DatastoreAdminOperation.last_updated
static
Initial value:
1 = db.DateTimeProperty(default=DEFAULT_LAST_UPDATED_VALUE,
2  auto_now=True)

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