如何在应用程序配置服务中使用 json 文件生成 'label'?

How to generate a 'label' using a json file in app configuration service?

我正在尝试使用 cli 命令将 json 文件导入到 Azure 应用程序配置服务中: az appconfig kv import.

样本json文件

{
    "Pss": {
        "account/getall/get": "read",
        "account/setall/put": "write",
        "account/someendpoint/somevalue": "profile"
    }
}

我可以在cli中看到下面的预览

Adding:
{"key": "Pss:account/getall/get", "value": "\"read\""}
{"key": "Pss:account/setall/put", "value": "\"write\""}
{"key": "Pss:account/someendpoint/somevalue", "value": "\"profile\""}

标签在应用配置服务中创建为(无标签)。

您能否建议我需要在 json 文件中进行哪些更改才能生成标签值?

提前致谢。

以下命令将帮助您获取标签名称:

az appconfig kv import --name hkappconfig --label testingLabelName --source file --path /home/hari/Import.json --format json --separator . --content-type "application/json

通过在 Importing az cli 命令中添加属性 --label labelName,您将在应用配置的配置资源管理器中获取标签名称。

输出: