mirror of
https://github.com/benclaussen/NetboxPS.git
synced 2025-12-13 18:02:29 +00:00
11 lines
298 B
PowerShell
11 lines
298 B
PowerShell
|
|
function Clear-NetboxCredential {
|
|||
|
|
[CmdletBinding(ConfirmImpact = 'Medium', SupportsShouldProcess = $true)]
|
|||
|
|
param
|
|||
|
|
(
|
|||
|
|
[switch]$Force
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
if ($Force -or ($PSCmdlet.ShouldProcess('Netbox Credentials', 'Clear'))) {
|
|||
|
|
$script:NetboxConfig.Credential = $null
|
|||
|
|
}
|
|||
|
|
}
|