Skip to main content

Update a management group

Update the specified management group.

Path Parameters
  • group_id string required

    Performs the operation on the management group with the specified ID.

Request Body
  • backup_across_subgroups boolean

    Determines whether backups are allowed to occur across different subgroups or cloud connectors.

  • name string

    The name of the management group.

Responses

Success


Schema
  • _links object

    URLs to pages related to the resource.

  • _self object

    The HATEOAS link to this resource.

  • href string

    The URI for the referenced operation.

  • templated boolean

    Determines whether the "href" link is a URI template. If set to true, the "href" link is a URI template.

  • type string

    The HTTP method to be used with the "href" link for the referenced operation.

  • update-management-group object

    A resource-specific HATEOAS link.

  • href string

    The URI for the referenced operation.

  • templated boolean

    Determines whether the "href" link is a URI template. If set to true, the "href" link is a URI template.

  • type string

    The HTTP method to be used with the "href" link for the referenced operation.

  • id string

    The Clumio-assigned ID of the management group.

  • name string

    The name of the management group.

  • type string

    The type of the management group. Possible values include on_prem.

  • vcenter_id string

    The Clumio-assigned ID of the vCenter server associated with the management group. All management groups are associated with a vCenter server.

PUT /management-groups/:group_id    

Authorization

Request

Click Edit to configure Base URL
https://us-west-2.api.clumio.com
Bearer Token
group_id — path required
Body
{
"backup_across_subgroups": true,
"name": "string"
}
curl -L -X PUT 'https://us-west-2.api.clumio.com/management-groups/:group_id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/api.clumio.management-groups=v1+json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"backup_across_subgroups": true,
"name": "string"
}'