/// <summary> /// Update a variable. (see /// http://aka.ms/azureautomationsdk/variableoperations for more /// information) /// </summary> /// <param name='operations'> /// Reference to the /// Microsoft.Azure.Management.Automation.IVariableOperations. /// </param> /// <param name='resourceGroupName'> /// Required. The name of the resource group /// </param> /// <param name='automationAccount'> /// Required. The automation account name. /// </param> /// <param name='parameters'> /// Required. The parameters supplied to the patch variable operation. /// </param> /// <returns> /// A standard service response including an HTTP status code and /// request ID. /// </returns> public static Task <AzureOperationResponse> PatchAsync(this IVariableOperations operations, string resourceGroupName, string automationAccount, VariablePatchParameters parameters) { return(operations.PatchAsync(resourceGroupName, automationAccount, parameters, CancellationToken.None)); }
/// <summary> /// Update a variable. (see /// http://aka.ms/azureautomationsdk/variableoperations for more /// information) /// </summary> /// <param name='operations'> /// Reference to the /// Microsoft.Azure.Management.Automation.IVariableOperations. /// </param> /// <param name='resourceGroupName'> /// Required. The name of the resource group /// </param> /// <param name='automationAccount'> /// Required. The automation account name. /// </param> /// <param name='parameters'> /// Required. The parameters supplied to the patch variable operation. /// </param> /// <returns> /// A standard service response including an HTTP status code and /// request ID. /// </returns> public static AzureOperationResponse Patch(this IVariableOperations operations, string resourceGroupName, string automationAccount, VariablePatchParameters parameters) { return(Task.Factory.StartNew((object s) => { return ((IVariableOperations)s).PatchAsync(resourceGroupName, automationAccount, parameters); } , operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult()); }