TestJobOperationsExtensions.StopAsync Method (ITestJobOperations, String, String)
Stop the test job. (see https://aka.ms/azureautomationsdk/testjoboperations for more information)
Namespace: Microsoft.WindowsAzure.Management.Automation
Assembly: Microsoft.WindowsAzure.Management.Automation (in Microsoft.WindowsAzure.Management.Automation.dll)
Syntax
public static Task<AzureOperationResponse> StopAsync(
this ITestJobOperations operations,
string automationAccount,
string runbookName
)
public:
[ExtensionAttribute]
static Task<AzureOperationResponse^>^ StopAsync(
ITestJobOperations^ operations,
String^ automationAccount,
String^ runbookName
)
static member StopAsync :
operations:ITestJobOperations *
automationAccount:string *
runbookName:string -> Task<AzureOperationResponse>
<ExtensionAttribute>
Public Shared Function StopAsync (
operations As ITestJobOperations,
automationAccount As String,
runbookName As String
) As Task(Of AzureOperationResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Automation.ITestJobOperationsReference to the Microsoft.WindowsAzure.Management.Automation.ITestJobOperations.
automationAccount
Type: System.StringRequired. The automation account name.
runbookName
Type: System.StringRequired. The runbook name.
Return Value
Type: System.Threading.Tasks.Task<AzureOperationResponse>
A standard service response including an HTTP status code and request ID.
See Also
TestJobOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace
Return to top