v1

latestOpenAPI 3.1.0MIT2026-07-2654137287.8 KB
queues

Update Queue

Updates an existing queue in the given project.

patch/organizations/{organization_name}/projects/{project_name}/queues/{queue_name}

Response

OK

create_timestring date-time required

The date and time the queue was created.

current_queue_lengthinteger

The current length of the queue

descriptionstring

The description. This may be used as a space for notes or other information about the queue.

display_namestring required

The display name. This may be used as a more human-readable name.

idstring uuid required

The queue identifier. This is automatically generated and assigned when the queue is created.

namestring required

The queue name. This must be unique within the project.

update_timestring date-time required

The date and time the queue was last updated.

Example response

{
  "container_groups": [
    {
      "container": {
        "image": "acme/:latest",
        "image_caching": true
      },
      "country_codes": [
        "us"
      ],
      "display_name": "Name",
      "id": "ab3a4591-efc3-46c0-b06a-3d820c0ec100",
      "name": "mandlebrot",
      "networking": {
        "client_request_timeout": 100000,
        "port": 60000,
        "server_response_timeout": 100000
      },
      "organization_name": "acme-corp",
      "project_name": "dev-env",
      "replicas": 50
    }
  ]
}