/// <summary>
        /// Retrieves a bastion identified by the bastion ID. A bastion provides secured, public access to target resources in the cloud that you cannot otherwise reach from the internet.
        /// </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/bastion/GetBastion.cs.html">here</a> to see an example of how to use GetBastion API.</example>
        public async Task <GetBastionResponse> GetBastion(GetBastionRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called getBastion");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/bastions/{bastionId}".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 <GetBastionResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"GetBastion failed with error: {e.Message}");
                throw;
            }
        }
Esempio n. 2
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<GetBastionRequest, GetBastionResponse> ForBastion(GetBastionRequest request, WaiterConfiguration config, params BastionLifecycleState[] targetStates)
 {
     var agent = new WaiterAgent<GetBastionRequest, GetBastionResponse>(
         request,
         request => client.GetBastion(request),
         response => targetStates.Contains(response.Bastion.LifecycleState.Value),
         targetStates.Contains(BastionLifecycleState.Deleted)
     );
     return new Waiter<GetBastionRequest, GetBastionResponse>(config, agent);
 }
        private void HandleOutput(GetBastionRequest request)
        {
            var waiterConfig = new WaiterConfiguration
            {
                MaxAttempts           = MaxWaitAttempts,
                GetNextDelayInSeconds = (_) => WaitIntervalSeconds
            };

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

            case Default:
                response = client.GetBastion(request).GetAwaiter().GetResult();
                break;
            }
            WriteOutput(response, response.Bastion);
        }
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            GetBastionRequest request;

            try
            {
                request = new GetBastionRequest
                {
                    BastionId    = BastionId,
                    OpcRequestId = OpcRequestId
                };

                HandleOutput(request);
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Esempio n. 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<GetBastionRequest, GetBastionResponse> ForBastion(GetBastionRequest request, params BastionLifecycleState[] targetStates)
 {
     return this.ForBastion(request, WaiterConfiguration.DefaultWaiterConfiguration, targetStates);
 }