summaryrefslogtreecommitdiffstats
path: root/cvp/opnfv_testapi/resources/pod_models.py
blob: 2c3ea978bbb42e1bd470aa9b8dfe96f7b9a286a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
##############################################################################
# Copyright (c) 2015 Orange
# guyrodrigue.koffi@orange.com / koffirodrigue@gmail.com
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
from opnfv_testapi.resources import models
from opnfv_testapi.tornado_swagger import swagger


# name: name of the POD e.g. zte-1
# mode: metal or virtual
# details: any detail
# role: ci-pod or community-pod or single-node


@swagger.model()
class PodCreateRequest(models.ModelBase):
    def __init__(self, name, mode='', details='', role=""):
        self.name = name
        self.mode = mode
        self.details = details
        self.role = role


@swagger.model()
class Pod(models.ModelBase):
    def __init__(self,
                 name='', mode='', details='',
                 role="", _id='', create_date=''):
        self.name = name
        self.mode = mode
        self.details = details
        self.role = role
        self._id = _id
        self.creation_date = create_date


@swagger.model()
class Pods(models.ModelBase):
    """
        @property pods:
        @ptype pods: C{list} of L{Pod}
    """
    def __init__(self):
        self.pods = list()

    @staticmethod
    def attr_parser():
        return {'pods': Pod}