コード例 #1
0
        /// <summary>
        /// Gets a secret bundle by secret name and vault ID, and secret version that matches either the specified &#x60;stage&#x60;, &#x60;secretVersionName&#x60;, or &#x60;versionNumber&#x60; parameter.
        /// If none of these parameters are provided, the bundle for the secret version marked as &#x60;CURRENT&#x60; is returned.
        ///
        /// </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/secrets/GetSecretBundleByName.cs.html">here</a> to see an example of how to use GetSecretBundleByName API.</example>
        public async Task <GetSecretBundleByNameResponse> GetSecretBundleByName(GetSecretBundleByNameRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called getSecretBundleByName");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/secretbundles/actions/getByName".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 <GetSecretBundleByNameResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"GetSecretBundleByName failed with error: {e.Message}");
                throw;
            }
        }
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            GetSecretBundleByNameRequest request;

            try
            {
                request = new GetSecretBundleByNameRequest
                {
                    SecretName        = SecretName,
                    VaultId           = VaultId,
                    OpcRequestId      = OpcRequestId,
                    VersionNumber     = VersionNumber,
                    SecretVersionName = SecretVersionName,
                    Stage             = Stage
                };

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