Set allocator metadata

PUT /platform/infrastructure/allocators/{allocator_id}/metadata

Sets the allocator metadata.

Path parameters

Query parameters

  • version string

    Checks for conflicts against the metadata version, then returns the value in the x-cloud-resource-version header.

Body Required

The metadata to update the allocator with

  • items array[object] Required

    A collection of arbitrary metadata items associated with a resource.

    Hide items attributes Show items attributes object
    • key string Required

      The metadata field name

    • value string Required

      The metadata value

Responses

  • The allocator metadata was successfully changed (the updated JSON is returned)

    Hide response attributes Show response attributes object
    • key string Required

      The metadata field name

    • value string Required

      The metadata value

  • The value specified is empty for at least one of the metadata tags. (code: allocators.invalid_empty_metadata_items)

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

      Value is allocators.invalid_empty_metadata_items.

    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

  • The allocator specified by {allocator_id} cannot be found. (code: allocators.allocator_not_found)

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

      Value is allocators.allocator_not_found.

    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

PUT /platform/infrastructure/allocators/{allocator_id}/metadata
curl \
 -X PUT https://{{hostname}}/api/v1/platform/infrastructure/allocators/{allocator_id}/metadata \
 -d '{"items":[{"key":"string","value":"string"}]}'
Request examples
{
  "items": [
    {
      "key": "string",
      "value": "string"
    }
  ]
}
Response examples (200)
[
  {
    "key": "string",
    "value": "string"
  }
]
Response examples (400)
# Headers
x-cloud-error-codes: allocators.invalid_empty_metadata_items

# Payload
{
  "errors": [
    {
      "code": "string",
      "message": "string",
      "fields": [
        "string"
      ]
    }
  ]
}
Response examples (404)
# Headers
x-cloud-error-codes: allocators.allocator_not_found

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