![]() |
App Engine Python SDK
v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
|
Public Member Functions | |
def | merge |
def | create |
def | load |
def | kind |
![]() | |
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 | |
tuple | entity_type_info |
tuple | is_partial = db.BooleanProperty(default=False) |
![]() | |
save = put | |
Persistent aggregated type information for a kind. An instance can be retrieved via the load method or created using the create method. An instance aggregates all type information for all seen embedded_entities via the merge method and persisted when needed using the model put method.
def google.appengine.ext.datastore_admin.backup_handler.SchemaAggregationResult.create | ( | cls, | |
backup_id, | |||
kind_name, | |||
shard_id | |||
) |
Create SchemaAggregationResult instance. Args: backup_id: Required BackupInformation Key. kind_name: Required kind name as string. shard_id: Required shard id as string. Returns: A new SchemaAggregationResult instance.
def google.appengine.ext.datastore_admin.backup_handler.SchemaAggregationResult.load | ( | cls, | |
backup_id, | |||
kind_name, | |||
shard_id = None |
|||
) |
Retrieve SchemaAggregationResult from the Datastore. Args: backup_id: Required BackupInformation Key. kind_name: Required kind name as string. shard_id: Optional shard id as string. Returns: SchemaAggregationResult iterator or an entity if shard_id not None.
def google.appengine.ext.datastore_admin.backup_handler.SchemaAggregationResult.merge | ( | self, | |
other | |||
) |
Merge a SchemaAggregationResult or an EntityTypeInfo with this instance. Args: other: Required SchemaAggregationResult or EntityTypeInfo to merge. Returns: True if anything was changed. False otherwise.
|
static |