< Summary

Class:Azure.ResourceManager.Network.RoutesOperations
Assembly:Azure.ResourceManager.Network
File(s):C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\RoutesOperations.cs
Covered lines:66
Uncovered lines:58
Coverable lines:124
Total lines:322
Line coverage:53.2% (66 of 124)
Covered branches:18
Total branches:36
Branch coverage:50% (18 of 36)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_RestClient()-100%100%
.ctor()-100%100%
.ctor(...)-100%100%
GetAsync()-57.14%100%
Get(...)-57.14%100%
ListAsync(...)-38.1%50%
<ListAsync()-62.5%100%
<ListAsync()-0%100%
List(...)-38.1%50%
StartDeleteAsync()-57.14%50%
StartDelete(...)-57.14%50%
StartCreateOrUpdateAsync()-56.25%50%
StartCreateOrUpdate(...)-56.25%50%

File(s)

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\RoutesOperations.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8using System;
 9using System.Threading;
 10using System.Threading.Tasks;
 11using Azure;
 12using Azure.Core;
 13using Azure.Core.Pipeline;
 14using Azure.ResourceManager.Network.Models;
 15
 16namespace Azure.ResourceManager.Network
 17{
 18    /// <summary> The Routes service client. </summary>
 19    public partial class RoutesOperations
 20    {
 21        private readonly ClientDiagnostics _clientDiagnostics;
 22        private readonly HttpPipeline _pipeline;
 6823        internal RoutesRestOperations RestClient { get; }
 24        /// <summary> Initializes a new instance of RoutesOperations for mocking. </summary>
 4425        protected RoutesOperations()
 26        {
 4427        }
 28        /// <summary> Initializes a new instance of RoutesOperations. </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>
 4433        internal RoutesOperations(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string subscriptionId, Uri
 34        {
 4435            RestClient = new RoutesRestOperations(clientDiagnostics, pipeline, subscriptionId, endpoint);
 4436            _clientDiagnostics = clientDiagnostics;
 4437            _pipeline = pipeline;
 4438        }
 39
 40        /// <summary> Gets the specified route from a route table. </summary>
 41        /// <param name="resourceGroupName"> The name of the resource group. </param>
 42        /// <param name="routeTableName"> The name of the route table. </param>
 43        /// <param name="routeName"> The name of the route. </param>
 44        /// <param name="cancellationToken"> The cancellation token to use. </param>
 45        public virtual async Task<Response<Route>> GetAsync(string resourceGroupName, string routeTableName, string rout
 46        {
 447            using var scope = _clientDiagnostics.CreateScope("RoutesOperations.Get");
 448            scope.Start();
 49            try
 50            {
 451                return await RestClient.GetAsync(resourceGroupName, routeTableName, routeName, cancellationToken).Config
 52            }
 053            catch (Exception e)
 54            {
 055                scope.Failed(e);
 056                throw;
 57            }
 458        }
 59
 60        /// <summary> Gets the specified route from a route table. </summary>
 61        /// <param name="resourceGroupName"> The name of the resource group. </param>
 62        /// <param name="routeTableName"> The name of the route table. </param>
 63        /// <param name="routeName"> The name of the route. </param>
 64        /// <param name="cancellationToken"> The cancellation token to use. </param>
 65        public virtual Response<Route> Get(string resourceGroupName, string routeTableName, string routeName, Cancellati
 66        {
 467            using var scope = _clientDiagnostics.CreateScope("RoutesOperations.Get");
 468            scope.Start();
 69            try
 70            {
 471                return RestClient.Get(resourceGroupName, routeTableName, routeName, cancellationToken);
 72            }
 073            catch (Exception e)
 74            {
 075                scope.Failed(e);
 076                throw;
 77            }
 478        }
 79
 80        /// <summary> Gets all routes in a route table. </summary>
 81        /// <param name="resourceGroupName"> The name of the resource group. </param>
 82        /// <param name="routeTableName"> The name of the route table. </param>
 83        /// <param name="cancellationToken"> The cancellation token to use. </param>
 84        public virtual AsyncPageable<Route> ListAsync(string resourceGroupName, string routeTableName, CancellationToken
 85        {
 686            if (resourceGroupName == null)
 87            {
 088                throw new ArgumentNullException(nameof(resourceGroupName));
 89            }
 690            if (routeTableName == null)
 91            {
 092                throw new ArgumentNullException(nameof(routeTableName));
 93            }
 94
 95            async Task<Page<Route>> FirstPageFunc(int? pageSizeHint)
 96            {
 697                using var scope = _clientDiagnostics.CreateScope("RoutesOperations.List");
 698                scope.Start();
 99                try
 100                {
 6101                    var response = await RestClient.ListAsync(resourceGroupName, routeTableName, cancellationToken).Conf
 6102                    return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse());
 103                }
 0104                catch (Exception e)
 105                {
 0106                    scope.Failed(e);
 0107                    throw;
 108                }
 6109            }
 110            async Task<Page<Route>> NextPageFunc(string nextLink, int? pageSizeHint)
 111            {
 0112                using var scope = _clientDiagnostics.CreateScope("RoutesOperations.List");
 0113                scope.Start();
 114                try
 115                {
 0116                    var response = await RestClient.ListNextPageAsync(nextLink, resourceGroupName, routeTableName, cance
 0117                    return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse());
 118                }
 0119                catch (Exception e)
 120                {
 0121                    scope.Failed(e);
 0122                    throw;
 123                }
 0124            }
 6125            return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc);
 126        }
 127
 128        /// <summary> Gets all routes in a route table. </summary>
 129        /// <param name="resourceGroupName"> The name of the resource group. </param>
 130        /// <param name="routeTableName"> The name of the route table. </param>
 131        /// <param name="cancellationToken"> The cancellation token to use. </param>
 132        public virtual Pageable<Route> List(string resourceGroupName, string routeTableName, CancellationToken cancellat
 133        {
 6134            if (resourceGroupName == null)
 135            {
 0136                throw new ArgumentNullException(nameof(resourceGroupName));
 137            }
 6138            if (routeTableName == null)
 139            {
 0140                throw new ArgumentNullException(nameof(routeTableName));
 141            }
 142
 143            Page<Route> FirstPageFunc(int? pageSizeHint)
 144            {
 6145                using var scope = _clientDiagnostics.CreateScope("RoutesOperations.List");
 6146                scope.Start();
 147                try
 148                {
 6149                    var response = RestClient.List(resourceGroupName, routeTableName, cancellationToken);
 6150                    return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse());
 151                }
 0152                catch (Exception e)
 153                {
 0154                    scope.Failed(e);
 0155                    throw;
 156                }
 6157            }
 158            Page<Route> NextPageFunc(string nextLink, int? pageSizeHint)
 159            {
 0160                using var scope = _clientDiagnostics.CreateScope("RoutesOperations.List");
 0161                scope.Start();
 162                try
 163                {
 0164                    var response = RestClient.ListNextPage(nextLink, resourceGroupName, routeTableName, cancellationToke
 0165                    return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse());
 166                }
 0167                catch (Exception e)
 168                {
 0169                    scope.Failed(e);
 0170                    throw;
 171                }
 0172            }
 6173            return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc);
 174        }
 175
 176        /// <summary> Deletes the specified route from a route table. </summary>
 177        /// <param name="resourceGroupName"> The name of the resource group. </param>
 178        /// <param name="routeTableName"> The name of the route table. </param>
 179        /// <param name="routeName"> The name of the route. </param>
 180        /// <param name="cancellationToken"> The cancellation token to use. </param>
 181        public virtual async Task<RoutesDeleteOperation> StartDeleteAsync(string resourceGroupName, string routeTableNam
 182        {
 4183            if (resourceGroupName == null)
 184            {
 0185                throw new ArgumentNullException(nameof(resourceGroupName));
 186            }
 4187            if (routeTableName == null)
 188            {
 0189                throw new ArgumentNullException(nameof(routeTableName));
 190            }
 4191            if (routeName == null)
 192            {
 0193                throw new ArgumentNullException(nameof(routeName));
 194            }
 195
 4196            using var scope = _clientDiagnostics.CreateScope("RoutesOperations.StartDelete");
 4197            scope.Start();
 198            try
 199            {
 4200                var originalResponse = await RestClient.DeleteAsync(resourceGroupName, routeTableName, routeName, cancel
 4201                return new RoutesDeleteOperation(_clientDiagnostics, _pipeline, RestClient.CreateDeleteRequest(resourceG
 202            }
 0203            catch (Exception e)
 204            {
 0205                scope.Failed(e);
 0206                throw;
 207            }
 4208        }
 209
 210        /// <summary> Deletes the specified route from a route table. </summary>
 211        /// <param name="resourceGroupName"> The name of the resource group. </param>
 212        /// <param name="routeTableName"> The name of the route table. </param>
 213        /// <param name="routeName"> The name of the route. </param>
 214        /// <param name="cancellationToken"> The cancellation token to use. </param>
 215        public virtual RoutesDeleteOperation StartDelete(string resourceGroupName, string routeTableName, string routeNa
 216        {
 4217            if (resourceGroupName == null)
 218            {
 0219                throw new ArgumentNullException(nameof(resourceGroupName));
 220            }
 4221            if (routeTableName == null)
 222            {
 0223                throw new ArgumentNullException(nameof(routeTableName));
 224            }
 4225            if (routeName == null)
 226            {
 0227                throw new ArgumentNullException(nameof(routeName));
 228            }
 229
 4230            using var scope = _clientDiagnostics.CreateScope("RoutesOperations.StartDelete");
 4231            scope.Start();
 232            try
 233            {
 4234                var originalResponse = RestClient.Delete(resourceGroupName, routeTableName, routeName, cancellationToken
 4235                return new RoutesDeleteOperation(_clientDiagnostics, _pipeline, RestClient.CreateDeleteRequest(resourceG
 236            }
 0237            catch (Exception e)
 238            {
 0239                scope.Failed(e);
 0240                throw;
 241            }
 4242        }
 243
 244        /// <summary> Creates or updates a route in the specified route table. </summary>
 245        /// <param name="resourceGroupName"> The name of the resource group. </param>
 246        /// <param name="routeTableName"> The name of the route table. </param>
 247        /// <param name="routeName"> The name of the route. </param>
 248        /// <param name="routeParameters"> Parameters supplied to the create or update route operation. </param>
 249        /// <param name="cancellationToken"> The cancellation token to use. </param>
 250        public virtual async Task<RoutesCreateOrUpdateOperation> StartCreateOrUpdateAsync(string resourceGroupName, stri
 251        {
 8252            if (resourceGroupName == null)
 253            {
 0254                throw new ArgumentNullException(nameof(resourceGroupName));
 255            }
 8256            if (routeTableName == null)
 257            {
 0258                throw new ArgumentNullException(nameof(routeTableName));
 259            }
 8260            if (routeName == null)
 261            {
 0262                throw new ArgumentNullException(nameof(routeName));
 263            }
 8264            if (routeParameters == null)
 265            {
 0266                throw new ArgumentNullException(nameof(routeParameters));
 267            }
 268
 8269            using var scope = _clientDiagnostics.CreateScope("RoutesOperations.StartCreateOrUpdate");
 8270            scope.Start();
 271            try
 272            {
 8273                var originalResponse = await RestClient.CreateOrUpdateAsync(resourceGroupName, routeTableName, routeName
 8274                return new RoutesCreateOrUpdateOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreateOrUpdateR
 275            }
 0276            catch (Exception e)
 277            {
 0278                scope.Failed(e);
 0279                throw;
 280            }
 8281        }
 282
 283        /// <summary> Creates or updates a route in the specified route table. </summary>
 284        /// <param name="resourceGroupName"> The name of the resource group. </param>
 285        /// <param name="routeTableName"> The name of the route table. </param>
 286        /// <param name="routeName"> The name of the route. </param>
 287        /// <param name="routeParameters"> Parameters supplied to the create or update route operation. </param>
 288        /// <param name="cancellationToken"> The cancellation token to use. </param>
 289        public virtual RoutesCreateOrUpdateOperation StartCreateOrUpdate(string resourceGroupName, string routeTableName
 290        {
 8291            if (resourceGroupName == null)
 292            {
 0293                throw new ArgumentNullException(nameof(resourceGroupName));
 294            }
 8295            if (routeTableName == null)
 296            {
 0297                throw new ArgumentNullException(nameof(routeTableName));
 298            }
 8299            if (routeName == null)
 300            {
 0301                throw new ArgumentNullException(nameof(routeName));
 302            }
 8303            if (routeParameters == null)
 304            {
 0305                throw new ArgumentNullException(nameof(routeParameters));
 306            }
 307
 8308            using var scope = _clientDiagnostics.CreateScope("RoutesOperations.StartCreateOrUpdate");
 8309            scope.Start();
 310            try
 311            {
 8312                var originalResponse = RestClient.CreateOrUpdate(resourceGroupName, routeTableName, routeName, routePara
 8313                return new RoutesCreateOrUpdateOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreateOrUpdateR
 314            }
 0315            catch (Exception e)
 316            {
 0317                scope.Failed(e);
 0318                throw;
 319            }
 8320        }
 321    }
 322}