App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
google.appengine.ext.bulkload.bulkloader_parser.TransformerEntry Class Reference
Inheritance diagram for google.appengine.ext.bulkload.bulkloader_parser.TransformerEntry:

Public Member Functions

def CheckInitialized
 

Public Attributes

 kind
 
 name
 

Static Public Attributes

dictionary ATTRIBUTES
 

Detailed Description

Describes the transform for an entity (or model) kind.

Member Function Documentation

def google.appengine.ext.bulkload.bulkloader_parser.TransformerEntry.CheckInitialized (   self)
Check that all required (combinations) of fields are set.

Also fills in computed properties.

Raises:
  InvalidConfiguration: if the config is invalid.

Member Data Documentation

dictionary google.appengine.ext.bulkload.bulkloader_parser.TransformerEntry.ATTRIBUTES
static
Initial value:
1 = {
2  'name': validation.Optional(validation.TYPE_STR),
3  'kind': validation.Optional(validation.TYPE_STR),
4  'model': OPTIONAL_EVALUATED_CALLABLE,
5  'connector': validation.TYPE_STR,
6  'connector_options': validation.Optional(ConnectorOptions, {}),
7  'use_model_on_export': validation.Optional(validation.TYPE_BOOL),
8  'sort_key_from_entity': OPTIONAL_EVALUATED_CALLABLE,
9  'post_import_function': OPTIONAL_EVALUATED_CALLABLE,
10  'post_export_function': OPTIONAL_EVALUATED_CALLABLE,
11  'property_map': validation.Repeated(PropertyEntry, default=[]),
12  }

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