internal/autorest/out/auth/Get-DracoonARAuthPing.ps1
function Get-DracoonARAuthPing { <# .SYNOPSIS Ping .DESCRIPTION ### Description: Test connection to DRACOON Core Service. ### Precondition: None. ### Postcondition: `200 OK` with current date string is returned if successful. ### Further Information: None. .PARAMETER Connection Object of Class ARAHConnection, stores the authentication Token and the API Base-URL .EXAMPLE PS C:\> Get-DracoonARAuthPing -Connection $connection ### Description: Test connection to DRACOON Core Service. ### Precondition: None. ### Postcondition: `200 OK` with current date string is returned if successful. ### Further Information: None. .LINK <unknown> #> [CmdletBinding(DefaultParameterSetName = 'default')] param ( [Parameter(Mandatory = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = 'default')] [object] $Connection ) process { $__mapping = @{ 'Connection' = 'Connection' } $__body = $PSBoundParameters | ConvertTo-DracoonARHashtable -Include @() -Mapping $__mapping $__query = $PSBoundParameters | ConvertTo-DracoonARHashtable -Include @() -Mapping $__mapping $__header = $PSBoundParameters | ConvertTo-DracoonARHashtable -Include @() -Mapping $__mapping $__path = 'auth/ping' Invoke-DracoonAPI -Path $__path -Method get -Body $__body -Query $__query -Header $__header -Connection $Connection } } |