azure 如何为逻辑应用程序进行按环境配置?

ecbunoof  于 2023-04-22  发布在  其他
关注(0)|答案(2)|浏览(151)

如何为逻辑应用程序进行按环境配置?
通过API应用程序和函数应用程序,我可以使用应用程序设置来保存环境特定的值。
但似乎没有任何等效的逻辑应用程序刀片?
感谢您可以通过设置API Connections的值来设置与其他系统的连接,但简单的事情怎么办,例如,我希望电子邮件的主题取决于环境特定的设置。

cfh9epnr

cfh9epnr2#

可以使用Dataverse解决方案中的环境变量。可以根据环境设置值,然后随解决方案在环境之间移动。可以使用Dataverse REST API访问这些变量。
1.首先,你需要找到变量的定义,在environmentvariabledefinitions表中找到它的ID
1.然后查询environmentvariablevalues表以获得每个环境的真实的值

GET [Org URI]/api/data/v9.2/environmentvariabledefinitions?$filter=schemaname eq 'prefix_VariableName'&$select=environmentvariabledefinitionid
GET [Org URI]/api/data/v9.2/environmentvariablevalues?$filter=_environmentvariabledefinitionid_value eq {environmentvariabledefinitionid}&$select=value

参考文献
https://learn.microsoft.com/en-us/power-apps/maker/data-platform/environmentvariables
https://learn.microsoft.com/en-us/power-apps/developer/data-platform/webapi/reference/environmentvariabledefinition
https://learn.microsoft.com/en-us/power-apps/developer/data-platform/webapi/reference/environmentvariablevalue

相关问题