Exemplo n.º 1
0
 /// <summary>
 /// Updates the specified private endpoint connection on application gateway.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='applicationGatewayName'>
 /// The name of the application gateway.
 /// </param>
 /// <param name='connectionName'>
 /// The name of the application gateway private endpoint connection.
 /// </param>
 /// <param name='parameters'>
 /// Parameters supplied to update application gateway private endpoint
 /// connection operation.
 /// </param>
 public static ApplicationGatewayPrivateEndpointConnection Update(this IApplicationGatewayPrivateEndpointConnectionsOperations operations, string resourceGroupName, string applicationGatewayName, string connectionName, ApplicationGatewayPrivateEndpointConnection parameters)
 {
     return(operations.UpdateAsync(resourceGroupName, applicationGatewayName, connectionName, parameters).GetAwaiter().GetResult());
 }
Exemplo n.º 2
0
 /// <summary>
 /// Updates the specified private endpoint connection on application gateway.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='applicationGatewayName'>
 /// The name of the application gateway.
 /// </param>
 /// <param name='connectionName'>
 /// The name of the application gateway private endpoint connection.
 /// </param>
 /// <param name='parameters'>
 /// Parameters supplied to update application gateway private endpoint
 /// connection operation.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ApplicationGatewayPrivateEndpointConnection> BeginUpdateAsync(this IApplicationGatewayPrivateEndpointConnectionsOperations operations, string resourceGroupName, string applicationGatewayName, string connectionName, ApplicationGatewayPrivateEndpointConnection parameters, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, applicationGatewayName, connectionName, parameters, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }