如何 clone/make Azure 上已部署机器人的另一个副本?

How to clone/make another copy of an deployed bot on Azure?

我想创建部署在 Azure 上的现有机器人的副本。因此,新副本可用于创建具有较小更改的新机器人。 想知道 Azure 门户本身是否有任何直接选项来创建现有机器人的克隆

您可以使用 Export Template functionality to export the existing bot and any other associated resources from Azure, then use the Template deployment 函数来部署您的自定义模板。

由于模板导出目前不支持机器人频道注册(如您所见),最好的选择可能是编写一些脚本。您可以构建一个机器人并将其压缩,然后使用 cli/powershell 创建所需的资源并进行部署。您可以相当轻松地编写脚本来创建新的应用程序和机器人频道资源。

请参阅 here 了解有关一般如何处理的更多信息。如果你想要一个 sudo 示例,请告诉我。