Which two playbook functionalities allow looping through a group of tasks during playbook execution? (Choose two.)
Which two playbook functionalities allow looping through a group of tasks during playbook execution? (Choose two.)
GenericPolling playbooks are designed to repeatedly execute a set of tasks until a specific condition is met, allowing continuous monitoring or periodic checks as needed. Playbook tasks can be configured with conditions to loop through a group of tasks based on previous task outcomes, facilitating repeated executions within the same playbook. Thus, both options fulfill the requirement of allowing looping through a group of tasks during playbook execution.
Answer C&D: GenericPolling playbooks: These playbooks are designed to execute a set of tasks repeatedly until a specific condition is met. This is particularly useful for scenarios where continuous monitoring or periodic checks are necessary until a certain outcome is achieved, such as verifying if an external process is complete or waiting for a response from an integrated system. Playbook tasks: Within playbooks, tasks can be configured to loop based on conditions. This includes conditional tasks that can re-execute a group of tasks depending on the results of previous tasks. Sub-playbooks can also be looped through, which involves configuring the sub-playbook to repeat until a condition is satisfied or a maximum number of iterations is reached.
answer is A & D