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

            try
            {
                request = new ChangeAutoScalingConfigurationCompartmentRequest
                {
                    AutoScalingConfigurationId = AutoScalingConfigurationId,
                    ChangeCompartmentDetails   = ChangeCompartmentDetails,
                    OpcRequestId  = OpcRequestId,
                    IfMatch       = IfMatch,
                    OpcRetryToken = OpcRetryToken
                };

                response = client.ChangeAutoScalingConfigurationCompartment(request).GetAwaiter().GetResult();
                WriteOutput(response);
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Moves an autoscaling configuration into a different compartment within the same tenancy. For information
        /// about moving resources between compartments, see
        /// [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
        /// &lt;br/&gt;
        /// When you move an autoscaling configuration to a different compartment, associated resources such as instance
        /// pools are not 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 <ChangeAutoScalingConfigurationCompartmentResponse> ChangeAutoScalingConfigurationCompartment(ChangeAutoScalingConfigurationCompartmentRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called changeAutoScalingConfigurationCompartment");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/autoScalingConfigurations/{autoScalingConfigurationId}/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 <ChangeAutoScalingConfigurationCompartmentResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"ChangeAutoScalingConfigurationCompartment failed with error: {e.Message}");
                throw;
            }
        }