protected override void ProcessRecord() { base.ProcessRecord(); UpdateOperatorControlAssignmentRequest request; try { request = new UpdateOperatorControlAssignmentRequest { OperatorControlAssignmentId = OperatorControlAssignmentId, UpdateOperatorControlAssignmentDetails = UpdateOperatorControlAssignmentDetails, IfMatch = IfMatch, OpcRequestId = OpcRequestId }; response = client.UpdateOperatorControlAssignment(request).GetAwaiter().GetResult(); WriteOutput(response, response.OperatorControlAssignment); FinishProcessing(response); } catch (Exception ex) { TerminatingErrorDuringExecution(ex); } }
/// <summary> /// Modifies the existing Operator Control assignment of the specified Operator Control assignment ID. Modifying the assignment does not change the Operator Control assignment ID. /// /// </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/operatoraccesscontrol/UpdateOperatorControlAssignment.cs.html">here</a> to see an example of how to use UpdateOperatorControlAssignment API.</example> public async Task <UpdateOperatorControlAssignmentResponse> UpdateOperatorControlAssignment(UpdateOperatorControlAssignmentRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default) { logger.Trace("Called updateOperatorControlAssignment"); Uri uri = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/operatorControlAssignments/{operatorControlAssignmentId}".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 <UpdateOperatorControlAssignmentResponse>(responseMessage)); } catch (Exception e) { logger.Error($"UpdateOperatorControlAssignment failed with error: {e.Message}"); throw; } }