IRunbookOperations Interface

Definition

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

public interface IRunbookOperations
type IRunbookOperations = interface
Public Interface IRunbookOperations

Methods

ContentAsync(String, String, CancellationToken)

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

CreateAsync(String, RunbookCreateParameters, CancellationToken)

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

CreateWithDraftAsync(String, RunbookCreateDraftParameters, CancellationToken)

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

DeleteAsync(String, String, CancellationToken)

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

GetAsync(String, String, CancellationToken)

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

ListAsync(String, CancellationToken)

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

ListNextAsync(String, CancellationToken)

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

UpdateAsync(String, RunbookUpdateParameters, CancellationToken)

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

Extension Methods

Content(IRunbookOperations, String, String)

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

ContentAsync(IRunbookOperations, String, String)

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

Create(IRunbookOperations, String, RunbookCreateParameters)

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

CreateAsync(IRunbookOperations, String, RunbookCreateParameters)

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

CreateWithDraft(IRunbookOperations, String, RunbookCreateDraftParameters)

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

CreateWithDraftAsync(IRunbookOperations, String, RunbookCreateDraftParameters)

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

Delete(IRunbookOperations, String, String)

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

DeleteAsync(IRunbookOperations, String, String)

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

Get(IRunbookOperations, String, String)

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

GetAsync(IRunbookOperations, String, String)

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

List(IRunbookOperations, String)

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

ListAsync(IRunbookOperations, String)

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

ListNext(IRunbookOperations, String)

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

ListNextAsync(IRunbookOperations, String)

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

Update(IRunbookOperations, String, RunbookUpdateParameters)

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

UpdateAsync(IRunbookOperations, String, RunbookUpdateParameters)

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

Applies to