| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | | using System.Threading; |
| | 10 | | using System.Threading.Tasks; |
| | 11 | | using Azure; |
| | 12 | | using Azure.Core; |
| | 13 | | using Azure.Core.Pipeline; |
| | 14 | | using Azure.ResourceManager.Network.Models; |
| | 15 | |
|
| | 16 | | namespace Azure.ResourceManager.Network |
| | 17 | | { |
| | 18 | | /// <summary> The LoadBalancerLoadBalancingRules service client. </summary> |
| | 19 | | public partial class LoadBalancerLoadBalancingRulesOperations |
| | 20 | | { |
| | 21 | | private readonly ClientDiagnostics _clientDiagnostics; |
| | 22 | | private readonly HttpPipeline _pipeline; |
| 8 | 23 | | internal LoadBalancerLoadBalancingRulesRestOperations RestClient { get; } |
| | 24 | | /// <summary> Initializes a new instance of LoadBalancerLoadBalancingRulesOperations for mocking. </summary> |
| 8 | 25 | | protected LoadBalancerLoadBalancingRulesOperations() |
| | 26 | | { |
| 8 | 27 | | } |
| | 28 | | /// <summary> Initializes a new instance of LoadBalancerLoadBalancingRulesOperations. </summary> |
| | 29 | | /// <param name="clientDiagnostics"> The handler for diagnostic messaging in the client. </param> |
| | 30 | | /// <param name="pipeline"> The HTTP pipeline for sending and receiving REST requests and responses. </param> |
| | 31 | | /// <param name="subscriptionId"> The subscription credentials which uniquely identify the Microsoft Azure subsc |
| | 32 | | /// <param name="endpoint"> server parameter. </param> |
| 8 | 33 | | internal LoadBalancerLoadBalancingRulesOperations(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, st |
| | 34 | | { |
| 8 | 35 | | RestClient = new LoadBalancerLoadBalancingRulesRestOperations(clientDiagnostics, pipeline, subscriptionId, e |
| 8 | 36 | | _clientDiagnostics = clientDiagnostics; |
| 8 | 37 | | _pipeline = pipeline; |
| 8 | 38 | | } |
| | 39 | |
|
| | 40 | | /// <summary> Gets the specified load balancer load balancing rule. </summary> |
| | 41 | | /// <param name="resourceGroupName"> The name of the resource group. </param> |
| | 42 | | /// <param name="loadBalancerName"> The name of the load balancer. </param> |
| | 43 | | /// <param name="loadBalancingRuleName"> The name of the load balancing rule. </param> |
| | 44 | | /// <param name="cancellationToken"> The cancellation token to use. </param> |
| | 45 | | public virtual async Task<Response<LoadBalancingRule>> GetAsync(string resourceGroupName, string loadBalancerNam |
| | 46 | | { |
| 2 | 47 | | using var scope = _clientDiagnostics.CreateScope("LoadBalancerLoadBalancingRulesOperations.Get"); |
| 2 | 48 | | scope.Start(); |
| | 49 | | try |
| | 50 | | { |
| 2 | 51 | | return await RestClient.GetAsync(resourceGroupName, loadBalancerName, loadBalancingRuleName, cancellatio |
| | 52 | | } |
| 0 | 53 | | catch (Exception e) |
| | 54 | | { |
| 0 | 55 | | scope.Failed(e); |
| 0 | 56 | | throw; |
| | 57 | | } |
| 2 | 58 | | } |
| | 59 | |
|
| | 60 | | /// <summary> Gets the specified load balancer load balancing rule. </summary> |
| | 61 | | /// <param name="resourceGroupName"> The name of the resource group. </param> |
| | 62 | | /// <param name="loadBalancerName"> The name of the load balancer. </param> |
| | 63 | | /// <param name="loadBalancingRuleName"> The name of the load balancing rule. </param> |
| | 64 | | /// <param name="cancellationToken"> The cancellation token to use. </param> |
| | 65 | | public virtual Response<LoadBalancingRule> Get(string resourceGroupName, string loadBalancerName, string loadBal |
| | 66 | | { |
| 2 | 67 | | using var scope = _clientDiagnostics.CreateScope("LoadBalancerLoadBalancingRulesOperations.Get"); |
| 2 | 68 | | scope.Start(); |
| | 69 | | try |
| | 70 | | { |
| 2 | 71 | | return RestClient.Get(resourceGroupName, loadBalancerName, loadBalancingRuleName, cancellationToken); |
| | 72 | | } |
| 0 | 73 | | catch (Exception e) |
| | 74 | | { |
| 0 | 75 | | scope.Failed(e); |
| 0 | 76 | | throw; |
| | 77 | | } |
| 2 | 78 | | } |
| | 79 | |
|
| | 80 | | /// <summary> Gets all the load balancing rules in a load balancer. </summary> |
| | 81 | | /// <param name="resourceGroupName"> The name of the resource group. </param> |
| | 82 | | /// <param name="loadBalancerName"> The name of the load balancer. </param> |
| | 83 | | /// <param name="cancellationToken"> The cancellation token to use. </param> |
| | 84 | | public virtual AsyncPageable<LoadBalancingRule> ListAsync(string resourceGroupName, string loadBalancerName, Can |
| | 85 | | { |
| 2 | 86 | | if (resourceGroupName == null) |
| | 87 | | { |
| 0 | 88 | | throw new ArgumentNullException(nameof(resourceGroupName)); |
| | 89 | | } |
| 2 | 90 | | if (loadBalancerName == null) |
| | 91 | | { |
| 0 | 92 | | throw new ArgumentNullException(nameof(loadBalancerName)); |
| | 93 | | } |
| | 94 | |
|
| | 95 | | async Task<Page<LoadBalancingRule>> FirstPageFunc(int? pageSizeHint) |
| | 96 | | { |
| 2 | 97 | | using var scope = _clientDiagnostics.CreateScope("LoadBalancerLoadBalancingRulesOperations.List"); |
| 2 | 98 | | scope.Start(); |
| | 99 | | try |
| | 100 | | { |
| 2 | 101 | | var response = await RestClient.ListAsync(resourceGroupName, loadBalancerName, cancellationToken).Co |
| 2 | 102 | | return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); |
| | 103 | | } |
| 0 | 104 | | catch (Exception e) |
| | 105 | | { |
| 0 | 106 | | scope.Failed(e); |
| 0 | 107 | | throw; |
| | 108 | | } |
| 2 | 109 | | } |
| | 110 | | async Task<Page<LoadBalancingRule>> NextPageFunc(string nextLink, int? pageSizeHint) |
| | 111 | | { |
| 0 | 112 | | using var scope = _clientDiagnostics.CreateScope("LoadBalancerLoadBalancingRulesOperations.List"); |
| 0 | 113 | | scope.Start(); |
| | 114 | | try |
| | 115 | | { |
| 0 | 116 | | var response = await RestClient.ListNextPageAsync(nextLink, resourceGroupName, loadBalancerName, can |
| 0 | 117 | | return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); |
| | 118 | | } |
| 0 | 119 | | catch (Exception e) |
| | 120 | | { |
| 0 | 121 | | scope.Failed(e); |
| 0 | 122 | | throw; |
| | 123 | | } |
| 0 | 124 | | } |
| 2 | 125 | | return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); |
| | 126 | | } |
| | 127 | |
|
| | 128 | | /// <summary> Gets all the load balancing rules in a load balancer. </summary> |
| | 129 | | /// <param name="resourceGroupName"> The name of the resource group. </param> |
| | 130 | | /// <param name="loadBalancerName"> The name of the load balancer. </param> |
| | 131 | | /// <param name="cancellationToken"> The cancellation token to use. </param> |
| | 132 | | public virtual Pageable<LoadBalancingRule> List(string resourceGroupName, string loadBalancerName, CancellationT |
| | 133 | | { |
| 2 | 134 | | if (resourceGroupName == null) |
| | 135 | | { |
| 0 | 136 | | throw new ArgumentNullException(nameof(resourceGroupName)); |
| | 137 | | } |
| 2 | 138 | | if (loadBalancerName == null) |
| | 139 | | { |
| 0 | 140 | | throw new ArgumentNullException(nameof(loadBalancerName)); |
| | 141 | | } |
| | 142 | |
|
| | 143 | | Page<LoadBalancingRule> FirstPageFunc(int? pageSizeHint) |
| | 144 | | { |
| 2 | 145 | | using var scope = _clientDiagnostics.CreateScope("LoadBalancerLoadBalancingRulesOperations.List"); |
| 2 | 146 | | scope.Start(); |
| | 147 | | try |
| | 148 | | { |
| 2 | 149 | | var response = RestClient.List(resourceGroupName, loadBalancerName, cancellationToken); |
| 2 | 150 | | return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); |
| | 151 | | } |
| 0 | 152 | | catch (Exception e) |
| | 153 | | { |
| 0 | 154 | | scope.Failed(e); |
| 0 | 155 | | throw; |
| | 156 | | } |
| 2 | 157 | | } |
| | 158 | | Page<LoadBalancingRule> NextPageFunc(string nextLink, int? pageSizeHint) |
| | 159 | | { |
| 0 | 160 | | using var scope = _clientDiagnostics.CreateScope("LoadBalancerLoadBalancingRulesOperations.List"); |
| 0 | 161 | | scope.Start(); |
| | 162 | | try |
| | 163 | | { |
| 0 | 164 | | var response = RestClient.ListNextPage(nextLink, resourceGroupName, loadBalancerName, cancellationTo |
| 0 | 165 | | return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); |
| | 166 | | } |
| 0 | 167 | | catch (Exception e) |
| | 168 | | { |
| 0 | 169 | | scope.Failed(e); |
| 0 | 170 | | throw; |
| | 171 | | } |
| 0 | 172 | | } |
| 2 | 173 | | return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); |
| | 174 | | } |
| | 175 | | } |
| | 176 | | } |