Exemplo n.º 1
0
        /// <summary>
        /// Cancels the scheduled deletion of the specified vault. Canceling a scheduled deletion
        /// restores the vault and all keys in it to their respective states from before their
        /// scheduled deletion. All keys that were scheduled for deletion prior to vault
        /// deletion retain their lifecycle state and time of deletion.
        /// &lt;br/&gt;
        /// As a provisioning operation, this call is subject to a Key Management limit that applies to
        /// the total number of requests across all provisioning write operations. Key Management might
        /// throttle this call to reject an otherwise valid request when the total rate of provisioning
        /// write operations exceeds 10 requests per second for a given tenancy.
        ///
        /// </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/CancelVaultDeletion.cs.html">here</a> to see an example of how to use CancelVaultDeletion API.</example>
        public async Task <CancelVaultDeletionResponse> CancelVaultDeletion(CancelVaultDeletionRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called cancelVaultDeletion");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/20180608/vaults/{vaultId}/actions/cancelDeletion".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 <CancelVaultDeletionResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"CancelVaultDeletion failed with error: {e.Message}");
                throw;
            }
        }
Exemplo n.º 2
0
        private static async Task CancelVaultDeletion(KmsVaultClient kmsVaultClient, string vaultId)
        {
            logger.Info("Cancel Vault Deletion");

            CancelVaultDeletionRequest cancelVaultDeletionRequest = new CancelVaultDeletionRequest
            {
                VaultId = vaultId
            };
            CancelVaultDeletionResponse cancelVaultDeletionResponse = await kmsVaultClient.CancelVaultDeletion(cancelVaultDeletionRequest);

            logger.Info("Deletion cancelled successfully");
        }
Exemplo n.º 3
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            CancelVaultDeletionRequest request;

            try
            {
                request = new CancelVaultDeletionRequest
                {
                    VaultId       = VaultId,
                    IfMatch       = IfMatch,
                    OpcRequestId  = OpcRequestId,
                    OpcRetryToken = OpcRetryToken
                };

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