Share via


VariableOperationsExtensions.ListAsync Method (IVariableOperations, String)

 

Retrieve a list of variables. (see https://aka.ms/azureautomationsdk/variableoperations for more information)

Namespace:   Microsoft.WindowsAzure.Management.Automation
Assembly:  Microsoft.WindowsAzure.Management.Automation (in Microsoft.WindowsAzure.Management.Automation.dll)

Syntax

public static Task<VariableListResponse> ListAsync(
    this IVariableOperations operations,
    string automationAccount
)
public:
[ExtensionAttribute]
static Task<VariableListResponse^>^ ListAsync(
    IVariableOperations^ operations,
    String^ automationAccount
)
static member ListAsync : 
        operations:IVariableOperations *
        automationAccount:string -> Task<VariableListResponse>
<ExtensionAttribute>
Public Shared Function ListAsync (
    operations As IVariableOperations,
    automationAccount As String
) As Task(Of VariableListResponse)

Parameters

  • automationAccount
    Type: System.String

    Required. The automation account name.

Return Value

Type: System.Threading.Tasks.Task<VariableListResponse>

The response model for the list variables operation.

See Also

VariableOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top