-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59b57ec
commit d616ae9
Showing
7 changed files
with
59 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
layout: "" | ||
page_title: dynatrace_business_events_capturing_variants Resource - terraform-provider-dynatrace" | ||
subcategory: "Business Events" | ||
description: |- | ||
The resource `dynatrace_business_events_capturing_variants` covers configuration for OneAgent business event capturing variants | ||
--- | ||
|
||
# dynatrace_business_events_capturing_variants (Resource) | ||
|
||
-> This resource requires the API token scopes **Read settings** (`settings.read`) and **Write settings** (`settings.write`) | ||
|
||
## Dynatrace Documentation | ||
|
||
- Business event capture - https://docs.dynatrace.com/docs/observe/business-analytics/ba-events-capturing | ||
|
||
- Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: `builtin:bizevents.http.capturing-variants`) | ||
|
||
## Export Example Usage | ||
|
||
- `terraform-provider-dynatrace -export dynatrace_business_events_capturing_variants` downloads all existing OneAgent business event capturing variants configuration | ||
|
||
The full documentation of the export feature is available [here](https://dt-url.net/h203qmc). | ||
|
||
## Resource Example Usage | ||
|
||
```terraform | ||
resource "dynatrace_business_events_capturing_variants" "#name#" { | ||
content_type_matcher = "EQUALS" | ||
content_type_value = "#name#" | ||
parser = "Text" | ||
scope = "environment" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `content_type_matcher` (String) Possible Values: `CONTAINS`, `ENDS_WITH`, `EQUALS`, `STARTS_WITH` | ||
- `content_type_value` (String) Content-type match value | ||
- `parser` (String) Possible Values: `JSON`, `Raw`, `Text`, `URLencoded`, `XML` | ||
|
||
### Optional | ||
|
||
- `insert_after` (String) Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched | ||
- `scope` (String) The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
|
||
package version | ||
|
||
const Current = "1.72.6" | ||
const Current = "1.73.0" |