1getObject = {
2    'id': 37401,
3    'memoryCapacity': 242,
4    'modifyDate': '',
5    'name': 'test-dedicated',
6    'diskCapacity': 1200,
7    'createDate': '2017-10-16T12:50:23-05:00',
8    'cpuCount': 56,
9    'accountId': 1199911
10}
11
12
13getAvailableRouters = [
14    {'hostname': 'bcr01a.dal05', 'id': 12345},
15    {'hostname': 'bcr02a.dal05', 'id': 12346},
16    {'hostname': 'bcr03a.dal05', 'id': 12347},
17    {'hostname': 'bcr04a.dal05', 'id': 12348}
18]
19
20getObjectById = {
21    'datacenter': {
22        'id': 12345,
23        'name': 'dal05',
24        'longName': 'Dallas 5'
25    },
26    'memoryCapacity': 242,
27    'modifyDate': '2017-11-06T11:38:20-06:00',
28    'name': 'test-dedicated',
29    'diskCapacity': 1200,
30    'backendRouter': {
31        'domain': 'test.com',
32        'hostname': 'bcr01a.dal05',
33        'id': 12345
34    },
35    'guestCount': 1,
36    'cpuCount': 56,
37    'guests': [{
38        'domain': 'test.com',
39        'hostname': 'test-dedicated',
40        'id': 12345,
41        'uuid': 'F9329795-4220-4B0A-B970-C86B950667FA'
42    }],
43    'billingItem': {
44        'nextInvoiceTotalRecurringAmount': 1515.556,
45        'orderItem': {
46            'id': 12345,
47            'order': {
48                'status': 'APPROVED',
49                'privateCloudOrderFlag': False,
50                'modifyDate': '2017-11-02T11:42:50-07:00',
51                'orderQuoteId': '',
52                'userRecordId': 12345,
53                'createDate': '2017-11-02T11:40:56-07:00',
54                'impersonatingUserRecordId': '',
55                'orderTypeId': 7,
56                'presaleEventId': '',
57                'userRecord': {
58                    'username': 'test-dedicated'
59                },
60                'id': 12345,
61                'accountId': 12345
62            }
63        },
64        'id': 12345,
65        'children': [
66            {
67                'nextInvoiceTotalRecurringAmount': 0.0,
68                'categoryCode': 'dedicated_host_ram'
69            },
70            {
71                'nextInvoiceTotalRecurringAmount': 0.0,
72                'categoryCode': 'dedicated_host_disk'
73            }
74        ]
75    },
76    'id': 12345,
77    'createDate': '2017-11-02T11:40:56-07:00'
78}
79
80deleteObject = True
81
82getGuests = [{
83    'id': 200,
84    'hostname': 'vs-test1',
85    'domain': 'test.sftlyr.ws',
86    'fullyQualifiedDomainName': 'vs-test1.test.sftlyr.ws',
87    'status': {'keyName': 'ACTIVE', 'name': 'Active'},
88    'datacenter': {'id': 50, 'name': 'TEST00',
89                   'description': 'Test Data Center'},
90    'powerState': {'keyName': 'RUNNING', 'name': 'Running'},
91    'maxCpu': 2,
92    'maxMemory': 1024,
93    'primaryIpAddress': '172.16.240.2',
94    'globalIdentifier': '1a2b3c-1701',
95    'primaryBackendIpAddress': '10.45.19.37',
96    'hourlyBillingFlag': False,
97    'billingItem': {
98        'id': 6327,
99        'recurringFee': 1.54,
100        'orderItem': {
101            'order': {
102                'userRecord': {
103                    'username': 'chechu',
104                }
105            }
106        }
107    },
108}, {
109    'id': 202,
110    'hostname': 'vs-test2',
111    'domain': 'test.sftlyr.ws',
112    'fullyQualifiedDomainName': 'vs-test2.test.sftlyr.ws',
113    'status': {'keyName': 'ACTIVE', 'name': 'Active'},
114    'datacenter': {'id': 50, 'name': 'TEST00',
115                   'description': 'Test Data Center'},
116    'powerState': {'keyName': 'RUNNING', 'name': 'Running'},
117    'maxCpu': 4,
118    'maxMemory': 4096,
119    'primaryIpAddress': '172.16.240.7',
120    'globalIdentifier': '05a8ac-6abf0',
121    'primaryBackendIpAddress': '10.45.19.35',
122    'hourlyBillingFlag': True,
123    'billingItem': {
124        'id': 6327,
125        'recurringFee': 1.54,
126        'orderItem': {
127            'order': {
128                'userRecord': {
129                    'username': 'chechu',
130                }
131            }
132        }
133    }
134}]
135