soc/api/v1/bootstrappolicies/Remove-BootstrapPolicy.ps1
function Remove-BootstrapPolicy { [CmdletBinding(SupportsShouldProcess)] param( [Parameter(Mandatory)] [string] $BootstrapPolicyId ) if ($PSCmdlet.ShouldProcess($BootstrapPolicyId)) { return Invoke-Api Delete "/soc/api/v1/bootstrappolicies/$BootstrapPolicyId" } } |