-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprotectVMsByTag.py
278 lines (250 loc) · 10 KB
/
protectVMsByTag.py
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
#!/usr/bin/env python
"""Auto-protect VMs by Tag Using Python"""
### import pyhesity wrapper module
from pyhesity import *
### command line arguments
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('-v', '--vip', type=str, required=True)
parser.add_argument('-u', '--username', type=str, required=True)
parser.add_argument('-d', '--domain', type=str, default='local')
parser.add_argument('-k', '--useApiKey', action='store_true')
parser.add_argument('-pwd', '--password', type=str, default=None)
parser.add_argument('-j', '--jobname', type=str, required=True)
parser.add_argument('-vc', '--vcentername', type=str, required=True)
parser.add_argument('-i', '--includetag', action='append', type=str)
parser.add_argument('-e', '--excludetag', action='append', type=str)
parser.add_argument('-sd', '--storagedomain', type=str, default='DefaultStorageDomain')
parser.add_argument('-p', '--policyname', type=str, default=None)
parser.add_argument('-tz', '--timezone', type=str, default='US/Eastern')
parser.add_argument('-st', '--starttime', type=str, default='21:00')
parser.add_argument('-is', '--incrementalsla', type=int, default=60) # incremental SLA minutes
parser.add_argument('-fs', '--fullsla', type=int, default=120) # full SLA minutes
parser.add_argument('-z', '--pause', action='store_true')
parser.add_argument('-a', '--appconsistent', action='store_true')
args = parser.parse_args()
vip = args.vip # cluster name/ip
username = args.username # username to connect to cluster
domain = args.domain # domain of username (e.g. local, or AD domain)
password = args.password # password or API key
useApiKey = args.useApiKey # use API key for authentication
jobname = args.jobname # name of protection job to add server to
vcentername = args.vcentername # name of vcd source to protect
includetags = args.includetag # only include vapps that start with this prefix
excludetags = args.excludetag # exclude vapps that start with this prefix
storagedomain = args.storagedomain # storage domain for new job
policyname = args.policyname # policy name for new job
starttime = args.starttime # start time for new job
timezone = args.timezone # time zone for new job
incrementalsla = args.incrementalsla # incremental SLA for new job
fullsla = args.fullsla # full SLA for new job
pause = args.pause # pause new job
appconsistent = args.appconsistent
if pause:
isPaused = True
else:
isPaused = False
if appconsistent:
appconsistency = True
else:
appconsistency = False
# authenticate to Cohesity
apiauth(vip=vip, username=username, domain=domain, password=password, useApiKey=useApiKey)
# get vCenter protection source
vcenters = [s for s in api('get', 'protectionSources?environments=kVMware') if s['protectionSource']['name'].lower() == vcentername.lower()]
if not vcenters or len(vcenters) == 0:
print('vCenter %s not registered' % vcentername)
exit(1)
else:
vcenter = vcenters[0]
# get object ID function
def getObjectId(objectName, source):
d = {'_object_id': None}
def get_nodes(node):
if 'name' in node:
if node['name'].lower() == objectName.lower():
d['_object_id'] = node['id']
exit
if 'protectionSource' in node:
if node['protectionSource']['name'].lower() == objectName.lower():
d['_object_id'] = node['protectionSource']['id']
exit
if 'nodes' in node:
for node in node['nodes']:
if d['_object_id'] is None:
get_nodes(node)
else:
exit
get_nodes(source)
return d['_object_id']
# gather include tag IDs
includeTagIds = []
if includetags is not None:
for tag in includetags:
tagId = getObjectId(tag, vcenter)
if tagId is not None:
includeTagIds.append(tagId)
else:
print('tag %s not found' % tag)
exit(1)
# gather exclude tag IDs
excludeTagIds = []
if excludetags is not None:
for tag in excludetags:
tagId = getObjectId(tag, vcenter)
if tagId is not None:
excludeTagIds.append(tagId)
else:
print('tag %s not found' % tag)
exit(1)
if excludeTagIds.count == 0 and includetags.count == 0:
print('No tags specified')
exit(1)
# find existing job
job = None
jobs = api('get', 'data-protect/protection-groups?environments=kVMware&isDeleted=false&isActive=true', v=2)
if jobs is not None and len(jobs) > 0 and 'protectionGroups' in jobs:
jobs = [j for j in jobs['protectionGroups'] if j['name'].lower() == jobname.lower()]
if jobs is not None and len(jobs) > 0:
job = jobs[0]
if job is not None:
newJob = False
if job['vmwareParams']['sourceId'] != vcenter['protectionSource']['id']:
print('Job %s uses a different vCenter, please use a new or different job' % jobname)
exit(1)
else:
# new job
newJob = True
if includeTagIds.count == 0:
print('No include tags specified')
exit(1)
# get policy
if policyname is None:
print('Policy name required')
exit(1)
else:
policy = [p for p in (api('get', 'data-protect/policies', v=2))['policies'] if p['name'].lower() == policyname.lower()]
if policy is None or len(policy) == 0:
print('Policy %s not found' % policyname)
exit(1)
else:
policy = policy[0]
# get storageDomain
viewBox = [v for v in api('get', 'viewBoxes') if v['name'].lower() == storagedomain.lower()]
if viewBox is None or len(viewBox) == 0:
print('Storage Domain %s not found' % storagedomain)
exit(1)
else:
viewBox = viewBox[0]
# parse starttime
try:
(hour, minute) = starttime.split(':')
hour = int(hour)
minute = int(minute)
if hour < 0 or hour > 23 or minute < 0 or minute > 59:
print('starttime is invalid!')
exit(1)
except Exception:
print('starttime is invalid!')
exit(1)
# new job params
job = {
"name": jobname,
"environment": "kVMware",
"isPaused": isPaused,
"policyId": policy['id'],
"priority": "kMedium",
"storageDomainId": viewBox['id'],
"description": "",
"startTime": {
"hour": hour,
"minute": minute,
"timeZone": timezone
},
"abortInBlackouts": False,
"alertPolicy": {
"backupRunStatus": [
"kFailure"
],
"alertTargets": []
},
"sla": [
{
"backupRunType": "kFull",
"slaMinutes": fullsla
},
{
"backupRunType": "kIncremental",
"slaMinutes": incrementalsla
}
],
"qosPolicy": "kBackupHDD",
"vmwareParams": {
"objects": [],
"excludeObjectIds": [],
"vmTagIds": [],
"excludeVmTagIds": [],
"appConsistentSnapshot": appconsistency,
"fallbackToCrashConsistentSnapshot": False,
"skipPhysicalRDMDisks": False,
"globalExcludeDisks": [],
"leverageHyperflexSnapshots": False,
"leverageStorageSnapshots": False,
"cloudMigration": False,
"indexingPolicy": {
"enableIndexing": True,
"includePaths": [
"/"
],
"excludePaths": [
"/$Recycle.Bin",
"/Windows",
"/Program Files",
"/Program Files (x86)",
"/ProgramData",
"/System Volume Information",
"/Users/*/AppData",
"/Recovery",
"/var",
"/usr",
"/sys",
"/proc",
"/lib",
"/grub",
"/grub2",
"/opt/splunk",
"/splunk"
]
}
}
}
# include tags
if len(includeTagIds) > 0:
if newJob is True:
job['vmwareParams']['vmTagIds'] = []
else:
if 'vmTagIds' not in job['vmwareParams'] or job['vmwareParams']['vmTagIds'] is None:
job['vmwareParams']['vmTagIds'] = []
if list(includetags) not in job['vmwareParams']['vmTagIds']:
job['vmwareParams']['vmTagIds'].append(includeTagIds)
# exclude tags
if len(excludeTagIds) > 0:
if newJob is True:
job['vmwareParams']['excludeVmTagIds'] = []
else:
if 'excludeVmTagIds' not in job['vmwareParams'] or job['vmwareParams']['excludeVmTagIds'] is None:
job['vmwareParams']['excludeVmTagIds'] = []
if list(excludeTagIds) not in job['vmwareParams']['excludeVmTagIds']:
job['vmwareParams']['excludeVmTagIds'].append(excludeTagIds)
# make lists unique
if job['vmwareParams']['vmTagIds'] is not None and len(job['vmwareParams']['vmTagIds']) > 0:
job['vmwareParams']['vmTagIds'] = [list(x) for x in set(tuple(x) for x in job['vmwareParams']['vmTagIds'])]
if job['vmwareParams']['excludeVmTagIds'] is not None and len(job['vmwareParams']['excludeVmTagIds']) > 0:
job['vmwareParams']['excludeVmTagIds'] = [list(x) for x in set(tuple(x) for x in job['vmwareParams']['excludeVmTagIds'])]
# create or update job
if newJob is True:
print('Creating protection job %s' % jobname)
result = api('post', 'data-protect/protection-groups', job, v=2)
else:
print('Updating protection job %s' % jobname)
result = api('put', 'data-protect/protection-groups/%s' % job['id'], job, v=2)