function Get-DeveloperTenant { <# .SYNOPSIS Get the default developer tenant in a way that matches what is provided in the AlkamiMaster tenant table record #> [CmdletBinding()] [OutputType([System.Collections.Hashtable])] Param() return @{ Name = 'Developer Dynamic'; BankGuid = '78554577-9DE6-43CD-9085-5868977156D1'; Signature = 'developer.dev.alkamitech.com'; AdminSignature = 'admin-developer.dev.alkamitech.com'; DataSource = 'localhost'; Catalog = 'DeveloperDynamic'; Version = ''; ConnectionString = 'data source=localhost;Integrated Security=SSPI; Database=DeveloperDynamic;Max Pool Size=500;Pooling=true;MultipleActiveResultSets=true;' }; }