使用Logic Apps,我试图将blob从一个容器复制到几个单独的动态创建的容器中,但是在Logic Apps中似乎没有“创建容器”操作。
我尝试使用“创建Blob”操作,并将所需的容器名称指定为“ Blob名称”参数的一部分,但是此操作失败,并显示404消息。
{
"status": 404,
"message": "Specified container telemetery-30dfb0bd-73b0-42a3-8677-63bde2fd4b43 does not exist.\r\nclientRequestId: blahblahh-e60e-44e1-aec4-c32a21659257",
"error": {
"message": "Specified container telemetery-30dfb0bd-73b0-42a3-8677-63bde2fd4b43 does not exist."
},
"source": "blahblha-ne.azconn-ne-01.p.azurewebsites.net"
}
原始请求是-
{
"method": "post",
"queries": {
"folderPath": "/",
"name": "/telemetery-30dfb0bd-73b0-42a3-8677-63bde2fd4b43/timeline,xml",
"queryParametersSingleEncoded": "True"
},
"path": "/datasets/default/files",
"host": {
"connection": {
"name": "/subscriptions/blahblah-6866-4c8c-b3f1-41039ad2b3eb/resourceGroups/RG-blahblahg/providers/Microsoft.Web/connections/azureblob"
}
},
"body": "file content"
}
是否可以通过Logic Apps创建Blob容器?
答案 0 :(得分:2)
根据文档,没有“创建容器”操作:
https://docs.microsoft.com/en-us/connectors/azureblobconnector/
您可以做的是编写一个Azure函数并将其链接为工作流的一部分,以创建容器:
答案 1 :(得分:2)
目前尚无创建blob容器的操作,您可以使用Thiago建议的azure函数来实现它。假设您可以使用rest api来做到这一点。下面的测试使用sas令牌来做,您可以尝试其他授权方式。