我知道我可以创建一个Azure API管理实例using Azure Resource Management templates,但是我还可以使用相同的模板将API导入其中吗?
提供API的Web应用程序是使用ARM模板在上一步中创建的,并且已知Swagger定义的URL。同样自动化导入也很有意义。
It is available现在。见Api Reference。
{
"properties": {
"format": "swagger-link-json",
"value": "http://petstore.swagger.io/v2/swagger.json",
"path": "petstore"
}
}
它尚未得到支持,但它在积压中。我此时没有分享日期。
我想补充一点,这种导入方式还不支持版本化的API。要实现此功能,您需要首先运行ARM模板以创建版本化API,然后再运行包含导入的ARM模板。