NetboxPS/Functions/Virtualization/VirtualMachine/Remove-NetboxVirtualMachine.ps1

55 lines
1.2 KiB
PowerShell
Raw Normal View History

2022-12-06 13:34:52 -05:00

2020-03-23 12:18:01 -04:00
function Remove-NetboxVirtualMachine {
<#
.SYNOPSIS
Delete a virtual machine
2020-03-23 12:18:01 -04:00
.DESCRIPTION
Deletes a virtual machine from Netbox by ID
2020-03-23 12:18:01 -04:00
.PARAMETER Id
Database ID of the virtual machine
2020-03-23 12:18:01 -04:00
.PARAMETER Force
Force deletion without any prompts
2020-03-23 12:18:01 -04:00
.EXAMPLE
PS C:\> Remove-NetboxVirtualMachine -Id $value1
2020-03-23 12:18:01 -04:00
.NOTES
Additional information about the function.
#>
2020-03-23 12:18:01 -04:00
[CmdletBinding(ConfirmImpact = 'High',
SupportsShouldProcess = $true)]
param
(
[Parameter(Mandatory = $true,
ValueFromPipelineByPropertyName = $true)]
2023-07-28 16:17:23 -04:00
[uint64[]]$Id,
2020-03-23 12:18:01 -04:00
[switch]$Force
)
2020-03-23 12:18:01 -04:00
begin {
2020-03-23 12:18:01 -04:00
}
2020-03-23 12:18:01 -04:00
process {
foreach ($VMId in $Id) {
$CurrentVM = Get-NetboxVirtualMachine -Id $VMId -ErrorAction Stop
2020-03-23 12:18:01 -04:00
if ($Force -or $pscmdlet.ShouldProcess("$($CurrentVM.Name)/$($CurrentVM.Id)", "Remove")) {
$Segments = [System.Collections.ArrayList]::new(@('virtualization', 'virtual-machines', $CurrentVM.Id))
2020-03-23 12:18:01 -04:00
$URI = BuildNewURI -Segments $Segments
2020-03-23 12:18:01 -04:00
InvokeNetboxRequest -URI $URI -Method DELETE
}
}
}
2020-03-23 12:18:01 -04:00
end {
2020-03-23 12:18:01 -04:00
}
}