Summary
Service Instance Dry Run with flags
Description
This API call will Dry-Run a Service Instance with flags
Route
POST /service_management/service/instance/:host/dryrun
Roles
admin
engineering
support
apiread
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| service_data |
object |
yes |
- |
| host |
string |
yes |
- |
| flags |
object |
yes |
- |
Copied to Clipboard
{
"service_data": null,
"flags": null
}
Copied to Clipboard
{
"type": "object",
"properties": {
"service_data": {
"type": "object",
"properties": {},
"required": [
"service_data"
],
"additionalProperties": false
},
"flags": {
"type": "object",
"properties": {},
"required": [
"flags"
],
"additionalProperties": false
}
},
"required": [
"service_data",
"flags"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| dry_run_config |
object |
An object providing Dry-Run results on a Service Instance. |
Copied to Clipboard
{
"dry_run_config": true
}
Copied to Clipboard
{
"description": "An object providing Dry-Run results on a Service Instance.",
"type": "object",
"properties": {
"dry_run_config": true
},
"required": [
"dry_run_config"
],
"additionalProperties": false
}