Ejemplo n.º 1
0
        /// <summary>
        /// Updates the specified SDDC.
        /// &lt;br/&gt;
        /// **Important:** Updating an SDDC affects only certain attributes in the &#x60;Sddc&#x60;
        /// object and does not affect the VMware environment currently running in
        /// the SDDC. For more information, see
        /// {@link #updateSddcDetails(UpdateSddcDetailsRequest) updateSddcDetails}.
        ///
        /// </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/UpdateSddc.cs.html">here</a> to see an example of how to use UpdateSddc API.</example>
        public async Task <UpdateSddcResponse> UpdateSddc(UpdateSddcRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called updateSddc");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/sddcs/{sddcId}".Trim('/')));
            HttpMethod         method         = new HttpMethod("PUT");
            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 <UpdateSddcResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"UpdateSddc failed with error: {e.Message}");
                throw;
            }
        }
Ejemplo n.º 2
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            UpdateSddcRequest request;

            try
            {
                request = new UpdateSddcRequest
                {
                    SddcId            = SddcId,
                    UpdateSddcDetails = UpdateSddcDetails,
                    IfMatch           = IfMatch,
                    OpcRequestId      = OpcRequestId
                };

                response = client.UpdateSddc(request).GetAwaiter().GetResult();
                WriteOutput(response, response.Sddc);
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }