PUT /bhm/api/v1/group_servers/{group_server} - Adaptive Applications - BlueCat Gateway - 22.2

BlueCat Health Monitoring Administration Guide

Locale
English
Product name
BlueCat Gateway
Version
22.2

Description

Update a server group.

Parameters

Name Description
group_server Location: path

Type: string

The name of the group server.

body Location: body

Type: application/json

Information about the server group in the following format:
{
    "servers": array,
    "description": string,
    "tags": array
}
Where:
  • servers: An array containing the names of servers that will be added to the new server group.
  • description: A description for the new server group.
  • tags: Tags for the new server group.
Example body:
{
    "servers": ["server1", "server2"],
    "description": "Custom description",
    "tags": []
}

Responses

Status Description
Successful

Code: 200

Body:
{
    "message": "Updated successfully"
}