Cmdlets to provide and manage SQL servers for tests.
Removes a test Azure SQL Server.
Remove-SqlTestAzureInstance [-ResourceGroupName] <Object> [-ServerName] <Object> [<CommonParameters>]
Removes a Azure SQL Server, in case it was created with `New-SqlTestAzureInstance`.
$instance = New-SqlTestAzureInstance -Subscription 'MyAzureSubscription'
PS> $instance | Remove-SqlTestAzureInstance
Specifies the resource group containing the server.
Type: Object
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
Specifies the server to remove.
Type: Object
Parameter Sets: (All)
Aliases:
Required: True
Position: 2
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.