published on Friday, Aug 14, 2026 by Pulumiverse
published on Friday, Aug 14, 2026 by Pulumiverse
This resource requires the API token scopes Read settings (
settings.read) and Write settings (settings.write)
This resource requires the OAuth scopes Read settings (
settings:objects:read) and Write settings (settings:objects:write)
Limitations
Warning If a resource is created using an API token or without setting
DYNATRACE_HTTP_OAUTH_PREFERENCE=true(when both are used), the settings object’s owner will remain empty.
An empty owner implies:
- The settings object becomes public, allowing other users with settings permissions to read and modify it.
- Changing the settings object’s permissions will have no effect, meaning the
dynatrace.SettingsPermissionsresource can’t alter its access.
When a settings object is created using platform credentials:
- The owner is set to the owner of the OAuth client or platform token.
- By default, the settings object is private; only the owner can read and modify it.
- Access modifiers can be managed using the
dynatrace.SettingsPermissionsresource.
We recommend using platform credentials to ensure a correct setup.
In case an API token is needed, we recommend setting DYNATRACE_HTTP_OAUTH_PREFERENCE=true.
Dynatrace Documentation
- OpenPipeline - https://docs.dynatrace.com/docs/platform/openpipeline
Export Example Usage
terraform-provider-dynatrace -export dynatrace.OpenpipelineV2BizeventsPipelinesdownloads all existing OpenPipeline definitions for bizevents pipelines
The full documentation of the export feature is available here.
Resource Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as dynatrace from "@pulumiverse/dynatrace";
const max_pipeline = new dynatrace.OpenpipelineV2BizeventsPipelines("max-pipeline", {
displayName: "Warning pipeline",
customId: "pipeline_Warning_pipeline_2773_tf_#name#",
metadataList: {
metadatas: [{
entryKey: "environment",
entryValue: "production",
}],
},
processing: {
processors: {
processors: [
{
type: "drop",
id: "processor_Drop_unnecessary_records_3802",
description: "Drop unnecessary records",
matcher: "not matchesPhrase(record.name, \"Warning\")",
enabled: true,
},
{
type: "fieldsAdd",
id: "processor_Add_warning_flag_5434",
description: "Add warning flag",
matcher: "matchesPhrase(record.name, \"Warning\")",
sampleData: `{
"record.name": "Warning record"
}`,
fieldsAdd: {
fields: {
fields: [{
name: "is_warning",
value: "true",
}],
},
},
enabled: true,
},
{
type: "fieldsRemove",
id: "processor_Remove_details_field_8539",
description: "Remove details field",
sampleData: `{
"record.name": "Warning",
"record.details": "some record details"
}`,
matcher: "isNotNull(record.details)",
fieldsRemove: {
fields: ["record.details"],
},
enabled: true,
},
{
type: "fieldsRename",
id: "processor_Rename_name_to_title_8530",
description: "Rename name to title",
sampleData: `{
"record.name": "Warning"
}`,
matcher: "true",
fieldsRename: {
fields: {
fields: [{
fromName: "record.name",
toName: "record.title",
}],
},
},
enabled: true,
},
{
type: "dql",
id: "processor_Combine_title_and_summary_to_name_8808",
description: "Combine title and summary to name",
sampleData: `{
"record.title": "Warning",
"record.summary": "Request failed"
}`,
matcher: "true",
dql: {
script: "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
},
enabled: true,
},
],
},
},
davis: {
processors: {
processors: [{
type: "davis",
id: "processor_Create_warning_event_8226",
description: "Create warning event",
matcher: "true",
davis: {
properties: {
properties: [
{
key: "event.type",
value: "CUSTOM_ALERT",
},
{
key: "event.name",
value: "Warning detected",
},
{
key: "event.description",
value: "Warning: {dims:record.summary}",
},
],
},
},
enabled: true,
}],
},
},
metricExtraction: {
processors: {
processors: [
{
type: "counterMetric",
id: "processor_Count_warning_events_6392",
description: "Count warnings",
matcher: "true",
counterMetric: {
metricKey: "warning.count",
dimensions: {
dimensions: [
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.cost.costcenter",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.cost.product",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.security_context",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "record.category",
destinationFieldName: "warning_category",
},
],
},
},
enabled: true,
},
{
type: "valueMetric",
id: "processor_Warning_timeout_1990",
description: "Warning timeout",
matcher: "true",
valueMetric: {
metricKey: "warning.timeout",
field: "recording.timeout_in_min",
defaultValue: "60",
dimensions: {
dimensions: [
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.cost.costcenter",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.cost.product",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.security_context",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "record.category",
destinationFieldName: "warning_category",
},
],
},
},
enabled: true,
},
],
},
},
securityContext: {
processors: {
processors: [
{
type: "securityContext",
id: "processor_Use_dt.security_context_if_set_1080",
description: "Use dt.security_context if set",
matcher: "isNotNull(dt.security_context)",
securityContext: {
value: {
type: "field",
field: {
sourceFieldName: "dt.security_context",
},
},
},
enabled: true,
},
{
type: "securityContext",
id: "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465",
description: "Assign warnings to ACME teams if no context set",
matcher: "isNull(dt.security_context)",
securityContext: {
value: {
type: "multiValueConstant",
multiValueConstants: [
"ACME1",
"ACME2",
],
},
},
enabled: true,
},
],
},
},
storage: {
processors: {
processors: [{
type: "bucketAssignment",
id: "processor_Add_to_default_bucket_5010",
description: "Add to default bucket",
matcher: "true",
bucketAssignment: {
bucketName: "default_events",
},
enabled: true,
}],
},
},
});
import pulumi
import pulumiverse_dynatrace as dynatrace
max_pipeline = dynatrace.OpenpipelineV2BizeventsPipelines("max-pipeline",
display_name="Warning pipeline",
custom_id="pipeline_Warning_pipeline_2773_tf_#name#",
metadata_list={
"metadatas": [{
"entry_key": "environment",
"entry_value": "production",
}],
},
processing={
"processors": {
"processors": [
{
"type": "drop",
"id": "processor_Drop_unnecessary_records_3802",
"description": "Drop unnecessary records",
"matcher": "not matchesPhrase(record.name, \"Warning\")",
"enabled": True,
},
{
"type": "fieldsAdd",
"id": "processor_Add_warning_flag_5434",
"description": "Add warning flag",
"matcher": "matchesPhrase(record.name, \"Warning\")",
"sample_data": """{
"record.name": "Warning record"
}""",
"fields_add": {
"fields": {
"fields": [{
"name": "is_warning",
"value": "true",
}],
},
},
"enabled": True,
},
{
"type": "fieldsRemove",
"id": "processor_Remove_details_field_8539",
"description": "Remove details field",
"sample_data": """{
"record.name": "Warning",
"record.details": "some record details"
}""",
"matcher": "isNotNull(record.details)",
"fields_remove": {
"fields": ["record.details"],
},
"enabled": True,
},
{
"type": "fieldsRename",
"id": "processor_Rename_name_to_title_8530",
"description": "Rename name to title",
"sample_data": """{
"record.name": "Warning"
}""",
"matcher": "true",
"fields_rename": {
"fields": {
"fields": [{
"from_name": "record.name",
"to_name": "record.title",
}],
},
},
"enabled": True,
},
{
"type": "dql",
"id": "processor_Combine_title_and_summary_to_name_8808",
"description": "Combine title and summary to name",
"sample_data": """{
"record.title": "Warning",
"record.summary": "Request failed"
}""",
"matcher": "true",
"dql": {
"script": "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
},
"enabled": True,
},
],
},
},
davis={
"processors": {
"processors": [{
"type": "davis",
"id": "processor_Create_warning_event_8226",
"description": "Create warning event",
"matcher": "true",
"davis": {
"properties": {
"properties": [
{
"key": "event.type",
"value": "CUSTOM_ALERT",
},
{
"key": "event.name",
"value": "Warning detected",
},
{
"key": "event.description",
"value": "Warning: {dims:record.summary}",
},
],
},
},
"enabled": True,
}],
},
},
metric_extraction={
"processors": {
"processors": [
{
"type": "counterMetric",
"id": "processor_Count_warning_events_6392",
"description": "Count warnings",
"matcher": "true",
"counter_metric": {
"metric_key": "warning.count",
"dimensions": {
"dimensions": [
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.cost.costcenter",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.cost.product",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.security_context",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "record.category",
"destination_field_name": "warning_category",
},
],
},
},
"enabled": True,
},
{
"type": "valueMetric",
"id": "processor_Warning_timeout_1990",
"description": "Warning timeout",
"matcher": "true",
"value_metric": {
"metric_key": "warning.timeout",
"field": "recording.timeout_in_min",
"default_value": "60",
"dimensions": {
"dimensions": [
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.cost.costcenter",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.cost.product",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.security_context",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "record.category",
"destination_field_name": "warning_category",
},
],
},
},
"enabled": True,
},
],
},
},
security_context={
"processors": {
"processors": [
{
"type": "securityContext",
"id": "processor_Use_dt.security_context_if_set_1080",
"description": "Use dt.security_context if set",
"matcher": "isNotNull(dt.security_context)",
"security_context": {
"value": {
"type": "field",
"field": {
"source_field_name": "dt.security_context",
},
},
},
"enabled": True,
},
{
"type": "securityContext",
"id": "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465",
"description": "Assign warnings to ACME teams if no context set",
"matcher": "isNull(dt.security_context)",
"security_context": {
"value": {
"type": "multiValueConstant",
"multi_value_constants": [
"ACME1",
"ACME2",
],
},
},
"enabled": True,
},
],
},
},
storage={
"processors": {
"processors": [{
"type": "bucketAssignment",
"id": "processor_Add_to_default_bucket_5010",
"description": "Add to default bucket",
"matcher": "true",
"bucket_assignment": {
"bucket_name": "default_events",
},
"enabled": True,
}],
},
})
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-dynatrace/sdk/go/dynatrace"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dynatrace.NewOpenpipelineV2BizeventsPipelines(ctx, "max-pipeline", &dynatrace.OpenpipelineV2BizeventsPipelinesArgs{
DisplayName: pulumi.String("Warning pipeline"),
CustomId: pulumi.String("pipeline_Warning_pipeline_2773_tf_#name#"),
MetadataList: &dynatrace.OpenpipelineV2BizeventsPipelinesMetadataListArgs{
Metadatas: dynatrace.OpenpipelineV2BizeventsPipelinesMetadataListMetadataArray{
&dynatrace.OpenpipelineV2BizeventsPipelinesMetadataListMetadataArgs{
EntryKey: pulumi.String("environment"),
EntryValue: pulumi.String("production"),
},
},
},
Processing: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingArgs{
Processors: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsArgs{
Processors: dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArray{
&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("drop"),
Id: pulumi.String("processor_Drop_unnecessary_records_3802"),
Description: pulumi.String("Drop unnecessary records"),
Matcher: pulumi.String("not matchesPhrase(record.name, \"Warning\")"),
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("fieldsAdd"),
Id: pulumi.String("processor_Add_warning_flag_5434"),
Description: pulumi.String("Add warning flag"),
Matcher: pulumi.String("matchesPhrase(record.name, \"Warning\")"),
SampleData: pulumi.String("{\n \"record.name\": \"Warning record\" \n}"),
FieldsAdd: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddArgs{
Fields: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs{
Fields: dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArray{
&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs{
Name: pulumi.String("is_warning"),
Value: pulumi.String("true"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("fieldsRemove"),
Id: pulumi.String("processor_Remove_details_field_8539"),
Description: pulumi.String("Remove details field"),
SampleData: pulumi.String("{\n \"record.name\": \"Warning\",\n \"record.details\": \"some record details\"\n}"),
Matcher: pulumi.String("isNotNull(record.details)"),
FieldsRemove: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs{
Fields: pulumi.StringArray{
pulumi.String("record.details"),
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("fieldsRename"),
Id: pulumi.String("processor_Rename_name_to_title_8530"),
Description: pulumi.String("Rename name to title"),
SampleData: pulumi.String("{\n \"record.name\": \"Warning\"\n}"),
Matcher: pulumi.String("true"),
FieldsRename: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameArgs{
Fields: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs{
Fields: dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArray{
&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs{
FromName: pulumi.String("record.name"),
ToName: pulumi.String("record.title"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("dql"),
Id: pulumi.String("processor_Combine_title_and_summary_to_name_8808"),
Description: pulumi.String("Combine title and summary to name"),
SampleData: pulumi.String("{\n \"record.title\": \"Warning\",\n \"record.summary\": \"Request failed\"\n}"),
Matcher: pulumi.String("true"),
Dql: &dynatrace.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDqlArgs{
Script: pulumi.String("fieldsAdd record.name = concat(record.title, \" - \", record.summary)"),
},
Enabled: pulumi.Bool(true),
},
},
},
},
Davis: &dynatrace.OpenpipelineV2BizeventsPipelinesDavisArgs{
Processors: &dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsArgs{
Processors: dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorArray{
&dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorArgs{
Type: pulumi.String("davis"),
Id: pulumi.String("processor_Create_warning_event_8226"),
Description: pulumi.String("Create warning event"),
Matcher: pulumi.String("true"),
Davis: &dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisArgs{
Properties: &dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesArgs{
Properties: dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArray{
&dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
Key: pulumi.String("event.type"),
Value: pulumi.String("CUSTOM_ALERT"),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
Key: pulumi.String("event.name"),
Value: pulumi.String("Warning detected"),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
Key: pulumi.String("event.description"),
Value: pulumi.String("Warning: {dims:record.summary}"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
MetricExtraction: &dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionArgs{
Processors: &dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsArgs{
Processors: dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArray{
&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs{
Type: pulumi.String("counterMetric"),
Id: pulumi.String("processor_Count_warning_events_6392"),
Description: pulumi.String("Count warnings"),
Matcher: pulumi.String("true"),
CounterMetric: &dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs{
MetricKey: pulumi.String("warning.count"),
Dimensions: &dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs{
Dimensions: dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArray{
&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.costcenter"),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.product"),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.security_context"),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("record.category"),
DestinationFieldName: pulumi.String("warning_category"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs{
Type: pulumi.String("valueMetric"),
Id: pulumi.String("processor_Warning_timeout_1990"),
Description: pulumi.String("Warning timeout"),
Matcher: pulumi.String("true"),
ValueMetric: &dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs{
MetricKey: pulumi.String("warning.timeout"),
Field: pulumi.String("recording.timeout_in_min"),
DefaultValue: pulumi.String("60"),
Dimensions: &dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs{
Dimensions: dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArray{
&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.costcenter"),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.product"),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.security_context"),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("record.category"),
DestinationFieldName: pulumi.String("warning_category"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
SecurityContext: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextArgs{
Processors: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsArgs{
Processors: dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArray{
&dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs{
Type: pulumi.String("securityContext"),
Id: pulumi.String("processor_Use_dt.security_context_if_set_1080"),
Description: pulumi.String("Use dt.security_context if set"),
Matcher: pulumi.String("isNotNull(dt.security_context)"),
SecurityContext: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
Value: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
Type: pulumi.String("field"),
Field: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs{
SourceFieldName: pulumi.String("dt.security_context"),
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs{
Type: pulumi.String("securityContext"),
Id: pulumi.String("processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465"),
Description: pulumi.String("Assign warnings to ACME teams if no context set"),
Matcher: pulumi.String("isNull(dt.security_context)"),
SecurityContext: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
Value: &dynatrace.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
Type: pulumi.String("multiValueConstant"),
MultiValueConstants: pulumi.StringArray{
pulumi.String("ACME1"),
pulumi.String("ACME2"),
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
Storage: &dynatrace.OpenpipelineV2BizeventsPipelinesStorageArgs{
Processors: &dynatrace.OpenpipelineV2BizeventsPipelinesStorageProcessorsArgs{
Processors: dynatrace.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorArray{
&dynatrace.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorArgs{
Type: pulumi.String("bucketAssignment"),
Id: pulumi.String("processor_Add_to_default_bucket_5010"),
Description: pulumi.String("Add to default bucket"),
Matcher: pulumi.String("true"),
BucketAssignment: &dynatrace.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorBucketAssignmentArgs{
BucketName: pulumi.String("default_events"),
},
Enabled: pulumi.Bool(true),
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dynatrace = Pulumiverse.Dynatrace;
return await Deployment.RunAsync(() =>
{
var max_pipeline = new Dynatrace.OpenpipelineV2BizeventsPipelines("max-pipeline", new()
{
DisplayName = "Warning pipeline",
CustomId = "pipeline_Warning_pipeline_2773_tf_#name#",
MetadataList = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetadataListArgs
{
Metadatas = new[]
{
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetadataListMetadataArgs
{
EntryKey = "environment",
EntryValue = "production",
},
},
},
Processing = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs
{
Type = "drop",
Id = "processor_Drop_unnecessary_records_3802",
Description = "Drop unnecessary records",
Matcher = "not matchesPhrase(record.name, \"Warning\")",
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs
{
Type = "fieldsAdd",
Id = "processor_Add_warning_flag_5434",
Description = "Add warning flag",
Matcher = "matchesPhrase(record.name, \"Warning\")",
SampleData = @"{
""record.name"": ""Warning record""
}",
FieldsAdd = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddArgs
{
Fields = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs
{
Fields = new[]
{
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
{
Name = "is_warning",
Value = "true",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs
{
Type = "fieldsRemove",
Id = "processor_Remove_details_field_8539",
Description = "Remove details field",
SampleData = @"{
""record.name"": ""Warning"",
""record.details"": ""some record details""
}",
Matcher = "isNotNull(record.details)",
FieldsRemove = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs
{
Fields = new[]
{
"record.details",
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs
{
Type = "fieldsRename",
Id = "processor_Rename_name_to_title_8530",
Description = "Rename name to title",
SampleData = @"{
""record.name"": ""Warning""
}",
Matcher = "true",
FieldsRename = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameArgs
{
Fields = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs
{
Fields = new[]
{
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
{
FromName = "record.name",
ToName = "record.title",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs
{
Type = "dql",
Id = "processor_Combine_title_and_summary_to_name_8808",
Description = "Combine title and summary to name",
SampleData = @"{
""record.title"": ""Warning"",
""record.summary"": ""Request failed""
}",
Matcher = "true",
Dql = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDqlArgs
{
Script = "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
},
Enabled = true,
},
},
},
},
Davis = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorArgs
{
Type = "davis",
Id = "processor_Create_warning_event_8226",
Description = "Create warning event",
Matcher = "true",
Davis = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisArgs
{
Properties = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesArgs
{
Properties = new[]
{
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
{
Key = "event.type",
Value = "CUSTOM_ALERT",
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
{
Key = "event.name",
Value = "Warning detected",
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
{
Key = "event.description",
Value = "Warning: {dims:record.summary}",
},
},
},
},
Enabled = true,
},
},
},
},
MetricExtraction = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs
{
Type = "counterMetric",
Id = "processor_Count_warning_events_6392",
Description = "Count warnings",
Matcher = "true",
CounterMetric = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs
{
MetricKey = "warning.count",
Dimensions = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs
{
Dimensions = new[]
{
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.costcenter",
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.product",
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.security_context",
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "record.category",
DestinationFieldName = "warning_category",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs
{
Type = "valueMetric",
Id = "processor_Warning_timeout_1990",
Description = "Warning timeout",
Matcher = "true",
ValueMetric = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs
{
MetricKey = "warning.timeout",
Field = "recording.timeout_in_min",
DefaultValue = "60",
Dimensions = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs
{
Dimensions = new[]
{
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.costcenter",
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.product",
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.security_context",
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "record.category",
DestinationFieldName = "warning_category",
},
},
},
},
Enabled = true,
},
},
},
},
SecurityContext = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs
{
Type = "securityContext",
Id = "processor_Use_dt.security_context_if_set_1080",
Description = "Use dt.security_context if set",
Matcher = "isNotNull(dt.security_context)",
SecurityContext = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
{
Value = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
{
Type = "field",
Field = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs
{
SourceFieldName = "dt.security_context",
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs
{
Type = "securityContext",
Id = "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465",
Description = "Assign warnings to ACME teams if no context set",
Matcher = "isNull(dt.security_context)",
SecurityContext = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
{
Value = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
{
Type = "multiValueConstant",
MultiValueConstants = new[]
{
"ACME1",
"ACME2",
},
},
},
Enabled = true,
},
},
},
},
Storage = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesStorageArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesStorageProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorArgs
{
Type = "bucketAssignment",
Id = "processor_Add_to_default_bucket_5010",
Description = "Add to default bucket",
Matcher = "true",
BucketAssignment = new Dynatrace.Inputs.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorBucketAssignmentArgs
{
BucketName = "default_events",
},
Enabled = true,
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.OpenpipelineV2BizeventsPipelines;
import com.pulumi.dynatrace.OpenpipelineV2BizeventsPipelinesArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetadataListArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetadataListMetadataArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDqlArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesDavisArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesSecurityContextArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesStorageArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesStorageProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorBucketAssignmentArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var max_pipeline = new OpenpipelineV2BizeventsPipelines("max-pipeline", OpenpipelineV2BizeventsPipelinesArgs.builder()
.displayName("Warning pipeline")
.customId("pipeline_Warning_pipeline_2773_tf_#name#")
.metadataList(OpenpipelineV2BizeventsPipelinesMetadataListArgs.builder()
.metadatas(OpenpipelineV2BizeventsPipelinesMetadataListMetadataArgs.builder()
.entryKey("environment")
.entryValue("production")
.build())
.build())
.processing(OpenpipelineV2BizeventsPipelinesProcessingArgs.builder()
.processors(OpenpipelineV2BizeventsPipelinesProcessingProcessorsArgs.builder()
.processors(
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("drop")
.id("processor_Drop_unnecessary_records_3802")
.description("Drop unnecessary records")
.matcher("not matchesPhrase(record.name, \"Warning\")")
.enabled(true)
.build(),
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsAdd")
.id("processor_Add_warning_flag_5434")
.description("Add warning flag")
.matcher("matchesPhrase(record.name, \"Warning\")")
.sampleData("""
{
"record.name": "Warning record"
} """)
.fieldsAdd(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddArgs.builder()
.fields(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs.builder()
.fields(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs.builder()
.name("is_warning")
.value("true")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsRemove")
.id("processor_Remove_details_field_8539")
.description("Remove details field")
.sampleData("""
{
"record.name": "Warning",
"record.details": "some record details"
} """)
.matcher("isNotNull(record.details)")
.fieldsRemove(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs.builder()
.fields("record.details")
.build())
.enabled(true)
.build(),
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsRename")
.id("processor_Rename_name_to_title_8530")
.description("Rename name to title")
.sampleData("""
{
"record.name": "Warning"
} """)
.matcher("true")
.fieldsRename(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameArgs.builder()
.fields(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs.builder()
.fields(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs.builder()
.fromName("record.name")
.toName("record.title")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("dql")
.id("processor_Combine_title_and_summary_to_name_8808")
.description("Combine title and summary to name")
.sampleData("""
{
"record.title": "Warning",
"record.summary": "Request failed"
} """)
.matcher("true")
.dql(OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDqlArgs.builder()
.script("fieldsAdd record.name = concat(record.title, \" - \", record.summary)")
.build())
.enabled(true)
.build())
.build())
.build())
.davis(OpenpipelineV2BizeventsPipelinesDavisArgs.builder()
.processors(OpenpipelineV2BizeventsPipelinesDavisProcessorsArgs.builder()
.processors(OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorArgs.builder()
.type("davis")
.id("processor_Create_warning_event_8226")
.description("Create warning event")
.matcher("true")
.davis(OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisArgs.builder()
.properties(OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesArgs.builder()
.properties(
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
.key("event.type")
.value("CUSTOM_ALERT")
.build(),
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
.key("event.name")
.value("Warning detected")
.build(),
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
.key("event.description")
.value("Warning: {dims:record.summary}")
.build())
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.metricExtraction(OpenpipelineV2BizeventsPipelinesMetricExtractionArgs.builder()
.processors(OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsArgs.builder()
.processors(
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs.builder()
.type("counterMetric")
.id("processor_Count_warning_events_6392")
.description("Count warnings")
.matcher("true")
.counterMetric(OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs.builder()
.metricKey("warning.count")
.dimensions(OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs.builder()
.dimensions(
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.costcenter")
.build(),
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.product")
.build(),
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.security_context")
.build(),
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("record.category")
.destinationFieldName("warning_category")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs.builder()
.type("valueMetric")
.id("processor_Warning_timeout_1990")
.description("Warning timeout")
.matcher("true")
.valueMetric(OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs.builder()
.metricKey("warning.timeout")
.field("recording.timeout_in_min")
.defaultValue("60")
.dimensions(OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs.builder()
.dimensions(
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.costcenter")
.build(),
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.product")
.build(),
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.security_context")
.build(),
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("record.category")
.destinationFieldName("warning_category")
.build())
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.securityContext(OpenpipelineV2BizeventsPipelinesSecurityContextArgs.builder()
.processors(OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsArgs.builder()
.processors(
OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs.builder()
.type("securityContext")
.id("processor_Use_dt.security_context_if_set_1080")
.description("Use dt.security_context if set")
.matcher("isNotNull(dt.security_context)")
.securityContext(OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
.value(OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
.type("field")
.field(OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs.builder()
.sourceFieldName("dt.security_context")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorArgs.builder()
.type("securityContext")
.id("processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465")
.description("Assign warnings to ACME teams if no context set")
.matcher("isNull(dt.security_context)")
.securityContext(OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
.value(OpenpipelineV2BizeventsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
.type("multiValueConstant")
.multiValueConstants(
"ACME1",
"ACME2")
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.storage(OpenpipelineV2BizeventsPipelinesStorageArgs.builder()
.processors(OpenpipelineV2BizeventsPipelinesStorageProcessorsArgs.builder()
.processors(OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorArgs.builder()
.type("bucketAssignment")
.id("processor_Add_to_default_bucket_5010")
.description("Add to default bucket")
.matcher("true")
.bucketAssignment(OpenpipelineV2BizeventsPipelinesStorageProcessorsProcessorBucketAssignmentArgs.builder()
.bucketName("default_events")
.build())
.enabled(true)
.build())
.build())
.build())
.build());
}
}
resources:
max-pipeline:
type: dynatrace:OpenpipelineV2BizeventsPipelines
properties:
displayName: Warning pipeline
customId: pipeline_Warning_pipeline_2773_tf_#name#
metadataList:
metadatas:
- entryKey: environment
entryValue: production
processing:
processors:
processors:
- type: drop
id: processor_Drop_unnecessary_records_3802
description: Drop unnecessary records
matcher: not matchesPhrase(record.name, "Warning")
enabled: true
- type: fieldsAdd
id: processor_Add_warning_flag_5434
description: Add warning flag
matcher: matchesPhrase(record.name, "Warning")
sampleData: "{\n \"record.name\": \"Warning record\" \n}"
fieldsAdd:
fields:
fields:
- name: is_warning
value: 'true'
enabled: true
- type: fieldsRemove
id: processor_Remove_details_field_8539
description: Remove details field
sampleData: |-
{
"record.name": "Warning",
"record.details": "some record details"
}
matcher: isNotNull(record.details)
fieldsRemove:
fields:
- record.details
enabled: true
- type: fieldsRename
id: processor_Rename_name_to_title_8530
description: Rename name to title
sampleData: |-
{
"record.name": "Warning"
}
matcher: 'true'
fieldsRename:
fields:
fields:
- fromName: record.name
toName: record.title
enabled: true
- type: dql
id: processor_Combine_title_and_summary_to_name_8808
description: Combine title and summary to name
sampleData: |-
{
"record.title": "Warning",
"record.summary": "Request failed"
}
matcher: 'true'
dql:
script: fieldsAdd record.name = concat(record.title, " - ", record.summary)
enabled: true
davis:
processors:
processors:
- type: davis
id: processor_Create_warning_event_8226
description: Create warning event
matcher: 'true'
davis:
properties:
properties:
- key: event.type
value: CUSTOM_ALERT
- key: event.name
value: Warning detected
- key: event.description
value: 'Warning: {dims:record.summary}'
enabled: true
metricExtraction:
processors:
processors:
- type: counterMetric
id: processor_Count_warning_events_6392
description: Count warnings
matcher: 'true'
counterMetric:
metricKey: warning.count
dimensions:
dimensions:
- extractionType: field
strategy: equals
sourceFieldName: dt.cost.costcenter
- extractionType: field
strategy: equals
sourceFieldName: dt.cost.product
- extractionType: field
strategy: equals
sourceFieldName: dt.security_context
- extractionType: field
strategy: equals
sourceFieldName: record.category
destinationFieldName: warning_category
enabled: true
- type: valueMetric
id: processor_Warning_timeout_1990
description: Warning timeout
matcher: 'true'
valueMetric:
metricKey: warning.timeout
field: recording.timeout_in_min
defaultValue: 60
dimensions:
dimensions:
- extractionType: field
strategy: equals
sourceFieldName: dt.cost.costcenter
- extractionType: field
strategy: equals
sourceFieldName: dt.cost.product
- extractionType: field
strategy: equals
sourceFieldName: dt.security_context
- extractionType: field
strategy: equals
sourceFieldName: record.category
destinationFieldName: warning_category
enabled: true
securityContext:
processors:
processors:
- type: securityContext
id: processor_Use_dt.security_context_if_set_1080
description: Use dt.security_context if set
matcher: isNotNull(dt.security_context)
securityContext:
value:
type: field
field:
sourceFieldName: dt.security_context
enabled: true
- type: securityContext
id: processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465
description: Assign warnings to ACME teams if no context set
matcher: isNull(dt.security_context)
securityContext:
value:
type: multiValueConstant
multiValueConstants:
- ACME1
- ACME2
enabled: true
storage:
processors:
processors:
- type: bucketAssignment
id: processor_Add_to_default_bucket_5010
description: Add to default bucket
matcher: 'true'
bucketAssignment:
bucketName: default_events
enabled: true
pulumi {
required_providers {
dynatrace = {
source = "pulumi/dynatrace"
}
}
}
resource "dynatrace_openpipelinev2bizeventspipelines" "max-pipeline" {
display_name = "Warning pipeline"
custom_id = "pipeline_Warning_pipeline_2773_tf_#name#"
metadata_list = {
metadatas = [{
"entryKey" = "environment"
"entryValue" = "production"
}]
}
processing = {
processors = {
processors = [{
"type" = "drop"
"id" = "processor_Drop_unnecessary_records_3802"
"description" = "Drop unnecessary records"
"matcher" = "not matchesPhrase(record.name, \"Warning\")"
"enabled" = true
}, {
"type" = "fieldsAdd"
"id" = "processor_Add_warning_flag_5434"
"description" = "Add warning flag"
"matcher" = "matchesPhrase(record.name, \"Warning\")"
"sampleData" = "{\n \"record.name\": \"Warning record\" \n}"
"fieldsAdd" = {
"fields" = {
"fields" = [{
"name" = "is_warning"
"value" = "true"
}]
}
}
"enabled" = true
}, {
"type" = "fieldsRemove"
"id" = "processor_Remove_details_field_8539"
"description" = "Remove details field"
"sampleData" = "{\n \"record.name\": \"Warning\",\n \"record.details\": \"some record details\"\n}"
"matcher" = "isNotNull(record.details)"
"fieldsRemove" = {
"fields" = ["record.details"]
}
"enabled" = true
}, {
"type" = "fieldsRename"
"id" = "processor_Rename_name_to_title_8530"
"description" = "Rename name to title"
"sampleData" = "{\n \"record.name\": \"Warning\"\n}"
"matcher" = "true"
"fieldsRename" = {
"fields" = {
"fields" = [{
"fromName" = "record.name"
"toName" = "record.title"
}]
}
}
"enabled" = true
}, {
"type" = "dql"
"id" = "processor_Combine_title_and_summary_to_name_8808"
"description" = "Combine title and summary to name"
"sampleData" = "{\n \"record.title\": \"Warning\",\n \"record.summary\": \"Request failed\"\n}"
"matcher" = "true"
"dql" = {
"script" = "fieldsAdd record.name = concat(record.title, \" - \", record.summary)"
}
"enabled" = true
}]
}
}
davis = {
processors = {
processors = [{
"type" = "davis"
"id" = "processor_Create_warning_event_8226"
"description" = "Create warning event"
"matcher" = "true"
"davis" = {
"properties" = {
"properties" = [{
"key" = "event.type"
"value" = "CUSTOM_ALERT"
}, {
"key" = "event.name"
"value" = "Warning detected"
}, {
"key" = "event.description"
"value" = "Warning: {dims:record.summary}"
}]
}
}
"enabled" = true
}]
}
}
metric_extraction = {
processors = {
processors = [{
"type" = "counterMetric"
"id" = "processor_Count_warning_events_6392"
"description" = "Count warnings"
"matcher" = "true"
"counterMetric" = {
"metricKey" = "warning.count"
"dimensions" = {
"dimensions" = [{
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.cost.costcenter"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.cost.product"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.security_context"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "record.category"
"destinationFieldName" = "warning_category"
}]
}
}
"enabled" = true
}, {
"type" = "valueMetric"
"id" = "processor_Warning_timeout_1990"
"description" = "Warning timeout"
"matcher" = "true"
"valueMetric" = {
"metricKey" = "warning.timeout"
"field" = "recording.timeout_in_min"
"defaultValue" = 60
"dimensions" = {
"dimensions" = [{
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.cost.costcenter"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.cost.product"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.security_context"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "record.category"
"destinationFieldName" = "warning_category"
}]
}
}
"enabled" = true
}]
}
}
security_context = {
processors = {
processors = [{
"type" = "securityContext"
"id" = "processor_Use_dt.security_context_if_set_1080"
"description" = "Use dt.security_context if set"
"matcher" = "isNotNull(dt.security_context)"
"securityContext" = {
"value" = {
"type" = "field"
"field" = {
"sourceFieldName" = "dt.security_context"
}
}
}
"enabled" = true
}, {
"type" = "securityContext"
"id" = "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465"
"description" = "Assign warnings to ACME teams if no context set"
"matcher" = "isNull(dt.security_context)"
"securityContext" = {
"value" = {
"type" = "multiValueConstant"
"multiValueConstants" = ["ACME1", "ACME2"]
}
}
"enabled" = true
}]
}
}
storage = {
processors = {
processors = [{
"type" = "bucketAssignment"
"id" = "processor_Add_to_default_bucket_5010"
"description" = "Add to default bucket"
"matcher" = "true"
"bucketAssignment" = {
"bucketName" = "default_events"
}
"enabled" = true
}]
}
}
}
Create OpenpipelineV2BizeventsPipelines Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OpenpipelineV2BizeventsPipelines(name: string, args: OpenpipelineV2BizeventsPipelinesArgs, opts?: CustomResourceOptions);@overload
def OpenpipelineV2BizeventsPipelines(resource_name: str,
args: OpenpipelineV2BizeventsPipelinesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OpenpipelineV2BizeventsPipelines(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
custom_id: Optional[str] = None,
metadata_list: Optional[OpenpipelineV2BizeventsPipelinesMetadataListArgs] = None,
davis: Optional[OpenpipelineV2BizeventsPipelinesDavisArgs] = None,
data_extraction: Optional[OpenpipelineV2BizeventsPipelinesDataExtractionArgs] = None,
group_role: Optional[str] = None,
cost_allocation: Optional[OpenpipelineV2BizeventsPipelinesCostAllocationArgs] = None,
metric_extraction: Optional[OpenpipelineV2BizeventsPipelinesMetricExtractionArgs] = None,
processing: Optional[OpenpipelineV2BizeventsPipelinesProcessingArgs] = None,
product_allocation: Optional[OpenpipelineV2BizeventsPipelinesProductAllocationArgs] = None,
routing: Optional[str] = None,
security_context: Optional[OpenpipelineV2BizeventsPipelinesSecurityContextArgs] = None,
smartscape_edge_extraction: Optional[OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtractionArgs] = None,
smartscape_node_extraction: Optional[OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtractionArgs] = None,
storage: Optional[OpenpipelineV2BizeventsPipelinesStorageArgs] = None)func NewOpenpipelineV2BizeventsPipelines(ctx *Context, name string, args OpenpipelineV2BizeventsPipelinesArgs, opts ...ResourceOption) (*OpenpipelineV2BizeventsPipelines, error)public OpenpipelineV2BizeventsPipelines(string name, OpenpipelineV2BizeventsPipelinesArgs args, CustomResourceOptions? opts = null)
public OpenpipelineV2BizeventsPipelines(String name, OpenpipelineV2BizeventsPipelinesArgs args)
public OpenpipelineV2BizeventsPipelines(String name, OpenpipelineV2BizeventsPipelinesArgs args, CustomResourceOptions options)
type: dynatrace:OpenpipelineV2BizeventsPipelines
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "dynatrace_openpipeline_v2_bizevents_pipelines" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args OpenpipelineV2BizeventsPipelinesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args OpenpipelineV2BizeventsPipelinesArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args OpenpipelineV2BizeventsPipelinesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OpenpipelineV2BizeventsPipelinesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OpenpipelineV2BizeventsPipelinesArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
OpenpipelineV2BizeventsPipelines Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The OpenpipelineV2BizeventsPipelines resource accepts the following input properties:
- Custom
Id string - Custom pipeline id
- Display
Name string - Display name
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation - Cost allocation stage
- Data
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction - Data extraction stage
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis - Davis event extraction stage
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metadata List - Pipeline metadata list
- Metric
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction - Metrics extraction stage
- Processing
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing - Processing stage
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Security Context - Security context stage
- Smartscape
Edge Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- Smartscape
Node Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- Storage
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Storage - Storage stage
- Custom
Id string - Custom pipeline id
- Display
Name string - Display name
- Cost
Allocation OpenpipelineV2Bizevents Pipelines Cost Allocation Args - Cost allocation stage
- Data
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction Args - Data extraction stage
- Davis
Openpipeline
V2Bizevents Pipelines Davis Args - Davis event extraction stage
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List OpenpipelineV2Bizevents Pipelines Metadata List Args - Pipeline metadata list
- Metric
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Args - Metrics extraction stage
- Processing
Openpipeline
V2Bizevents Pipelines Processing Args - Processing stage
- Product
Allocation OpenpipelineV2Bizevents Pipelines Product Allocation Args - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context OpenpipelineV2Bizevents Pipelines Security Context Args - Security context stage
- Smartscape
Edge OpenpipelineExtraction V2Bizevents Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- Smartscape
Node OpenpipelineExtraction V2Bizevents Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- Storage
Openpipeline
V2Bizevents Pipelines Storage Args - Storage stage
- custom_
id string - Custom pipeline id
- display_
name string - Display name
- cost_
allocation object - Cost allocation stage
- data_
extraction object - Data extraction stage
- davis object
- Davis event extraction stage
- group_
role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list object - Pipeline metadata list
- metric_
extraction object - Metrics extraction stage
- processing object
- Processing stage
- product_
allocation object - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security_
context object - Security context stage
- smartscape_
edge_ objectextraction - Smartscape edge extraction stage
- smartscape_
node_ objectextraction - Smartscape node extraction stage
- storage object
- Storage stage
- custom
Id String - Custom pipeline id
- display
Name String - Display name
- cost
Allocation OpenpipelineV2Bizevents Pipelines Cost Allocation - Cost allocation stage
- data
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Bizevents Pipelines Davis - Davis event extraction stage
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Bizevents Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Bizevents Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Bizevents Pipelines Product Allocation - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Bizevents Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Bizevents Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Bizevents Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Bizevents Pipelines Storage - Storage stage
- custom
Id string - Custom pipeline id
- display
Name string - Display name
- cost
Allocation OpenpipelineV2Bizevents Pipelines Cost Allocation - Cost allocation stage
- data
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Bizevents Pipelines Davis - Davis event extraction stage
- group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Bizevents Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Bizevents Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Bizevents Pipelines Product Allocation - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Bizevents Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Bizevents Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Bizevents Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Bizevents Pipelines Storage - Storage stage
- custom_
id str - Custom pipeline id
- display_
name str - Display name
- cost_
allocation OpenpipelineV2Bizevents Pipelines Cost Allocation Args - Cost allocation stage
- data_
extraction OpenpipelineV2Bizevents Pipelines Data Extraction Args - Data extraction stage
- davis
Openpipeline
V2Bizevents Pipelines Davis Args - Davis event extraction stage
- group_
role str - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list OpenpipelineV2Bizevents Pipelines Metadata List Args - Pipeline metadata list
- metric_
extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Args - Metrics extraction stage
- processing
Openpipeline
V2Bizevents Pipelines Processing Args - Processing stage
- product_
allocation OpenpipelineV2Bizevents Pipelines Product Allocation Args - Product allocation stage
- routing str
- Routing. Possible values:
notRoutable,routable - security_
context OpenpipelineV2Bizevents Pipelines Security Context Args - Security context stage
- smartscape_
edge_ Openpipelineextraction V2Bizevents Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- smartscape_
node_ Openpipelineextraction V2Bizevents Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- storage
Openpipeline
V2Bizevents Pipelines Storage Args - Storage stage
- custom
Id String - Custom pipeline id
- display
Name String - Display name
- cost
Allocation Property Map - Cost allocation stage
- data
Extraction Property Map - Data extraction stage
- davis Property Map
- Davis event extraction stage
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List Property Map - Pipeline metadata list
- metric
Extraction Property Map - Metrics extraction stage
- processing Property Map
- Processing stage
- product
Allocation Property Map - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context Property Map - Security context stage
- smartscape
Edge Property MapExtraction - Smartscape edge extraction stage
- smartscape
Node Property MapExtraction - Smartscape node extraction stage
- storage Property Map
- Storage stage
Outputs
All input properties are implicitly available as output properties. Additionally, the OpenpipelineV2BizeventsPipelines resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing OpenpipelineV2BizeventsPipelines Resource
Get an existing OpenpipelineV2BizeventsPipelines resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: OpenpipelineV2BizeventsPipelinesState, opts?: CustomResourceOptions): OpenpipelineV2BizeventsPipelines@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cost_allocation: Optional[OpenpipelineV2BizeventsPipelinesCostAllocationArgs] = None,
custom_id: Optional[str] = None,
data_extraction: Optional[OpenpipelineV2BizeventsPipelinesDataExtractionArgs] = None,
davis: Optional[OpenpipelineV2BizeventsPipelinesDavisArgs] = None,
display_name: Optional[str] = None,
group_role: Optional[str] = None,
metadata_list: Optional[OpenpipelineV2BizeventsPipelinesMetadataListArgs] = None,
metric_extraction: Optional[OpenpipelineV2BizeventsPipelinesMetricExtractionArgs] = None,
processing: Optional[OpenpipelineV2BizeventsPipelinesProcessingArgs] = None,
product_allocation: Optional[OpenpipelineV2BizeventsPipelinesProductAllocationArgs] = None,
routing: Optional[str] = None,
security_context: Optional[OpenpipelineV2BizeventsPipelinesSecurityContextArgs] = None,
smartscape_edge_extraction: Optional[OpenpipelineV2BizeventsPipelinesSmartscapeEdgeExtractionArgs] = None,
smartscape_node_extraction: Optional[OpenpipelineV2BizeventsPipelinesSmartscapeNodeExtractionArgs] = None,
storage: Optional[OpenpipelineV2BizeventsPipelinesStorageArgs] = None) -> OpenpipelineV2BizeventsPipelinesfunc GetOpenpipelineV2BizeventsPipelines(ctx *Context, name string, id IDInput, state *OpenpipelineV2BizeventsPipelinesState, opts ...ResourceOption) (*OpenpipelineV2BizeventsPipelines, error)public static OpenpipelineV2BizeventsPipelines Get(string name, Input<string> id, OpenpipelineV2BizeventsPipelinesState? state, CustomResourceOptions? opts = null)public static OpenpipelineV2BizeventsPipelines get(String name, Output<String> id, OpenpipelineV2BizeventsPipelinesState state, CustomResourceOptions options)resources: _: type: dynatrace:OpenpipelineV2BizeventsPipelines get: id: ${id}import {
to = dynatrace_openpipeline_v2_bizevents_pipelines.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation - Cost allocation stage
- Custom
Id string - Custom pipeline id
- Data
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction - Data extraction stage
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis - Davis event extraction stage
- Display
Name string - Display name
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metadata List - Pipeline metadata list
- Metric
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction - Metrics extraction stage
- Processing
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing - Processing stage
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Security Context - Security context stage
- Smartscape
Edge Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- Smartscape
Node Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- Storage
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Storage - Storage stage
- Cost
Allocation OpenpipelineV2Bizevents Pipelines Cost Allocation Args - Cost allocation stage
- Custom
Id string - Custom pipeline id
- Data
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction Args - Data extraction stage
- Davis
Openpipeline
V2Bizevents Pipelines Davis Args - Davis event extraction stage
- Display
Name string - Display name
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List OpenpipelineV2Bizevents Pipelines Metadata List Args - Pipeline metadata list
- Metric
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Args - Metrics extraction stage
- Processing
Openpipeline
V2Bizevents Pipelines Processing Args - Processing stage
- Product
Allocation OpenpipelineV2Bizevents Pipelines Product Allocation Args - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context OpenpipelineV2Bizevents Pipelines Security Context Args - Security context stage
- Smartscape
Edge OpenpipelineExtraction V2Bizevents Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- Smartscape
Node OpenpipelineExtraction V2Bizevents Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- Storage
Openpipeline
V2Bizevents Pipelines Storage Args - Storage stage
- cost_
allocation object - Cost allocation stage
- custom_
id string - Custom pipeline id
- data_
extraction object - Data extraction stage
- davis object
- Davis event extraction stage
- display_
name string - Display name
- group_
role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list object - Pipeline metadata list
- metric_
extraction object - Metrics extraction stage
- processing object
- Processing stage
- product_
allocation object - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security_
context object - Security context stage
- smartscape_
edge_ objectextraction - Smartscape edge extraction stage
- smartscape_
node_ objectextraction - Smartscape node extraction stage
- storage object
- Storage stage
- cost
Allocation OpenpipelineV2Bizevents Pipelines Cost Allocation - Cost allocation stage
- custom
Id String - Custom pipeline id
- data
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Bizevents Pipelines Davis - Davis event extraction stage
- display
Name String - Display name
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Bizevents Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Bizevents Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Bizevents Pipelines Product Allocation - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Bizevents Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Bizevents Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Bizevents Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Bizevents Pipelines Storage - Storage stage
- cost
Allocation OpenpipelineV2Bizevents Pipelines Cost Allocation - Cost allocation stage
- custom
Id string - Custom pipeline id
- data
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Bizevents Pipelines Davis - Davis event extraction stage
- display
Name string - Display name
- group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Bizevents Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Bizevents Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Bizevents Pipelines Product Allocation - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Bizevents Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Bizevents Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Bizevents Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Bizevents Pipelines Storage - Storage stage
- cost_
allocation OpenpipelineV2Bizevents Pipelines Cost Allocation Args - Cost allocation stage
- custom_
id str - Custom pipeline id
- data_
extraction OpenpipelineV2Bizevents Pipelines Data Extraction Args - Data extraction stage
- davis
Openpipeline
V2Bizevents Pipelines Davis Args - Davis event extraction stage
- display_
name str - Display name
- group_
role str - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list OpenpipelineV2Bizevents Pipelines Metadata List Args - Pipeline metadata list
- metric_
extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Args - Metrics extraction stage
- processing
Openpipeline
V2Bizevents Pipelines Processing Args - Processing stage
- product_
allocation OpenpipelineV2Bizevents Pipelines Product Allocation Args - Product allocation stage
- routing str
- Routing. Possible values:
notRoutable,routable - security_
context OpenpipelineV2Bizevents Pipelines Security Context Args - Security context stage
- smartscape_
edge_ Openpipelineextraction V2Bizevents Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- smartscape_
node_ Openpipelineextraction V2Bizevents Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- storage
Openpipeline
V2Bizevents Pipelines Storage Args - Storage stage
- cost
Allocation Property Map - Cost allocation stage
- custom
Id String - Custom pipeline id
- data
Extraction Property Map - Data extraction stage
- davis Property Map
- Davis event extraction stage
- display
Name String - Display name
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List Property Map - Pipeline metadata list
- metric
Extraction Property Map - Metrics extraction stage
- processing Property Map
- Processing stage
- product
Allocation Property Map - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context Property Map - Security context stage
- smartscape
Edge Property MapExtraction - Smartscape edge extraction stage
- smartscape
Node Property MapExtraction - Smartscape node extraction stage
- storage Property Map
- Storage stage
Supporting Types
OpenpipelineV2BizeventsPipelinesCostAllocation, OpenpipelineV2BizeventsPipelinesCostAllocationArgs
- Processors
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors - Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors - Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2BizeventsPipelinesCostAllocationProcessors, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessor, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizevent, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocation, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetric, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavis, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavisProperties, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDql, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRename, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorGeoLookup, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorInlineLookup, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocation, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContext, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorTechnology, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetric, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Cost Allocation Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Cost Allocation Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDataExtraction, OpenpipelineV2BizeventsPipelinesDataExtractionArgs
- Processors
Openpipeline
V2Bizevents Pipelines Data Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Data Extraction Processors - Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Data Extraction Processors - Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Data Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2BizeventsPipelinesDataExtractionProcessors, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessor, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizevent, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocation, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetric, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavis, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavisProperties, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDql, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRename, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorGeoLookup, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorInlineLookup, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocation, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContext, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorTechnology, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetric, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Data Extraction Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Data Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDavis, OpenpipelineV2BizeventsPipelinesDavisArgs
- Processors
Openpipeline
V2Bizevents Pipelines Davis Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Davis Processors - Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Davis Processors - Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Davis Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2BizeventsPipelinesDavisProcessors, OpenpipelineV2BizeventsPipelinesDavisProcessorsArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessor, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Bizevents Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Bizevents Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Bizevents Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Bizevents Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Bizevents Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Bizevents Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Bizevents Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Bizevents Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Bizevents Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Bizevents Pipelines Davis Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Bizevents Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Bizevents Pipelines Davis Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Bizevents Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Bizevents Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Bizevents Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Bizevents Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Bizevents Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Bizevents Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Bizevents Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Bizevents Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Bizevents Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Bizevents Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Bizevents Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Bizevents Pipelines Davis Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Bizevents Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Bizevents Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Bizevents Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Bizevents Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Bizevents Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Bizevents Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Bizevents Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Bizevents Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Bizevents Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Bizevents Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Bizevents Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Bizevents Pipelines Davis Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Bizevents Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Bizevents Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Bizevents Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Bizevents Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Bizevents Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Bizevents Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Bizevents Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Bizevents Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Bizevents Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Bizevents Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Bizevents Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Bizevents Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Bizevents Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Bizevents Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Bizevents Pipelines Davis Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwarding, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizevent, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Bizevents Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProvider, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProviderField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventType, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventTypeField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBucketAssignment, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocation, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValue, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValueField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetric, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavis, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisProperties, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDql, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAdd, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAddFields, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRemove, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRename, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRenameFields, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorGeoLookup, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetric, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorInlineLookup, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocation, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValue, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValueField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEvent, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Bizevents Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventType, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContext, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValue, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValueField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEvent, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeEdge, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNode, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Bizevents Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Bizevents Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Bizevents Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Bizevents Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Bizevents Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Bizevents Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorTechnology, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetric, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Davis Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Davis Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetricDimensions, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesDavisProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesMetadataList, OpenpipelineV2BizeventsPipelinesMetadataListArgs
OpenpipelineV2BizeventsPipelinesMetadataListMetadata, OpenpipelineV2BizeventsPipelinesMetadataListMetadataArgs
- Entry
Key string - Metadata entry key
- Entry
Value string - Metadata entry value
- Entry
Key string - Metadata entry key
- Entry
Value string - Metadata entry value
- entry_
key string - Metadata entry key
- entry_
value string - Metadata entry value
- entry
Key String - Metadata entry key
- entry
Value String - Metadata entry value
- entry
Key string - Metadata entry key
- entry
Value string - Metadata entry value
- entry_
key str - Metadata entry key
- entry_
value str - Metadata entry value
- entry
Key String - Metadata entry key
- entry
Value String - Metadata entry value
OpenpipelineV2BizeventsPipelinesMetricExtraction, OpenpipelineV2BizeventsPipelinesMetricExtractionArgs
- Processors
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors - Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors - Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessors, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessor, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizevent, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocation, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetric, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavis, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavisProperties, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDql, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRename, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorGeoLookup, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorInlineLookup, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocation, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContext, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorTechnology, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetric, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Metric Extraction Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Metric Extraction Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProcessing, OpenpipelineV2BizeventsPipelinesProcessingArgs
- Processors
Openpipeline
V2Bizevents Pipelines Processing Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Processing Processors - Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Processing Processors - Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Processing Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2BizeventsPipelinesProcessingProcessors, OpenpipelineV2BizeventsPipelinesProcessingProcessorsArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessor, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Bizevents Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Bizevents Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Bizevents Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Bizevents Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Bizevents Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Bizevents Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Bizevents Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Bizevents Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Bizevents Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Bizevents Pipelines Processing Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Bizevents Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Bizevents Pipelines Processing Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Bizevents Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Bizevents Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Bizevents Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Bizevents Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Bizevents Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Bizevents Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Bizevents Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Bizevents Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Bizevents Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Bizevents Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Bizevents Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Bizevents Pipelines Processing Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Bizevents Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Bizevents Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Bizevents Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Bizevents Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Bizevents Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Bizevents Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Bizevents Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Bizevents Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Bizevents Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Bizevents Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Bizevents Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Bizevents Pipelines Processing Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Bizevents Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Bizevents Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Bizevents Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Bizevents Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Bizevents Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Bizevents Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Bizevents Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Bizevents Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Bizevents Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Bizevents Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Bizevents Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Bizevents Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Bizevents Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Bizevents Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Bizevents Pipelines Processing Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwarding, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizevent, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Bizevents Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProvider, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProviderField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventType, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventTypeField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBucketAssignment, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorBucketAssignmentArgs
- Bucket
Name string - Bucket name
- Bucket
Name string - Bucket name
- bucket_
name string - Bucket name
- bucket
Name String - Bucket name
- bucket
Name string - Bucket name
- bucket_
name str - Bucket name
- bucket
Name String - Bucket name
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocation, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value Property Map
- The strategy to set the cost allocation field
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValue, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Cost Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Cost Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Cost Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Cost Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValueField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetric, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key string - Metric key
- dimensions object
- List of dimensions
- metric
Key String - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavis, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavisProperties, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDql, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAdd, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFields, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemove, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRename, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFields, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorGeoLookup, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorGeoLookupArgs
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields List<string> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- Ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- Geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- Output
Fields []string - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ stringkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ stringprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields list(string) - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field stringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field stringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields string[] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip_
field_ strkey - The field key that contains the IP address to be resolved to a geo location.
- geo_
field_ strprefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output_
fields Sequence[str] - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
- ip
Field StringKey - The field key that contains the IP address to be resolved to a geo location.
- geo
Field StringPrefix - Optional prefix for all output geo fields. If specified, output fields will be prefixed as \n\n.geo.\n\n. If omitted, output fields will be geo.\n\n.
- output
Fields List<String> - The geo fields to enrich the record with. If empty or not specified, the default fields (city name, country ISO code, country name, location) are used. Possible values:
cityName,continentIsoCode,continentName,countryIsoCode,countryName,location,postalCode,regionIsoCode,regionName,subdivisionIsoCodes
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetric, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorInlineLookup, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorInlineLookupArgs
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- Destination
Field string - The field key to write the matched lookup value to.
- Inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- Source
Field string - The field key whose value is looked up in the lookup table.
- Default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field string - The field key to write the matched lookup value to.
- inline_
lookup_ stringtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field string - The field key whose value is looked up in the lookup table.
- default_
value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field string - The field key to write the matched lookup value to.
- inline
Lookup stringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field string - The field key whose value is looked up in the lookup table.
- default
Value string - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination_
field str - The field key to write the matched lookup value to.
- inline_
lookup_ strtable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source_
field str - The field key whose value is looked up in the lookup table.
- default_
value str - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
- destination
Field String - The field key to write the matched lookup value to.
- inline
Lookup StringTable - The key-value pairs of the inline lookup table, encoded as a compact JSON string: [[["key1","key2"],"value1"],[["key3"],"value2"]].
- source
Field String - The field key whose value is looked up in the lookup table.
- default
Value String - The value to write to the destination field when no lookup key matches. If absent, the destination field is left unchanged when no key matches.
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocation, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValue, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Product Allocation Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Product Allocation Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Product Allocation Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Product Allocation Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Product Allocation Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValueField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- Sampling string
- Possible values:
disabled,enabled
- metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions object
- List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling String
- Possible values:
disabled,enabled
- metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling string
- Possible values:
disabled,enabled
- metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sampling Aware Counter Metric Dimensions - List of dimensions
- sampling str
- Possible values:
disabled,enabled
- metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - dimensions Property Map
- List of dimensions
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sampling Aware Histogram Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- Measurement string
- Possible values:
duration,field - Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Sampling string
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric_
key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
- measurement string
- Possible values:
duration,field - metric
Key string - Metric key
- aggregation string
- Possible values:
disabled,enabled - default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- sampling string
- Possible values:
disabled,enabled
- measurement str
- Possible values:
duration,field - metric_
key str - Metric key
- aggregation str
- Possible values:
disabled,enabled - default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sampling Aware Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- sampling str
- Possible values:
disabled,enabled
- measurement String
- Possible values:
duration,field - metric
Key String - Metric key
- aggregation String
- Possible values:
disabled,enabled - default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
- field String
- Field with metric value
- sampling String
- Possible values:
disabled,enabled
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEvent, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category object - Event category
- event_
provider object - Event provider
- event_
status object - Event status
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Category OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Bizevents Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category Property Map - Event category
- event
Provider Property Map - Event provider
- event
Status Property Map - Event status
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Category Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Category Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Category Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Provider Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Provider Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Status Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Status Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Status Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventType, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Type Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Type Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Event Type Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Sdlc Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Sdlc Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContext, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValue, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Security Context Value Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Security Context Value Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Security Context Value Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Security Context Value Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Security Context Value Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValueField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEvent, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Security Event Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Security Event Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Security Event Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Security Event Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeEdge, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeEdgeArgs
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Source
Id stringField Name - Source ID field name
- Source
Type string - Source type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- source_
id_ stringfield_ name - Source ID field name
- source_
type string - Source type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- source
Id stringField Name - Source ID field name
- source
Type string - Source type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- source_
id_ strfield_ name - Source ID field name
- source_
type str - Source type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- source
Id StringField Name - Source ID field name
- source
Type String - Source type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNode, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To Pulumiverse.Extract Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Node Id Components - ID components
- Node
Id stringField Name - Node ID field name
- Node
Type string - Node type
- Fields
To OpenpipelineExtract V2Bizevents Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components object - ID components
- node_
id_ stringfield_ name - Node ID field name
- node_
type string - Node type
- fields_
to_ objectextract - Fields to extract
- node_
name object - Node name
- static_
edges_ objectto_ extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Node Id Components - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To OpenpipelineExtract V2Bizevents Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Node Id Components - ID components
- node
Id stringField Name - Node ID field name
- node
Type string - Node type
- fields
To OpenpipelineExtract V2Bizevents Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Bizevents Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Node Id Components - ID components
- node_
id_ strfield_ name - Node ID field name
- node_
type str - Node type
- fields_
to_ Openpipelineextract V2Bizevents Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Bizevents Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Bizevents Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node Boolean - Extract node
- id
Components Property Map - ID components
- node
Id StringField Name - Node ID field name
- node
Type String - Node type
- fields
To Property MapExtract - Fields to extract
- node
Name Property Map - Node name
- static
Edges Property MapTo Extract - Static edges to extract
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Referenced
Field stringName - Referenced field name
- Field
Name string - Field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ stringname - Referenced field name
- field_
name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field stringName - Referenced field name
- field
Name string - Field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced_
field_ strname - Referenced field name
- field_
name str - Field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- referenced
Field StringName - Referenced field name
- field
Name String - Field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- Id
Component string - ID component
- Referenced
Field stringName - Referenced field name
- id_
component string - ID component
- referenced_
field_ stringname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
- id
Component string - ID component
- referenced
Field stringName - Referenced field name
- id_
component str - ID component
- referenced_
field_ strname - Referenced field name
- id
Component String - ID component
- referenced
Field StringName - Referenced field name
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Smartscape Node Node Name Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value List<String>Constants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Smartscape Node Node Name Field - Value from field
- multi
Value string[]Constants - Constant multi value
- type str
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant str
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Smartscape Node Node Name Field - Value from field
- multi_
value_ Sequence[str]constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field Property Map
- Value from field
- multi
Value List<String>Constants - Constant multi value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- Edge
Type string - Edge type
- Target
Id stringField Name - Target ID field name
- Target
Type string - Target type
- edge_
type string - Edge type
- target_
id_ stringfield_ name - Target ID field name
- target_
type string - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
- edge
Type string - Edge type
- target
Id stringField Name - Target ID field name
- target
Type string - Target type
- edge_
type str - Edge type
- target_
id_ strfield_ name - Target ID field name
- target_
type str - Target type
- edge
Type String - Edge type
- target
Id StringField Name - Target ID field name
- target
Type String - Target type
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorTechnology, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorTechnologyArgs
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- Technology
Id string - Technology ID
- Custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id string - Technology ID
- custom_
matcher string - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
- technology
Id string - Technology ID
- custom
Matcher string - Custom matching condition which should be used instead of technology matcher.
- technology_
id str - Technology ID
- custom_
matcher str - Custom matching condition which should be used instead of technology matcher.
- technology
Id String - Technology ID
- custom
Matcher String - Custom matching condition which should be used instead of technology matcher.
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetric, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Processing Processors Processor Value Metric Dimensions - List of dimensions
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric_
key string - Metric key
- default_
value string - Default value with metric value
- dimensions object
- List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Value Metric Dimensions - List of dimensions
- field string
- Field with metric value
- metric
Key string - Metric key
- default
Value string - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Value Metric Dimensions - List of dimensions
- field str
- Field with metric value
- metric_
key str - Metric key
- default_
value str - Default value with metric value
- dimensions
Openpipeline
V2Bizevents Pipelines Processing Processors Processor Value Metric Dimensions - List of dimensions
- field String
- Field with metric value
- metric
Key String - Metric key
- default
Value String - Default value with metric value
- dimensions Property Map
- List of dimensions
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetricDimensions, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2BizeventsPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProductAllocation, OpenpipelineV2BizeventsPipelinesProductAllocationArgs
- Processors
Openpipeline
V2Bizevents Pipelines Product Allocation Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Product Allocation Processors - Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Product Allocation Processors - Processors of stage
- processors
Openpipeline
V2Bizevents Pipelines Product Allocation Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2BizeventsPipelinesProductAllocationProcessors, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsArgs
OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessor, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Value Metric - Value metric processor attributes
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log OpenpipelineForwarding V2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ objectforwarding - Azure log forwarding processor attributes
- bizevent object
- Bizevent extraction processor attributes
- bucket_
assignment object - Bucket assignment processor attributes
- cost_
allocation object - Cost allocation processor attributes
- counter_
metric object - Counter metric processor attributes
- davis object
- Davis event extraction processor attributes
- dql object
- DQL processor attributes
- fields_
add object - Fields add processor attributes
- fields_
remove object - Fields remove processor attributes
- fields_
rename object - Fields rename processor attributes
- geo_
lookup object - Geo lookup processor attributes
- histogram_
metric object - Histogram metric processor attributes
- inline_
lookup object - Inline lookup processor attributes
- matcher string
- See our documentation
- product_
allocation object - Product allocation processor attributes
- sample_
data string - Sample data
- sampling_
aware_ objectcounter_ metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ objecthistogram_ metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ objectvalue_ metric - Sampling aware value metric processor attributes
- sdlc_
event object - SdlcEvent extraction processor attributes
- security_
context object - Security context processor attributes
- security_
event object - Security event extraction processor attributes
- smartscape_
edge object - Smartscape edge extraction processor attributes
- smartscape_
node object - Smartscape node extraction processor attributes
- technology object
- Technology processor attributes
- value_
metric object - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Value Metric - Value metric processor attributes
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - id string
- Processor identifier
- type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log OpenpipelineForwarding V2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Value Metric - Value metric processor attributes
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - id str
- Processor identifier
- type str
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure_
log_ Openpipelineforwarding V2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Bizevents Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Value Metric - Value metric processor attributes
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - id String
- Processor identifier
- type String
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - azure
Log Property MapForwarding - Azure log forwarding processor attributes
- bizevent Property Map
- Bizevent extraction processor attributes
- bucket
Assignment Property Map - Bucket assignment processor attributes
- cost
Allocation Property Map - Cost allocation processor attributes
- counter
Metric Property Map - Counter metric processor attributes
- davis Property Map
- Davis event extraction processor attributes
- dql Property Map
- DQL processor attributes
- fields
Add Property Map - Fields add processor attributes
- fields
Remove Property Map - Fields remove processor attributes
- fields
Rename Property Map - Fields rename processor attributes
- geo
Lookup Property Map - Geo lookup processor attributes
- histogram
Metric Property Map - Histogram metric processor attributes
- inline
Lookup Property Map - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation Property Map - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware Property MapCounter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware Property MapHistogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware Property MapValue Metric - Sampling aware value metric processor attributes
- sdlc
Event Property Map - SdlcEvent extraction processor attributes
- security
Context Property Map - Security context processor attributes
- security
Event Property Map - Security event extraction processor attributes
- smartscape
Edge Property Map - Smartscape edge extraction processor attributes
- smartscape
Node Property Map - Smartscape node extraction processor attributes
- technology Property Map
- Technology processor attributes
- value
Metric Property Map - Value metric processor attributes
OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- field_
extraction object - Field Extraction
- forwarder_
config_ stringid - No documentation available
- field
Extraction OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder_
config_ strid - No documentation available
- field
Extraction Property Map - Field Extraction
- forwarder
Config StringId - No documentation available
OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type str
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes Sequence[str]
- Fields
- include
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction Include - Fields
- type String
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes List<String>
- Fields
- include Property Map
- Fields
OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizevent, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider object - Event provider
- event_
type object - Event type
- field_
extraction object - Field extraction
- event
Provider OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Bizevents Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider Property Map - Event provider
- event
Type Property Map - Event type
- field
Extraction Property Map - Field extraction
OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2BizeventsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value List<string>Constants - Constant multi value
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Provider Field - Value from field
- Multi
Value []stringConstants - Constant multi value
- type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant string
- Constant value
- field object
- Value from field
- multi_
value_ list(string)constants - Constant multi value
- type String
- Type of value assignment. Possible values:
constant,field,multiValueConstant - constant String
- Constant value
- field
Openpipeline
V2Bizevents Pipelines Product Allocation Processors Processor Bizevent Event Provider Field - Value from field
- multi
Value List<String>Constants - Constant multi value