| | 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 VirtualHubRouteTableV2S service client. </summary> |
| | 19 | | public partial class VirtualHubRouteTableV2SOperations |
| | 20 | | { |
| | 21 | | private readonly ClientDiagnostics _clientDiagnostics; |
| | 22 | | private readonly HttpPipeline _pipeline; |
| 0 | 23 | | internal VirtualHubRouteTableV2SRestOperations RestClient { get; } |
| | 24 | | /// <summary> Initializes a new instance of VirtualHubRouteTableV2SOperations for mocking. </summary> |
| 0 | 25 | | protected VirtualHubRouteTableV2SOperations() |
| | 26 | | { |
| 0 | 27 | | } |
| | 28 | | /// <summary> Initializes a new instance of VirtualHubRouteTableV2SOperations. </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> |
| 0 | 33 | | internal VirtualHubRouteTableV2SOperations(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string su |
| | 34 | | { |
| 0 | 35 | | RestClient = new VirtualHubRouteTableV2SRestOperations(clientDiagnostics, pipeline, subscriptionId, endpoint |
| 0 | 36 | | _clientDiagnostics = clientDiagnostics; |
| 0 | 37 | | _pipeline = pipeline; |
| 0 | 38 | | } |
| | 39 | |
|
| | 40 | | /// <summary> Retrieves the details of a VirtualHubRouteTableV2. </summary> |
| | 41 | | /// <param name="resourceGroupName"> The resource group name of the VirtualHubRouteTableV2. </param> |
| | 42 | | /// <param name="virtualHubName"> The name of the VirtualHub. </param> |
| | 43 | | /// <param name="routeTableName"> The name of the VirtualHubRouteTableV2. </param> |
| | 44 | | /// <param name="cancellationToken"> The cancellation token to use. </param> |
| | 45 | | public virtual async Task<Response<VirtualHubRouteTableV2>> GetAsync(string resourceGroupName, string virtualHub |
| | 46 | | { |
| 0 | 47 | | using var scope = _clientDiagnostics.CreateScope("VirtualHubRouteTableV2SOperations.Get"); |
| 0 | 48 | | scope.Start(); |
| | 49 | | try |
| | 50 | | { |
| 0 | 51 | | return await RestClient.GetAsync(resourceGroupName, virtualHubName, routeTableName, cancellationToken).C |
| | 52 | | } |
| 0 | 53 | | catch (Exception e) |
| | 54 | | { |
| 0 | 55 | | scope.Failed(e); |
| 0 | 56 | | throw; |
| | 57 | | } |
| 0 | 58 | | } |
| | 59 | |
|
| | 60 | | /// <summary> Retrieves the details of a VirtualHubRouteTableV2. </summary> |
| | 61 | | /// <param name="resourceGroupName"> The resource group name of the VirtualHubRouteTableV2. </param> |
| | 62 | | /// <param name="virtualHubName"> The name of the VirtualHub. </param> |
| | 63 | | /// <param name="routeTableName"> The name of the VirtualHubRouteTableV2. </param> |
| | 64 | | /// <param name="cancellationToken"> The cancellation token to use. </param> |
| | 65 | | public virtual Response<VirtualHubRouteTableV2> Get(string resourceGroupName, string virtualHubName, string rout |
| | 66 | | { |
| 0 | 67 | | using var scope = _clientDiagnostics.CreateScope("VirtualHubRouteTableV2SOperations.Get"); |
| 0 | 68 | | scope.Start(); |
| | 69 | | try |
| | 70 | | { |
| 0 | 71 | | return RestClient.Get(resourceGroupName, virtualHubName, routeTableName, cancellationToken); |
| | 72 | | } |
| 0 | 73 | | catch (Exception e) |
| | 74 | | { |
| 0 | 75 | | scope.Failed(e); |
| 0 | 76 | | throw; |
| | 77 | | } |
| 0 | 78 | | } |
| | 79 | |
|
| | 80 | | /// <summary> Retrieves the details of all VirtualHubRouteTableV2s. </summary> |
| | 81 | | /// <param name="resourceGroupName"> The resource group name of the VirtualHub. </param> |
| | 82 | | /// <param name="virtualHubName"> The name of the VirtualHub. </param> |
| | 83 | | /// <param name="cancellationToken"> The cancellation token to use. </param> |
| | 84 | | public virtual AsyncPageable<VirtualHubRouteTableV2> ListAsync(string resourceGroupName, string virtualHubName, |
| | 85 | | { |
| 0 | 86 | | if (resourceGroupName == null) |
| | 87 | | { |
| 0 | 88 | | throw new ArgumentNullException(nameof(resourceGroupName)); |
| | 89 | | } |
| 0 | 90 | | if (virtualHubName == null) |
| | 91 | | { |
| 0 | 92 | | throw new ArgumentNullException(nameof(virtualHubName)); |
| | 93 | | } |
| | 94 | |
|
| | 95 | | async Task<Page<VirtualHubRouteTableV2>> FirstPageFunc(int? pageSizeHint) |
| | 96 | | { |
| 0 | 97 | | using var scope = _clientDiagnostics.CreateScope("VirtualHubRouteTableV2SOperations.List"); |
| 0 | 98 | | scope.Start(); |
| | 99 | | try |
| | 100 | | { |
| 0 | 101 | | var response = await RestClient.ListAsync(resourceGroupName, virtualHubName, cancellationToken).Conf |
| 0 | 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 | | } |
| 0 | 109 | | } |
| | 110 | | async Task<Page<VirtualHubRouteTableV2>> NextPageFunc(string nextLink, int? pageSizeHint) |
| | 111 | | { |
| 0 | 112 | | using var scope = _clientDiagnostics.CreateScope("VirtualHubRouteTableV2SOperations.List"); |
| 0 | 113 | | scope.Start(); |
| | 114 | | try |
| | 115 | | { |
| 0 | 116 | | var response = await RestClient.ListNextPageAsync(nextLink, resourceGroupName, virtualHubName, cance |
| 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 | | } |
| 0 | 125 | | return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); |
| | 126 | | } |
| | 127 | |
|
| | 128 | | /// <summary> Retrieves the details of all VirtualHubRouteTableV2s. </summary> |
| | 129 | | /// <param name="resourceGroupName"> The resource group name of the VirtualHub. </param> |
| | 130 | | /// <param name="virtualHubName"> The name of the VirtualHub. </param> |
| | 131 | | /// <param name="cancellationToken"> The cancellation token to use. </param> |
| | 132 | | public virtual Pageable<VirtualHubRouteTableV2> List(string resourceGroupName, string virtualHubName, Cancellati |
| | 133 | | { |
| 0 | 134 | | if (resourceGroupName == null) |
| | 135 | | { |
| 0 | 136 | | throw new ArgumentNullException(nameof(resourceGroupName)); |
| | 137 | | } |
| 0 | 138 | | if (virtualHubName == null) |
| | 139 | | { |
| 0 | 140 | | throw new ArgumentNullException(nameof(virtualHubName)); |
| | 141 | | } |
| | 142 | |
|
| | 143 | | Page<VirtualHubRouteTableV2> FirstPageFunc(int? pageSizeHint) |
| | 144 | | { |
| 0 | 145 | | using var scope = _clientDiagnostics.CreateScope("VirtualHubRouteTableV2SOperations.List"); |
| 0 | 146 | | scope.Start(); |
| | 147 | | try |
| | 148 | | { |
| 0 | 149 | | var response = RestClient.List(resourceGroupName, virtualHubName, cancellationToken); |
| 0 | 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 | | } |
| 0 | 157 | | } |
| | 158 | | Page<VirtualHubRouteTableV2> NextPageFunc(string nextLink, int? pageSizeHint) |
| | 159 | | { |
| 0 | 160 | | using var scope = _clientDiagnostics.CreateScope("VirtualHubRouteTableV2SOperations.List"); |
| 0 | 161 | | scope.Start(); |
| | 162 | | try |
| | 163 | | { |
| 0 | 164 | | var response = RestClient.ListNextPage(nextLink, resourceGroupName, virtualHubName, cancellationToke |
| 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 | | } |
| 0 | 173 | | return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); |
| | 174 | | } |
| | 175 | |
|
| | 176 | | /// <summary> Creates a VirtualHubRouteTableV2 resource if it doesn't exist else updates the existing Virtu |
| | 177 | | /// <param name="resourceGroupName"> The resource group name of the VirtualHub. </param> |
| | 178 | | /// <param name="virtualHubName"> The name of the VirtualHub. </param> |
| | 179 | | /// <param name="routeTableName"> The name of the VirtualHubRouteTableV2. </param> |
| | 180 | | /// <param name="virtualHubRouteTableV2Parameters"> Parameters supplied to create or update VirtualHubRouteTable |
| | 181 | | /// <param name="cancellationToken"> The cancellation token to use. </param> |
| | 182 | | public virtual async Task<VirtualHubRouteTableV2SCreateOrUpdateOperation> StartCreateOrUpdateAsync(string resour |
| | 183 | | { |
| 0 | 184 | | if (resourceGroupName == null) |
| | 185 | | { |
| 0 | 186 | | throw new ArgumentNullException(nameof(resourceGroupName)); |
| | 187 | | } |
| 0 | 188 | | if (virtualHubName == null) |
| | 189 | | { |
| 0 | 190 | | throw new ArgumentNullException(nameof(virtualHubName)); |
| | 191 | | } |
| 0 | 192 | | if (routeTableName == null) |
| | 193 | | { |
| 0 | 194 | | throw new ArgumentNullException(nameof(routeTableName)); |
| | 195 | | } |
| 0 | 196 | | if (virtualHubRouteTableV2Parameters == null) |
| | 197 | | { |
| 0 | 198 | | throw new ArgumentNullException(nameof(virtualHubRouteTableV2Parameters)); |
| | 199 | | } |
| | 200 | |
|
| 0 | 201 | | using var scope = _clientDiagnostics.CreateScope("VirtualHubRouteTableV2SOperations.StartCreateOrUpdate"); |
| 0 | 202 | | scope.Start(); |
| | 203 | | try |
| | 204 | | { |
| 0 | 205 | | var originalResponse = await RestClient.CreateOrUpdateAsync(resourceGroupName, virtualHubName, routeTabl |
| 0 | 206 | | return new VirtualHubRouteTableV2SCreateOrUpdateOperation(_clientDiagnostics, _pipeline, RestClient.Crea |
| | 207 | | } |
| 0 | 208 | | catch (Exception e) |
| | 209 | | { |
| 0 | 210 | | scope.Failed(e); |
| 0 | 211 | | throw; |
| | 212 | | } |
| 0 | 213 | | } |
| | 214 | |
|
| | 215 | | /// <summary> Creates a VirtualHubRouteTableV2 resource if it doesn't exist else updates the existing Virtu |
| | 216 | | /// <param name="resourceGroupName"> The resource group name of the VirtualHub. </param> |
| | 217 | | /// <param name="virtualHubName"> The name of the VirtualHub. </param> |
| | 218 | | /// <param name="routeTableName"> The name of the VirtualHubRouteTableV2. </param> |
| | 219 | | /// <param name="virtualHubRouteTableV2Parameters"> Parameters supplied to create or update VirtualHubRouteTable |
| | 220 | | /// <param name="cancellationToken"> The cancellation token to use. </param> |
| | 221 | | public virtual VirtualHubRouteTableV2SCreateOrUpdateOperation StartCreateOrUpdate(string resourceGroupName, stri |
| | 222 | | { |
| 0 | 223 | | if (resourceGroupName == null) |
| | 224 | | { |
| 0 | 225 | | throw new ArgumentNullException(nameof(resourceGroupName)); |
| | 226 | | } |
| 0 | 227 | | if (virtualHubName == null) |
| | 228 | | { |
| 0 | 229 | | throw new ArgumentNullException(nameof(virtualHubName)); |
| | 230 | | } |
| 0 | 231 | | if (routeTableName == null) |
| | 232 | | { |
| 0 | 233 | | throw new ArgumentNullException(nameof(routeTableName)); |
| | 234 | | } |
| 0 | 235 | | if (virtualHubRouteTableV2Parameters == null) |
| | 236 | | { |
| 0 | 237 | | throw new ArgumentNullException(nameof(virtualHubRouteTableV2Parameters)); |
| | 238 | | } |
| | 239 | |
|
| 0 | 240 | | using var scope = _clientDiagnostics.CreateScope("VirtualHubRouteTableV2SOperations.StartCreateOrUpdate"); |
| 0 | 241 | | scope.Start(); |
| | 242 | | try |
| | 243 | | { |
| 0 | 244 | | var originalResponse = RestClient.CreateOrUpdate(resourceGroupName, virtualHubName, routeTableName, virt |
| 0 | 245 | | return new VirtualHubRouteTableV2SCreateOrUpdateOperation(_clientDiagnostics, _pipeline, RestClient.Crea |
| | 246 | | } |
| 0 | 247 | | catch (Exception e) |
| | 248 | | { |
| 0 | 249 | | scope.Failed(e); |
| 0 | 250 | | throw; |
| | 251 | | } |
| 0 | 252 | | } |
| | 253 | |
|
| | 254 | | /// <summary> Deletes a VirtualHubRouteTableV2. </summary> |
| | 255 | | /// <param name="resourceGroupName"> The resource group name of the VirtualHubRouteTableV2. </param> |
| | 256 | | /// <param name="virtualHubName"> The name of the VirtualHub. </param> |
| | 257 | | /// <param name="routeTableName"> The name of the VirtualHubRouteTableV2. </param> |
| | 258 | | /// <param name="cancellationToken"> The cancellation token to use. </param> |
| | 259 | | public virtual async Task<VirtualHubRouteTableV2SDeleteOperation> StartDeleteAsync(string resourceGroupName, str |
| | 260 | | { |
| 0 | 261 | | if (resourceGroupName == null) |
| | 262 | | { |
| 0 | 263 | | throw new ArgumentNullException(nameof(resourceGroupName)); |
| | 264 | | } |
| 0 | 265 | | if (virtualHubName == null) |
| | 266 | | { |
| 0 | 267 | | throw new ArgumentNullException(nameof(virtualHubName)); |
| | 268 | | } |
| 0 | 269 | | if (routeTableName == null) |
| | 270 | | { |
| 0 | 271 | | throw new ArgumentNullException(nameof(routeTableName)); |
| | 272 | | } |
| | 273 | |
|
| 0 | 274 | | using var scope = _clientDiagnostics.CreateScope("VirtualHubRouteTableV2SOperations.StartDelete"); |
| 0 | 275 | | scope.Start(); |
| | 276 | | try |
| | 277 | | { |
| 0 | 278 | | var originalResponse = await RestClient.DeleteAsync(resourceGroupName, virtualHubName, routeTableName, c |
| 0 | 279 | | return new VirtualHubRouteTableV2SDeleteOperation(_clientDiagnostics, _pipeline, RestClient.CreateDelete |
| | 280 | | } |
| 0 | 281 | | catch (Exception e) |
| | 282 | | { |
| 0 | 283 | | scope.Failed(e); |
| 0 | 284 | | throw; |
| | 285 | | } |
| 0 | 286 | | } |
| | 287 | |
|
| | 288 | | /// <summary> Deletes a VirtualHubRouteTableV2. </summary> |
| | 289 | | /// <param name="resourceGroupName"> The resource group name of the VirtualHubRouteTableV2. </param> |
| | 290 | | /// <param name="virtualHubName"> The name of the VirtualHub. </param> |
| | 291 | | /// <param name="routeTableName"> The name of the VirtualHubRouteTableV2. </param> |
| | 292 | | /// <param name="cancellationToken"> The cancellation token to use. </param> |
| | 293 | | public virtual VirtualHubRouteTableV2SDeleteOperation StartDelete(string resourceGroupName, string virtualHubNam |
| | 294 | | { |
| 0 | 295 | | if (resourceGroupName == null) |
| | 296 | | { |
| 0 | 297 | | throw new ArgumentNullException(nameof(resourceGroupName)); |
| | 298 | | } |
| 0 | 299 | | if (virtualHubName == null) |
| | 300 | | { |
| 0 | 301 | | throw new ArgumentNullException(nameof(virtualHubName)); |
| | 302 | | } |
| 0 | 303 | | if (routeTableName == null) |
| | 304 | | { |
| 0 | 305 | | throw new ArgumentNullException(nameof(routeTableName)); |
| | 306 | | } |
| | 307 | |
|
| 0 | 308 | | using var scope = _clientDiagnostics.CreateScope("VirtualHubRouteTableV2SOperations.StartDelete"); |
| 0 | 309 | | scope.Start(); |
| | 310 | | try |
| | 311 | | { |
| 0 | 312 | | var originalResponse = RestClient.Delete(resourceGroupName, virtualHubName, routeTableName, cancellation |
| 0 | 313 | | return new VirtualHubRouteTableV2SDeleteOperation(_clientDiagnostics, _pipeline, RestClient.CreateDelete |
| | 314 | | } |
| 0 | 315 | | catch (Exception e) |
| | 316 | | { |
| 0 | 317 | | scope.Failed(e); |
| 0 | 318 | | throw; |
| | 319 | | } |
| 0 | 320 | | } |
| | 321 | | } |
| | 322 | | } |