Update OrchestratorModuleRuntime
curl --request PUT \
--url https://platform.kodexa.ai/api/module-runtimes/{id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"changeSequence": 123,
"configMapName": "<string>",
"configMapResourceVersion": "<string>",
"cpuMillicores": 123,
"deprecated": true,
"description": "<string>",
"dockerImageUri": "<string>",
"environmentVars": null,
"ephemeralStorageMb": 123,
"errorMessage": "<string>",
"executionType": "<string>",
"extensionPackRef": "<string>",
"lambdaArn": "<string>",
"lambdaFunctionName": "<string>",
"memoryMb": 123,
"metadata": {
"containerUrl": "<string>",
"deploymentDefaults": "<unknown>",
"deploymentType": "<string>",
"eventAction": "<string>",
"inferenceAction": "<string>",
"trainingAction": "<string>",
"type": "<string>"
},
"name": "<string>",
"orgSlug": "<string>",
"organization": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
},
"provisionedAt": "2023-11-07T05:31:56Z",
"publicAccess": true,
"ref": "<string>",
"resultQueueUrl": "<string>",
"slug": "<string>",
"status": "<string>",
"template": true,
"timeoutSeconds": 123,
"type": "<string>",
"uri": "<string>",
"yamlSource": "<string>"
}
'import requests
url = "https://platform.kodexa.ai/api/module-runtimes/{id}"
payload = {
"changeSequence": 123,
"configMapName": "<string>",
"configMapResourceVersion": "<string>",
"cpuMillicores": 123,
"deprecated": True,
"description": "<string>",
"dockerImageUri": "<string>",
"environmentVars": None,
"ephemeralStorageMb": 123,
"errorMessage": "<string>",
"executionType": "<string>",
"extensionPackRef": "<string>",
"lambdaArn": "<string>",
"lambdaFunctionName": "<string>",
"memoryMb": 123,
"metadata": {
"containerUrl": "<string>",
"deploymentDefaults": "<unknown>",
"deploymentType": "<string>",
"eventAction": "<string>",
"inferenceAction": "<string>",
"trainingAction": "<string>",
"type": "<string>"
},
"name": "<string>",
"orgSlug": "<string>",
"organization": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
},
"provisionedAt": "2023-11-07T05:31:56Z",
"publicAccess": True,
"ref": "<string>",
"resultQueueUrl": "<string>",
"slug": "<string>",
"status": "<string>",
"template": True,
"timeoutSeconds": 123,
"type": "<string>",
"uri": "<string>",
"yamlSource": "<string>"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
changeSequence: 123,
configMapName: '<string>',
configMapResourceVersion: '<string>',
cpuMillicores: 123,
deprecated: true,
description: '<string>',
dockerImageUri: '<string>',
environmentVars: null,
ephemeralStorageMb: 123,
errorMessage: '<string>',
executionType: '<string>',
extensionPackRef: '<string>',
lambdaArn: '<string>',
lambdaFunctionName: '<string>',
memoryMb: 123,
metadata: {
containerUrl: '<string>',
deploymentDefaults: '<unknown>',
deploymentType: '<string>',
eventAction: '<string>',
inferenceAction: '<string>',
trainingAction: '<string>',
type: '<string>'
},
name: '<string>',
orgSlug: '<string>',
organization: {id: '<string>', name: '<string>', slug: '<string>'},
provisionedAt: '2023-11-07T05:31:56Z',
publicAccess: true,
ref: '<string>',
resultQueueUrl: '<string>',
slug: '<string>',
status: '<string>',
template: true,
timeoutSeconds: 123,
type: '<string>',
uri: '<string>',
yamlSource: '<string>'
})
};
fetch('https://platform.kodexa.ai/api/module-runtimes/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://platform.kodexa.ai/api/module-runtimes/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'changeSequence' => 123,
'configMapName' => '<string>',
'configMapResourceVersion' => '<string>',
'cpuMillicores' => 123,
'deprecated' => true,
'description' => '<string>',
'dockerImageUri' => '<string>',
'environmentVars' => null,
'ephemeralStorageMb' => 123,
'errorMessage' => '<string>',
'executionType' => '<string>',
'extensionPackRef' => '<string>',
'lambdaArn' => '<string>',
'lambdaFunctionName' => '<string>',
'memoryMb' => 123,
'metadata' => [
'containerUrl' => '<string>',
'deploymentDefaults' => '<unknown>',
'deploymentType' => '<string>',
'eventAction' => '<string>',
'inferenceAction' => '<string>',
'trainingAction' => '<string>',
'type' => '<string>'
],
'name' => '<string>',
'orgSlug' => '<string>',
'organization' => [
'id' => '<string>',
'name' => '<string>',
'slug' => '<string>'
],
'provisionedAt' => '2023-11-07T05:31:56Z',
'publicAccess' => true,
'ref' => '<string>',
'resultQueueUrl' => '<string>',
'slug' => '<string>',
'status' => '<string>',
'template' => true,
'timeoutSeconds' => 123,
'type' => '<string>',
'uri' => '<string>',
'yamlSource' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://platform.kodexa.ai/api/module-runtimes/{id}"
payload := strings.NewReader("{\n \"changeSequence\": 123,\n \"configMapName\": \"<string>\",\n \"configMapResourceVersion\": \"<string>\",\n \"cpuMillicores\": 123,\n \"deprecated\": true,\n \"description\": \"<string>\",\n \"dockerImageUri\": \"<string>\",\n \"environmentVars\": null,\n \"ephemeralStorageMb\": 123,\n \"errorMessage\": \"<string>\",\n \"executionType\": \"<string>\",\n \"extensionPackRef\": \"<string>\",\n \"lambdaArn\": \"<string>\",\n \"lambdaFunctionName\": \"<string>\",\n \"memoryMb\": 123,\n \"metadata\": {\n \"containerUrl\": \"<string>\",\n \"deploymentDefaults\": \"<unknown>\",\n \"deploymentType\": \"<string>\",\n \"eventAction\": \"<string>\",\n \"inferenceAction\": \"<string>\",\n \"trainingAction\": \"<string>\",\n \"type\": \"<string>\"\n },\n \"name\": \"<string>\",\n \"orgSlug\": \"<string>\",\n \"organization\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"slug\": \"<string>\"\n },\n \"provisionedAt\": \"2023-11-07T05:31:56Z\",\n \"publicAccess\": true,\n \"ref\": \"<string>\",\n \"resultQueueUrl\": \"<string>\",\n \"slug\": \"<string>\",\n \"status\": \"<string>\",\n \"template\": true,\n \"timeoutSeconds\": 123,\n \"type\": \"<string>\",\n \"uri\": \"<string>\",\n \"yamlSource\": \"<string>\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://platform.kodexa.ai/api/module-runtimes/{id}")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"changeSequence\": 123,\n \"configMapName\": \"<string>\",\n \"configMapResourceVersion\": \"<string>\",\n \"cpuMillicores\": 123,\n \"deprecated\": true,\n \"description\": \"<string>\",\n \"dockerImageUri\": \"<string>\",\n \"environmentVars\": null,\n \"ephemeralStorageMb\": 123,\n \"errorMessage\": \"<string>\",\n \"executionType\": \"<string>\",\n \"extensionPackRef\": \"<string>\",\n \"lambdaArn\": \"<string>\",\n \"lambdaFunctionName\": \"<string>\",\n \"memoryMb\": 123,\n \"metadata\": {\n \"containerUrl\": \"<string>\",\n \"deploymentDefaults\": \"<unknown>\",\n \"deploymentType\": \"<string>\",\n \"eventAction\": \"<string>\",\n \"inferenceAction\": \"<string>\",\n \"trainingAction\": \"<string>\",\n \"type\": \"<string>\"\n },\n \"name\": \"<string>\",\n \"orgSlug\": \"<string>\",\n \"organization\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"slug\": \"<string>\"\n },\n \"provisionedAt\": \"2023-11-07T05:31:56Z\",\n \"publicAccess\": true,\n \"ref\": \"<string>\",\n \"resultQueueUrl\": \"<string>\",\n \"slug\": \"<string>\",\n \"status\": \"<string>\",\n \"template\": true,\n \"timeoutSeconds\": 123,\n \"type\": \"<string>\",\n \"uri\": \"<string>\",\n \"yamlSource\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform.kodexa.ai/api/module-runtimes/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"changeSequence\": 123,\n \"configMapName\": \"<string>\",\n \"configMapResourceVersion\": \"<string>\",\n \"cpuMillicores\": 123,\n \"deprecated\": true,\n \"description\": \"<string>\",\n \"dockerImageUri\": \"<string>\",\n \"environmentVars\": null,\n \"ephemeralStorageMb\": 123,\n \"errorMessage\": \"<string>\",\n \"executionType\": \"<string>\",\n \"extensionPackRef\": \"<string>\",\n \"lambdaArn\": \"<string>\",\n \"lambdaFunctionName\": \"<string>\",\n \"memoryMb\": 123,\n \"metadata\": {\n \"containerUrl\": \"<string>\",\n \"deploymentDefaults\": \"<unknown>\",\n \"deploymentType\": \"<string>\",\n \"eventAction\": \"<string>\",\n \"inferenceAction\": \"<string>\",\n \"trainingAction\": \"<string>\",\n \"type\": \"<string>\"\n },\n \"name\": \"<string>\",\n \"orgSlug\": \"<string>\",\n \"organization\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"slug\": \"<string>\"\n },\n \"provisionedAt\": \"2023-11-07T05:31:56Z\",\n \"publicAccess\": true,\n \"ref\": \"<string>\",\n \"resultQueueUrl\": \"<string>\",\n \"slug\": \"<string>\",\n \"status\": \"<string>\",\n \"template\": true,\n \"timeoutSeconds\": 123,\n \"type\": \"<string>\",\n \"uri\": \"<string>\",\n \"yamlSource\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"changeSequence": 123,
"createdOn": "2023-11-07T05:31:56Z",
"deleted": true,
"deprecated": true,
"id": "<string>",
"metadata": {
"containerUrl": "<string>",
"deploymentDefaults": "<unknown>",
"deploymentType": "<string>",
"eventAction": "<string>",
"inferenceAction": "<string>",
"trainingAction": "<string>",
"type": "<string>"
},
"name": "<string>",
"organizationId": "<string>",
"publicAccess": true,
"slug": "<string>",
"template": true,
"updatedOn": "2023-11-07T05:31:56Z",
"uuid": "<string>",
"configMapName": "<string>",
"configMapResourceVersion": "<string>",
"cpuMillicores": 123,
"deleteUserEmail": "<string>",
"deleteUserId": "<string>",
"deletedDate": "2023-11-07T05:31:56Z",
"description": "<string>",
"dockerImageUri": "<string>",
"environmentVars": null,
"ephemeralStorageMb": 123,
"errorMessage": "<string>",
"executionType": "<string>",
"extensionPackRef": "<string>",
"lambdaArn": "<string>",
"lambdaFunctionName": "<string>",
"memoryMb": 123,
"orgSlug": "<string>",
"organization": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
},
"provisionedAt": "2023-11-07T05:31:56Z",
"ref": "<string>",
"resultQueueUrl": "<string>",
"status": "<string>",
"timeoutSeconds": 123,
"type": "<string>",
"uri": "<string>",
"yamlSource": "<string>"
}Module Runtimes
Update OrchestratorModuleRuntime
Updates an existing OrchestratorModuleRuntime. Module runtimes define processing environments for modules.
PUT
/
api
/
module-runtimes
/
{id}
Update OrchestratorModuleRuntime
curl --request PUT \
--url https://platform.kodexa.ai/api/module-runtimes/{id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"changeSequence": 123,
"configMapName": "<string>",
"configMapResourceVersion": "<string>",
"cpuMillicores": 123,
"deprecated": true,
"description": "<string>",
"dockerImageUri": "<string>",
"environmentVars": null,
"ephemeralStorageMb": 123,
"errorMessage": "<string>",
"executionType": "<string>",
"extensionPackRef": "<string>",
"lambdaArn": "<string>",
"lambdaFunctionName": "<string>",
"memoryMb": 123,
"metadata": {
"containerUrl": "<string>",
"deploymentDefaults": "<unknown>",
"deploymentType": "<string>",
"eventAction": "<string>",
"inferenceAction": "<string>",
"trainingAction": "<string>",
"type": "<string>"
},
"name": "<string>",
"orgSlug": "<string>",
"organization": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
},
"provisionedAt": "2023-11-07T05:31:56Z",
"publicAccess": true,
"ref": "<string>",
"resultQueueUrl": "<string>",
"slug": "<string>",
"status": "<string>",
"template": true,
"timeoutSeconds": 123,
"type": "<string>",
"uri": "<string>",
"yamlSource": "<string>"
}
'import requests
url = "https://platform.kodexa.ai/api/module-runtimes/{id}"
payload = {
"changeSequence": 123,
"configMapName": "<string>",
"configMapResourceVersion": "<string>",
"cpuMillicores": 123,
"deprecated": True,
"description": "<string>",
"dockerImageUri": "<string>",
"environmentVars": None,
"ephemeralStorageMb": 123,
"errorMessage": "<string>",
"executionType": "<string>",
"extensionPackRef": "<string>",
"lambdaArn": "<string>",
"lambdaFunctionName": "<string>",
"memoryMb": 123,
"metadata": {
"containerUrl": "<string>",
"deploymentDefaults": "<unknown>",
"deploymentType": "<string>",
"eventAction": "<string>",
"inferenceAction": "<string>",
"trainingAction": "<string>",
"type": "<string>"
},
"name": "<string>",
"orgSlug": "<string>",
"organization": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
},
"provisionedAt": "2023-11-07T05:31:56Z",
"publicAccess": True,
"ref": "<string>",
"resultQueueUrl": "<string>",
"slug": "<string>",
"status": "<string>",
"template": True,
"timeoutSeconds": 123,
"type": "<string>",
"uri": "<string>",
"yamlSource": "<string>"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
changeSequence: 123,
configMapName: '<string>',
configMapResourceVersion: '<string>',
cpuMillicores: 123,
deprecated: true,
description: '<string>',
dockerImageUri: '<string>',
environmentVars: null,
ephemeralStorageMb: 123,
errorMessage: '<string>',
executionType: '<string>',
extensionPackRef: '<string>',
lambdaArn: '<string>',
lambdaFunctionName: '<string>',
memoryMb: 123,
metadata: {
containerUrl: '<string>',
deploymentDefaults: '<unknown>',
deploymentType: '<string>',
eventAction: '<string>',
inferenceAction: '<string>',
trainingAction: '<string>',
type: '<string>'
},
name: '<string>',
orgSlug: '<string>',
organization: {id: '<string>', name: '<string>', slug: '<string>'},
provisionedAt: '2023-11-07T05:31:56Z',
publicAccess: true,
ref: '<string>',
resultQueueUrl: '<string>',
slug: '<string>',
status: '<string>',
template: true,
timeoutSeconds: 123,
type: '<string>',
uri: '<string>',
yamlSource: '<string>'
})
};
fetch('https://platform.kodexa.ai/api/module-runtimes/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://platform.kodexa.ai/api/module-runtimes/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'changeSequence' => 123,
'configMapName' => '<string>',
'configMapResourceVersion' => '<string>',
'cpuMillicores' => 123,
'deprecated' => true,
'description' => '<string>',
'dockerImageUri' => '<string>',
'environmentVars' => null,
'ephemeralStorageMb' => 123,
'errorMessage' => '<string>',
'executionType' => '<string>',
'extensionPackRef' => '<string>',
'lambdaArn' => '<string>',
'lambdaFunctionName' => '<string>',
'memoryMb' => 123,
'metadata' => [
'containerUrl' => '<string>',
'deploymentDefaults' => '<unknown>',
'deploymentType' => '<string>',
'eventAction' => '<string>',
'inferenceAction' => '<string>',
'trainingAction' => '<string>',
'type' => '<string>'
],
'name' => '<string>',
'orgSlug' => '<string>',
'organization' => [
'id' => '<string>',
'name' => '<string>',
'slug' => '<string>'
],
'provisionedAt' => '2023-11-07T05:31:56Z',
'publicAccess' => true,
'ref' => '<string>',
'resultQueueUrl' => '<string>',
'slug' => '<string>',
'status' => '<string>',
'template' => true,
'timeoutSeconds' => 123,
'type' => '<string>',
'uri' => '<string>',
'yamlSource' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://platform.kodexa.ai/api/module-runtimes/{id}"
payload := strings.NewReader("{\n \"changeSequence\": 123,\n \"configMapName\": \"<string>\",\n \"configMapResourceVersion\": \"<string>\",\n \"cpuMillicores\": 123,\n \"deprecated\": true,\n \"description\": \"<string>\",\n \"dockerImageUri\": \"<string>\",\n \"environmentVars\": null,\n \"ephemeralStorageMb\": 123,\n \"errorMessage\": \"<string>\",\n \"executionType\": \"<string>\",\n \"extensionPackRef\": \"<string>\",\n \"lambdaArn\": \"<string>\",\n \"lambdaFunctionName\": \"<string>\",\n \"memoryMb\": 123,\n \"metadata\": {\n \"containerUrl\": \"<string>\",\n \"deploymentDefaults\": \"<unknown>\",\n \"deploymentType\": \"<string>\",\n \"eventAction\": \"<string>\",\n \"inferenceAction\": \"<string>\",\n \"trainingAction\": \"<string>\",\n \"type\": \"<string>\"\n },\n \"name\": \"<string>\",\n \"orgSlug\": \"<string>\",\n \"organization\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"slug\": \"<string>\"\n },\n \"provisionedAt\": \"2023-11-07T05:31:56Z\",\n \"publicAccess\": true,\n \"ref\": \"<string>\",\n \"resultQueueUrl\": \"<string>\",\n \"slug\": \"<string>\",\n \"status\": \"<string>\",\n \"template\": true,\n \"timeoutSeconds\": 123,\n \"type\": \"<string>\",\n \"uri\": \"<string>\",\n \"yamlSource\": \"<string>\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://platform.kodexa.ai/api/module-runtimes/{id}")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"changeSequence\": 123,\n \"configMapName\": \"<string>\",\n \"configMapResourceVersion\": \"<string>\",\n \"cpuMillicores\": 123,\n \"deprecated\": true,\n \"description\": \"<string>\",\n \"dockerImageUri\": \"<string>\",\n \"environmentVars\": null,\n \"ephemeralStorageMb\": 123,\n \"errorMessage\": \"<string>\",\n \"executionType\": \"<string>\",\n \"extensionPackRef\": \"<string>\",\n \"lambdaArn\": \"<string>\",\n \"lambdaFunctionName\": \"<string>\",\n \"memoryMb\": 123,\n \"metadata\": {\n \"containerUrl\": \"<string>\",\n \"deploymentDefaults\": \"<unknown>\",\n \"deploymentType\": \"<string>\",\n \"eventAction\": \"<string>\",\n \"inferenceAction\": \"<string>\",\n \"trainingAction\": \"<string>\",\n \"type\": \"<string>\"\n },\n \"name\": \"<string>\",\n \"orgSlug\": \"<string>\",\n \"organization\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"slug\": \"<string>\"\n },\n \"provisionedAt\": \"2023-11-07T05:31:56Z\",\n \"publicAccess\": true,\n \"ref\": \"<string>\",\n \"resultQueueUrl\": \"<string>\",\n \"slug\": \"<string>\",\n \"status\": \"<string>\",\n \"template\": true,\n \"timeoutSeconds\": 123,\n \"type\": \"<string>\",\n \"uri\": \"<string>\",\n \"yamlSource\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform.kodexa.ai/api/module-runtimes/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"changeSequence\": 123,\n \"configMapName\": \"<string>\",\n \"configMapResourceVersion\": \"<string>\",\n \"cpuMillicores\": 123,\n \"deprecated\": true,\n \"description\": \"<string>\",\n \"dockerImageUri\": \"<string>\",\n \"environmentVars\": null,\n \"ephemeralStorageMb\": 123,\n \"errorMessage\": \"<string>\",\n \"executionType\": \"<string>\",\n \"extensionPackRef\": \"<string>\",\n \"lambdaArn\": \"<string>\",\n \"lambdaFunctionName\": \"<string>\",\n \"memoryMb\": 123,\n \"metadata\": {\n \"containerUrl\": \"<string>\",\n \"deploymentDefaults\": \"<unknown>\",\n \"deploymentType\": \"<string>\",\n \"eventAction\": \"<string>\",\n \"inferenceAction\": \"<string>\",\n \"trainingAction\": \"<string>\",\n \"type\": \"<string>\"\n },\n \"name\": \"<string>\",\n \"orgSlug\": \"<string>\",\n \"organization\": {\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"slug\": \"<string>\"\n },\n \"provisionedAt\": \"2023-11-07T05:31:56Z\",\n \"publicAccess\": true,\n \"ref\": \"<string>\",\n \"resultQueueUrl\": \"<string>\",\n \"slug\": \"<string>\",\n \"status\": \"<string>\",\n \"template\": true,\n \"timeoutSeconds\": 123,\n \"type\": \"<string>\",\n \"uri\": \"<string>\",\n \"yamlSource\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"changeSequence": 123,
"createdOn": "2023-11-07T05:31:56Z",
"deleted": true,
"deprecated": true,
"id": "<string>",
"metadata": {
"containerUrl": "<string>",
"deploymentDefaults": "<unknown>",
"deploymentType": "<string>",
"eventAction": "<string>",
"inferenceAction": "<string>",
"trainingAction": "<string>",
"type": "<string>"
},
"name": "<string>",
"organizationId": "<string>",
"publicAccess": true,
"slug": "<string>",
"template": true,
"updatedOn": "2023-11-07T05:31:56Z",
"uuid": "<string>",
"configMapName": "<string>",
"configMapResourceVersion": "<string>",
"cpuMillicores": 123,
"deleteUserEmail": "<string>",
"deleteUserId": "<string>",
"deletedDate": "2023-11-07T05:31:56Z",
"description": "<string>",
"dockerImageUri": "<string>",
"environmentVars": null,
"ephemeralStorageMb": 123,
"errorMessage": "<string>",
"executionType": "<string>",
"extensionPackRef": "<string>",
"lambdaArn": "<string>",
"lambdaFunctionName": "<string>",
"memoryMb": 123,
"orgSlug": "<string>",
"organization": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
},
"provisionedAt": "2023-11-07T05:31:56Z",
"ref": "<string>",
"resultQueueUrl": "<string>",
"status": "<string>",
"timeoutSeconds": 123,
"type": "<string>",
"uri": "<string>",
"yamlSource": "<string>"
}Authorizations
x-api-keybearerAuth
API key for authentication. Create one from the Kodexa platform UI under Settings > Access Tokens.
Path Parameters
Unique identifier (UUID) of the resource.
Body
application/json
An orchestrator module runtime defines a processing environment for orchestrator modules.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Computed resource URI (scheme://orgSlug/slug), present on serialized responses.
Response
Updated OrchestratorModuleRuntime
An orchestrator module runtime defines a processing environment for orchestrator modules.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Computed resource URI (scheme://orgSlug/slug), present on serialized responses.
