generated from VeeamCommunity/veeamcommunity-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathveeam-powershell-sdk.psm1
263 lines (204 loc) · 7.27 KB
/
veeam-powershell-sdk.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
$ErrorActionPreference = 'Stop'
function New-VBRConnection {
<#
.SYNOPSIS
Uses New-VBRConnection to store the connection in a global parameter
.DESCRIPTION
Creates a Veeam Server connection and stores it in global variable $Global:DefaultVeeamBR.
An FQDN or IP, credentials, and ignore certificate boolean
.OUTPUTS
Returns the Veeam Server connection.
.EXAMPLE
New-VBRConnection -Endpoint <FQDN or IP> -Port <default 9419> -Credential $(Get-Credential)
#>
[CmdletBinding()]
Param(
[Parameter(Position=0,mandatory=$true)]
[string]$Endpoint,
[Parameter(Position=1,mandatory=$true)]
[string]$Port,
[Parameter(Mandatory=$true,ParameterSetName="Credential")]
[ValidateNotNullOrEmpty()]
[Management.Automation.PSCredential]$Credential
)
$apiUrl = "https://$($Endpoint):$($Port)/api/oauth2/token"
$User = $Credential.UserName
$Pass = $Credential.GetNetworkCredential().Password
# Define the headers for the API request
$headers = @{
"Content-Type" = "application/x-www-form-urlencoded"
"x-api-version" = "1.1-rev0"
}
## TO-DO: Grant_type options
$body = @{
"grant_type" = "password"
"username" = $User
"password" = $Pass
}
# Send an authentication request to obtain a session token
try {
$response = Invoke-RestMethod -Uri $apiUrl -Headers $headers -Method Post -Body $body -SkipCertificateCheck
if (($response.access_token) -or ($response.StatusCode -eq 200) ) {
Write-Host "Successfully authenticated."
$VBRAuthentication = [PSCustomObject]@{
Session_endpoint = $Endpoint
Session_port = $Port
Session_access_token = $response.access_token
}
return $VBRAuthentication
}
else {
Write-Host "Authentication failed. Status code: $($response.StatusCode), Message: $($response.Content)"
}
}
catch {
Write-Host "An error occurred: $($_.Exception.Message)"
}
}
function Get-Jobs {
<#
.SYNOPSIS
Uses Get-BackupJobs to retrive the backup jobs coordinated by the backup server/
.DESCRIPTION
This allows you to get an array of all jobs coordinated by the backup server.
.OUTPUTS
Returns the all jobs.
.EXAMPLE
#>
[CmdletBinding()]
Param(
[Parameter(Position=0,mandatory=$true)]
[PSCustomObject]$VBRConnection,
[Parameter(Position=1,mandatory=$false)]
[String]$JobID
)
if ($JobID -eq $null){
$apiUrl = "https://$($VBRConnection.Session_endpoint):$($VBRConnection.Session_post)/v1/jobs"
} else {
$apiUrl = "https://$($VBRConnection.Session_endpoint):$($VBRConnection.Session_post)/v1/jobs/" + $JobID
}
# Define the headers for the API request
$headers = @{
"x-api-version" = "1.1-rev0"
"Authorization" = "Bearer $($VBRConnection.Session_access_token)"
}
# Send a request to get a list of backup jobs
try {
$response = Invoke-RestMethod -Uri $apiUrl -Headers $headers -Method GET -SkipCertificateCheck
# Process the response data as needed
return $response.data
}
catch {
Write-Host "An error occurred: $($_.Exception.Message)"
return $null
}
}
function Get-Backups {
<#
.SYNOPSIS
Uses Get-Backups to retrive the backup by the backup server.
.DESCRIPTION
This allows you to get a list of all the backups coordinated by the backup server.
.OUTPUTS
Returns the all backups.
.EXAMPLE
#>
[CmdletBinding()]
Param(
[Parameter(Position=0,mandatory=$true)]
[PSCustomObject]$VBRConnection,
[Parameter(Position=1,mandatory=$false)]
[String]$BackupID
)
if ($BackupID -eq $null){
$apiUrl = "https://$($VBRConnection.Session_endpoint):$($VBRConnection.Session_post)/v1/backups"
} else {
$apiUrl = "https://$($VBRConnection.Session_endpoint):$($VBRConnection.Session_post)/v1/backups/" + $BackupID
}
# Define the headers for the API request
$headers = @{
"x-api-version" = "1.1-rev0"
"Authorization" = "Bearer $($VBRConnection.Session_access_token)"
}
# Send a request to get a list of backup jobs
try {
$response = Invoke-RestMethod -Uri $apiUrl -Headers $headers -Method GET -SkipCertificateCheck
# Process the response data as needed
return $response.data
}
catch {
Write-Host "An error occurred: $($_.Exception.Message)"
return $null
}
}
function Get-Repositories {
<#
.SYNOPSIS
Uses Get-Repositories to retrive the backup by the backup server.
.DESCRIPTION
This allows you to get a list of all the backups coordinated by the backup server.
.OUTPUTS
Returns the all backups.
.EXAMPLE
#>
[CmdletBinding()]
Param(
[Parameter(Position=0,mandatory=$true)]
[PSCustomObject]$VBRConnection,
[Parameter(Position=1,mandatory=$false)]
[String]$RepositoryID
)
if ($RepositoryID -eq $null){
$apiUrl = "https://$($VBRConnection.Session_endpoint):$($VBRConnection.Session_post)/api/v1/backupInfrastructure/repositories"
} else {
$apiUrl = "https://$($VBRConnection.Session_endpoint):$($VBRConnection.Session_post)/api/v1/backupInfrastructure/repositories/" + $RepositoryID
}
# Define the headers for the API request
$headers = @{
"x-api-version" = "1.1-rev0"
"Authorization" = "Bearer $($VBRConnection.Session_access_token)"
}
# Send a request to get a list of backup jobs
try {
$response = Invoke-RestMethod -Uri $apiUrl -Headers $headers -Method GET -SkipCertificateCheck
# Process the response data as needed
return $response.data
}
catch {
Write-Host "An error occurred: $($_.Exception.Message)"
return $null
}
}
function Add-RepositoryAzureBlob {
[CmdletBinding()]
Param(
[Parameter(Position=0,mandatory=$true)]
[PSCustomObject]$VBRConnection,
[Parameter(Position=1,mandatory=$true)]
[String]$Name,
[Parameter(Position=2,mandatory=$true)]
[String]$Desciption,
[Parameter(Position=1,mandatory=$true)]
[PSCustomObject]$AzureAccount
)
$apiUrl = "https://$($VBRConnection.Session_endpoint):$($VBRConnection.Session_post)/api/v1/backupInfrastructure/repositories"
# Define the headers for the API request
$headers = @{
"x-api-version" = "1.1-rev0"
"Authorization" = "Bearer $($VBRConnection.Session_access_token)"
}
# Define the body for the API request
$body = @{
"kind" = "AzureBlob"
}
# Send a request to get a list of backup jobs
try {
$response = Invoke-RestMethod -Uri $apiUrl -Headers $headers -Body $body -Method POST -SkipCertificateCheck
# Process the response data as needed
return $response.data
}
catch {
Write-Host "An error occurred: $($_.Exception.Message)"
return $null
}
}