/// <summary>
        /// Exports a specific version of a master encryption key according to the details of the request. For their protection,
        /// keys that you create and store on a hardware security module (HSM) can never leave the HSM. You can only export keys
        /// stored on the server. For export, the key version is encrypted by an RSA public key that you provide.
        ///
        /// </summary>
        /// <param name="request">The request object containing the details to send. Required.</param>
        /// <param name="retryConfiguration">The retry configuration that will be used by to send this request. Optional.</param>
        /// <param name="cancellationToken">The cancellation token to cancel this operation. Optional.</param>
        /// <returns>A response object containing details about the completed operation</returns>
        /// <example>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/dot-net-examples/latest/keymanagement/ExportKey.cs.html">here</a> to see an example of how to use ExportKey API.</example>
        public async Task <ExportKeyResponse> ExportKey(ExportKeyRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called exportKey");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/20180608/exportKey".Trim('/')));
            HttpMethod         method         = new HttpMethod("POST");
            HttpRequestMessage requestMessage = Converter.ToHttpRequestMessage(uri, method, request);

            requestMessage.Headers.Add("Accept", "application/json");
            GenericRetrier      retryingClient = Retrier.GetPreferredRetrier(retryConfiguration, this.retryConfiguration);
            HttpResponseMessage responseMessage;

            try
            {
                if (retryingClient != null)
                {
                    responseMessage = await retryingClient.MakeRetryingCall(this.restClient.HttpSend, requestMessage, cancellationToken).ConfigureAwait(false);
                }
                else
                {
                    responseMessage = await this.restClient.HttpSend(requestMessage).ConfigureAwait(false);
                }
                this.restClient.CheckHttpResponseMessage(requestMessage, responseMessage);

                return(Converter.FromHttpResponseMessage <ExportKeyResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"ExportKey failed with error: {e.Message}");
                throw;
            }
        }
Exemple #2
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ExportKeyRequest request;

            try
            {
                request = new ExportKeyRequest
                {
                    ExportKeyDetails = ExportKeyDetails
                };

                response = client.ExportKey(request).GetAwaiter().GetResult();
                WriteOutput(response, response.ExportedKeyData);
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }