Skip to main content

Deleting resources with the PowerShell SDK

You can use the SDK to delete resources. These cmdlets will typically start with the Remove keyword.

Here is an example script that searches for the previously created Workgroup by name and calls the delete cmdlet to remove it from your environment.

$WorkGroup = Get-BetaWorkgroups -Filters 'name eq "DB Access Governance Group"'

Remove-BetaWorkgroup -Id $WorkGroup.id -WithHttpInfo

Using the WithHttpInfo Switch in the script above, we can verify the operation completed successfully by the 204 status code.

Name                           Value
---- -----
Response
StatusCode 204
Headers {[Date, System.String[]], [Connection, System.String[]], [Server, System.String[]], [Vary, System.String[]]}