コード例 #1
0
        /// <summary>
        /// Gets the specified service connector&#39;s configuration information.
        ///
        /// </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/sch/GetServiceConnector.cs.html">here</a> to see an example of how to use GetServiceConnector API.</example>
        public async Task <GetServiceConnectorResponse> GetServiceConnector(GetServiceConnectorRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called getServiceConnector");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/serviceConnectors/{serviceConnectorId}".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 <GetServiceConnectorResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"GetServiceConnector failed with error: {e.Message}");
                throw;
            }
        }
コード例 #2
0
        private void HandleOutput(GetServiceConnectorRequest request)
        {
            var waiterConfig = new WaiterConfiguration
            {
                MaxAttempts           = MaxWaitAttempts,
                GetNextDelayInSeconds = (_) => WaitIntervalSeconds
            };

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

            case Default:
                response = client.GetServiceConnector(request).GetAwaiter().GetResult();
                break;
            }
            WriteOutput(response, response.ServiceConnector);
        }
コード例 #3
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            GetServiceConnectorRequest request;

            try
            {
                request = new GetServiceConnectorRequest
                {
                    ServiceConnectorId = ServiceConnectorId,
                    OpcRequestId       = OpcRequestId
                };

                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 <GetServiceConnectorRequest, GetServiceConnectorResponse> ForServiceConnector(GetServiceConnectorRequest request, WaiterConfiguration config, params LifecycleState[] targetStates)
        {
            var agent = new WaiterAgent <GetServiceConnectorRequest, GetServiceConnectorResponse>(
                request,
                request => client.GetServiceConnector(request),
                response => targetStates.Contains(response.ServiceConnector.LifecycleState.Value),
                targetStates.Contains(LifecycleState.Deleted)
                );

            return(new Waiter <GetServiceConnectorRequest, GetServiceConnectorResponse>(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 <GetServiceConnectorRequest, GetServiceConnectorResponse> ForServiceConnector(GetServiceConnectorRequest request, params LifecycleState[] targetStates)
 {
     return(this.ForServiceConnector(request, WaiterConfiguration.DefaultWaiterConfiguration, targetStates));
 }