Latest Dynatrace
Lists IP allowlist configuration for a specific environment.
The request produces an application/json payload.
GET |
|
To execute this request, you need the Allow read access for environment resources (account-env-read) scope assigned to your token. To learn how to obtain and use it.
| Parameter | Type | Description | In | Required |
|---|---|---|---|---|
| accountUuid | string | - | path | required |
| environmentUuid | string | - | path | required |
| Code | Type | Description |
|---|---|---|
| 200 | Ip | The IP configuration has been successfully fetched. |
IpConfigDto object| Element | Type | Description |
|---|---|---|
| enabled | boolean | If enabled the ip config allow list gets applied. |
| allowWebhookOverride | boolean | If enabled the webhook ip allowlists will ignore the main allowlist CIDR range limitations. |
| allowlist | Allowlist | Contains a list of valid IP addresses in CIDR format which are allowed. If enabled it must not be empty. |
AllowlistItem object| Element | Type | Description |
|---|---|---|
| name | string | The name of the list. |
| ipRange | string | One ip address or the range of ip addresses. Supports the CIDR format. |
{"enabled": true,"allowWebhookOverride": true,"allowlist": [{"name": "Some IP-range","ipRange": "10.0.0.0/32"}]}