IVariableOperations Interface

 

Service operation for automation 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 interface IVariableOperations
public interface class IVariableOperations
type IVariableOperations = interface end
Public Interface IVariableOperations

Methods

Name Description
CreateAsync(String, VariableCreateParameters, CancellationToken)

Create a variable. (see https://aka.ms/azureautomationsdk/variableoperations for more information)

DeleteAsync(String, String, CancellationToken)

Delete the variable. (see https://aka.ms/azureautomationsdk/variableoperations for more information)

GetAsync(String, String, CancellationToken)

Retrieve the variable identified by variable name. (see https://aka.ms/azureautomationsdk/variableoperations for more information)

ListAsync(String, CancellationToken)

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

ListNextAsync(String, CancellationToken)

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

UpdateAsync(String, VariableUpdateParameters, CancellationToken)

Update a variable. (see https://aka.ms/azureautomationsdk/variableoperations for more information)

Extension Methods

Name Description
Create(String, VariableCreateParameters)

Create a variable. (see https://aka.ms/azureautomationsdk/variableoperations for more information)(Defined by VariableOperationsExtensions.)

CreateAsync(String, VariableCreateParameters)

Create a variable. (see https://aka.ms/azureautomationsdk/variableoperations for more information)(Defined by VariableOperationsExtensions.)

Delete(String, String)

Delete the variable. (see https://aka.ms/azureautomationsdk/variableoperations for more information)(Defined by VariableOperationsExtensions.)

DeleteAsync(String, String)

Delete the variable. (see https://aka.ms/azureautomationsdk/variableoperations for more information)(Defined by VariableOperationsExtensions.)

Get(String, String)

Retrieve the variable identified by variable name. (see https://aka.ms/azureautomationsdk/variableoperations for more information)(Defined by VariableOperationsExtensions.)

GetAsync(String, String)

Retrieve the variable identified by variable name. (see https://aka.ms/azureautomationsdk/variableoperations for more information)(Defined by VariableOperationsExtensions.)

List(String)

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

ListAsync(String)

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

ListNext(String)

Retrieve next list of variables. (see https://aka.ms/azureautomationsdk/variableoperations for more information)(Defined by VariableOperationsExtensions.)

ListNextAsync(String)

Retrieve next list of variables. (see https://aka.ms/azureautomationsdk/variableoperations for more information)(Defined by VariableOperationsExtensions.)

Update(String, VariableUpdateParameters)

Update a variable. (see https://aka.ms/azureautomationsdk/variableoperations for more information)(Defined by VariableOperationsExtensions.)

UpdateAsync(String, VariableUpdateParameters)

Update a variable. (see https://aka.ms/azureautomationsdk/variableoperations for more information)(Defined by VariableOperationsExtensions.)

See Also

Microsoft.WindowsAzure.Management.Automation Namespace

Return to top