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

            try
            {
                request = new AddWorkerNodesRequest
                {
                    BdsInstanceId         = BdsInstanceId,
                    AddWorkerNodesDetails = AddWorkerNodesDetails,
                    OpcRequestId          = OpcRequestId,
                    IfMatch       = IfMatch,
                    OpcRetryToken = OpcRetryToken
                };

                response = client.AddWorkerNodes(request).GetAwaiter().GetResult();
                WriteOutput(response, CreateWorkRequestObject(response.OpcWorkRequestId));
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
예제 #2
0
        /// <summary>
        /// Add worker nodes to an existing cluster. The worker nodes added will be based on an identical shape
        /// and have the same amount of attached block storage as other worker nodes in the cluster.
        ///
        /// </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 <AddWorkerNodesResponse> AddWorkerNodes(AddWorkerNodesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called addWorkerNodes");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/bdsInstances/{bdsInstanceId}/actions/addWorkerNodes".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 <AddWorkerNodesResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"AddWorkerNodes failed with error: {e.Message}");
                throw;
            }
        }