public void Undo()
        {
            ApplicationGatewayOperation op = new ApplicationGatewayOperation();

            op.OperationType = "stop";

            applicationGatewayClient.ExecuteOperation(gatewayName, op);
        }
        public void Invoke()
        {
            ApplicationGatewayOperation op = new ApplicationGatewayOperation();

            op.OperationType = "start";

            InvokeResponse = applicationGatewayClient.ExecuteOperation(gatewayName, op);
        }
        public ApplicationGatewayOperationResponse ExecuteApplicationGatewayOperation(string gatewayName, string opName)
        {
            ApplicationGatewayOperation op = new ApplicationGatewayOperation();

            op.OperationType = opName;

            return(client.ApplicationGateways.ExecuteOperation(gatewayName, op));
        }
Exemple #4
0
 /// <summary>
 /// The Execute Application Gateway Operation executes specofoed
 /// operation in the Application Gateway.  (see
 /// http://msdn.microsoft.com/en-us/library/windowsazure/jj154114.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.ApplicationGateway.IL7GatewayOperations.
 /// </param>
 /// <param name='gatewayName'>
 /// Required. Name of the gateway
 /// </param>
 /// <param name='parameters'>
 /// Required. Parameters supplied to Execute Operation request.
 /// </param>
 /// <returns>
 /// The response body contains the status of the specified asynchronous
 /// operation, indicating whether it has succeeded, is inprogress, or
 /// has failed. Note that this status is distinct from the HTTP status
 /// code returned for the Get Operation Status operation itself.  If
 /// the asynchronous operation succeeded, the response body includes
 /// the HTTP status code for the successful request.  If the
 /// asynchronous operation failed, the response body includes the HTTP
 /// status code for the failed request, and also includes error
 /// information regarding the failure.
 /// </returns>
 public static Task <ApplicationGatewayOperationResponse> ExecuteOperationAsync(this IL7GatewayOperations operations, string gatewayName, ApplicationGatewayOperation parameters)
 {
     return(operations.ExecuteOperationAsync(gatewayName, parameters, CancellationToken.None));
 }
Exemple #5
0
 /// <summary>
 /// The Execute Application Gateway Operation executes specofoed
 /// operation in the Application Gateway.  (see
 /// http://msdn.microsoft.com/en-us/library/windowsazure/jj154114.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.ApplicationGateway.IL7GatewayOperations.
 /// </param>
 /// <param name='gatewayName'>
 /// Required. Name of the gateway
 /// </param>
 /// <param name='parameters'>
 /// Required. Parameters supplied to Execute Operation request.
 /// </param>
 /// <returns>
 /// The response body contains the status of the specified asynchronous
 /// operation, indicating whether it has succeeded, is inprogress, or
 /// has failed. Note that this status is distinct from the HTTP status
 /// code returned for the Get Operation Status operation itself.  If
 /// the asynchronous operation succeeded, the response body includes
 /// the HTTP status code for the successful request.  If the
 /// asynchronous operation failed, the response body includes the HTTP
 /// status code for the failed request, and also includes error
 /// information regarding the failure.
 /// </returns>
 public static ApplicationGatewayOperationResponse ExecuteOperation(this IL7GatewayOperations operations, string gatewayName, ApplicationGatewayOperation parameters)
 {
     return(Task.Factory.StartNew((object s) =>
     {
         return ((IL7GatewayOperations)s).ExecuteOperationAsync(gatewayName, parameters);
     }
                                  , operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult());
 }
 public StopApplicationGateway(IApplicationGatewayOperations applicationGatewayClient, string gatewayName, ApplicationGatewayOperation op)
 {
     this.applicationGatewayClient = applicationGatewayClient;
     this.gatewayName = gatewayName;
     this.op          = op;
 }