Manage IICS runtime environments. Alias: rt.
Runtime environments are groups of one or more Secure Agents that execute data integration tasks.
iics runtime <subcommand> [flags]
iics rt <subcommand> [flags]| Subcommand | Description |
|---|---|
list |
List runtime environments |
get |
Get a single runtime environment |
create |
Create a runtime environment |
update |
Update a runtime environment |
| Flag | Type | Default | Description |
|---|---|---|---|
--limit |
int | 200 | Max results |
--skip |
int | 0 | Results to skip |
All global flags apply.
| Column | Description |
|---|---|
id |
Runtime environment ID |
name |
Runtime environment name |
type |
Type (CLOUD, HYBRID, LOCAL) |
status |
Current status |
iics runtime list
iics rt list --output json
# List only HYBRID environments
iics runtime list --output json | jq '.[] | select(.type == "HYBRID")'iics runtime list
iics rt list --output json
# List only HYBRID environments
$runtimes = iics runtime list --output json | ConvertFrom-Json
$runtimes | Where-Object { $_.type -eq "HYBRID" }| Flag | Type | Required | Description |
|---|---|---|---|
--id |
string | yes | Runtime environment ID |
All global flags apply.
| Column | Description |
|---|---|
id |
Runtime environment ID |
name |
Name |
type |
Type |
status |
Current status |
description |
Description |
iics runtime get --id <runtime-id>
iics rt get --id <runtime-id> --output jsoniics runtime get --id <runtime-id>
iics rt get --id <runtime-id> --output jsonCreate a runtime environment from a JSON definition file.
| Flag | Type | Required | Description |
|---|---|---|---|
--from-file |
string | yes | JSON file with runtime environment definition |
All global flags apply.
iics runtime create --from-file my-runtime.json| Flag | Type | Required | Description |
|---|---|---|---|
--id |
string | yes | Runtime environment ID |
--from-file |
string | yes | JSON file with updated fields |
All global flags apply.
iics runtime update --id <runtime-id> --from-file updated-runtime.json- agent - manage Secure Agents within runtime environments