* Added UiPath Orchestrator Connector

* Corrections to be inline with coding standards.

* Made strategy a hidden but required field.
This commit is contained in:
TuckermanRav 2022-09-15 13:25:17 -04:00 коммит произвёл GitHub
Родитель cd0fb0ff7e
Коммит b9271eab6d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3506 добавлений и 0 удалений

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

@ -0,0 +1,32 @@
## Author:
UiPath - [UiPath Website](https://uipath.com)
## Contact:
UiPath Support Team - [UiPath Support Website](https://www.uipath.com/support)
## Version:
1.0 - Initial Release
## Description
This is a Power Automate Connector for UiPath Orchestrator.
With this version only UiPath Automation Cloud is supported.
## Supported Operations
The connector supports the following operations:
- [Run Job](https://docs.uipath.com/orchestrator/docs/about-jobs)
Run a job in UiPath Orchestrator
- [Add Queue Items](https://docs.uipath.com/orchestrator/docs/about-queues-and-transactions)
Add a queue item to a specific queue
## Getting Help or Providing Feedback
If you have any issues, requests for functionality, or have general feedback, please <integrations-apps@uipath.com>.
## Pre-requisites
Please make sure you have an automation cloud account. [Sign up (https://www.uipath.com/developers/studio-download) for a trial.
## Using the Connector
1. Select UiPath Connector as a step in your Power Automate Flow
2. Enter your UiPath Cloud Organization ID and Tenant ID in the text fields
3. Sign into UiPath platform with your credentials
4. Once successfully authenticated you can select folders, processes and queues in the form
5. Begin using the connector in your environment to build apps and flows!

Разница между файлами не показана из-за своего большого размера Загрузить разницу

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

@ -0,0 +1,92 @@
{
"properties":
{
"connectionParameters":
{
"token":
{
"type": "oauthSetting",
"oAuthSettings":
{
"identityProvider": "oauth2",
"clientId": "[enter client id]",
"scopes":
[
"OR.Execution.Read",
"OR.Folders.Read",
"OR.Jobs.Write",
"OR.Queues",
"offline_access"
],
"redirectMode": "Global",
"redirectUrl": "https://global.consent.azure-apim.net/redirect",
"properties":
{
"IsFirstParty": "False",
"IsOnbehalfofLoginSupported": false
},
"customParameters":
{
"authorizationUrl":
{
"value": "https://cloud.uipath.com/identity_/connect/authorize"
},
"tokenUrl":
{
"value": "https://cloud.uipath.com/identity_/connect/token"
},
"refreshUrl":
{
"value": "https://cloud.uipath.com/identity_/connect/token"
}
}
}
},
"organizationName":
{
"type": "string",
"uiDefinition":
{
"constraints":
{
"required": "true"
},
"description": "Specify your organization name.",
"displayName": "Organization Name",
"tooltip": "Specify your organization name."
}
},
"tenantName":
{
"type": "string",
"uiDefinition":
{
"constraints":
{
"required": "true"
},
"description": "Specify your tenant name.",
"displayName": "Tenant Name",
"tooltip": "Specify your tenant name."
}
}
},
"iconBrandColor": "#D1232B",
"capabilities":
[
],
"policyTemplateInstances":
[
{
"templateId": "dynamichosturl",
"title": "Route to Tenant Address",
"parameters":
{
"x-ms-apimTemplateParameter.urlTemplate": "https://cloud.uipath.com/@connectionParameters('organizationName')/@connectionParameters('tenantName')"
}
}
],
"publisher": "UiPath",
"stackOwner": "UiPath"
}
}