VariableOperationsExtensions.Get Method (IVariableOperations, String, String)
Retrieve the variable identified by variable name. (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 VariableGetResponse Get(
this IVariableOperations operations,
string automationAccount,
string variableName
)
public:
[ExtensionAttribute]
static VariableGetResponse^ Get(
IVariableOperations^ operations,
String^ automationAccount,
String^ variableName
)
static member Get :
operations:IVariableOperations *
automationAccount:string *
variableName:string -> VariableGetResponse
<ExtensionAttribute>
Public Shared Function Get (
operations As IVariableOperations,
automationAccount As String,
variableName As String
) As VariableGetResponse
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Automation.IVariableOperationsReference to the Microsoft.WindowsAzure.Management.Automation.IVariableOperations.
automationAccount
Type: System.StringRequired. The automation account name.
variableName
Type: System.StringRequired. The name of variable.
Return Value
Type: Microsoft.WindowsAzure.Management.Automation.Models.VariableGetResponse
The response model for the get variable operation.
See Also
VariableOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace
Return to top