Example #1
0
 class EntityType(types.Entity):
     ssid = types.Integer()
     revision = types.NoneOk(types.String())
     branch = types.NoneOk(types.String())
     repository = types.String()
     project = types.String()
     codebase = types.String()
     patch = types.NoneOk(patches.Patch.entityType)
     created_at = types.DateTime()
Example #2
0
 class EntityType(types.Entity):
     test_resultid = types.Integer()
     builderid = types.Integer()
     test_result_setid = types.Integer()
     test_name = types.NoneOk(types.String())
     test_code_path = types.NoneOk(types.String())
     line = types.NoneOk(types.Integer())
     duration_ns = types.NoneOk(types.Integer())
     value = types.String()
Example #3
0
 class EntityType(types.Entity):
     test_result_setid = types.Integer()
     builderid = types.Integer()
     buildid = types.Integer()
     stepid = types.Integer()
     description = types.NoneOk(types.String())
     category = types.String()
     value_unit = types.String()
     tests_passed = types.NoneOk(types.Integer())
     tests_failed = types.NoneOk(types.Integer())
     complete = types.Boolean()
Example #4
0
 class EntityType(types.Entity):
     bsid = types.Integer()
     external_idstring = types.NoneOk(types.String())
     reason = types.String()
     submitted_at = types.Integer()
     complete = types.Boolean()
     complete_at = types.NoneOk(types.Integer())
     results = types.NoneOk(types.Integer())
     sourcestamps = types.List(of=sourcestampsapi.SourceStamp.entityType)
     parent_buildid = types.NoneOk(types.Integer())
     parent_relationship = types.NoneOk(types.String())
Example #5
0
 class EntityType(types.Entity):
     buildid = types.Integer()
     number = types.Integer()
     builderid = types.Integer()
     buildrequestid = types.Integer()
     buildslaveid = types.Integer()
     masterid = types.Integer()
     started_at = types.DateTime()
     complete = types.Boolean()
     complete_at = types.NoneOk(types.DateTime())
     results = types.NoneOk(types.Integer())
     state_string = types.String()
Example #6
0
 class EntityType(types.Entity):
     stepid = types.Integer()
     number = types.Integer()
     name = types.Identifier(50)
     buildid = types.Integer()
     started_at = types.NoneOk(types.DateTime())
     complete = types.Boolean()
     complete_at = types.NoneOk(types.DateTime())
     results = types.NoneOk(types.Integer())
     state_string = types.String()
     urls = types.List(
         of=types.Dict(name=types.String(), url=types.String()))
Example #7
0
 class EntityType(types.Entity):
     buildrequestid = types.Integer()
     buildsetid = types.Integer()
     builderid = types.Integer()
     priority = types.Integer()
     claimed = types.Boolean()
     claimed_at = types.NoneOk(types.DateTime())
     claimed_by_masterid = types.NoneOk(types.Integer())
     complete = types.Boolean()
     results = types.NoneOk(types.Integer())
     submitted_at = types.DateTime()
     complete_at = types.NoneOk(types.DateTime())
     waited_for = types.Boolean()
Example #8
0
 class EntityType(types.Entity):
     changeid = types.Integer()
     author = types.String()
     files = types.List(of=types.String())
     comments = types.String()
     revision = types.NoneOk(types.String())
     when_timestamp = types.Integer()
     branch = types.NoneOk(types.String())
     category = types.NoneOk(types.String())
     revlink = types.NoneOk(types.String())
     properties = types.SourcedProperties()
     repository = types.String()
     project = types.String()
     codebase = types.String()
     sourcestamp = sourcestamps.SourceStamp.entityType
Example #9
0
 class EntityType(types.Entity):
     changesourceid = types.Integer()
     name = types.String()
     master = types.NoneOk(masters.Master.entityType)
Example #10
0
 class EntityType(types.Entity):
     buildid = types.Integer()
     name = types.String()
     length = types.Integer()
     value = types.NoneOk(types.Binary())
     source = types.String()
Example #11
0
 def makeInstance(self):
     return types.NoneOk(types.Integer())
Example #12
0
 class MyEntity(types.Entity):
     field1 = types.Integer()
     field2 = types.NoneOk(types.String())
Example #13
0
 class EntityType(types.Entity):
     schedulerid = types.Integer()
     name = types.String()
     master = types.NoneOk(masters.Master.entityType)
Example #14
0
 class EntityType(types.Entity):
     builderid = types.Integer()
     name = types.Identifier(70)
     masterids = types.List(of=types.Integer())
     description = types.NoneOk(types.String())
     tags = types.List(of=types.String())