Commands/Lexicons/com/atproto/server/Remove-AtProtoServerAccount.ps1
function Remove-AtProtoServerAccount { <# .Synopsis com.atproto.server.deleteAccount .Description com.atproto.server.deleteAccount .Link https://github.com/bluesky-social/atproto/tree/main/lexicons/com/atproto/server/deleteAccount.json #> [Alias('Remove-AtProtocolServerAccount','atproto.server.deleteAccount','com.atproto.server.deleteAccount')] [CmdletBinding(SupportsShouldProcess)] param( # The Decentralized Identifier. This is a uniqueID used throughout the At Protocol. [Parameter(ValueFromPipelineByPropertyName)] [ComponentModel.DefaultBindingProperty('did')] [String] $Did, [Parameter(ValueFromPipelineByPropertyName)] [ComponentModel.DefaultBindingProperty('password')] [String] $Password, [Parameter(ValueFromPipelineByPropertyName)] [ComponentModel.DefaultBindingProperty('token')] [String] $Token ) begin { $NamespaceID = 'com.atproto.server.deleteAccount' $httpMethod = 'POST' $InvokeAtSplat = [Ordered]@{Method=$httpMethod} $InvokeAtSplat["PSTypeName"] = $NamespaceID $parameterAliases = [Ordered]@{} $AsByte = $false :nextParameter foreach ($paramMetadata in ([Management.Automation.CommandMetadata]$MyInvocation.MyCommand).Parameters.Values) { foreach ($attr in $paramMetadata.Attributes) { if ($attr -is [ComponentModel.DefaultBindingPropertyAttribute]) { $parameterAliases[$paramMetadata.Name] = $attr.Name continue nextParameter } } } $parameterQueue = [Collections.Queue]::new() } process { $parameterQueue.Enqueue([Ordered]@{} + $PSBoundParameters) } end { $parameterQueue.ToArray() | Invoke-AtProtocol -Method $httpMethod -NamespaceID $NamespaceID -Parameter { $_ } -ParameterAlias $parameterAliases @InvokeAtSplat -ContentType $( if ($ContentType) { $ContentType } else { "application/json" } ) -AsByte:$AsByte -Property { $_ } -Cache:$( if ($cache) {$cache} else { $false } ) } } |