Share via


JobRouterAdministrationClient.UpdateQueueAsync Method

Definition

Overloads

UpdateQueueAsync(RouterQueue, RequestConditions, CancellationToken)

Updates a queue.

UpdateQueueAsync(String, RequestContent, RequestConditions, RequestContext)

[Protocol Method] Updates a queue.

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

UpdateQueueAsync(RouterQueue, RequestConditions, CancellationToken)

Source:
JobRouterAdministrationClient.cs
Source:
JobRouterAdministrationClient.cs

Updates a queue.

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

Parameters

queue
RouterQueue

Queue 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

queue is null.

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

Applies to

UpdateQueueAsync(String, RequestContent, RequestConditions, RequestContext)

Source:
JobRouterAdministrationClient.cs
Source:
JobRouterAdministrationClient.cs

[Protocol Method] Updates a queue.

  • 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> UpdateQueueAsync (string queueId, Azure.Core.RequestContent content, Azure.RequestConditions requestConditions = default, Azure.RequestContext context = default);
abstract member UpdateQueueAsync : string * Azure.Core.RequestContent * Azure.RequestConditions * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.UpdateQueueAsync : string * Azure.Core.RequestContent * Azure.RequestConditions * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function UpdateQueueAsync (queueId As String, content As RequestContent, Optional requestConditions As RequestConditions = Nothing, Optional context As RequestContext = Nothing) As Task(Of Response)

Parameters

queueId
String

Id of a queue.

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

queueId or content is null.

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

Service returned a non-success status code.

Applies to