Azure rest api 相当于 az sql db show-connection-string -s myserver -n mydb -c ado.net

Azure rest api equivalent to az sql db show-connection-string -s myserver -n mydb -c ado.net

我无法找到与 az sql db show-connection-string -s myserver -n mydb -c ado.net 等效的 rest api 调用。感谢任何帮助。

通常,我们只需要将 --debug 参数附加到 CLI 命令即可查看命令调用的 REST API。 对于这个命令,我们很容易发现它并没有通过--debug参数调用任何RESTAPI,它只是对你输入的参数做了一个拼接,因为连接字符串的格式是静态的。

参考 - https://www.connectionstrings.com/azure-sql-database/