public void CreateApplicationGateway()
        {
            using (NetworkTestClient networkTestClient = new NetworkTestClient())
            {
                ApplicationGatewayOperationResponse result = new ApplicationGatewayOperationResponse();

                //CREATE gateway
                var createParams = new CreateApplicationGatewayParameters
                {
                    Name = gatewayName,
                    Description = gatewayDescription,
                    VnetName = vnet,
                    Subnets = new List<string>() { subnet }
                };

                result = networkTestClient.ApplicationGateways.CreateApplicationGateway(createParams);
                Assert.Equal(result.StatusCode, HttpStatusCode.OK);

                //SET gateway config
                ApplicationGatewaySetConfiguration config = GenerateConfig();

                result = networkTestClient.ApplicationGateways.SetConfigApplicationGateway(gatewayName, config);
                Assert.Equal(result.StatusCode, HttpStatusCode.OK);

                //START gateway
                result = networkTestClient.ApplicationGateways.StartApplicationGateway(gatewayName);
                Assert.Equal(result.StatusCode, HttpStatusCode.OK);
            }
        }
        public ApplicationGatewayOperationResponse CreateApplicationGateway(CreateApplicationGatewayParameters parameters)
        {
            CreateApplicationGateway operation = new CreateApplicationGateway(applicationGatewayClient, parameters);

            testClient.InvokeTestOperation(operation);

            return operation.InvokeResponse;
        }
 /// <summary>
 /// The Create Application Gateway operation  creates Application
 /// Gateway with the specified parameters.  (see
 /// http://msdn.microsoft.com/en-us/library/windowsazure/jj154114.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Network.IApplicationGatewayOperations.
 /// </param>
 /// <param name='parameters'>
 /// Required. Parameters supplied to CreateApplication Gateway 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> CreateAsync(this IApplicationGatewayOperations operations, CreateApplicationGatewayParameters parameters)
 {
     return operations.CreateAsync(parameters, CancellationToken.None);
 }
 /// <summary>
 /// The Create Application Gateway operation  creates Application
 /// Gateway with the specified parameters.  (see
 /// http://msdn.microsoft.com/en-us/library/windowsazure/jj154114.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Network.IApplicationGatewayOperations.
 /// </param>
 /// <param name='parameters'>
 /// Required. Parameters supplied to CreateApplication Gateway 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 Create(this IApplicationGatewayOperations operations, CreateApplicationGatewayParameters parameters)
 {
     return Task.Factory.StartNew((object s) => 
     {
         return ((IApplicationGatewayOperations)s).CreateAsync(parameters);
     }
     , operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
 }
 public CreateApplicationGateway(IApplicationGatewayOperations applicationGatewayClient, CreateApplicationGatewayParameters parameters)
 {
     this.applicationGatewayClient = applicationGatewayClient;
     this.parameters = parameters;
 }