-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyvmc_flexcomp.py
More file actions
313 lines (278 loc) · 10.9 KB
/
pyvmc_flexcomp.py
File metadata and controls
313 lines (278 loc) · 10.9 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
# Flex Compute Python library for PyVMC
################################################################################
### Copyright (C) 2019-2023 VMware, Inc. All rights reserved.
### SPDX-License-Identifier: BSD-2-Clause
################################################################################
import sys
import json
from weakref import proxy
import requests
from requests.sessions import session
from requests.auth import HTTPBasicAuth
# ============================
# Flex Compute Namespace
# ============================
def get_activity_status(strProdURL, session_token, org_id, activity_id):
pyvmc_header = {"csp-auth-token": session_token}
url = strProdURL+"/api/activity/"+org_id+"/activities/"+activity_id+"?expand=true"
response = requests.get(url, headers=pyvmc_header)
json_response = response.json()
if response.status_code == 200:
return json_response
else:
print("There was an error. Check the syntax.")
print(f"API call failed with status code {response.status_code}. URL: {url}.")
print(json_response['error_message'])
return None
def get_flexcomp_namesapces(strProdURL, session_token, org_id):
pyvmc_header = {"csp-auth-token": session_token}
url = strProdURL+"/api/infrastructure/"+org_id+"/core/namespaces"
response = requests.get(url, headers=pyvmc_header)
json_response = response.json()
if response.status_code == 200:
return json_response
else:
print("There was an error. Check the syntax.")
print(f"API call failed with status code {response.status_code}. URL: {url}.")
print(json_response['error_message'])
return None
def flexcomp_validate_network(strProdURL, session_token, org_id, cidr, seg_name, seg_cidr):
data = {}
temp_data = {}
pyvmc_header = {"csp-auth-token": session_token,
"Content-Type": "application/json"}
url = strProdURL+"/api/infrastructure/"+org_id+"/core/namespaces:validate-network"
data['ens_cidr'] = cidr
data['segment_configs'] = []
temp_data['segment_cidr'] = seg_cidr
temp_data['segment_name'] = seg_name
temp_data['segment_type'] = "ROUTED"
data['segment_configs'].append(temp_data)
payload = json.dumps(data)
response = requests.post(url, headers=pyvmc_header, data=payload)
json_response = response.json()
if response.status_code == 200:
return json_response
else:
print("There was an error. Check the syntax.")
print(f'API call failed with status code {response.status_code}. URL: {url}.')
print(json_response['error_message'])
return None
def create_flexcomp_namespace(strProdURL, session_token, org_id, name, desc, ens_size_id, region, cidr, seg_name, seg_cidr):
data = {}
pyvmc_header = {"csp-auth-token": session_token,
"Content-Type": "application/json"}
url = strProdURL+"/api/infrastructure/"+org_id+"/core/namespaces:create"
data['name'] = name
data['region'] = region
data['provider'] = "AWS"
data['description'] = desc
data['type'] = "BASIC"
data['tenancy_type'] = "HARD"
data['capacity_profiles'] = [
{
"fault_domains": 1,
"size_id": ens_size_id,
"infra_type": "GENERAL_PURPOSE"
}
]
data['network_config'] = {
"segment_configs": [
{
"segment_cidr": seg_cidr,
"segment_name": seg_name,
"segment_type": "ROUTED"
}
],
"ens_cidr": cidr,
"internet_connectivity": True
}
payload = json.dumps(data)
response = requests.post(url, headers=pyvmc_header, data=payload)
json_response = response.json()
if response.status_code == 201:
return json_response
else:
print("There was an error. Check the syntax.")
print(f'API call failed with status code {response.status_code}. URL: {url}.')
print(json_response['error_message'])
return None
def delete_flexcomp_namespace(strProdURL, session_token, org_id, nsId):
pyvmc_header = {"csp-auth-token": session_token,
"Content-Type": "application/json"}
url = strProdURL+"/api/infrastructure/"+org_id+"/core/namespaces/"+nsId+":delete"
response = requests.post(url, headers=pyvmc_header)
json_response = response.json()
if response.status_code == 201:
return json_response
else:
print("There was an error. Check the syntax.")
print(f'API call failed with status code {response.status_code}. URL: {url}.')
print(json_response['error_message'])
return None
# ============================
# Flex Compute Profiles
# ============================
def get_namespace_region(strProdURL, session_token, org_id):
pyvmc_header = {"csp-auth-token": session_token}
url = strProdURL+"/api/infrastructure/"+org_id+"/core/namespaces/regions"
response = requests.get(url, headers=pyvmc_header)
json_response = response.json()
if response.status_code == 200:
return json_response
else:
print("There was an error. Check the syntax.")
print(f"API call failed with status code {response.status_code}. URL: {url}.")
print(json_response['error_message'])
return None
def get_namespace_profiles(strProdURL, session_token, org_id):
pyvmc_header = {"csp-auth-token": session_token}
url = strProdURL + "/api/infrastructure/" + org_id + "/core/namespaces/profiles"
response = requests.get(url, headers=pyvmc_header)
json_response = response.json()
if response.status_code == 200:
return json_response
else:
print("There was an error. Check the syntax.")
print(f"API call failed with status code {response.status_code}. URL: {url}.")
print(json_response['error_message'])
return None
# ============================
# Flex Compute VM operations
# ============================
def get_all_images(strProdURL, session_token, org_id):
pyvmc_header = {"csp-auth-token": session_token}
url = strProdURL + "/api/c3s/" + org_id + "/core/vmimages?size=100"
response = requests.get(url, headers=pyvmc_header)
json_response = response.json()
if response.status_code == 200:
return json_response
else:
print("There was an error. Check the syntax.")
print(f"API call failed with status code {response.status_code}. URL: {url}.")
print(json_response['error_message'])
return None
def get_all_vms(strProdURL, session_token, org_id):
pyvmc_header = {"csp-auth-token": session_token}
url = strProdURL + "/api/workload/" + org_id + "/core/namespace/virtual-machines"
response = requests.get(url, headers=pyvmc_header)
json_response = response.json()
if response.status_code == 200:
return json_response
else:
print("There was an error. Check the syntax.")
print(f"API call failed with status code {response.status_code}. URL: {url}.")
print(json_response['error_message'])
return None
def vm_power_operation(strProdURL, session_token, org_id, vmId, powerOperation):
data = {}
powerOnOperations = ['power_on', 'reset', 'guest_os_restart']
powerOffOperations = ['power_off', 'hard_stop', 'guest_os_shutdown']
if powerOperation.lower() == 'suspend':
powerState = 'suspended'
if powerOperation.lower() in powerOffOperations:
powerState = 'poweredOff'
if powerOperation.lower() in powerOnOperations:
powerState = 'poweredOn'
pyvmc_header = {"csp-auth-token": session_token,
"Content-Type": "application/json"}
url = strProdURL + "/api/workload/" + org_id + "/core/namespace/virtual-machines/"+vmId+":power-operation"
data['spec'] = {
"powerOperation": powerOperation,
"powerState": powerState
}
payload = json.dumps(data)
response = requests.post(url, headers=pyvmc_header, data=payload)
json_response = response.json()
if response.status_code == 201:
return json_response
else:
print("There was an error. Check the syntax.")
print(f'API call failed with status code {response.status_code}. URL: {url}.')
print(json_response['error_message'])
return None
def create_vm_from_iso(strProdURL, session_token, org_id, name, namespace_name, cpu, mem, storage, network_seg_id, guestOS, imageId):
data = {}
pyvmc_header = {"csp-auth-token": session_token,
"Content-Type": "application/json"}
url = strProdURL + "/api/workload/" + org_id + "/core/namespace/virtual-machines:create-vm"
data['metadata'] = {
"name": name,
"namespace": namespace_name
}
data['spec'] = {
"cpu": {
"allocation": {
"count": int(cpu)
}
},
"guestOS": guestOS,
"hardwareVersion": "VMX_19",
"imageName": imageId,
"memory": {
"allocation": {
"unit": "GiB",
"value": int(mem)
}
},
"networkInterfaces": [
{
"networkName": network_seg_id
}
],
"placementRequirement": {
"hardwareType": "GENERAL_PURPOSE",
"zone": "zone-1"
},
"storage": {
"unit": "GiB",
"value": int(storage)
}
}
data['spec']['cpu'] = {
"allocation": {"count": int(cpu)}
# "reservation": {
# "value": 1.0,
# "unit": "GHz"
# }
}
data['spec']['memory'] = {
"allocation": {
"value": int(mem),
"unit": "GiB"
}
# "reservation": {
# "value": int(mem),
# "unit": "GiB"
# }
}
data['spec']['storage'] = {
"value": int(storage),
"unit": "GiB"
}
payload = json.dumps(data)
print(payload)
response = requests.post(url, headers=pyvmc_header, data=payload)
print(response)
print(response.json())
json_response = response.json()
if response.status_code == 201:
return json_response
else:
print("There was an error. Check the syntax.")
print(f'API call failed with status code {response.status_code}. URL: {url}.')
print(json_response['error_message'])
return None
def delete_vm(strProdURL, session_token, org_id, vmId):
pyvmc_header = {"csp-auth-token": session_token,
"Content-Type": "application/json"}
url = strProdURL + "/api/workload/" + org_id + "/core/namespace/virtual-machines/"+vmId+":delete"
response = requests.post(url, headers=pyvmc_header)
json_response = response.json()
if response.status_code == 201:
return json_response
else:
print("There was an error. Check the syntax.")
print(f'API call failed with status code {response.status_code}. URL: {url}.')
print(json_response['error_message'])
return None