-
Notifications
You must be signed in to change notification settings - Fork 9
/
Pure_Create_PGSnap.py
160 lines (128 loc) · 4.74 KB
/
Pure_Create_PGSnap.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
import purestorage
import requests
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
from base64 import b64encode
import os
import sys
import json
import getpass
from optparse import OptionParser
from datetime import datetime, timedelta
import time
from time import gmtime, strftime, strptime
from operator import itemgetter, attrgetter
# Global Variables
VERSION = '1.0.0'
HEADER = 'Pure Storage Create Protection Group Snapshot (' + VERSION + ')'
BANNER = ('=' * 132)
DEBUG_LEVEL = 0
VERBOSE_FLAG = False
COOKIE = ''
def create_session(flashArray, user, password):
jsonData = purestorage.FlashArray(flashArray, user, password)
return(jsonData)
def parsecl():
usage = 'usage: %prog [options]'
version = '%prog ' + VERSION
description = "This application has been developed using Pure Storage v1.12 RESTful Web Service interfaces. Developed and tested using Python 3.6 on Mac OS 10.12. Please contact ron@purestorage.com for assistance."
parser = OptionParser(usage=usage, version=version, description=description)
parser.add_option('-d', '--debug',
type = 'int',
dest = 'DEBUG_LEVEL',
default = 0,
help = 'Debug level, used for HTTP debugging')
parser.add_option('-p', '--password',
action = 'store',
type = 'string',
dest = 'password',
help = 'Pure password')
parser.add_option('-P', '--pgroup',
action = 'store',
type = 'string',
dest = 'pgroup',
default = '',
help = 'Protection Group')
parser.add_option('-s', '--server',
action = 'store',
type = 'string',
dest = 'flashArray',
help = 'Pure FlashArray')
parser.add_option('-S', '--suffix',
action = 'store',
type = 'string',
dest = 'pgsuffix',
help = 'Protection Group Snapshot suffix')
parser.add_option('-u', '--user',
action = 'store',
type = 'string',
dest = 'user',
help = 'Pure user name')
parser.add_option('-v', '--verbose',
action = 'store_true',
dest = 'VERBOSE_FLAG',
default = False,
help = 'Verbose [default: %default]')
(options, args) = parser.parse_args()
'''
print("Options:", options)
print("Args:", args)
'''
return(options)
def main():
# Setup variables
global DEBUG_LEVEL
global VERBOSE_FLAG
exit_code = 0
# Check for command line parameters
options = parsecl()
password = options.password
user = options.user
flashArray = options.flashArray
pgroup = [options.pgroup]
pgsuffix = options.pgsuffix
DEBUG_LEVEL = options.DEBUG_LEVEL
VERBOSE_FLAG = options.VERBOSE_FLAG
if DEBUG_LEVEL != 0:
print('Password', password)
print('User', user)
print('Flash Array', flashArray)
print('Protection Group', pgroup)
print('Snapshot Suffix', pgsuffix)
print('Debug Level:', DEBUG_LEVEL)
print('Verbose Flag:', VERBOSE_FLAG)
if flashArray == None:
sys.exit('Exiting: You must provide FlashArray details')
if user and password == None:
sys.exit('Exiting: You must provide password if using username')
print(BANNER)
print(HEADER + ' - ' + flashArray)
print(strftime('%d/%m/%Y %H:%M:%S %Z', gmtime()))
print(BANNER)
# Create session
array = create_session(flashArray, user, password)
if pgsuffix == None:
epoch = int(time.time())
pgsuffix = 'SNAP-' + str(epoch)
# Create Snapshot
jsonData= array.create_pgroup_snapshots(pgroup, suffix=pgsuffix)
if VERBOSE_FLAG:
print(BANNER)
print(json.dumps(jsonData, sort_keys=False, indent=4))
name = (jsonData[0]['name'])
source = (jsonData[0]['source'])
cdate = (jsonData[0]['created'])
c1 = cdate[0:10]
c2 = cdate[11:19]
c3 = c1 + ' ' + c2
c4 = strptime(c3,'%Y-%m-%d %H:%M:%S')
created = strftime('%d/%m/%Y %H:%M:%S', c4)
print('{0:40} {1:60} {2:20}'.format('Source', 'Name', 'Created'))
print('{0:40} {1:60} {2:20}'.format(source, name, created))
# Close API session
array.invalidate_cookie()
print(BANNER)
print(strftime('%d/%m/%Y %H:%M:%S %Z', gmtime()))
print(BANNER)
sys.exit(exit_code)
main()