![]() |
App Engine Python SDK
v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
|
Public Member Functions | |
def | property_name |
def | kind_name |
def | key_for_kind |
def | key_for_property |
def | key_to_kind |
def | key_to_property |
![]() | |
def | __init__ |
def | __getstate__ |
def | __setstate__ |
def | __repr__ |
def | __hash__ |
def | __eq__ |
![]() | |
def | __ne__ |
Static Public Attributes | |
string | KIND_NAME = '__property__' |
tuple | property_representation = model.StringProperty(repeated=True) |
![]() | |
string | KIND_NAME = '' |
![]() | |
key = _key | |
populate = _populate | |
has_complete_key = _has_complete_key | |
to_dict = _to_dict | |
query = _query | |
gql = _gql | |
put = _put | |
put_async = _put_async | |
get_or_insert = _get_or_insert | |
get_or_insert_async = _get_or_insert_async | |
allocate_ids = _allocate_ids | |
allocate_ids_async = _allocate_ids_async | |
get_by_id = _get_by_id | |
get_by_id_async = _get_by_id_async | |
Model for __property__ metadata query results.
def google.appengine.ext.ndb.metadata.Property.key_for_kind | ( | cls, | |
kind | |||
) |
Return the __property__ key for kind. Args: kind: kind whose key is requested. Returns: The parent key for __property__ keys of kind.
def google.appengine.ext.ndb.metadata.Property.key_for_property | ( | cls, | |
kind, | |||
property | |||
) |
Return the __property__ key for property of kind. Args: kind: kind whose key is requested. property: property whose key is requested. Returns: The key for property of kind.
def google.appengine.ext.ndb.metadata.Property.key_to_kind | ( | cls, | |
key | |||
) |
Return the kind specified by a given __property__ key. Args: key: key whose kind name is requested. Returns: The kind specified by key.
def google.appengine.ext.ndb.metadata.Property.key_to_property | ( | cls, | |
key | |||
) |
Return the property specified by a given __property__ key. Args: key: key whose property name is requested. Returns: property specified by key, or None if the key specified only a kind.
def google.appengine.ext.ndb.metadata.Property.kind_name | ( | self | ) |
Return the kind name specified by this entity's key.
def google.appengine.ext.ndb.metadata.Property.property_name | ( | self | ) |
Return the property name specified by this entity's key.