internal/autorest/out/user/Remove-DracoonARUserProfileattribute.ps1
function Remove-DracoonARUserProfileattribute { <# .SYNOPSIS Remove user profile attribute .DESCRIPTION <h3 style='padding: 5px; background-color: #F6F7F8; border: 1px solid #AAA; border-radius: 5px; display: table-cell;'>🚀 Since v4.7.0</h3> ### Description: Delete custom user profile attribute. ### Precondition: None. ### Postcondition: Custom user profile attribute is deleted. ### Further Information: Allowed characters for keys are: `[a-zA-Z0-9_-]` .PARAMETER Key Key .PARAMETER XSdsAuthToken Authentication token .PARAMETER Connection Object of Class ARAHConnection, stores the authentication Token and the API Base-URL .EXAMPLE PS C:\> Remove-DracoonARUserProfileattribute -Key $key -Connection $connection <h3 style='padding: 5px; background-color: #F6F7F8; border: 1px solid #AAA; border-radius: 5px; display: table-cell;'>🚀 Since v4.7.0</h3> ### Description: Delete custom user profile attribute. ### Precondition: None. ### Postcondition: Custom user profile attribute is deleted. ### Further Information: Allowed characters for keys are: `[a-zA-Z0-9_-]` .LINK <unknown> #> [CmdletBinding(DefaultParameterSetName = 'default')] param ( [Parameter(Mandatory = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = 'default')] [string] $Key, [Parameter(ValueFromPipelineByPropertyName = $true, ParameterSetName = 'default')] [string] $XSdsAuthToken, [Parameter(Mandatory = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = 'default')] [object] $Connection ) process { $__mapping = @{ 'XSdsAuthToken' = 'X-Sds-Auth-Token' 'Connection' = 'Connection' } $__body = $PSBoundParameters | ConvertTo-DracoonARHashtable -Include @() -Mapping $__mapping $__query = $PSBoundParameters | ConvertTo-DracoonARHashtable -Include @() -Mapping $__mapping $__header = $PSBoundParameters | ConvertTo-DracoonARHashtable -Include @('XSdsAuthToken') -Mapping $__mapping $__path = 'user/profileAttributes/{key}' -Replace '{key}',$Key Invoke-DracoonAPI -Path $__path -Method delete -Body $__body -Query $__query -Header $__header -Connection $Connection } } |