get: summary: Get Fleet Server host by ID tags: - Fleet Server hosts responses: '200': description: OK content: application/json: schema: type: object properties: item: $ref: ../components/schemas/fleet_server_host.yaml required: - item '400': $ref: ../components/responses/error.yaml operationId: get-one-fleet-server-hosts parameters: - schema: type: string name: itemId in: path required: true delete: summary: Delete Fleet Server host by ID tags: - Fleet Server hosts operationId: delete-fleet-server-hosts responses: '200': description: OK content: application/json: schema: type: object properties: id: type: string required: - id '400': $ref: ../components/responses/error.yaml parameters: - $ref: ../components/headers/kbn_xsrf.yaml put: summary: Update Fleet Server host by ID tags: - Fleet Server hosts operationId: update-fleet-server-hosts requestBody: content: application/json: schema: type: object properties: name: type: string is_default: type: boolean host_urls: type: array items: type: string responses: '200': description: OK content: application/json: schema: type: object properties: item: $ref: ../components/schemas/fleet_server_host.yaml required: - item '400': $ref: ../components/responses/error.yaml parameters: - $ref: ../components/headers/kbn_xsrf.yaml