Private/Test-OSDCloudWorkspace.ps1

function Test-OSDCloudWorkspace {
    [CmdletBinding()]
    param (
        [Parameter(Mandatory = $true)]
        [string]
        $WorkspacePath
    )
    
    if (-NOT (Test-Path "$WorkspacePath")) {Return $false}
    if (-NOT (Test-Path "$WorkspacePath\Media" )) {Return $false}
    if (-NOT (Test-Path "$WorkspacePath\Media\sources\boot.wim" )) {Return $false}

    Return $true
}