Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
Change-Id: I53881146306087da5da967408d2a585a8775f641
Signed-off-by: thuva4 <tharma.thuva@gmail.com>
|
|
Tested
Module will deserialize the json objects from the server to Pod
instance.
Change-Id: I3e2cb9386f8949d544624be687ee227ae4529d72
Signed-off-by: thuva4 <tharma.thuva@gmail.com>
|
|
to testapi client
Change-Id: I9d1f7f19b030b8a7a762abed33e7b4f0efa0854f
Signed-off-by: thuva4 <tharma.thuva@gmail.com>
|
|
Change-Id: If238e2d22f3c895264c90579c7c4d0b442f6c82a
Signed-off-by: thuva4 <tharma.thuva@gmail.com>
|
|
Change-Id: I54b8caf8b1291229b01eb39d50c3997983dd81e9
Signed-off-by: thuva4 <tharma.thuva@gmail.com>
|
|
Change-Id: I0921835f8d1042b2d0c12f3972bda24736741d55
Signed-off-by: thuva4 <tharma.thuva@gmail.com>
|
|
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>
|