orchestrator
2021.10
false
Orchestrator API ガイド
- 基本情報
- 認証
- Swagger の定義
- Orchestrator API
- プラットフォーム管理 API
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
名前に基づいてプロセスを取得する
GET
{OrchestratorURL}/odata/Releases?$filter=%20Name%20eq%20'all_activities_DocEnv'
要求ヘッダー
| キー | 値 (Value) |
|---|---|
| 認可 | Bearer |
応答コード
200 OK
応答本文
{
"@odata.context": "{OrchestratorURL}/odata/$metadata#Releases",
"@odata.count": 1,
"value": [
{
"Key": "01b7cf62-98e0-4a69-9a65-be7514643229",
"ProcessKey": "all_activities",
"ProcessVersion": "1.0.6666.26728",
"IsLatestVersion": false,
"IsProcessDeleted": false,
"Description": null,
"Name": "all_activities_DocEnv",
"EnvironmentId": 7,
"EnvironmentName": "DocEnv",
"InputArguments": null,
"Id": 6,
"Arguments": null
}
]
}
{
"@odata.context": "{OrchestratorURL}/odata/$metadata#Releases",
"@odata.count": 1,
"value": [
{
"Key": "01b7cf62-98e0-4a69-9a65-be7514643229",
"ProcessKey": "all_activities",
"ProcessVersion": "1.0.6666.26728",
"IsLatestVersion": false,
"IsProcessDeleted": false,
"Description": null,
"Name": "all_activities_DocEnv",
"EnvironmentId": 7,
"EnvironmentName": "DocEnv",
"InputArguments": null,
"Id": 6,
"Arguments": null
}
]
}
特定のプロセスの入力パラメーターの値を変更する
The following PATCH request to the /odata/Releases(Id) endpoint enables you to add or change the values of specific input parameters, at process level. If you want to add these values when starting a job, please see the Job Requests topic.
注:
Please note that a maximum of 10,000 characters is accepted for the entire length of the JSON representation of input parameters, including argument names, all the escaped characters, spaces, brackets, and arguments values.
PATCH
{OrchestratorURL}/odata/Releases(55)
要求ヘッダー
| キー | 値 (Value) |
|---|---|
| 認可 | Bearer |
要求本文
{
"Arguments": {
"Input": "{\"age\":27,\"trueOrFalse\":false,\"stringNew\":\"testing\"}"
}
}
{
"Arguments": {
"Input": "{\"age\":27,\"trueOrFalse\":false,\"stringNew\":\"testing\"}"
}
}
応答コード
200 OK