summaryrefslogtreecommitdiffstats
path: root/testapi/testapi-client/testapiclient/models
AgeCommit message (Collapse)AuthorFilesLines
2018-05-08Merge "Add deploy result model to testapi client"Serena Feng1-0/+17
2018-05-07Merge "Add result model to the client"Serena Feng1-0/+16
2018-05-07Merge "Add testcase model in the client"Serena Feng1-0/+20
2018-05-07Merge "Add project model in testapiclient"Serena Feng1-0/+4
2018-05-07Merge "Add scenario and scenario related models to testapi client"Serena Feng1-0/+37
2018-05-07Add deploy result model to testapi clientthuva41-0/+17
Change-Id: I53881146306087da5da967408d2a585a8775f641 Signed-off-by: thuva4 <tharma.thuva@gmail.com>
2018-05-07Add get functionality for the import modulethuva41-1/+1
Tested Module will deserialize the json objects from the server to Pod instance. Change-Id: I3e2cb9386f8949d544624be687ee227ae4529d72 Signed-off-by: thuva4 <tharma.thuva@gmail.com>
2018-05-07Add scenario and scenario related modelsthuva41-0/+37
to testapi client Change-Id: I9d1f7f19b030b8a7a762abed33e7b4f0efa0854f Signed-off-by: thuva4 <tharma.thuva@gmail.com>
2018-05-07Add project model in testapiclientthuva41-0/+4
Change-Id: If238e2d22f3c895264c90579c7c4d0b442f6c82a Signed-off-by: thuva4 <tharma.thuva@gmail.com>
2018-05-07Add testcase model in the clientthuva41-0/+20
Change-Id: I54b8caf8b1291229b01eb39d50c3997983dd81e9 Signed-off-by: thuva4 <tharma.thuva@gmail.com>
2018-05-07Add result model to the clientthuva41-0/+16
Change-Id: I0921835f8d1042b2d0c12f3972bda24736741d55 Signed-off-by: thuva4 <tharma.thuva@gmail.com>
2018-04-23impl import-testapiclient frameworkSerenaFeng2-0/+6
the usage: from testapiclient.client import pods pod_client = pods.PodsClient(user='test', password='pass') pod_client.create({'name': 'test-api', 'mode':'metal', 'role':'community_ci', 'details':''} from testapiclient.client import pods from testapiclient.models import pods as pm pod_client = pods.PodsClient(user='test', password='pass') pod = pm.Pods(name='test') pod_client.create(pod.__dict__) Change-Id: I6a7770d0b54f5570552a6ebbf1c42a638723997c Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>