예제 #1
0
        /// <summary>
        /// Gets information about the Analytics Cluster.
        /// </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/mysql/GetAnalyticsCluster.cs.html">here</a> to see an example of how to use GetAnalyticsCluster API.</example>
        public async Task <GetAnalyticsClusterResponse> GetAnalyticsCluster(GetAnalyticsClusterRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called getAnalyticsCluster");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/dbSystems/{dbSystemId}/analyticsCluster".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 <GetAnalyticsClusterResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"GetAnalyticsCluster failed with error: {e.Message}");
                throw;
            }
        }
        private void HandleOutput(GetAnalyticsClusterRequest request)
        {
            var waiterConfig = new WaiterConfiguration
            {
                MaxAttempts           = MaxWaitAttempts,
                GetNextDelayInSeconds = (_) => WaitIntervalSeconds
            };

            switch (ParameterSetName)
            {
            case LifecycleStateParamSet:
                response = client.Waiters.ForAnalyticsCluster(request, waiterConfig, WaitForLifecycleState).Execute();
                break;

            case Default:
                response = client.GetAnalyticsCluster(request).GetAwaiter().GetResult();
                break;
            }
            WriteOutput(response, response.AnalyticsCluster);
        }
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            GetAnalyticsClusterRequest request;

            try
            {
                request = new GetAnalyticsClusterRequest
                {
                    DbSystemId   = DbSystemId,
                    OpcRequestId = OpcRequestId,
                    IfNoneMatch  = IfNoneMatch
                };

                HandleOutput(request);
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
예제 #4
0
        /// <summary>
        /// Creates a waiter using the provided configuration.
        /// </summary>
        /// <param name="request">Request to send.</param>
        /// <param name="config">Wait Configuration</param>
        /// <param name="targetStates">Desired resource states. If multiple states are provided then the waiter will return once the resource reaches any of the provided states</param>
        /// <returns>a new Oci.common.Waiter instance</returns>
        public Waiter <GetAnalyticsClusterRequest, GetAnalyticsClusterResponse> ForAnalyticsCluster(GetAnalyticsClusterRequest request, WaiterConfiguration config, params AnalyticsCluster.LifecycleStateEnum[] targetStates)
        {
            var agent = new WaiterAgent <GetAnalyticsClusterRequest, GetAnalyticsClusterResponse>(
                request,
                request => client.GetAnalyticsCluster(request),
                response => targetStates.Contains(response.AnalyticsCluster.LifecycleState.Value),
                targetStates.Contains(AnalyticsCluster.LifecycleStateEnum.Deleted)
                );

            return(new Waiter <GetAnalyticsClusterRequest, GetAnalyticsClusterResponse>(config, agent));
        }
예제 #5
0
 /// <summary>
 /// Creates a waiter using default wait configuration.
 /// </summary>
 /// <param name="request">Request to send.</param>
 /// <param name="targetStates">Desired resource states. If multiple states are provided then the waiter will return once the resource reaches any of the provided states</param>
 /// <returns>a new Oci.common.Waiter instance</returns>
 public Waiter <GetAnalyticsClusterRequest, GetAnalyticsClusterResponse> ForAnalyticsCluster(GetAnalyticsClusterRequest request, params AnalyticsCluster.LifecycleStateEnum[] targetStates)
 {
     return(this.ForAnalyticsCluster(request, WaiterConfiguration.DefaultWaiterConfiguration, targetStates));
 }