function Get-SecretServerUri { <# .SYNOPSIS Get the base URI of the secret server. #> [CmdletBinding()] [OutputType([System.String])] Param() return "https://alkami.secretservercloud.com"; }