Updates the environment-level host units quotas of your Dynatrace account.
The request consumes an application/json payload.
PATCH
https://api.dynatrace.com/env/v1/accounts/{accountUuid}/quotas/host-monitoring
To execute this request, you need the Allow write access for environment resources (account-env-write) permission assigned to your token. To learn how to obtain and use it, see OAuth clients.
| Parameter | Type | Description | In | Required |
|---|---|---|---|---|
| accountUuid | string | The ID of the required account. You can find the UUID on the Account > Account management API page, during creation of an OAuth client. | path | Required |
| body | Environment | The JSON body of the request. Contains the list of environment-level quotas to be set. | body | Required |
RequestBody objectEnvironmentChangeListDto object| Element | Type | Description | Required |
|---|---|---|---|
| uuid | string | The ID of the environment. | Required |
| concurrentHostsUnits | number | The total amount of host units assigned to the environment. | Required |
| hostUnitOverageAllowed | boolean | The overage is ( If the overage is enabled, the environment can exceed the quota. To learn more about host units consumption, see Application and Infrastructure Monitoring in Dynatrace Documentation. | Required |
This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.
[{"uuid": "string","concurrentHostsUnits": 1,"hostUnitOverageAllowed": true}]
| Code | Description |
|---|---|
| 200 | Success. The quota has been updated. The response doesn't have a body. |