|
| 1 | +--- |
| 2 | +layout: "" |
| 3 | +page_title: "dynatrace_ddu_pool Resource - terraform-provider-dynatrace" |
| 4 | +description: |- |
| 5 | + The resource `dynatrace_ddu_pool` covers configuration for Davis Data Unit Pools |
| 6 | +--- |
| 7 | + |
| 8 | +# dynatrace_ddu_pool (Resource) |
| 9 | + |
| 10 | + |
| 11 | +## Dynatrace Documentation |
| 12 | + |
| 13 | +- DDU Pools - https://www.dynatrace.com/support/help/monitoring-consumption/davis-data-units#ddu-pools |
| 14 | + |
| 15 | +- Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: `builtin:accounting.ddu.limit`) |
| 16 | + |
| 17 | +## Resource Example Usage |
| 18 | + |
| 19 | +```terraform |
| 20 | +resource "dynatrace_ddu_pool" "#name#" { |
| 21 | + metrics { |
| 22 | + enabled = true |
| 23 | + type = "MONTHLY" |
| 24 | + value = 123 |
| 25 | + } |
| 26 | + log_monitoring { |
| 27 | + enabled = true |
| 28 | + type = "MONTHLY" |
| 29 | + value = 124 |
| 30 | + } |
| 31 | + events { |
| 32 | + enabled = true |
| 33 | + type = "MONTHLY" |
| 34 | + value = 125 |
| 35 | + } |
| 36 | + serverless { |
| 37 | + enabled = true |
| 38 | + type = "MONTHLY" |
| 39 | + value = 126 |
| 40 | + } |
| 41 | + traces { |
| 42 | + enabled = true |
| 43 | + type = "MONTHLY" |
| 44 | + value = 127 |
| 45 | + } |
| 46 | +} |
| 47 | +``` |
| 48 | + |
| 49 | +<!-- schema generated by tfplugindocs --> |
| 50 | +## Schema |
| 51 | + |
| 52 | +### Optional |
| 53 | + |
| 54 | +- `events` (Block List, Max: 1) DDU pool settings for Events (see [below for nested schema](#nestedblock--events)) |
| 55 | +- `log_monitoring` (Block List, Max: 1) DDU pool settings for Log Monitoring (see [below for nested schema](#nestedblock--log_monitoring)) |
| 56 | +- `metrics` (Block List, Max: 1) DDU pool settings for Metrics (see [below for nested schema](#nestedblock--metrics)) |
| 57 | +- `serverless` (Block List, Max: 1) DDU pool settings for Serverless (see [below for nested schema](#nestedblock--serverless)) |
| 58 | +- `traces` (Block List, Max: 1) DDU pool settings for Traces (see [below for nested schema](#nestedblock--traces)) |
| 59 | + |
| 60 | +### Read-Only |
| 61 | + |
| 62 | +- `id` (String) The ID of this resource. |
| 63 | + |
| 64 | +<a id="nestedblock--events"></a> |
| 65 | +### Nested Schema for `events` |
| 66 | + |
| 67 | +Required: |
| 68 | + |
| 69 | +- `enabled` (Boolean) Is the limit configuration enabled |
| 70 | + |
| 71 | +Optional: |
| 72 | + |
| 73 | +- `type` (String) Type of the limit applied: MONTHLY or ANNUAL |
| 74 | +- `value` (Number) Value of the DDU limit applied for provided timerange |
| 75 | + |
| 76 | + |
| 77 | +<a id="nestedblock--log_monitoring"></a> |
| 78 | +### Nested Schema for `log_monitoring` |
| 79 | + |
| 80 | +Required: |
| 81 | + |
| 82 | +- `enabled` (Boolean) Is the limit configuration enabled |
| 83 | + |
| 84 | +Optional: |
| 85 | + |
| 86 | +- `type` (String) Type of the limit applied: MONTHLY or ANNUAL |
| 87 | +- `value` (Number) Value of the DDU limit applied for provided timerange |
| 88 | + |
| 89 | + |
| 90 | +<a id="nestedblock--metrics"></a> |
| 91 | +### Nested Schema for `metrics` |
| 92 | + |
| 93 | +Required: |
| 94 | + |
| 95 | +- `enabled` (Boolean) Is the limit configuration enabled |
| 96 | + |
| 97 | +Optional: |
| 98 | + |
| 99 | +- `type` (String) Type of the limit applied: MONTHLY or ANNUAL |
| 100 | +- `value` (Number) Value of the DDU limit applied for provided timerange |
| 101 | + |
| 102 | + |
| 103 | +<a id="nestedblock--serverless"></a> |
| 104 | +### Nested Schema for `serverless` |
| 105 | + |
| 106 | +Required: |
| 107 | + |
| 108 | +- `enabled` (Boolean) Is the limit configuration enabled |
| 109 | + |
| 110 | +Optional: |
| 111 | + |
| 112 | +- `type` (String) Type of the limit applied: MONTHLY or ANNUAL |
| 113 | +- `value` (Number) Value of the DDU limit applied for provided timerange |
| 114 | + |
| 115 | + |
| 116 | +<a id="nestedblock--traces"></a> |
| 117 | +### Nested Schema for `traces` |
| 118 | + |
| 119 | +Required: |
| 120 | + |
| 121 | +- `enabled` (Boolean) Is the limit configuration enabled |
| 122 | + |
| 123 | +Optional: |
| 124 | + |
| 125 | +- `type` (String) Type of the limit applied: MONTHLY or ANNUAL |
| 126 | +- `value` (Number) Value of the DDU limit applied for provided timerange |
0 commit comments