/// <summary> /// Gets information about the specified Certificate. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='thumbprintAlgorithm'> /// The algorithm used to derive the thumbprint parameter. This must be sha1. /// </param> /// <param name='thumbprint'> /// The thumbprint of the Certificate to get. /// </param> /// <param name='certificateGetOptions'> /// Additional parameters for the operation /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <Certificate> GetAsync(this ICertificateOperations operations, string thumbprintAlgorithm, string thumbprint, CertificateGetOptions certificateGetOptions = default(CertificateGetOptions), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(thumbprintAlgorithm, thumbprint, certificateGetOptions, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }
/// <summary> /// Gets the details of the certificate specified by its identifier. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> /// <param name='serviceName'> /// The name of the API Management service. /// </param> /// <param name='certificateId'> /// Identifier of the certificate entity. Must be unique in the current API /// Management service instance. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <CertificateContract> GetAsync(this ICertificateOperations operations, string resourceGroupName, string serviceName, string certificateId, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serviceName, certificateId, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }