internal/autorest/out/settings/Remove-DracoonARSettingKeypair.ps1
function Remove-DracoonARSettingKeypair { <# .SYNOPSIS Remove system rescue key pair .DESCRIPTION <h3 style='padding: 5px; background-color: #F6F7F8; border: 1px solid #AAA; border-radius: 5px; display: table-cell;'>🚀 Since v4.24.0</h3> ### Description: Remove the system rescue key pair. ### Precondition: * Authenticated user * Existence of own key pair ### Postcondition: Key pair is removed (cf. further information below). ### Further Information: Please set a new system rescue key pair first and re-encrypt file keys with it. If no version is set, deleted key pair with lowest preference value. Although, `version` **SHOULD** be set. .PARAMETER Version Version (NEW) .PARAMETER XSdsAuthToken Authentication token .PARAMETER Connection Object of Class ARAHConnection, stores the authentication Token and the API Base-URL .EXAMPLE PS C:\> Remove-DracoonARSettingKeypair -Connection $connection <h3 style='padding: 5px; background-color: #F6F7F8; border: 1px solid #AAA; border-radius: 5px; display: table-cell;'>🚀 Since v4.24.0</h3> ### Description: Remove the system rescue key pair. ### Precondition: * Authenticated user * Existence of own key pair ### Postcondition: Key pair is removed (cf. further information below). ### Further Information: Please set a new system rescue key pair first and re-encrypt file keys with it. If no version is set, deleted key pair with lowest preference value. Although, `version` **SHOULD** be set. .LINK <unknown> #> [CmdletBinding(DefaultParameterSetName = 'default')] param ( [Parameter(ValueFromPipelineByPropertyName = $true, ParameterSetName = 'default')] [string] $Version, [Parameter(ValueFromPipelineByPropertyName = $true, ParameterSetName = 'default')] [string] $XSdsAuthToken, [Parameter(Mandatory = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = 'default')] [object] $Connection ) process { $__mapping = @{ 'Version' = 'version' 'XSdsAuthToken' = 'X-Sds-Auth-Token' 'Connection' = 'Connection' } $__body = $PSBoundParameters | ConvertTo-DracoonARHashtable -Include @() -Mapping $__mapping $__query = $PSBoundParameters | ConvertTo-DracoonARHashtable -Include @('Version') -Mapping $__mapping $__header = $PSBoundParameters | ConvertTo-DracoonARHashtable -Include @('XSdsAuthToken') -Mapping $__mapping $__path = 'settings/keypair' Invoke-DracoonAPI -Path $__path -Method delete -Body $__body -Query $__query -Header $__header -Connection $Connection } } |