Resynchronize allocator

POST /platform/infrastructure/allocators/{allocator_id}/_resync

Immediately synchronizes the allocator information in the back-end search index and caches.

Path parameters

Responses

  • The allocator resync operation executed successfully

    Additional properties are allowed.

  • The allocator resync operation failed for allocator {allocator_id}. (code: allocators.resync_failed)

    Hide headers attribute Show headers attribute
    • The error codes associated with the response

      Value is allocators.resync_failed.

    Hide response attribute Show response attribute object
    • errors array[object] Required

      A list of errors that occurred in the failing request

      Hide errors attributes Show errors attributes object
      • code string Required

        A structured code representing the error type that occurred

      • message string Required

        A human readable message describing the error that occurred

      • fields array[string]

        If the error can be tied to a specific field or fields in the user request, this lists those fields

POST /platform/infrastructure/allocators/{allocator_id}/_resync
curl \
 -X POST https://{{hostname}}/api/v1/platform/infrastructure/allocators/{allocator_id}/_resync
Response examples (200)
{}
Response examples (500)
# Headers
x-cloud-error-codes: allocators.resync_failed

# Payload
{
  "errors": [
    {
      "code": "string",
      "message": "string",
      "fields": [
        "string"
      ]
    }
  ]
}