Functions/Import-WorkspaceNotebooks.ps1

Function Import-WorkspaceNotebooks {
    [cmdletbinding()]
    Param(
        [string] $region,
        [string] $localPath,
        [string] $dataBricksPath,
        [string] $bearerToken
    )

    Write-Host "Uploading the the folder from $localPath to to $dataBricksPath"

    Import-DatabricksFolder -BearerToken $BearerToken -Region $Region -LocalPath $localPath -DatabricksPath $dataBricksPath -Verbose
}