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

            if (!ConfirmDelete("OCIOcvpEsxiHost", "Remove"))
            {
                return;
            }

            DeleteEsxiHostRequest request;

            try
            {
                request = new DeleteEsxiHostRequest
                {
                    EsxiHostId   = EsxiHostId,
                    IfMatch      = IfMatch,
                    OpcRequestId = OpcRequestId
                };

                response = client.DeleteEsxiHost(request).GetAwaiter().GetResult();
                WriteOutput(response, CreateWorkRequestObject(response.OpcWorkRequestId));
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Deletes the specified ESXi host. Before deleting the host, back up or
        /// migrate any VMware workloads running on it.
        /// &lt;br/&gt;
        /// When you delete an ESXi host, Oracle does not remove the node
        /// configuration within the VMware environment itself. That is
        /// your responsibility.
        /// &lt;br/&gt;
        /// **Note:** If you delete EXSi hosts from the SDDC to total less than 3,
        /// you are still billed for the 3 minimum recommended EXSi hosts. Also,
        /// you cannot add more VMware workloads to the SDDC until it again has at
        /// least 3 ESXi hosts.
        /// &lt;br/&gt;
        /// Use the {@link WorkRequest} operations to track the
        /// deletion of the ESXi host.
        ///
        /// </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/ocvp/DeleteEsxiHost.cs.html">here</a> to see an example of how to use DeleteEsxiHost API.</example>
        public async Task <DeleteEsxiHostResponse> DeleteEsxiHost(DeleteEsxiHostRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called deleteEsxiHost");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/esxiHosts/{esxiHostId}".Trim('/')));
            HttpMethod         method         = new HttpMethod("DELETE");
            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 <DeleteEsxiHostResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"DeleteEsxiHost failed with error: {e.Message}");
                throw;
            }
        }