...
- Connect to Orchestrator
- Disconnect from Orchestrator
- Get Runbook
- Get Runbook Instance Parameters
- Get Runbook Instances
- Get Runbook Parameters
- List Events
- List Jobs
- List Runbook Servers
- List Runbooks
- Start Runbook
- Stop Job
Connect to Orchestrator
...
In order to extract the values from the output parameter, For Each and GetKeyValuePair activities are used to extract the value for the Name key:
List Runbooks
This activity lists all the runbooks.
Activity Parameters
The List Runbooks activity parameters can be provided by manual inserted values or via IN arguments or variables:
The Read Only Output variable are the possible output values that the activity will provide:
- Output (type: collection<dictionary<string,string>>): returns a collection of dictionaries containing the Id, Name, IsMonitor, CheckedOutBy, CheckedOutTime, CreatedBy and Description for each Runbook found. In order to use the output you can iterate through the elements and use the GetKeyValuePair activity with the keys: Id, Name, IsMonitor, CheckedOutBy, CheckedOutTime, CreatedBy and Description.
Execution: The example below is an execution where all the runbooks are listed:
In order to extract the values from the output parameter, For Each and GetKeyValuePair activities are used to extract the value for the Id key: