TestJobOperationsExtensions.GetAsync Method (ITestJobOperations, String, String)
Retrieve the test job for the specified runbook. (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<TestJobGetResponse> GetAsync(
this ITestJobOperations operations,
string automationAccount,
string runbookName
)
public:
[ExtensionAttribute]
static Task<TestJobGetResponse^>^ GetAsync(
ITestJobOperations^ operations,
String^ automationAccount,
String^ runbookName
)
static member GetAsync :
operations:ITestJobOperations *
automationAccount:string *
runbookName:string -> Task<TestJobGetResponse>
<ExtensionAttribute>
Public Shared Function GetAsync (
operations As ITestJobOperations,
automationAccount As String,
runbookName As String
) As Task(Of TestJobGetResponse)
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<TestJobGetResponse>
The response model for the get test job operation.
See Also
TestJobOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace
Return to top