-
Notifications
You must be signed in to change notification settings - Fork 0
/
PureStorage.PowerShell.Toolkit.psm1
322 lines (295 loc) · 13.3 KB
/
PureStorage.PowerShell.Toolkit.psm1
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
314
315
316
317
318
319
320
321
322
Function Connect-PfaHost() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $HostName,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $Volume,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
$HostConnect = $null
$HostConnect = [ordered]@{
name = $HostName
vol = $Volume
} | ConvertTo-Json
Invoke-RestMethod -Method Post -Uri "https://$FlashArray/api/1.2/host/$HostName/volume/$Volume" -Body $HostConnect -WebSession $Session -ContentType "application/json"
}
Function New-PfaSnapshot() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $SnapshotVolume,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $SnapshotSuffix,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
$Snapshot = $null
$Snapshot = [ordered]@{
snap = "true"
source = [Object[]]"$SnapshotVolume"
suffix = $SnapshotSuffix
} | ConvertTo-Json
Invoke-RestMethod -Method Post -Uri "https://$FlashArray/api/1.2/volume" -Body $Snapshot -WebSession $Session -ContentType "application/json"
}
Function New-PfaVolume() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $Name,
[Parameter()][ValidateNotNullOrEmpty()][string] $Size = $null,
[Parameter()][ValidateNotNullOrEmpty()][string] $Source = $null,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
#TODO: Add Overwrite support.
)
$Volume = $null
If($Source) {
$Volume = @{
source = $Source
} | ConvertTo-Json
} Else {
$Volume = @{
size = $Size
} | ConvertTo-Json
}
Invoke-RestMethod -Method Post -Uri "https://$FlashArray/api/1.2/volume/$Name" -Body $Volume -WebSession $Session -ContentType "application/json"
}
function Get-PfaAPIToken {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter()][ValidateNotNullOrEmpty()][string] $Username,
[Parameter()][ValidateNotNullOrEmpty()][string] $Password
)
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = { $true }
$AuthAction = @{
password = $Username
username = $Password
}
return(Invoke-RestMethod -Method Post -Uri "https://$FlashArray/api/1.2/auth/apitoken" -Body $AuthAction)
}
Function Connect-PfaController() {
[CmdletBinding()]
Param (
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $APIToken
)
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = { $true }
$SessionAction = @{
api_token = $APIToken
}
$Response = Invoke-RestMethod -Method Post -Uri "https://$FlashArray/api/1.1/auth/session" -Body $SessionAction -SessionVariable Session
$Session
}
Function Disconnect-PfaController() {
[CmdletBinding()]
Param (
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
$Respone = Invoke-RestMethod -Method Delete -Uri "https://$FlashArray/api/1.1/auth/session" -WebSession $Session
}
Function Get-PfaHosts() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
return(Invoke-RestMethod -Method Get -Uri "https://$FlashArray/api/1.2/host" -WebSession $Session -ContentType "application/json")
}
Function Get-PfaAlerts() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
$Uri = "https://$FlashArray/api/1.2/message?audit=true"
return(Invoke-RestMethod -Method Get -Uri $Uri -WebSession $Session -ContentType "application/json")
}
Function Get-PfaArray() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
return(Invoke-RestMethod -Method Get -Uri "https://$FlashArray/api/1.2/array" -WebSession $Session)
}
Function Get-PfaVolume() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
$Uri = "https://$FlashArray/api/1.2/volume"
return(Invoke-RestMethod -Method Get -Uri $Uri -WebSession $Session -ContentType "application/json")
}
Function Get-PfaVolumeStatistics() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $Volume,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
$Uri = "https://$FlashArray/api/1.2/volume/$Volume"+"?action=monitor"
return(Invoke-RestMethod -Method Get -Uri $Uri -WebSession $Session -ContentType "application/json")
}
Function Disconnect-PfaVolume() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $Volume,
[Parameter()][ValidateNotNullOrEmpty()][string] $HostName = $null,
[Parameter()][ValidateNotNullOrEmpty()][string] $HostGroupName = $null,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
If($HostName) {
$Uri = "https://$FlashArray/api/1.2/host/$HostName/volume/$Volume"
} Else {
If($HostGroupName) {
$Uri = "https://$FlashArray/api/1.2/hgroup/$HostGroupName/volume/$Volume"
}
}
return(Invoke-RestMethod -Method Delete -Uri $Uri -WebSession $Session -ContentType "application/json")
}
Function Remove-PfaVolume() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $Volume,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
#[Parameter()][ValidateNotNullOrEmpty()][string] $Eradicate
)
try {
return(Invoke-RestMethod -Method Delete -Uri "https://$FlashArray/api/1.2/volume/$Volume" -WebSession $Session)
} catch {
# TODO
}
}
Function Get-PfaSnapshot() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
$Uri = "https://$FlashArray/api/1.2/volume?snap=true"
return(Invoke-RestMethod -Method Get -Uri $Uri -WebSession $Session -ContentType "application/json")
}
Function Eradicate-PfaVolume() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $Volume,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
try {
$Uri = "https://$FlashArray/api/1.2/volume/$Volume"+"?eradicate=true"
$Response = Invoke-RestMethod -Method Delete -Uri $Uri -WebSession $Session
} catch {
# TODO
}
}
Function Get-PfaPorts() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
$Uri = "https://$FlashArray/api/1.2/port"
return(Invoke-RestMethod -Method Get -Uri $Uri -WebSession $Session -ContentType "application/json")
}
Function Get-PfaInitiators() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
$Uri = "https://$FlashArray/api/1.2/port?initiators=true"
return(Invoke-RestMethod -Method Get -Uri $Uri -WebSession $Session -ContentType "application/json")
}
Function Get-PfaHostGroup() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter()][ValidateNotNullOrEmpty()][string] $GroupName = $null,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
If($GroupName) {
$Uri = "https://$FlashArray/api/1.2/hgroup/$GroupName"
} Else {
$Uri = "https://$FlashArray/api/1.2/hgroup"
}
return(Invoke-RestMethod -Method Get -Uri $Uri -WebSession $Session -ContentType "application/json")
}
Function Get-PfaHostGroupSpace() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter()][ValidateNotNullOrEmpty()][string] $GroupName = $null,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
If($GroupName) {
$Uri = "https://$FlashArray/api/1.2/hgroup/$GroupName"+"?space=true"
} Else {
$Uri = "https://$FlashArray/api/1.2/hgroup?space=true"
}
return(Invoke-RestMethod -Method Get -Uri $Uri -WebSession $Session -ContentType "application/json")
}
Function Open-PureStorageGitHub() {
$link = "https://github.com/purestorage/PowerShell-Toolkit"
$browserProcess = [System.Diagnostics.Process]::Start($link)
}
Function Connect-PfaHostGroup() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $HostGroupName,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $Volume,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
$Uri = "https://$FlashArray/api/1.2/hgroup/$HostGroupName/volume/$Volume"
Invoke-RestMethod -Method Post -Uri $Uri -Body $HostConnect -WebSession $Session -ContentType "application/json"
}
Function Get-PfaProtectionGroups() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
)
$Uri = "https://$FlashArray/api/1.2/pgroup"
Invoke-RestMethod -Method Get -Uri $Uri -Body $HostConnect -WebSession $Session -ContentType "application/json"
}
Function Refresh-PfaVolume() {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $FlashArray,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $Name,
[Parameter(Mandatory=$True)][ValidateNotNullOrEmpty()][string] $Source,
[Parameter(Mandatory = $True)][ValidateNotNullOrEmpty()][Microsoft.PowerShell.Commands.WebRequestSession]$Session
#TODO: Add Overwrite support.
)
$Json = [ordered]@{
overwrite = "true"
source = $Source
} | ConvertTo-Json
Invoke-RestMethod -Method Post -Uri "https://$FlashArray/api/1.2/volume/$Name" -Body $Json -WebSession $Session -ContentType "application/json"
}
Export-ModuleMember -Function Connect-PfaController
Export-ModuleMember -Function Disconnect-PfaController
Export-ModuleMember -Function New-PfaSnapshot
Export-ModuleMember -Function New-PfaVolume
Export-ModuleMember -Function Connect-PfaHost
Export-ModuleMember -Function Get-PfaVolume
Export-ModuleMember -Function Get-PfaVolumeStatistics
Export-ModuleMember -Function Get-PfaHosts
Export-ModuleMember -Function Get-PfaArray
Export-ModuleMember -Function Get-PfaSnapshot
Export-ModuleMember -Function Get-PfaAlerts
Export-ModuleMember -Function Remove-PfaVolume
Export-ModuleMember -Function Disconnect-PfaVolume
Export-ModuleMember -Function Get-PfaAPIToken
Export-ModuleMember -Function Eradicate-PfaVolume
Export-ModuleMember -Function Get-PfaPorts
Export-ModuleMember -Function Get-PfaInitiators
Export-ModuleMember -Function Get-PfaHostGroupSpace
Export-ModuleMember -Function Get-PfaHostGroup
Export-ModuleMember -Function Open-PureStorageGitHub
Export-ModuleMember -Function Connect-PfaHostGroup
Export-ModuleMember -Function Connect-PfaProtectionGroups
Export-ModuleMember -Function Refresh-PfaVolume