Example #1
0
        /// <summary>
        /// Lists all secret versions for the specified secret.
        /// </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/vault/ListSecretVersions.cs.html">here</a> to see an example of how to use ListSecretVersions API.</example>
        public async Task <ListSecretVersionsResponse> ListSecretVersions(ListSecretVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called listSecretVersions");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/secrets/{secretId}/versions".Trim('/')));
            HttpMethod         method         = new HttpMethod("GET");
            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 <ListSecretVersionsResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"ListSecretVersions failed with error: {e.Message}");
                throw;
            }
        }
Example #2
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListSecretVersionsRequest request;

            try
            {
                request = new ListSecretVersionsRequest
                {
                    SecretId     = SecretId,
                    Limit        = Limit,
                    Page         = Page,
                    OpcRequestId = OpcRequestId,
                    SortBy       = SortBy,
                    SortOrder    = SortOrder
                };
                IEnumerable <ListSecretVersionsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.Items, true);
                }
                if (!ParameterSetName.Equals(AllPageSet) && !ParameterSetName.Equals(LimitSet) && response.OpcNextPage != null)
                {
                    WriteWarning("This operation supports pagination and not all resources were returned. Re-run using the -All option to auto paginate and list all resources.");
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListSecretVersionsRequest request;

            try
            {
                request = new ListSecretVersionsRequest
                {
                    SecretId     = SecretId,
                    Limit        = Limit,
                    Page         = Page,
                    OpcRequestId = OpcRequestId,
                    SortBy       = SortBy,
                    SortOrder    = SortOrder
                };
                IEnumerable <ListSecretVersionsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.Items, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Example #4
0
        /// <summary>
        /// 查询凭据的版本列表
        /// </summary>
        public async Task <ListSecretVersionsResponse> ListSecretVersionsAsync(ListSecretVersionsRequest listSecretVersionsRequest)
        {
            Dictionary <string, string> urlParam = new Dictionary <string, string>();

            urlParam.Add("secret_id", listSecretVersionsRequest.SecretId.ToString());
            string              urlPath  = HttpUtils.AddUrlPath("/v1/{project_id}/secrets/{secret_id}/versions", urlParam);
            SdkRequest          request  = HttpUtils.InitSdkRequest(urlPath, "application/json", listSecretVersionsRequest);
            HttpResponseMessage response = await DoHttpRequestAsync("GET", request);

            return(JsonUtils.DeSerialize <ListSecretVersionsResponse>(response));
        }
Example #5
0
        internal async IAsyncEnumerable <string> ListSecretVersionsAsync(string secretId)
        {
            var request = new ListSecretVersionsRequest
            {
                ParentAsSecretName = SecretName.FromProjectSecret(m_projectId, secretId),
            };
            var response = m_client.ListSecretVersionsAsync(request);

            await foreach (var item in response)
            {
                yield return(item.SecretVersionName.SecretVersionId);
            }
        }
 /// <summary>
 /// Creates a new enumerable which will iterate over the SecretVersionSummary objects
 /// contained in responses from the ListSecretVersions operation. This enumerable will fetch more data from the server as needed.
 /// </summary>
 /// <param name="request">The request object containing the details to send</param>
 /// <param name="retryConfiguration">The configuration for retrying, may be null</param>
 /// <param name="cancellationToken">The cancellation token object</param>
 /// <returns>The enumerator, which supports a simple iteration over a collection of a specified type</returns>
 public IEnumerable <SecretVersionSummary> ListSecretVersionsRecordEnumerator(ListSecretVersionsRequest request, Common.Retry.RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
 {
     return(new Common.Utils.ResponseRecordEnumerable <ListSecretVersionsRequest, ListSecretVersionsResponse, SecretVersionSummary>(
                response => response.OpcNextPage,
                input =>
     {
         if (!string.IsNullOrEmpty(input))
         {
             request.Page = input;
         }
         return request;
     },
                request => client.ListSecretVersions(request, retryConfiguration, cancellationToken),
                response => response.Items
                ));
 }
        // [END secretmanager_get_secret]

        // [START secretmanager_list_secret_versions]
        /// <summary>
        /// List all secret versions for a secret.
        /// </summary>
        /// <param name="projectId">ID of the project where the secret resides.</param>
        /// <param name="secretId">ID of the secret.</param>
        /// <example>
        /// List all secret versions.
        /// <code>ListSecretVersions("my-project", "my-secret")</code>
        /// </example>
        public static void ListSecretVersions(string projectId, string secretId)
        {
            SecretManagerServiceClient client = SecretManagerServiceClient.Create();

            // Create the request.
            var request = new ListSecretVersionsRequest
            {
                ParentAsSecretName = new SecretName(projectId, secretId),
            };

            // List all versions and their state.
            foreach (var version in client.ListSecretVersions(request))
            {
                Console.WriteLine($"Secret version {version.Name}, {version.State}");
            }
        }