Public/Remove-bConnectOrgUnit.ps1
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 |
Function Remove-bConnectOrgUnit() { <# .Synopsis Remove specified OrgUnit. .Parameter OrgUnitGuid Valid GUID of a OrgUnit. .Outputs Bool #> [CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'Medium')] [OutputType("System.Boolean")] Param ( [Parameter(Mandatory=$true)][string]$OrgUnitGuid ) $_connectVersion = Get-bConnectVersion If($_connectVersion -ge "1.0") { $_body = @{ Id = $OrgUnitGuid } if($PSCmdlet.ShouldProcess($_body.Id, "Remove org unit and all associated data from the database.")){ return Invoke-bConnectDelete -Controller "OrgUnits" -Version $_connectVersion -Data $_body } else { return $false } } else { return $false } } |