-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathPure_List_PGs.py
122 lines (94 loc) · 3.41 KB
/
Pure_List_PGs.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
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 List Protection Groups (' + VERSION + ')'
BANNER = ('=' * 100)
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.9 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('-s', '--server',
action = 'store',
type = 'string',
dest = 'flashArray',
help = 'Pure FlashArray')
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
exit_code = 0
# Check for command line parameters
options = parsecl()
password = options.password
user = options.user
flashArray = options.flashArray
DEBUG_LEVEL = options.DEBUG_LEVEL
if DEBUG_LEVEL != 0:
print('Password', password)
print('User', user)
print('Flash Array', flashArray)
print('Debug Level:', DEBUG_LEVEL)
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('%Y/%m/%d %H:%M:%S %Z', gmtime()))
print(BANNER)
# Create session
array = create_session(flashArray, user, password)
jsonData = array.list_pgroups()
print(json.dumps(jsonData, sort_keys=False, indent=4))
# Close API session
array.invalidate_cookie()
print(BANNER)
print(strftime('%Y/%m/%d %H:%M:%S %Z', gmtime()))
print(BANNER)
sys.exit(exit_code)
main()