Public/Libraries/Import-R1Library.ps1

# .ExternalHelp psRadiantOne-help.xml
function Import-R1Library {
    [CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'Medium')]
    [OutputType('psRadiantOne.Library')]
    param(
        [parameter(
            Mandatory = $true,
            ValueFromPipelineByPropertyName = $true
        )]
        [ValidateScript({
                if (-not (Test-Path -Path $PSItem -PathType Leaf)) {

                    throw "File not found: $PSItem"

                }
                $true
            })]
        [Alias('FullName')]
        [string]$Path
    )

    Begin {

        Assert-R1Session -RequireToken

    }#begin

    Process {

        $URI = Resolve-R1ServiceUrl -Service Catalog -Path 'libraries/upload'

        $UploadFile = Get-Item -Path $Path

        $Form = ConvertTo-MultipartFormData -Field @{ file = $UploadFile }

        if ($PSCmdlet.ShouldProcess($UploadFile.Name, 'Upload Library')) {

            $Result = Invoke-R1RestMethod -Uri $URI -Method POST -Body $Form.Body -ContentType $Form.ContentType

            if ($null -ne $Result) {

                $Result | Add-CustomType -Type psRadiantOne.Library

            }

        }

    }#process

    End { }#end

}