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