Package version:

This class represents the task details for an automation runbook.

interface AutomationRunbookTaskDetails {
    accountName?: string;
    cloudServiceName?: string;
    instanceType: "AutomationRunbookTaskDetails";
    isPrimarySideScript?: boolean;
    jobId?: string;
    jobOutput?: string;
    name?: string;
    runbookId?: string;
    runbookName?: string;
    subscriptionId?: string;
}

Hierarchy (view full)

Properties

accountName?: string

The automation account name of the runbook.

cloudServiceName?: string

The cloud service of the automation runbook account.

instanceType

Polymorphic discriminator, which specifies the different types this object can be

isPrimarySideScript?: boolean

A value indicating whether it is a primary side script or not.

jobId?: string

The job Id of the runbook execution.

jobOutput?: string

The execution output of the runbook.

name?: string

The recovery plan task name.

runbookId?: string

The runbook Id.

runbookName?: string

The runbook name.

subscriptionId?: string

The subscription Id of the automation runbook account.