Public/function-to-export.ps1

function Get-Info {
    $sampleObj = New-Object -TypeName psobject
    $sampleObj | Add-Member -MemberType NoteProperty -Name cloudProvider -Value 'Azure'

    return $sampleObj
}