如何使用REST API创建标准逻辑应用程序?

发布于 2025-01-24 05:22:10 字数 218 浏览 0 评论 0 原文

使用官方文档 azure逻辑应用程序,我能够创建并使用消费逻辑应用。是否可以以类似的方式使用REST API创建标准逻辑应用

Using the official documentation Azure Logic Apps, i'm able to create and work with Consumption Logic Apps. Is it possible to create Standard Logic App using Rest API in similar way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦境 2025-01-31 05:22:10

目前看来的简单答案是 no

按照文档... https://learn.microsoft.com/en-us/azure/logic-apps/single-tenant-tenant-overview-compare-compare#create#create-build-build-and-and-deploy-options

有当前有限的标准逻辑应用程序选项。

标准

​=“ https://i.sstatic.net/pruq0.png” alt =“消费”>

更新

标准逻辑应用程序现在有其他部署方法,但仍然不是完整的套件,但它已经成长。

The simple answer, as it currently stands and looks to be, is no.

As per the documentation ... https://learn.microsoft.com/en-us/azure/logic-apps/single-tenant-overview-compare#create-build-and-deploy-options

There are currently limited options for a standard logic app.

Standard

Standard

Consumption

Consumption

Update

Standard logic apps now have additional ways to deploy, still not the full suite but it's grown.

Update

梦里寻她 2025-01-31 05:22:10

这是一种可能的,但是您需要重新考虑定义。

逻辑应用标准(又称单租户逻辑应用程序)构建在功能运行时的顶部,基础架构与实际的工作流定义分开。对资源的部署基本上与功能应用程序相同。

  1. 部署基础架构
  2. 部署工作流程(功能应用程序的功能)。

此处的更多信息:单租户Azure逻辑应用程序的DevOps部署

对于您的情况,您将:

  1. 通过REST API部署基础架构
    • 存储帐户
    • 服务器农场(应用程序服务计划)
    • 站点(应用程序服务)
  2. 构建逻辑应用标准项目并创建ZIP档案。
  3. 使用REST API使用ZIP部署部署档案。
    • 这听起来很容易,但需要更多的工作,请参见下面的链接。

链接:

This is tecnically possible but you need to rethink the definition.

Logic App Standard (aka. Single-Tenant Logic App) is built on top of the function runtime and the infrastructure is seperated from the actual workflow definition. Deployment to the resource basically works the same way as for Function Apps.

  1. Deploy the infrastructure
  2. Deploy the workflow (function for function apps).

More on that here: DevOps deployment for single-tenant Azure Logic Apps

For your case you would:

  1. Deploy the infrastructure via the REST API
    • Storage account
    • Server Farm (App Service Plan)
    • Site (App Service)
  2. Build the Logic App Standard project and create a zip archive.
  3. Deploy the archive using zip deployment via REST API.
    • This sounds easy but requires more work, see links below.

Links:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文