< Summary

Class:Azure.ResourceManager.Network.PrivateDnsZoneGroupsOperations
Assembly:Azure.ResourceManager.Network
File(s):C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\PrivateDnsZoneGroupsOperations.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\PrivateDnsZoneGroupsOperations.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 PrivateDnsZoneGroups service client. </summary>
 19    public partial class PrivateDnsZoneGroupsOperations
 20    {
 21        private readonly ClientDiagnostics _clientDiagnostics;
 22        private readonly HttpPipeline _pipeline;
 023        internal PrivateDnsZoneGroupsRestOperations RestClient { get; }
 24        /// <summary> Initializes a new instance of PrivateDnsZoneGroupsOperations for mocking. </summary>
 025        protected PrivateDnsZoneGroupsOperations()
 26        {
 027        }
 28        /// <summary> Initializes a new instance of PrivateDnsZoneGroupsOperations. </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 PrivateDnsZoneGroupsOperations(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string subsc
 34        {
 035            RestClient = new PrivateDnsZoneGroupsRestOperations(clientDiagnostics, pipeline, subscriptionId, endpoint);
 036            _clientDiagnostics = clientDiagnostics;
 037            _pipeline = pipeline;
 038        }
 39
 40        /// <summary> Gets the private dns zone group resource by specified private dns zone group name. </summary>
 41        /// <param name="resourceGroupName"> The name of the resource group. </param>
 42        /// <param name="privateEndpointName"> The name of the private endpoint. </param>
 43        /// <param name="privateDnsZoneGroupName"> The name of the private dns zone group. </param>
 44        /// <param name="cancellationToken"> The cancellation token to use. </param>
 45        public virtual async Task<Response<PrivateDnsZoneGroup>> GetAsync(string resourceGroupName, string privateEndpoi
 46        {
 047            using var scope = _clientDiagnostics.CreateScope("PrivateDnsZoneGroupsOperations.Get");
 048            scope.Start();
 49            try
 50            {
 051                return await RestClient.GetAsync(resourceGroupName, privateEndpointName, privateDnsZoneGroupName, cancel
 52            }
 053            catch (Exception e)
 54            {
 055                scope.Failed(e);
 056                throw;
 57            }
 058        }
 59
 60        /// <summary> Gets the private dns zone group resource by specified private dns zone group name. </summary>
 61        /// <param name="resourceGroupName"> The name of the resource group. </param>
 62        /// <param name="privateEndpointName"> The name of the private endpoint. </param>
 63        /// <param name="privateDnsZoneGroupName"> The name of the private dns zone group. </param>
 64        /// <param name="cancellationToken"> The cancellation token to use. </param>
 65        public virtual Response<PrivateDnsZoneGroup> Get(string resourceGroupName, string privateEndpointName, string pr
 66        {
 067            using var scope = _clientDiagnostics.CreateScope("PrivateDnsZoneGroupsOperations.Get");
 068            scope.Start();
 69            try
 70            {
 071                return RestClient.Get(resourceGroupName, privateEndpointName, privateDnsZoneGroupName, cancellationToken
 72            }
 073            catch (Exception e)
 74            {
 075                scope.Failed(e);
 076                throw;
 77            }
 078        }
 79
 80        /// <summary> Gets all private dns zone groups in a private endpoint. </summary>
 81        /// <param name="privateEndpointName"> The name of the private endpoint. </param>
 82        /// <param name="resourceGroupName"> The name of the resource group. </param>
 83        /// <param name="cancellationToken"> The cancellation token to use. </param>
 84        public virtual AsyncPageable<PrivateDnsZoneGroup> ListAsync(string privateEndpointName, string resourceGroupName
 85        {
 086            if (privateEndpointName == null)
 87            {
 088                throw new ArgumentNullException(nameof(privateEndpointName));
 89            }
 090            if (resourceGroupName == null)
 91            {
 092                throw new ArgumentNullException(nameof(resourceGroupName));
 93            }
 94
 95            async Task<Page<PrivateDnsZoneGroup>> FirstPageFunc(int? pageSizeHint)
 96            {
 097                using var scope = _clientDiagnostics.CreateScope("PrivateDnsZoneGroupsOperations.List");
 098                scope.Start();
 99                try
 100                {
 0101                    var response = await RestClient.ListAsync(privateEndpointName, resourceGroupName, cancellationToken)
 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<PrivateDnsZoneGroup>> NextPageFunc(string nextLink, int? pageSizeHint)
 111            {
 0112                using var scope = _clientDiagnostics.CreateScope("PrivateDnsZoneGroupsOperations.List");
 0113                scope.Start();
 114                try
 115                {
 0116                    var response = await RestClient.ListNextPageAsync(nextLink, privateEndpointName, resourceGroupName, 
 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 private dns zone groups in a private endpoint. </summary>
 129        /// <param name="privateEndpointName"> The name of the private endpoint. </param>
 130        /// <param name="resourceGroupName"> The name of the resource group. </param>
 131        /// <param name="cancellationToken"> The cancellation token to use. </param>
 132        public virtual Pageable<PrivateDnsZoneGroup> List(string privateEndpointName, string resourceGroupName, Cancella
 133        {
 0134            if (privateEndpointName == null)
 135            {
 0136                throw new ArgumentNullException(nameof(privateEndpointName));
 137            }
 0138            if (resourceGroupName == null)
 139            {
 0140                throw new ArgumentNullException(nameof(resourceGroupName));
 141            }
 142
 143            Page<PrivateDnsZoneGroup> FirstPageFunc(int? pageSizeHint)
 144            {
 0145                using var scope = _clientDiagnostics.CreateScope("PrivateDnsZoneGroupsOperations.List");
 0146                scope.Start();
 147                try
 148                {
 0149                    var response = RestClient.List(privateEndpointName, resourceGroupName, 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<PrivateDnsZoneGroup> NextPageFunc(string nextLink, int? pageSizeHint)
 159            {
 0160                using var scope = _clientDiagnostics.CreateScope("PrivateDnsZoneGroupsOperations.List");
 0161                scope.Start();
 162                try
 163                {
 0164                    var response = RestClient.ListNextPage(nextLink, privateEndpointName, resourceGroupName, cancellatio
 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 private dns zone group. </summary>
 177        /// <param name="resourceGroupName"> The name of the resource group. </param>
 178        /// <param name="privateEndpointName"> The name of the private endpoint. </param>
 179        /// <param name="privateDnsZoneGroupName"> The name of the private dns zone group. </param>
 180        /// <param name="cancellationToken"> The cancellation token to use. </param>
 181        public virtual async Task<PrivateDnsZoneGroupsDeleteOperation> StartDeleteAsync(string resourceGroupName, string
 182        {
 0183            if (resourceGroupName == null)
 184            {
 0185                throw new ArgumentNullException(nameof(resourceGroupName));
 186            }
 0187            if (privateEndpointName == null)
 188            {
 0189                throw new ArgumentNullException(nameof(privateEndpointName));
 190            }
 0191            if (privateDnsZoneGroupName == null)
 192            {
 0193                throw new ArgumentNullException(nameof(privateDnsZoneGroupName));
 194            }
 195
 0196            using var scope = _clientDiagnostics.CreateScope("PrivateDnsZoneGroupsOperations.StartDelete");
 0197            scope.Start();
 198            try
 199            {
 0200                var originalResponse = await RestClient.DeleteAsync(resourceGroupName, privateEndpointName, privateDnsZo
 0201                return new PrivateDnsZoneGroupsDeleteOperation(_clientDiagnostics, _pipeline, RestClient.CreateDeleteReq
 202            }
 0203            catch (Exception e)
 204            {
 0205                scope.Failed(e);
 0206                throw;
 207            }
 0208        }
 209
 210        /// <summary> Deletes the specified private dns zone group. </summary>
 211        /// <param name="resourceGroupName"> The name of the resource group. </param>
 212        /// <param name="privateEndpointName"> The name of the private endpoint. </param>
 213        /// <param name="privateDnsZoneGroupName"> The name of the private dns zone group. </param>
 214        /// <param name="cancellationToken"> The cancellation token to use. </param>
 215        public virtual PrivateDnsZoneGroupsDeleteOperation StartDelete(string resourceGroupName, string privateEndpointN
 216        {
 0217            if (resourceGroupName == null)
 218            {
 0219                throw new ArgumentNullException(nameof(resourceGroupName));
 220            }
 0221            if (privateEndpointName == null)
 222            {
 0223                throw new ArgumentNullException(nameof(privateEndpointName));
 224            }
 0225            if (privateDnsZoneGroupName == null)
 226            {
 0227                throw new ArgumentNullException(nameof(privateDnsZoneGroupName));
 228            }
 229
 0230            using var scope = _clientDiagnostics.CreateScope("PrivateDnsZoneGroupsOperations.StartDelete");
 0231            scope.Start();
 232            try
 233            {
 0234                var originalResponse = RestClient.Delete(resourceGroupName, privateEndpointName, privateDnsZoneGroupName
 0235                return new PrivateDnsZoneGroupsDeleteOperation(_clientDiagnostics, _pipeline, RestClient.CreateDeleteReq
 236            }
 0237            catch (Exception e)
 238            {
 0239                scope.Failed(e);
 0240                throw;
 241            }
 0242        }
 243
 244        /// <summary> Creates or updates a private dns zone group in the specified private endpoint. </summary>
 245        /// <param name="resourceGroupName"> The name of the resource group. </param>
 246        /// <param name="privateEndpointName"> The name of the private endpoint. </param>
 247        /// <param name="privateDnsZoneGroupName"> The name of the private dns zone group. </param>
 248        /// <param name="parameters"> Parameters supplied to the create or update private dns zone group operation. </pa
 249        /// <param name="cancellationToken"> The cancellation token to use. </param>
 250        public virtual async Task<PrivateDnsZoneGroupsCreateOrUpdateOperation> StartCreateOrUpdateAsync(string resourceG
 251        {
 0252            if (resourceGroupName == null)
 253            {
 0254                throw new ArgumentNullException(nameof(resourceGroupName));
 255            }
 0256            if (privateEndpointName == null)
 257            {
 0258                throw new ArgumentNullException(nameof(privateEndpointName));
 259            }
 0260            if (privateDnsZoneGroupName == null)
 261            {
 0262                throw new ArgumentNullException(nameof(privateDnsZoneGroupName));
 263            }
 0264            if (parameters == null)
 265            {
 0266                throw new ArgumentNullException(nameof(parameters));
 267            }
 268
 0269            using var scope = _clientDiagnostics.CreateScope("PrivateDnsZoneGroupsOperations.StartCreateOrUpdate");
 0270            scope.Start();
 271            try
 272            {
 0273                var originalResponse = await RestClient.CreateOrUpdateAsync(resourceGroupName, privateEndpointName, priv
 0274                return new PrivateDnsZoneGroupsCreateOrUpdateOperation(_clientDiagnostics, _pipeline, RestClient.CreateC
 275            }
 0276            catch (Exception e)
 277            {
 0278                scope.Failed(e);
 0279                throw;
 280            }
 0281        }
 282
 283        /// <summary> Creates or updates a private dns zone group in the specified private endpoint. </summary>
 284        /// <param name="resourceGroupName"> The name of the resource group. </param>
 285        /// <param name="privateEndpointName"> The name of the private endpoint. </param>
 286        /// <param name="privateDnsZoneGroupName"> The name of the private dns zone group. </param>
 287        /// <param name="parameters"> Parameters supplied to the create or update private dns zone group operation. </pa
 288        /// <param name="cancellationToken"> The cancellation token to use. </param>
 289        public virtual PrivateDnsZoneGroupsCreateOrUpdateOperation StartCreateOrUpdate(string resourceGroupName, string 
 290        {
 0291            if (resourceGroupName == null)
 292            {
 0293                throw new ArgumentNullException(nameof(resourceGroupName));
 294            }
 0295            if (privateEndpointName == null)
 296            {
 0297                throw new ArgumentNullException(nameof(privateEndpointName));
 298            }
 0299            if (privateDnsZoneGroupName == null)
 300            {
 0301                throw new ArgumentNullException(nameof(privateDnsZoneGroupName));
 302            }
 0303            if (parameters == null)
 304            {
 0305                throw new ArgumentNullException(nameof(parameters));
 306            }
 307
 0308            using var scope = _clientDiagnostics.CreateScope("PrivateDnsZoneGroupsOperations.StartCreateOrUpdate");
 0309            scope.Start();
 310            try
 311            {
 0312                var originalResponse = RestClient.CreateOrUpdate(resourceGroupName, privateEndpointName, privateDnsZoneG
 0313                return new PrivateDnsZoneGroupsCreateOrUpdateOperation(_clientDiagnostics, _pipeline, RestClient.CreateC
 314            }
 0315            catch (Exception e)
 316            {
 0317                scope.Failed(e);
 0318                throw;
 319            }
 0320        }
 321    }
 322}