updateQueue method
Update queue properties. Currently only supports updating the name and enabled status to prevent configuration conflicts.
Implementation
Future<XRPCResponse<QueueUpdateQueueOutput>> updateQueue({
required int queueId,
String? name,
bool? enabled,
String? description,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await toolsOzoneQueueUpdateQueue(
queueId: queueId,
name: name,
enabled: enabled,
description: description,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);