protected override void ProcessRecord() { base.ProcessRecord(); UpdateAlertRuleRequest request; try { request = new UpdateAlertRuleRequest { BudgetId = BudgetId, AlertRuleId = AlertRuleId, UpdateAlertRuleDetails = UpdateAlertRuleDetails, IfMatch = IfMatch, OpcRequestId = OpcRequestId }; response = client.UpdateAlertRule(request).GetAwaiter().GetResult(); WriteOutput(response, response.AlertRule); FinishProcessing(response); } catch (Exception ex) { TerminatingErrorDuringExecution(ex); } }
/// <summary> /// Update an Alert Rule for the budget identified by the OCID. /// </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/budget/UpdateAlertRule.cs.html">here</a> to see an example of how to use UpdateAlertRule API.</example> public async Task <UpdateAlertRuleResponse> UpdateAlertRule(UpdateAlertRuleRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default) { logger.Trace("Called updateAlertRule"); Uri uri = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/budgets/{budgetId}/alertRules/{alertRuleId}".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 <UpdateAlertRuleResponse>(responseMessage)); } catch (Exception e) { logger.Error($"UpdateAlertRule failed with error: {e.Message}"); throw; } }
/// <summary> /// Update an Alert Rule for the budget identified by the OCID. /// </summary> /// <param name="request"></param> /// <returns></returns> public UpdateAlertRuleResponse UpdateAlertRule(UpdateAlertRuleRequest request) { var uri = new Uri($"{GetEndPoint(BudgetsServices.Budgets, this.Region, "oci.oraclecloud.com")}/{request.BudgetId}/alertRules/{request.AlertRuleId}"); var httpRequestHeaderParam = new HttpRequestHeaderParam() { IfMatch = request.IfMatch, OpcRequestId = request.OpcRequestId }; using (var webResponse = this.RestClient.Put(uri, request.UpdateAlertRuleDetails, httpRequestHeaderParam)) using (var stream = webResponse.GetResponseStream()) using (var reader = new StreamReader(stream)) { var response = reader.ReadToEnd(); return(new UpdateAlertRuleResponse() { AlertRule = JsonSerializer.Deserialize <AlertRule>(response), OpcRequestId = webResponse.Headers.Get("opc-request-id"), Etag = webResponse.Headers.Get("etag") }); } }