Bagikan melalui


JobRouterAdministrationClient.UpdateExceptionPolicyAsync Method

Definition

Overloads

UpdateExceptionPolicyAsync(ExceptionPolicy, RequestConditions, CancellationToken)

Creates a new exception policy.

UpdateExceptionPolicyAsync(String, RequestContent, RequestConditions, RequestContext)

[Protocol Method] Updates a exception policy.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.

UpdateExceptionPolicyAsync(ExceptionPolicy, RequestConditions, CancellationToken)

Source:
JobRouterAdministrationClient.cs
Source:
JobRouterAdministrationClient.cs

Creates a new exception policy.

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Communication.JobRouter.ExceptionPolicy>> UpdateExceptionPolicyAsync (Azure.Communication.JobRouter.ExceptionPolicy exceptionPolicy, Azure.RequestConditions requestConditions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member UpdateExceptionPolicyAsync : Azure.Communication.JobRouter.ExceptionPolicy * Azure.RequestConditions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.JobRouter.ExceptionPolicy>>
override this.UpdateExceptionPolicyAsync : Azure.Communication.JobRouter.ExceptionPolicy * Azure.RequestConditions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.JobRouter.ExceptionPolicy>>
Public Overridable Function UpdateExceptionPolicyAsync (exceptionPolicy As ExceptionPolicy, Optional requestConditions As RequestConditions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of ExceptionPolicy))

Parameters

exceptionPolicy
ExceptionPolicy

Exception policy to update. Uses merge-patch semantics: https://datatracker.ietf.org/doc/html/rfc7396.

requestConditions
RequestConditions

The content to send as the request conditions of the request.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

The server returned an error. See Message for details returned from the server.

Applies to

UpdateExceptionPolicyAsync(String, RequestContent, RequestConditions, RequestContext)

Source:
JobRouterAdministrationClient.cs
Source:
JobRouterAdministrationClient.cs

[Protocol Method] Updates a exception policy.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual System.Threading.Tasks.Task<Azure.Response> UpdateExceptionPolicyAsync (string exceptionPolicyId, Azure.Core.RequestContent content, Azure.RequestConditions requestConditions = default, Azure.RequestContext context = default);
abstract member UpdateExceptionPolicyAsync : string * Azure.Core.RequestContent * Azure.RequestConditions * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.UpdateExceptionPolicyAsync : string * Azure.Core.RequestContent * Azure.RequestConditions * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function UpdateExceptionPolicyAsync (exceptionPolicyId As String, content As RequestContent, Optional requestConditions As RequestConditions = Nothing, Optional context As RequestContext = Nothing) As Task(Of Response)

Parameters

exceptionPolicyId
String

Id of an exception policy.

content
RequestContent

The content to send as the body of the request.

requestConditions
RequestConditions

The content to send as the request conditions of the request.

context
RequestContext

The request context, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

exceptionPolicyId or content is null.

exceptionPolicyId is an empty string, and was expected to be non-empty.

Service returned a non-success status code.

Applies to