< Summary

Class:Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker.EndpointKeysExtensions
Assembly:Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Knowledge.QnAMaker\src\Generated\EndpointKeysExtensions.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:60
Line coverage:0% (0 of 6)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
GetKeysAsync()-0%100%
RefreshKeysAsync()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Knowledge.QnAMaker\src\Generated\EndpointKeysExtensions.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker
 12{
 13    using Models;
 14    using System.Threading;
 15    using System.Threading.Tasks;
 16
 17    /// <summary>
 18    /// Extension methods for EndpointKeys.
 19    /// </summary>
 20    public static partial class EndpointKeysExtensions
 21    {
 22            /// <summary>
 23            /// Gets endpoint keys for an endpoint
 24            /// </summary>
 25            /// <param name='operations'>
 26            /// The operations group for this extension method.
 27            /// </param>
 28            /// <param name='cancellationToken'>
 29            /// The cancellation token.
 30            /// </param>
 31            public static async Task<EndpointKeysDTO> GetKeysAsync(this IEndpointKeys operations, CancellationToken canc
 32            {
 033                using (var _result = await operations.GetKeysWithHttpMessagesAsync(null, cancellationToken).ConfigureAwa
 34                {
 035                    return _result.Body;
 36                }
 037            }
 38
 39            /// <summary>
 40            /// Re-generates an endpoint key.
 41            /// </summary>
 42            /// <param name='operations'>
 43            /// The operations group for this extension method.
 44            /// </param>
 45            /// <param name='keyType'>
 46            /// Type of Key
 47            /// </param>
 48            /// <param name='cancellationToken'>
 49            /// The cancellation token.
 50            /// </param>
 51            public static async Task<EndpointKeysDTO> RefreshKeysAsync(this IEndpointKeys operations, string keyType, Ca
 52            {
 053                using (var _result = await operations.RefreshKeysWithHttpMessagesAsync(keyType, null, cancellationToken)
 54                {
 055                    return _result.Body;
 56                }
 057            }
 58
 59    }
 60}

Methods/Properties

GetKeysAsync()
RefreshKeysAsync()