< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\ExpressRouteCircuitAuthorizationsOperations.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 ExpressRouteCircuitAuthorizations service client. </summary>
 19    public partial class ExpressRouteCircuitAuthorizationsOperations
 20    {
 21        private readonly ClientDiagnostics _clientDiagnostics;
 22        private readonly HttpPipeline _pipeline;
 023        internal ExpressRouteCircuitAuthorizationsRestOperations RestClient { get; }
 24        /// <summary> Initializes a new instance of ExpressRouteCircuitAuthorizationsOperations for mocking. </summary>
 025        protected ExpressRouteCircuitAuthorizationsOperations()
 26        {
 027        }
 28        /// <summary> Initializes a new instance of ExpressRouteCircuitAuthorizationsOperations. </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>
 033        internal ExpressRouteCircuitAuthorizationsOperations(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline,
 34        {
 035            RestClient = new ExpressRouteCircuitAuthorizationsRestOperations(clientDiagnostics, pipeline, subscriptionId
 036            _clientDiagnostics = clientDiagnostics;
 037            _pipeline = pipeline;
 038        }
 39
 40        /// <summary> Gets the specified authorization from the specified express route circuit. </summary>
 41        /// <param name="resourceGroupName"> The name of the resource group. </param>
 42        /// <param name="circuitName"> The name of the express route circuit. </param>
 43        /// <param name="authorizationName"> The name of the authorization. </param>
 44        /// <param name="cancellationToken"> The cancellation token to use. </param>
 45        public virtual async Task<Response<ExpressRouteCircuitAuthorization>> GetAsync(string resourceGroupName, string 
 46        {
 047            using var scope = _clientDiagnostics.CreateScope("ExpressRouteCircuitAuthorizationsOperations.Get");
 048            scope.Start();
 49            try
 50            {
 051                return await RestClient.GetAsync(resourceGroupName, circuitName, authorizationName, cancellationToken).C
 52            }
 053            catch (Exception e)
 54            {
 055                scope.Failed(e);
 056                throw;
 57            }
 058        }
 59
 60        /// <summary> Gets the specified authorization from the specified express route circuit. </summary>
 61        /// <param name="resourceGroupName"> The name of the resource group. </param>
 62        /// <param name="circuitName"> The name of the express route circuit. </param>
 63        /// <param name="authorizationName"> The name of the authorization. </param>
 64        /// <param name="cancellationToken"> The cancellation token to use. </param>
 65        public virtual Response<ExpressRouteCircuitAuthorization> Get(string resourceGroupName, string circuitName, stri
 66        {
 067            using var scope = _clientDiagnostics.CreateScope("ExpressRouteCircuitAuthorizationsOperations.Get");
 068            scope.Start();
 69            try
 70            {
 071                return RestClient.Get(resourceGroupName, circuitName, authorizationName, cancellationToken);
 72            }
 073            catch (Exception e)
 74            {
 075                scope.Failed(e);
 076                throw;
 77            }
 078        }
 79
 80        /// <summary> Gets all authorizations in an express route circuit. </summary>
 81        /// <param name="resourceGroupName"> The name of the resource group. </param>
 82        /// <param name="circuitName"> The name of the circuit. </param>
 83        /// <param name="cancellationToken"> The cancellation token to use. </param>
 84        public virtual AsyncPageable<ExpressRouteCircuitAuthorization> ListAsync(string resourceGroupName, string circui
 85        {
 086            if (resourceGroupName == null)
 87            {
 088                throw new ArgumentNullException(nameof(resourceGroupName));
 89            }
 090            if (circuitName == null)
 91            {
 092                throw new ArgumentNullException(nameof(circuitName));
 93            }
 94
 95            async Task<Page<ExpressRouteCircuitAuthorization>> FirstPageFunc(int? pageSizeHint)
 96            {
 097                using var scope = _clientDiagnostics.CreateScope("ExpressRouteCircuitAuthorizationsOperations.List");
 098                scope.Start();
 99                try
 100                {
 0101                    var response = await RestClient.ListAsync(resourceGroupName, circuitName, cancellationToken).Configu
 0102                    return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse());
 103                }
 0104                catch (Exception e)
 105                {
 0106                    scope.Failed(e);
 0107                    throw;
 108                }
 0109            }
 110            async Task<Page<ExpressRouteCircuitAuthorization>> NextPageFunc(string nextLink, int? pageSizeHint)
 111            {
 0112                using var scope = _clientDiagnostics.CreateScope("ExpressRouteCircuitAuthorizationsOperations.List");
 0113                scope.Start();
 114                try
 115                {
 0116                    var response = await RestClient.ListNextPageAsync(nextLink, resourceGroupName, circuitName, cancella
 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            }
 0125            return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc);
 126        }
 127
 128        /// <summary> Gets all authorizations in an express route circuit. </summary>
 129        /// <param name="resourceGroupName"> The name of the resource group. </param>
 130        /// <param name="circuitName"> The name of the circuit. </param>
 131        /// <param name="cancellationToken"> The cancellation token to use. </param>
 132        public virtual Pageable<ExpressRouteCircuitAuthorization> List(string resourceGroupName, string circuitName, Can
 133        {
 0134            if (resourceGroupName == null)
 135            {
 0136                throw new ArgumentNullException(nameof(resourceGroupName));
 137            }
 0138            if (circuitName == null)
 139            {
 0140                throw new ArgumentNullException(nameof(circuitName));
 141            }
 142
 143            Page<ExpressRouteCircuitAuthorization> FirstPageFunc(int? pageSizeHint)
 144            {
 0145                using var scope = _clientDiagnostics.CreateScope("ExpressRouteCircuitAuthorizationsOperations.List");
 0146                scope.Start();
 147                try
 148                {
 0149                    var response = RestClient.List(resourceGroupName, circuitName, cancellationToken);
 0150                    return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse());
 151                }
 0152                catch (Exception e)
 153                {
 0154                    scope.Failed(e);
 0155                    throw;
 156                }
 0157            }
 158            Page<ExpressRouteCircuitAuthorization> NextPageFunc(string nextLink, int? pageSizeHint)
 159            {
 0160                using var scope = _clientDiagnostics.CreateScope("ExpressRouteCircuitAuthorizationsOperations.List");
 0161                scope.Start();
 162                try
 163                {
 0164                    var response = RestClient.ListNextPage(nextLink, resourceGroupName, circuitName, cancellationToken);
 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            }
 0173            return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc);
 174        }
 175
 176        /// <summary> Deletes the specified authorization from the specified express route circuit. </summary>
 177        /// <param name="resourceGroupName"> The name of the resource group. </param>
 178        /// <param name="circuitName"> The name of the express route circuit. </param>
 179        /// <param name="authorizationName"> The name of the authorization. </param>
 180        /// <param name="cancellationToken"> The cancellation token to use. </param>
 181        public virtual async Task<ExpressRouteCircuitAuthorizationsDeleteOperation> StartDeleteAsync(string resourceGrou
 182        {
 0183            if (resourceGroupName == null)
 184            {
 0185                throw new ArgumentNullException(nameof(resourceGroupName));
 186            }
 0187            if (circuitName == null)
 188            {
 0189                throw new ArgumentNullException(nameof(circuitName));
 190            }
 0191            if (authorizationName == null)
 192            {
 0193                throw new ArgumentNullException(nameof(authorizationName));
 194            }
 195
 0196            using var scope = _clientDiagnostics.CreateScope("ExpressRouteCircuitAuthorizationsOperations.StartDelete");
 0197            scope.Start();
 198            try
 199            {
 0200                var originalResponse = await RestClient.DeleteAsync(resourceGroupName, circuitName, authorizationName, c
 0201                return new ExpressRouteCircuitAuthorizationsDeleteOperation(_clientDiagnostics, _pipeline, RestClient.Cr
 202            }
 0203            catch (Exception e)
 204            {
 0205                scope.Failed(e);
 0206                throw;
 207            }
 0208        }
 209
 210        /// <summary> Deletes the specified authorization from the specified express route circuit. </summary>
 211        /// <param name="resourceGroupName"> The name of the resource group. </param>
 212        /// <param name="circuitName"> The name of the express route circuit. </param>
 213        /// <param name="authorizationName"> The name of the authorization. </param>
 214        /// <param name="cancellationToken"> The cancellation token to use. </param>
 215        public virtual ExpressRouteCircuitAuthorizationsDeleteOperation StartDelete(string resourceGroupName, string cir
 216        {
 0217            if (resourceGroupName == null)
 218            {
 0219                throw new ArgumentNullException(nameof(resourceGroupName));
 220            }
 0221            if (circuitName == null)
 222            {
 0223                throw new ArgumentNullException(nameof(circuitName));
 224            }
 0225            if (authorizationName == null)
 226            {
 0227                throw new ArgumentNullException(nameof(authorizationName));
 228            }
 229
 0230            using var scope = _clientDiagnostics.CreateScope("ExpressRouteCircuitAuthorizationsOperations.StartDelete");
 0231            scope.Start();
 232            try
 233            {
 0234                var originalResponse = RestClient.Delete(resourceGroupName, circuitName, authorizationName, cancellation
 0235                return new ExpressRouteCircuitAuthorizationsDeleteOperation(_clientDiagnostics, _pipeline, RestClient.Cr
 236            }
 0237            catch (Exception e)
 238            {
 0239                scope.Failed(e);
 0240                throw;
 241            }
 0242        }
 243
 244        /// <summary> Creates or updates an authorization in the specified express route circuit. </summary>
 245        /// <param name="resourceGroupName"> The name of the resource group. </param>
 246        /// <param name="circuitName"> The name of the express route circuit. </param>
 247        /// <param name="authorizationName"> The name of the authorization. </param>
 248        /// <param name="authorizationParameters"> Parameters supplied to the create or update express route circuit aut
 249        /// <param name="cancellationToken"> The cancellation token to use. </param>
 250        public virtual async Task<ExpressRouteCircuitAuthorizationsCreateOrUpdateOperation> StartCreateOrUpdateAsync(str
 251        {
 0252            if (resourceGroupName == null)
 253            {
 0254                throw new ArgumentNullException(nameof(resourceGroupName));
 255            }
 0256            if (circuitName == null)
 257            {
 0258                throw new ArgumentNullException(nameof(circuitName));
 259            }
 0260            if (authorizationName == null)
 261            {
 0262                throw new ArgumentNullException(nameof(authorizationName));
 263            }
 0264            if (authorizationParameters == null)
 265            {
 0266                throw new ArgumentNullException(nameof(authorizationParameters));
 267            }
 268
 0269            using var scope = _clientDiagnostics.CreateScope("ExpressRouteCircuitAuthorizationsOperations.StartCreateOrU
 0270            scope.Start();
 271            try
 272            {
 0273                var originalResponse = await RestClient.CreateOrUpdateAsync(resourceGroupName, circuitName, authorizatio
 0274                return new ExpressRouteCircuitAuthorizationsCreateOrUpdateOperation(_clientDiagnostics, _pipeline, RestC
 275            }
 0276            catch (Exception e)
 277            {
 0278                scope.Failed(e);
 0279                throw;
 280            }
 0281        }
 282
 283        /// <summary> Creates or updates an authorization in the specified express route circuit. </summary>
 284        /// <param name="resourceGroupName"> The name of the resource group. </param>
 285        /// <param name="circuitName"> The name of the express route circuit. </param>
 286        /// <param name="authorizationName"> The name of the authorization. </param>
 287        /// <param name="authorizationParameters"> Parameters supplied to the create or update express route circuit aut
 288        /// <param name="cancellationToken"> The cancellation token to use. </param>
 289        public virtual ExpressRouteCircuitAuthorizationsCreateOrUpdateOperation StartCreateOrUpdate(string resourceGroup
 290        {
 0291            if (resourceGroupName == null)
 292            {
 0293                throw new ArgumentNullException(nameof(resourceGroupName));
 294            }
 0295            if (circuitName == null)
 296            {
 0297                throw new ArgumentNullException(nameof(circuitName));
 298            }
 0299            if (authorizationName == null)
 300            {
 0301                throw new ArgumentNullException(nameof(authorizationName));
 302            }
 0303            if (authorizationParameters == null)
 304            {
 0305                throw new ArgumentNullException(nameof(authorizationParameters));
 306            }
 307
 0308            using var scope = _clientDiagnostics.CreateScope("ExpressRouteCircuitAuthorizationsOperations.StartCreateOrU
 0309            scope.Start();
 310            try
 311            {
 0312                var originalResponse = RestClient.CreateOrUpdate(resourceGroupName, circuitName, authorizationName, auth
 0313                return new ExpressRouteCircuitAuthorizationsCreateOrUpdateOperation(_clientDiagnostics, _pipeline, RestC
 314            }
 0315            catch (Exception e)
 316            {
 0317                scope.Failed(e);
 0318                throw;
 319            }
 0320        }
 321    }
 322}