internal/autorest/out/nodes/Set-DracoonARNodeZip.ps1
function Set-DracoonARNodeZip { <# .SYNOPSIS Generate download URL for ZIP download .DESCRIPTION ### Description: Create a download URL to retrieve several files in one ZIP archive. ### Precondition: User has <span style='padding: 3px; background-color: #F6F7F8; border: 1px solid #000; border-radius: 5px; display: inline;'>🔓 read</span> permissions in parent room. ### Postcondition: Download URL is generated and returned. ### Further Information: The token is necessary to access `downloads` resources. ZIP download is only available for files and folders. .PARAMETER Connection Object of Class ARAHConnection, stores the authentication Token and the API Base-URL .PARAMETER XSdsAuthToken Authentication token .EXAMPLE PS C:\> Set-DracoonARNodeZip -Connection $connection ### Description: Create a download URL to retrieve several files in one ZIP archive. ### Precondition: User has <span style='padding: 3px; background-color: #F6F7F8; border: 1px solid #000; border-radius: 5px; display: inline;'>🔓 read</span> permissions in parent room. ### Postcondition: Download URL is generated and returned. ### Further Information: The token is necessary to access `downloads` resources. ZIP download is only available for files and folders. .LINK <unknown> #> [CmdletBinding(DefaultParameterSetName = 'default')] param ( [Parameter(Mandatory = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = 'default')] [object] $Connection, [Parameter(ValueFromPipelineByPropertyName = $true, ParameterSetName = 'default')] [string] $XSdsAuthToken ) process { $__mapping = @{ 'Connection' = 'Connection' 'XSdsAuthToken' = 'X-Sds-Auth-Token' } $__body = $PSBoundParameters | ConvertTo-DracoonARHashtable -Include @() -Mapping $__mapping $__query = $PSBoundParameters | ConvertTo-DracoonARHashtable -Include @() -Mapping $__mapping $__header = $PSBoundParameters | ConvertTo-DracoonARHashtable -Include @('XSdsAuthToken') -Mapping $__mapping $__path = 'nodes/zip' Invoke-DracoonAPI -Path $__path -Method post -Body $__body -Query $__query -Header $__header -Connection $Connection } } |