internal/autorest/out/auth/Get-DracoonARAuthOpenidResource.ps1
function Get-DracoonARAuthOpenidResource { <# .SYNOPSIS Request OpenID Connect authentication resources .DESCRIPTION <h3 style='padding: 5px; background-color: #F6F7F8; border: 1px solid #AAA; border-radius: 5px; display: table-cell;'>🚧 Deprecated since v4.3.0</h3> ### Description: Provides information about OpenID Connect authentication options. ### Precondition: None. ### Postcondition: List of available OpenID Connect Providers is returned. ### Further Information: Empty list is returned if OpenID Connect is **NOT** configured. .PARAMETER Connection Object of Class ARAHConnection, stores the authentication Token and the API Base-URL .EXAMPLE PS C:\> Get-DracoonARAuthOpenidResource -Connection $connection <h3 style='padding: 5px; background-color: #F6F7F8; border: 1px solid #AAA; border-radius: 5px; display: table-cell;'>🚧 Deprecated since v4.3.0</h3> ### Description: Provides information about OpenID Connect authentication options. ### Precondition: None. ### Postcondition: List of available OpenID Connect Providers is returned. ### Further Information: Empty list is returned if OpenID Connect is **NOT** configured. .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/openid/resources' Invoke-DracoonAPI -Path $__path -Method get -Body $__body -Query $__query -Header $__header -Connection $Connection } } |