IRunbookOperations Interface

 

Service operation for automation runbooks. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)

Namespace:   Microsoft.WindowsAzure.Management.Automation
Assembly:  Microsoft.WindowsAzure.Management.Automation (in Microsoft.WindowsAzure.Management.Automation.dll)

Syntax

public interface IRunbookOperations
public interface class IRunbookOperations
type IRunbookOperations = interface end
Public Interface IRunbookOperations

Methods

Name Description
ContentAsync(String, String, CancellationToken)

Retrieve the content of runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)

CreateAsync(String, RunbookCreateParameters, CancellationToken)

Create the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)

CreateWithDraftAsync(String, RunbookCreateDraftParameters, CancellationToken)

Create the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)

DeleteAsync(String, String, CancellationToken)

Delete the runbook by name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)

GetAsync(String, String, CancellationToken)

Retrieve the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)

ListAsync(String, CancellationToken)

Retrieve a list of runbooks. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)

ListNextAsync(String, CancellationToken)

Retrieve next list of runbooks. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)

UpdateAsync(String, RunbookUpdateParameters, CancellationToken)

Update the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)

Extension Methods

Name Description
Content(String, String)

Retrieve the content of runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

ContentAsync(String, String)

Retrieve the content of runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

Create(String, RunbookCreateParameters)

Create the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

CreateAsync(String, RunbookCreateParameters)

Create the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

CreateWithDraft(String, RunbookCreateDraftParameters)

Create the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

CreateWithDraftAsync(String, RunbookCreateDraftParameters)

Create the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

Delete(String, String)

Delete the runbook by name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

DeleteAsync(String, String)

Delete the runbook by name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

Get(String, String)

Retrieve the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

GetAsync(String, String)

Retrieve the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

List(String)

Retrieve a list of runbooks. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

ListAsync(String)

Retrieve a list of runbooks. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

ListNext(String)

Retrieve next list of runbooks. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

ListNextAsync(String)

Retrieve next list of runbooks. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

Update(String, RunbookUpdateParameters)

Update the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

UpdateAsync(String, RunbookUpdateParameters)

Update the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)(Defined by RunbookOperationsExtensions.)

See Also

Microsoft.WindowsAzure.Management.Automation Namespace

Return to top