简体   繁体   English

Azure Logic应用程序自定义连接器图标

[英]Azure Logic App Custom Connector Icon

Is there any way that I could update the default icon of the custom connector logic app in Azure? 有什么方法可以更新Azure中自定义连接器逻辑应用程序的默认图标? custom connector 定制连接器

Yes. 是。

In section 1. General of the Custom Connector configuration, there is the option to upload an icon. 在“自定义连接器”配置的“常规1.”部分中,可以选择上传图标。

This option is always available so you can update the image any time. 此选项始终可用,因此您可以随时更新图像。

Yes you can pretty much use an icon as per you need. 是的,您几乎可以根据需要使用图标。 All you need to do is add the iconUri param to the properties of your connector from code view. 您需要做的就是从代码视图中将iconUri参数添加到连接器的属性中。

Example : 范例:

"properties": {
        "description": My Custom Connector",
        "displayName": "[variables('my_connectorName')]",
        "iconUri": "[concat('https://', parameters('storageAccountName'),'.blob.core.windows.net/icon/logo-icon.png')]",
              }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM