protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ChangeApplicationCompartmentRequest request;

            try
            {
                request = new ChangeApplicationCompartmentRequest
                {
                    ApplicationId = ApplicationId,
                    ChangeApplicationCompartmentDetails = ChangeApplicationCompartmentDetails,
                    OpcRequestId  = OpcRequestId,
                    IfMatch       = IfMatch,
                    OpcRetryToken = OpcRetryToken
                };

                response = client.ChangeApplicationCompartment(request).GetAwaiter().GetResult();
                WriteOutput(response);
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
        /// <summary>
        /// Moves an application into a different compartment. When provided, If-Match is checked against ETag values of the resource.
        /// Associated resources, like runs, will not be automatically moved.
        ///
        /// </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>
        public async Task <ChangeApplicationCompartmentResponse> ChangeApplicationCompartment(ChangeApplicationCompartmentRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called changeApplicationCompartment");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/applications/{applicationId}/actions/changeCompartment".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);
                }
                else
                {
                    responseMessage = await this.restClient.HttpSend(requestMessage);
                }

                return(Converter.FromHttpResponseMessage <ChangeApplicationCompartmentResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"ChangeApplicationCompartment failed with error: {e.Message}");
                throw;
            }
        }