IRunbookOperations.DeleteAsync Method (String, String, CancellationToken)
Delete the runbook by name. (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
Task<AzureOperationResponse> DeleteAsync(
string automationAccount,
string runbookName,
CancellationToken cancellationToken
)
Task<AzureOperationResponse^>^ DeleteAsync(
String^ automationAccount,
String^ runbookName,
CancellationToken cancellationToken
)
abstract DeleteAsync :
automationAccount:string *
runbookName:string *
cancellationToken:CancellationToken -> Task<AzureOperationResponse>
Function DeleteAsync (
automationAccount As String,
runbookName As String,
cancellationToken As CancellationToken
) As Task(Of AzureOperationResponse)
Parameters
automationAccount
Type: System.StringThe automation account name.
runbookName
Type: System.StringThe runbook name.
cancellationToken
Type: System.Threading.CancellationTokenCancellation token.
Return Value
Type: System.Threading.Tasks.Task<AzureOperationResponse>
A standard service response including an HTTP status code and request ID.
See Also
IRunbookOperations Interface
Microsoft.WindowsAzure.Management.Automation Namespace
Return to top