Examples/Resources/xSQLServerEndpoint/3-RemoveEndpoint.ps1

<#
    .EXAMPLE
        This example will remove an Database Mirror endpoint from two instances.
 
#>

Configuration Example
{
    param
    (
        [Parameter(Mandatory = $true)]
        [System.Management.Automation.PSCredential]
        [System.Management.Automation.Credential()]
        $SysAdminAccount
    )

    Import-DscResource -ModuleName xSQLServer

    node localhost
    {
        xSQLServerEndpoint SQLConfigureEndpoint-Instance1
        {
            Ensure = 'Absent'

            EndpointName = 'HADR'
            SQLInstanceName = 'INST1'

            PsDscRunAsCredential = $SysAdminAccount
        }

        xSQLServerEndpoint SQLConfigureEndpoint-Instance2
        {
            Ensure = 'Absent'

            EndpointName = 'HADR'
            SQLInstanceName = 'INST2'

            PsDscRunAsCredential = $SysAdminAccount
        }
    }
}