Execute Debugger Operation

Execute Debugger Operation

Execute a debugger operation in the current debug context

Request
URI
PUT
https://{api_host}/vco/api/actions/runs/{executionId}/debugger
COPY
Path Parameters
string
executionId
Required

executionId


Request Body
WsDebugOperation of type(s) application/json
Required
{
    "evaluate": [
        "string"
    ],
    "evaluationResult": [
        {
            "name": "string",
            "type": "Example types are: SecureString, MimeAttachment, Regexp, Array/VC:VirtualMachine, boolean, string and etc.",
            "description": "string",
            "scope": "string",
            "updated": false,
            "encrypt-value": false
        }
    ],
    "evaluations": [
        "string"
    ]
}
array of string
evaluate
Optional

evaluate

array of object
evaluationResult
Optional

evaluationResult

array of string
evaluations
Optional

evaluations

Authentication
This operation uses the following authentication methods.
Responses
200

The request is successful

Returns WsDebugOperation of type(s) application/json
"WsDebugOperation Object"
array of string
evaluate
Optional

evaluate

array of object
evaluationResult
Optional

evaluationResult

array of string
evaluations
Optional

evaluations


401

The user is not authorized

Returns WsDebugOperation of type(s) application/json
"WsDebugOperation Object"
array of string
evaluate
Optional

evaluate

array of object
evaluationResult
Optional

evaluationResult

array of string
evaluations
Optional

evaluations


404

The requested action execution was not found

Returns WsDebugOperation of type(s) application/json
"WsDebugOperation Object"
array of string
evaluate
Optional

evaluate

array of object
evaluationResult
Optional

evaluationResult

array of string
evaluations
Optional

evaluations


Code Samples
COPY
                    curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/vco/api/actions/runs/{executionId}/debugger