ScheduleOperationsExtensions.GetAsync Method (IScheduleOperations, String, String)
Retrieve the schedule identified by schedule name. (see https://aka.ms/azureautomationsdk/scheduleoperations for more information)
Namespace: Microsoft.WindowsAzure.Management.Automation
Assembly: Microsoft.WindowsAzure.Management.Automation (in Microsoft.WindowsAzure.Management.Automation.dll)
Syntax
public static Task<ScheduleGetResponse> GetAsync(
this IScheduleOperations operations,
string automationAccount,
string scheduleName
)
public:
[ExtensionAttribute]
static Task<ScheduleGetResponse^>^ GetAsync(
IScheduleOperations^ operations,
String^ automationAccount,
String^ scheduleName
)
static member GetAsync :
operations:IScheduleOperations *
automationAccount:string *
scheduleName:string -> Task<ScheduleGetResponse>
<ExtensionAttribute>
Public Shared Function GetAsync (
operations As IScheduleOperations,
automationAccount As String,
scheduleName As String
) As Task(Of ScheduleGetResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Automation.IScheduleOperationsReference to the Microsoft.WindowsAzure.Management.Automation.IScheduleOperations.
automationAccount
Type: System.StringRequired. The automation account name.
scheduleName
Type: System.StringRequired. The schedule name.
Return Value
Type: System.Threading.Tasks.Task<ScheduleGetResponse>
The response model for the get schedule operation.
See Also
ScheduleOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace
Return to top