class EntityTest(entity.Entity):
    """Testing..."""
    ival = entity.Field('i', entity.IntValue(default=345))
    sval = entity.Field('s', entity.StringValue(default='svvv'))
    bval = entity.Field('b', entity.BoolValue(default=True))
    fval = entity.Field('f', entity.FloatValue(default=1.0))
    grp = entity.CompoundField('g', CompoundTest())
    grp2 = entity.CompoundField('g2', CompoundTest2())
    enumval = entity.Field('e', entity.EnumValue(EnumTest, default=None))
    enumval2 = entity.Field(
        'e2', entity.OptionalEnumValue(EnumTest, default=EnumTest.SECOND))
    slval = entity.ListField('sl', entity.StringValue())
    tval2 = entity.Field('t2', entity.DateTimeValue())
    str_int_dict = entity.DictField('sd', str, entity.IntValue())
    compoundlist = entity.CompoundListField('l', CompoundTest())
    compoundlist2 = entity.CompoundListField('l2', CompoundTest())
    compoundlist3 = entity.CompoundListField('l3', CompoundTest2())
    compounddict = entity.CompoundDictField('td', str, CompoundTest())
    compounddict2 = entity.CompoundDictField('td2', str, CompoundTest())
    compounddict3 = entity.CompoundDictField('td3', str, CompoundTest2())
    fval2 = entity.Field('f2', entity.Float3Value())
Exemple #2
0
class AssetPackageBuildState(entity.Entity):
    """Contains info about an in-progress asset cloud build."""

    # Asset names still being built.
    in_progress_builds = entity.ListField('b', entity.StringValue())

    # The initial number of assets needing to be built.
    initial_build_count = entity.Field('c', entity.IntValue())

    # Build error string. If this is present, it should be presented
    # to the user and they should required to explicitly restart the build
    # in some way if desired.
    error = entity.Field('e', entity.OptionalStringValue())
 class EntityKeyTest3(EntityKeyTest2):
     """Test entity with invalid duplicate keys."""
     sval = entity.Field('i', entity.StringValue())
 class EntityKeyTest(entity.Entity):
     """Test entity with invalid duplicate keys."""
     ival = entity.Field('i', entity.IntValue())
     sval = entity.Field('i', entity.StringValue())
Exemple #5
0
class ServerNodeEntry(entity.CompoundValue):
    """Information about a specific server."""
    region = entity.Field('r', entity.StringValue())
    address = entity.Field('a', entity.StringValue())
    port = entity.Field('p', entity.IntValue())
Exemple #6
0
class AssetPackageFlavorManifestValue(entity.CompoundValue):
    """A manifest of asset info for a specific flavor of an asset package."""
    assetfiles = entity.DictField('assetfiles', str, entity.StringValue())