Skip to main content
Feedback

Runtime category

You can use the Runtime category of operations to return the runtime information for a specific environment during the environment migration.

Supported operations

The Runtime category is supported in the following operations:

OperationQUERYMUTATION
Runtime✅ SupportedX Not supported

Query syntax

{environmentMigrationContainers {environmentMigrationContainers}}

Return fields syntax

{
environmentMigrationContainers {
containerId: String!
containerName: String!
authType: String
webserviceType: String
}
}
FieldTypeDescription
containerIdstringThe ID of the runtime.
containerNamestringThe name of the runtime.
authTypestringThe Authentication Type specified on the Shared Web Server panel for the runtime in Runtime Management.
webserviceTypestringThe API Type specified on the Shared Web Server panel for the runtime in Runtime Management.

GraphQL implementation

The following example queries the runtime.

For a GraphQL request, send a request to https://platform.boomi.com/graphql with the following X-Account header: accountId

Request:

query{
environmentMigrationContainers(environmentId: "<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx>") {
containerId
containerName
authType
webserviceType
}
}

For a JSON response, send the request with the following HTTP header:

Accept: application/json

JSON response:

{
"data": {
"environmentMigrationContainers": [
{
"containerId": "<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx>",
"containerName": "Test1",
"authType": "CLIENT_CERT",
"webserviceType": "ADVANCED"
},
{
"containerId": "<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx>",
"containerName": "Test2",
"authType": "GATEWAY",
"webserviceType": "ADVANCED"
}
]
}
}
On this Page