Add HelpDesk region selector to connection creation. (#2949)

This commit is contained in:
Anton Khritonenkov 2023-09-20 19:01:43 +04:00 коммит произвёл GitHub
Родитель e3d7bf5b80
Коммит 1e664a7143
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 36 добавлений и 7 удалений

Просмотреть файл

@ -4,20 +4,49 @@
"api_key": {
"type": "securestring",
"uiDefinition": {
"displayName": "API Key",
"description": "The API Key for this api",
"tooltip": "Provide your API Key",
"constraints": {
"tabIndex": 2,
"clearText": false,
"required": "true"
"required": "true",
"tabIndex": 2
},
"description": "The API Key for this api",
"displayName": "API Key",
"tooltip": "Provide your API Key"
}
},
"region": {
"type": "string",
"uiDefinition": {
"displayName": "Data center region",
"tooltip": "Select Data Center to use",
"constraints": {
"required": "true",
"allowedValues": [
{
"text": "EU",
"value": "helpdesk-services.plumsail.com"
},
{
"text": "US",
"value": "us-helpdesk-services.plumsail.com"
}
]
}
}
}
},
"iconBrandColor": "#ee8400",
"capabilities": [],
"publisher": "Fuzor LLC",
"stackOwner": "Fuzor LLC"
"policyTemplateInstances": [
{
"templateId": "dynamichosturl",
"title": "baseUrl",
"parameters": {
"x-ms-apimTemplateParameter.urlTemplate": "https://@connectionParameters('region', 'helpdesk-services.plumsail.com')"
}
}
],
"publisher": "Plumsail Inc.",
"stackOwner": "Plumsail Inc."
}
}